Nodes of different colours represent the following:
Solid arrows point from one derived type to another which extends (inherits from) it. Dashed arrows point from a derived type to another type containing it as a components, with a label listing the name(s) of said component(s). Where possible, edges connecting nodes are given different colours to make them easier to distinguish in large graphs.
Nodes of different colours represent the following:
Solid arrows point from one derived type to another which extends (inherits from) it. Dashed arrows point from a derived type to another type containing it as a components, with a label listing the name(s) of said component(s). Where possible, edges connecting nodes are given different colours to make them easier to distinguish in large graphs.
Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
character(len=MaxNameLength), | public | :: | Name | = | ' ' | ||
integer, | public | :: | TotalComponents | = | 0 | ||
integer, | public | :: | NodeNumIn | = | 0 | ||
integer, | public | :: | NodeNumOut | = | 0 | ||
type(ReportCompData), | public, | ALLOCATABLE, DIMENSION(:) | :: | Comp |
TYPE ReportBranchData
CHARACTER(len=MaxNameLength) :: Name = ' ' ! Name of the branch
INTEGER :: TotalComponents = 0 ! Total number of components on the branch
INTEGER :: NodeNumIn = 0 ! Branch inlet node number
INTEGER :: NodeNumOut = 0 ! Branch outlet node number
TYPE(ReportCompData), &
ALLOCATABLE, DIMENSION(:) :: Comp ! Component type list
END TYPE ReportBranchData