#using "types"; FlowSheet HeatEx_Flow VARIABLES x1 as Real (Default=50.00, Lower=0.00, Upper=150); x2 as Real (Default=50.00, Lower=0.00, Upper=150); x3 as Real (Default=50.00, Lower=0.00, Upper=150); x4 as Real (Default=50.00, Lower=0.00, Upper=150); x5 as Real (Default=50.00, Lower=0.00, Upper=150); x6 as Real (Default=50.00, Lower=0.00, Upper=150); SPECIFY x1 = 100.91; x2 = 64.45; #x3 = 34.65; EQUATIONS x1 - x2 - x3 = 0; x2 - x4 = 0; x3 - x5 = 0; x4 + x5 - x6 = 0; OPTIONS Dynamic = false; end Reconciliation HeatEx_Rec as HeatEx_Flow RECONCILE x1; x2; x3; x4; x5; x6; #x1; x2; x5; x6; #x1; x2; #x1; x6; FREE x1; x2; EXPERIMENTS # FILE WEIGTH "heatEx.dat" 1; #"heatEx_1.dat" 1; #"heatEx_2.dat" 1; #"heatEx_3.dat" 1; #"heatEx_GE.dat" 1; OPTIONS ObjectiveFunction = "Normal"; Filter = "mean"; Significance = 0.95; GrossErrorTests( Global = true, Nodal = true, Measurements = true ); NLPSolver( MaxIterations=1000, File = "complex" #File = "ipopt_emso" ); Dynamic = false; end