TYPE PlantIterationConvergenceStruct
LOGICAL :: PlantMassFlowNotConverged = .FALSE. ! Flag to show mass flow convergence
REAL(r64), DIMENSION(ConvergLogStackDepth) :: PlantFlowDemandToSupplyTolValue = 0.d0 ! Queue of convergence "results"
REAL(r64), DIMENSION(ConvergLogStackDepth) :: PlantFlowSupplyToDemandTolValue = 0.d0 ! Queue of convergence "results"
LOGICAL :: PlantTempNotConverged = .FALSE. ! Flag to show temperature convergence (0) or failure (1)
REAL(r64), DIMENSION(ConvergLogStackDepth) :: PlantTempDemandToSupplyTolValue = 0.d0 ! Queue of convergence "results"
REAL(r64), DIMENSION(ConvergLogStackDepth) :: PlantTempSupplyToDemandTolValue = 0.d0 ! Queue of convergence "results"
END TYPE PlantIterationConvergenceStruct