Changeset 632
- Timestamp:
- Sep 23, 2008, 7:20:38 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 3 added
- 2 deleted
- 47 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/eml/heat_exchangers/Heatex.mso
r529 r632 15 15 *-------------------------------------------------------------------- 16 16 * Author: Gerson Balbueno Bicca 17 * $ 17 * $Id: Heatex.mso 574 2008-07-25 14:18:50Z rafael $ 18 18 *--------------------------------------------------------------------*# 19 19 20 20 using "heat_exchangers/HEX_Engine"; 21 22 Model Basic_Pdrop23 24 ATTRIBUTES25 Pallete = false;26 Brief = "to be documented";27 Info =28 "to be documented";29 30 VARIABLES31 32 Pdrop as press_delta (Brief="Pressure Drop",Default=0.01, Lower=0,DisplayUnit='kPa' , Symbol ="\Delta P");33 FPdrop as Real (Brief="Pressure Drop : Fraction of Inlet",Lower=0,Upper=0.8);34 35 end36 37 Model Main_Simplified38 39 ATTRIBUTES40 Pallete = false;41 Brief = "to be documented";42 Info =43 "to be documented";44 45 VARIABLES46 47 PressureDrop as Basic_Pdrop (Brief="Pressure Drop", Symbol=" ");48 Properties as Physical_Properties_Heatex (Brief="Physical Properties", Symbol=" ");49 50 end51 21 52 22 Model Heatex_Basic … … 54 24 ATTRIBUTES 55 25 Pallete = false; 56 Brief 26 Brief = "Basic Model for Simplified Heat Exchangers"; 57 27 Info = 58 "to be documented."; 28 "Model of a simplified heat exchanger. 29 This model perform only material and heat balance. 30 31 == Assumptions == 32 * Steady-State operation; 33 * No heat loss to the surroundings. 34 35 == Specify == 36 * The Inlet streams: Hot and Cold; 37 "; 59 38 60 39 PARAMETERS 61 outer PP as Plugin (Brief="External Physical Properties", Type="PP");40 outer PP as Plugin (Brief="External Physical Properties", Type="PP"); 62 41 outer NComp as Integer (Brief="Number of Components"); 63 42 … … 66 45 VARIABLES 67 46 68 in InletHot as stream(Brief="Inlet Hot Stream", PosX=0, PosY=0.4915, Symbol="^{inHot}");47 in InletHot as stream (Brief="Inlet Hot Stream", PosX=0, PosY=0.4915, Symbol="^{inHot}"); 69 48 out OutletHot as streamPH (Brief="Outlet Hot Stream", PosX=1, PosY=0.4915, Symbol="^{outHot}"); 70 in InletCold as stream(Brief="Inlet Cold Stream", PosX=0.5237, PosY=1, Symbol="^{inCold}");49 in InletCold as stream (Brief="Inlet Cold Stream", PosX=0.5237, PosY=1, Symbol="^{inCold}"); 71 50 out OutletCold as streamPH (Brief="Outlet Cold Stream", PosX=0.5237, PosY=0, Symbol="^{outCold}"); 72 51 73 xh(NComp) as fraction (Brief = "Liquid Molar Fraction in Hot Side",Hidden=true); 74 yh(NComp) as fraction (Brief = "Vapour Molar Fraction in Hot Side",Hidden=true); 75 vh as fraction (Brief = "Vapour Fraction in Hot Side",Hidden=true); 76 77 xc(NComp) as fraction (Brief = "Liquid Molar Fraction in Cold Side",Hidden=true); 78 yc(NComp) as fraction (Brief = "Vapour Molar Fraction in Cold Side",Hidden=true); 79 vc as fraction (Brief = "Vapour Fraction in Cold Side",Hidden=true); 80 81 Details as Details_Main (Brief="Heat Exchanger Details", Symbol=" "); 82 HotSide as Main_Simplified (Brief="Heat Exchanger Hot Side", Symbol="_{hot}"); 83 ColdSide as Main_Simplified (Brief="Heat Exchanger Cold Side", Symbol="_{cold}"); 52 A as area (Brief="Exchange Surface Area"); 53 Q as power (Brief="Duty", Default=7000, Lower=1e-6, Upper=1e10); 54 U as heat_trans_coeff (Brief="Overall Heat Transfer Coefficient",Default=1,Lower=1e-6,Upper=1e10); 55 56 PdropHotSide as press_delta (Brief="Pressure Drop Hot Side",Default=0.01, Lower=0,DisplayUnit='kPa' , Symbol ="\Delta P_{hot}"); 57 PdropColdSide as press_delta (Brief="Pressure Drop Cold Side",Default=0.01, Lower=0,DisplayUnit='kPa' , Symbol ="\Delta P_{cold}"); 84 58 85 59 SET … … 90 64 EQUATIONS 91 65 92 "Flash Calculation in Hot Side"93 [vh, xh, yh] = PP.Flash(InletHot.T, InletHot.P, InletHot.z);94 95 "Flash Calculation in Cold Side"96 [vc, xc, yc] = PP.Flash(InletCold.T, InletCold.P, InletCold.z);97 98 "Hot Stream Average Molecular Weight"99 HotSide.Properties.Mw = sum(M*InletHot.z);100 101 "Cold Stream Average Molecular Weight"102 ColdSide.Properties.Mw = sum(M*InletCold.z);103 104 "Cold Stream Average Heat Capacity"105 ColdSide.Properties.Cp = (1-InletCold.v)*PP.LiquidCp(0.5*InletCold.T+0.5*OutletCold.T,0.5*InletCold.P+0.5*OutletCold.P,xc)+106 InletCold.v*PP.VapourCp(0.5*InletCold.T+0.5*OutletCold.T,0.5*InletCold.P+0.5*OutletCold.P,yc);107 108 "Cold Stream Inlet Mass Density"109 ColdSide.Properties.Inlet.rho = (1-InletCold.v)*PP.LiquidDensity(InletCold.T,InletCold.P,xc)+110 InletCold.v*PP.VapourDensity(InletCold.T,InletCold.P,yc);111 112 "Cold Stream Outlet Mass Density"113 ColdSide.Properties.Outlet.rho = (1-OutletCold.v)*PP.LiquidDensity(OutletCold.T,OutletCold.P,OutletCold.x)+114 OutletCold.v*PP.VapourDensity(OutletCold.T,OutletCold.P,OutletCold.y);115 116 "Hot Stream Average Heat Capacity"117 HotSide.Properties.Cp = (1-InletHot.v)*PP.LiquidCp(0.5*InletHot.T+0.5*OutletHot.T,0.5*InletHot.P+0.5*OutletHot.P,xh)+118 InletHot.v*PP.VapourCp(0.5*InletHot.T+0.5*OutletHot.T,0.5*InletHot.P+0.5*OutletHot.P,yh);119 120 "Hot Stream Inlet Mass Density"121 HotSide.Properties.Inlet.rho = (1-InletHot.v)*PP.LiquidDensity(InletHot.T,InletHot.P,xc)+122 InletHot.v*PP.VapourDensity(InletHot.T,InletHot.P,yc);123 124 "Hot Stream Outlet Mass Density"125 HotSide.Properties.Outlet.rho = (1-OutletHot.v)*PP.LiquidDensity(OutletHot.T,OutletHot.P,OutletHot.x)+126 OutletHot.v*PP.VapourDensity(OutletHot.T,OutletHot.P,OutletHot.y);127 128 66 "Energy Balance Hot Stream" 129 Details.Q = InletHot.F*(InletHot.h-OutletHot.h);67 Q = InletHot.F*(InletHot.h-OutletHot.h); 130 68 131 69 "Energy Balance Cold Stream" 132 Details.Q =-InletCold.F*(InletCold.h-OutletCold.h); 133 134 "Flow Mass Inlet Cold Stream" 135 ColdSide.Properties.Inlet.Fw = sum(M*InletCold.z)*InletCold.F; 136 137 "Flow Mass Outlet Cold Stream" 138 ColdSide.Properties.Outlet.Fw = sum(M*OutletCold.z)*OutletCold.F; 139 140 "Flow Mass Inlet Hot Stream" 141 HotSide.Properties.Inlet.Fw = sum(M*InletHot.z)*InletHot.F; 142 143 "Flow Mass Outlet Hot Stream" 144 HotSide.Properties.Outlet.Fw = sum(M*OutletHot.z)*OutletHot.F; 70 Q =-InletCold.F*(InletCold.h-OutletCold.h); 145 71 146 72 "Molar Balance Hot Stream" … … 151 77 152 78 "Hot Stream Molar Fraction Constraint" 153 OutletHot.z 79 OutletHot.z = InletHot.z; 154 80 155 81 "Cold Stream Molar Fraction Constraint" … … 157 83 158 84 "Pressure Drop Hot Stream" 159 OutletHot.P = InletHot.P - HotSide.PressureDrop.Pdrop;85 OutletHot.P = InletHot.P - PdropHotSide; 160 86 161 87 "Pressure Drop Cold Stream" 162 OutletCold.P = InletCold.P - ColdSide.PressureDrop.Pdrop; 163 164 "Fraction of Inlet Pressure : Hot Stream" 165 HotSide.PressureDrop.Pdrop = InletHot.P*HotSide.PressureDrop.FPdrop; 166 167 "Fraction of Inlet Pressure : Cold Stream" 168 ColdSide.PressureDrop.Pdrop = InletCold.P*ColdSide.PressureDrop.FPdrop; 169 170 end 171 172 Model Heatex_LMTD as Heatex_Basic 88 OutletCold.P = InletCold.P - PdropColdSide; 89 90 end 91 92 Model Heatex_LMTD as Heatex_Basic 173 93 174 94 ATTRIBUTES 175 95 Pallete = true; 176 96 Icon = "icon/HeatExchanger_LMTD"; 177 Brief 97 Brief = "Simplified model for Heat Exchangers"; 178 98 Info = 179 "to be documented."; 99 "This model perform material and heat balance using the Log Mean Temperature Difference Approach. 100 This shortcut calculation does not require exchanger configuration or geometry data. 101 102 == Assumptions == 103 * Steady-State operation; 104 * No heat loss to the surroundings. 105 106 == Specify == 107 * The Inlet streams: Hot and Cold. 108 109 == References == 110 [1] E.A.D. Saunders, Heat Exchangers: Selection, Design and 111 Construction, Longman, Harlow, 1988. 112 113 [2] Taborek, J., Shell-and-tube heat exchangers, in Heat Exchanger Design Handbook, Vol. 3 114 Hemisphere Publishing Corp., New York, 1988. 115 116 [3] Fakheri, A. , Alternative approach for determining log mean temperature difference correction factor 117 and number of shells of shell and tube heat exchangers, Journal of Enhanced Heat Transfer, v. 10, p. 407- 420, 2003. 118 "; 180 119 181 120 PARAMETERS … … 186 125 VARIABLES 187 126 188 Method as LMTD_Basic (Brief="LMTD Method of Calculation", Symbol =" ");127 Method as LMTD_Basic (Brief="LMTD Method of Calculation", Symbol =" "); 189 128 R as positive (Brief="Capacity Ratio for LMTD Correction Fator",Lower=1e-6,Hidden=true); 190 129 P as positive (Brief="Non - Dimensional Variable for LMTD Correction Fator ",Lower=1e-6,Hidden=true); 191 Rho as positive (Brief="Non - Dimensional Variable for LMTD Correction Fator in Fakheri Equation",Lower=1e-6,Hidden=true);130 Rho as positive (Brief="Non - Dimensional Variable for LMTD Correction Fator in Fakheri Equation",Lower=1e-6,Hidden=true); 192 131 Phi as positive (Brief="Non - Dimensional Variable for LMTD Correction Fator in Fakheri Equation",Lower=1e-6, Symbol ="\phi",Hidden=true); 193 132 … … 195 134 196 135 "Duty" 197 Details.Q = Details.Ud*Details.A*Method.LMTD*Method.Fc;136 Q = U*A*Method.LMTD*Method.Fc; 198 137 199 138 switch ExchangerType … … 317 256 end 318 257 319 Model Heatex_NTU 258 Model Heatex_NTU as Heatex_Basic 320 259 321 260 ATTRIBUTES 322 261 Pallete = true; 323 262 Icon = "icon/HeatExchanger_NTU"; 324 Brief 263 Brief = "Simplified model for Heat Exchangers"; 325 264 Info = 326 "to be documented."; 265 "This model perform material and heat balance using the NTU-Effectiveness Approach. 266 This shortcut calculation does not require exchanger configuration or geometry data. 267 268 == Assumptions == 269 * Steady-State operation; 270 * No heat loss to the surroundings. 271 272 == Specify == 273 * The Inlet streams: Hot and Cold. 274 275 == References == 276 [1] E.A.D. Saunders, Heat Exchangers: Selection, Design and 277 Construction, Longman, Harlow, 1988. 278 279 "; 327 280 328 281 PARAMETERS … … 334 287 Method as NTU_Basic (Brief="NTU Method of Calculation", Symbol =" "); 335 288 289 xh(NComp) as fraction (Brief = "Liquid Molar Fraction in Hot Side",Hidden=true); 290 yh(NComp) as fraction (Brief = "Vapour Molar Fraction in Hot Side",Hidden=true); 291 vh as fraction (Brief = "Vapour Fraction in Hot Side",Hidden=true); 292 293 xc(NComp) as fraction (Brief = "Liquid Molar Fraction in Cold Side",Hidden=true); 294 yc(NComp) as fraction (Brief = "Vapour Molar Fraction in Cold Side",Hidden=true); 295 vc as fraction (Brief = "Vapour Fraction in Cold Side",Hidden=true); 296 336 297 EQUATIONS 337 298 299 "Flash Calculation in Hot Side" 300 [vh, xh, yh] = PP.Flash(InletHot.T, InletHot.P, InletHot.z); 301 302 "Flash Calculation in Cold Side" 303 [vc, xc, yc] = PP.Flash(InletCold.T, InletCold.P, InletCold.z); 304 338 305 "Number of Units Transference" 339 Method.NTU*Method.Cmin = Details.Ud*Details.A;306 Method.NTU*Method.Cmin = U*A; 340 307 341 308 "Minimum Heat Capacity" … … 349 316 350 317 "Duty" 351 Details.Q = Method.Eft*Method.Cmin*(InletHot.T-InletCold.T); 352 353 "Hot Stream Heat Capacity" 354 Method.Ch = InletHot.F*HotSide.Properties.Cp; 355 356 "Cold Stream Heat Capacity" 357 Method.Cc = InletCold.F*ColdSide.Properties.Cp; 318 Q = Method.Eft*Method.Cmin*(InletHot.T-InletCold.T); 319 320 "Hot Stream Average Heat Capacity" 321 Method.Ch = InletHot.F*((1-InletHot.v)*PP.LiquidCp(0.5*InletHot.T+0.5*OutletHot.T,0.5*InletHot.P+0.5*OutletHot.P,xh)+ 322 InletHot.v*PP.VapourCp(0.5*InletHot.T+0.5*OutletHot.T,0.5*InletHot.P+0.5*OutletHot.P,yh)); 323 324 "Cold Stream Average Heat Capacity" 325 Method.Cc = InletCold.F*((1-InletCold.v)*PP.LiquidCp(0.5*InletCold.T+0.5*OutletCold.T,0.5*InletCold.P+0.5*OutletCold.P,xc)+ 326 InletCold.v*PP.VapourCp(0.5*InletCold.T+0.5*OutletCold.T,0.5*InletCold.P+0.5*OutletCold.P,yc)); 358 327 359 328 "Effectiveness Correction" … … 393 362 394 363 "TEMA E Shell Effectiveness" 395 Method.Eft = 2*(1+Method.Cr+sqrt(1+Method.Cr^2)*((1+exp(-Method.NTU*sqrt(1+Method.Cr^2)))/(1-exp(-Method.NTU*sqrt(1+Method.Cr^2)))) )^-1; 396 397 end 398 399 400 end 401 402 end 403 364 Method.Eft = 2*(1+Method.Cr+sqrt(1+Method.Cr^2)*((1+exp(-Method.NTU*sqrt(1+Method.Cr^2)))/(1-exp(-Method.NTU*sqrt(1+Method.Cr^2)))) )^(-1); 365 366 end 367 368 369 end 370 371 end -
trunk/eml/heat_exchangers/heater.mso
r546 r632 29 29 30 30 PARAMETERS 31 outer PP as Plugin(Brief="Physical Properties", Type="PP");31 outer PP as Plugin (Brief="Physical Properties", Type="PP"); 32 32 outer NComp as Integer (Brief="Number of Components"); 33 Ninlet as Integer (Brief="Number of Inlet Streams"); 34 Kvalues as Switcher (Brief="Option for Display Phase Equilibrium K-values",Valid=["yes","no"], Default="yes"); 33 Kvalues as Switcher (Brief="Option for Display Phase Equilibrium K-values",Valid=["yes","no"], Default="yes"); 35 34 36 35 VARIABLES 37 QDuty as power (Brief = "Actual Duty",Symbol="Q_{Duty}"); 38 Vfrac as fraction (Brief = "Vapor fraction Outlet Stream",Symbol="V_{frac}"); 39 Lfrac as fraction (Brief = "Liquid fraction Outlet Stream",Symbol="L_{frac}"); 40 Kvalue(NComp) as Real (Brief = "Phase Equilibrium K-values",Symbol="K_{value}"); 41 Pratio(Ninlet ) as positive (Brief = "Pressure Ratio for each stream", Symbol ="P_{ratio}"); 42 Pdrop(Ninlet ) as press_delta (Brief = "Pressure Drop for each stream", DisplayUnit = 'kPa', Symbol ="\Delta P"); 43 in Inlet(Ninlet ) as stream (Brief = "Inlet Streams", PosX=0, PosY=0.4833, Symbol="^{in}"); 44 out Outlet as streamPH (Brief = "Outlet Stream", PosX=1, PosY=0.4782, Symbol="^{out}"); 36 Duty as power (Brief = "Actual Duty",Symbol="Q_{Duty}"); 37 Vfrac as fraction (Brief = "Vapor fraction Outlet Stream",Symbol="V_{frac}"); 38 Lfrac as fraction (Brief = "Liquid fraction Outlet Stream",Symbol="L_{frac}"); 39 Kvalue(NComp) as Real (Brief = "Phase Equilibrium K-values",Lower=1E-30,Upper=1E30,Symbol="K_{value}"); 40 Pratio as positive (Brief = "Pressure Ratio", Symbol ="P_{ratio}"); 41 Pdrop as press_delta (Brief = "Pressure Drop", DisplayUnit = 'kPa', Symbol ="\Delta P"); 42 43 in Inlet as stream (Brief = "Inlet Stream", PosX=0, PosY=0.45, Symbol="^{in}"); 44 out Outlet as streamPH (Brief = "Outlet Stream", PosX=1, PosY=0.45, Symbol="^{out}"); 45 45 46 46 EQUATIONS 47 47 48 48 "Flow" 49 Outlet.F = sum(Inlet.F);49 Outlet.F = Inlet.F; 50 50 51 for j in [1 : NComp] 51 for j in [1 : NComp] 52 52 53 53 "Composition" 54 Outlet.F*Outlet.z(j) = sum(Inlet.F*Inlet.z(j));54 Outlet.F*Outlet.z(j) = Inlet.F*Inlet.z(j); 55 55 56 56 end … … 63 63 64 64 "Heat Duty" 65 QDuty = Outlet.F*Outlet.h - sum(Inlet.F*Inlet.h);65 Duty = Outlet.F*Outlet.h - Inlet.F*Inlet.h; 66 66 67 67 "Pressure Drop" … … 72 72 73 73 switch Kvalues # Fix for better convergence !!! 74 74 75 case "yes": 75 76 "K-values Phase Equilibrium" … … 81 82 82 83 end 84 83 85 end 84 86 … … 93 95 94 96 == Specify == 95 * The Inlet stream s: Any Number97 * The Inlet stream 96 98 * Specify: 97 99 **The outlet temperature and the outlet pressure or … … 102 104 VARIABLES 103 105 104 in InletQas energy_stream (Brief ="Inlet Heat Stream", PosX=0.5, PosY=1, Symbol="_{out}");106 in Heat as energy_stream (Brief ="Inlet Heat Stream", PosX=0.5, PosY=1, Symbol="_{out}"); 105 107 106 108 EQUATIONS 107 "Net Duty" 108 InletQ.Q = QDuty; 109 110 "Duty Specification" 111 Heat.Q = Duty; 109 112 110 113 end … … 120 123 121 124 == Specify == 122 * The Inlet stream s: Any Number125 * The Inlet stream 123 126 * Specify: 124 127 **The outlet temperature and the outlet pressure or … … 129 132 VARIABLES 130 133 131 in InletQas energy_stream (Brief ="Inlet Heat Stream", PosX=0.5, PosY=1, Symbol="_{out}");134 in Heat as energy_stream (Brief ="Inlet Heat Stream", PosX=0.5, PosY=1, Symbol="_{out}"); 132 135 133 136 EQUATIONS 134 "Net Duty" 135 InletQ.Q = -QDuty; 137 138 "Duty Specification" 139 Heat.Q = -Duty; 136 140 137 141 end -
trunk/eml/heat_exchangers/icon/Shell_and_Tubes_LMTD.svg
r335 r632 3 3 <svg 4 4 xmlns:dc="http://purl.org/dc/elements/1.1/" 5 xmlns:cc="http:// web.resource.org/cc/"5 xmlns:cc="http://creativecommons.org/ns#" 6 6 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 7 7 xmlns:svg="http://www.w3.org/2000/svg" … … 12 12 id="svg2064" 13 13 sodipodi:version="0.32" 14 inkscape:version="0.4 5"15 width=" 210mm"16 height=" 297mm"14 inkscape:version="0.46" 15 width="191.96149" 16 height="73.427681" 17 17 sodipodi:docbase="/home/gerson/Desktop/projetos/curso/figuras" 18 sodipodi:docname=" base.svg"19 inkscape:export-filename=" C:\Documents and Settings\Administrador\Meus documentos\Bolsa Simulação\Desenhos Prontos 5\pfr.png"20 inkscape:export-xdpi=" 90"21 inkscape:export-ydpi=" 90"18 sodipodi:docname="Shell_and_Tubes_LMTD.svg" 19 inkscape:export-filename="/media/sdb5/gerson/projetos/repositorio/biblioteca/trunk/eml/heat_exchangers/icon/Shell_and_Tubes_LMTD.png" 20 inkscape:export-xdpi="108" 21 inkscape:export-ydpi="108" 22 22 inkscape:output_extension="org.inkscape.output.svg.inkscape" 23 sodipodi:modified="true"> 23 sodipodi:modified="true" 24 version="1.0"> 24 25 <metadata 25 26 id="metadata2069"> … … 35 36 <defs 36 37 id="defs2067"> 38 <inkscape:perspective 39 sodipodi:type="inkscape:persp3d" 40 inkscape:vp_x="0 : 526.18109 : 1" 41 inkscape:vp_y="0 : 1000 : 0" 42 inkscape:vp_z="744.09448 : 526.18109 : 1" 43 inkscape:persp3d-origin="372.04724 : 350.78739 : 1" 44 id="perspective76" /> 37 45 <linearGradient 38 46 id="linearGradient10543"> … … 120 128 xlink:href="#linearGradient6760" 121 129 id="linearGradient6385" 122 x1="24 3.3891"123 y1="44 4.52151"124 x2="3 65.66113"125 y2="44 4.52158"126 gradientUnits="userSpaceOnUse" 127 gradientTransform="matrix(0. 3768791,0,0,0.6135983,-620.23828,-44.668469)" />130 x1="245.61723" 131 y1="443.98077" 132 x2="373.95956" 133 y2="443.98083" 134 gradientUnits="userSpaceOnUse" 135 gradientTransform="matrix(0.4032455,0,0,0.4255443,-161.9293,-106.27941)" /> 128 136 <linearGradient 129 137 inkscape:collect="always" … … 287 295 id="linearGradient26547" 288 296 gradientUnits="userSpaceOnUse" 289 gradientTransform="matrix(0. 4830015,0,0,3.8741889e-3,-650.42995,351.4482)"297 gradientTransform="matrix(0.7069901,0,0,3.3539357e-3,-735.15446,318.94755)" 290 298 x1="243.3891" 291 299 y1="444.52151" … … 297 305 id="linearGradient26549" 298 306 gradientUnits="userSpaceOnUse" 299 gradientTransform="matrix(0. 4830013,0,0,3.8741884e-3,-650.42997,353.34533)"307 gradientTransform="matrix(0.7069898,0,0,3.3539353e-3,-735.15449,320.58992)" 300 308 x1="243.3891" 301 309 y1="444.52151" … … 307 315 id="linearGradient2235" 308 316 gradientUnits="userSpaceOnUse" 309 gradientTransform="matrix(0. 3821741,0,0,0.100001,-621.87864,301.35055)"310 x1="245. 2805"317 gradientTransform="matrix(0.408911,0,0,6.9352962e-2,-163.68442,133.69264)" 318 x1="245.62129" 311 319 y1="367.63547" 312 320 x2="373.31812" … … 317 325 id="linearGradient3569" 318 326 gradientUnits="userSpaceOnUse" 319 gradientTransform="matrix(0.4826426,0,0,4.2874738e-3,-650.3205,108.88575)" 320 x1="243.3891" 321 y1="444.52151" 322 x2="366.54971" 323 y2="444.52151" /> 324 <linearGradient 325 inkscape:collect="always" 326 xlink:href="#linearGradient6760" 327 id="linearGradient3571" 328 gradientUnits="userSpaceOnUse" 329 gradientTransform="matrix(0.4826423,0,0,4.2874733e-3,-650.32053,110.98527)" 330 x1="243.3891" 331 y1="444.52151" 332 x2="366.54971" 333 y2="444.52151" /> 334 <linearGradient 335 inkscape:collect="always" 336 xlink:href="#linearGradient6760" 337 id="linearGradient3577" 338 gradientUnits="userSpaceOnUse" 339 gradientTransform="matrix(0.4821333,0,0,4.9101553e-3,-650.16524,151.31056)" 340 x1="243.3891" 341 y1="444.52151" 342 x2="366.54971" 343 y2="444.52151" /> 344 <linearGradient 345 inkscape:collect="always" 346 xlink:href="#linearGradient6760" 347 id="linearGradient3579" 348 gradientUnits="userSpaceOnUse" 349 gradientTransform="matrix(0.4821331,0,0,4.910155e-3,-650.16527,153.715)" 327 gradientTransform="matrix(0.7064647,0,0,3.7117218e-3,-734.99425,108.95809)" 350 328 x1="243.3891" 351 329 y1="444.52151" … … 357 335 id="linearGradient3585" 358 336 gradientUnits="userSpaceOnUse" 359 gradientTransform="matrix( 8.6645573e-2,0,0,2.9257297e-2,-500.31478,119.31507)"337 gradientTransform="matrix(9.2707331e-2,0,0,2.0290599e-2,-35.077904,7.446901)" 360 338 x1="305.26898" 361 339 y1="212.32526" … … 367 345 id="linearGradient3587" 368 346 gradientUnits="userSpaceOnUse" 369 gradientTransform="matrix(0.1 597401,0,0,2.8645335e-3,83.264444,466.92037)"347 gradientTransform="matrix(0.1107834,0,0,3.0649362e-3,-17.555022,-0.6536283)" 370 348 x1="243.3891" 371 349 y1="444.52151" … … 397 375 id="linearGradient3623" 398 376 gradientUnits="userSpaceOnUse" 399 gradientTransform="matrix( 8.6645573e-2,0,0,2.9257297e-2,-500.31478,161.04458)"377 gradientTransform="matrix(9.2707331e-2,0,0,2.0290599e-2,-35.077904,36.387264)" 400 378 x1="305.26898" 401 379 y1="212.32526" … … 407 385 id="linearGradient3625" 408 386 gradientUnits="userSpaceOnUse" 409 gradientTransform="matrix(0.1 597401,0,0,2.8645335e-3,124.99394,466.92081)"387 gradientTransform="matrix(0.1107834,0,0,3.0649362e-3,11.385333,-0.6531531)" 410 388 x1="243.3891" 411 389 y1="444.52151" … … 432 410 x2="366.54971" 433 411 y2="444.52151" /> 412 <linearGradient 413 inkscape:collect="always" 414 xlink:href="#linearGradient6760" 415 id="linearGradient3222" 416 gradientUnits="userSpaceOnUse" 417 gradientTransform="matrix(0.1107833,0,0,3.0649359e-3,-50.01597,-74.08173)" 418 x1="243.3891" 419 y1="444.52151" 420 x2="366.54971" 421 y2="444.52151" /> 422 <linearGradient 423 inkscape:collect="always" 424 xlink:href="#linearGradient6760" 425 id="linearGradient3225" 426 gradientUnits="userSpaceOnUse" 427 gradientTransform="matrix(9.2707258e-2,0,0,2.0290601e-2,38.349851,-25.014039)" 428 x1="305.26898" 429 y1="212.32526" 430 x2="305.26898" 431 y2="646.74139" /> 432 <linearGradient 433 inkscape:collect="always" 434 xlink:href="#linearGradient6760" 435 id="linearGradient3228" 436 gradientUnits="userSpaceOnUse" 437 gradientTransform="matrix(0.1107833,0,0,3.0649359e-3,-194.00573,-74.083346)" 438 x1="243.3891" 439 y1="444.52151" 440 x2="366.54971" 441 y2="444.52151" /> 442 <linearGradient 443 inkscape:collect="always" 444 xlink:href="#linearGradient6760" 445 id="linearGradient3231" 446 gradientUnits="userSpaceOnUse" 447 gradientTransform="matrix(9.2707258e-2,0,0,2.0290601e-2,38.349851,-169.0038)" 448 x1="305.26898" 449 y1="212.32526" 450 x2="305.26898" 451 y2="646.74139" /> 434 452 </defs> 435 453 <sodipodi:namedview 436 inkscape:window-height="9 49"437 inkscape:window-width="12 80"454 inkscape:window-height="926" 455 inkscape:window-width="1268" 438 456 inkscape:pageshadow="2" 439 457 inkscape:pageopacity="0.0" … … 447 465 showgrid="true" 448 466 showguides="true" 449 inkscape:zoom=" 2.4616542"450 inkscape:cx=" 278.83791"451 inkscape:cy=" 536.25393"467 inkscape:zoom="3.4813048" 468 inkscape:cx="126.67534" 469 inkscape:cy="28.853068" 452 470 inkscape:window-x="0" 453 inkscape:window-y=" 25"471 inkscape:window-y="44" 454 472 inkscape:current-layer="svg2064" 455 inkscape:guide-bbox="true" /> 473 inkscape:guide-bbox="true" 474 showborder="false" 475 inkscape:showpageshadow="false" /> 456 476 <rect 457 477 transform="matrix(0,-1,1,0,0,0)" 458 rx="2 3.681614"459 ry=" 10.377322"460 y=" 326.43665"461 x="- 527.90607"462 height=" 58.767086"463 width=" 48.467449"478 rx="25.338377" 479 ry="7.1969085" 480 y="151.09039" 481 x="-63.13752" 482 height="40.756306" 483 width="51.858234" 464 484 id="rect2229" 465 style="opacity:1;fill:url(#linearGradient2235);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0. 45099375;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />485 style="opacity:1;fill:url(#linearGradient2235);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.22957045;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> 466 486 <g 467 487 id="g5069" 468 488 style="fill:url(#linearGradient5143);fill-opacity:1;fill-rule:nonzero" 469 transform="matrix(1.158344e-8,-0.836391,-1.541764,0,1 677.846,672.6111)" />470 <rect 471 style="fill:url(#linearGradient6385);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width: 1.10938132;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"489 transform="matrix(1.158344e-8,-0.836391,-1.541764,0,1569.1662,203.16318)" /> 490 <rect 491 style="fill:url(#linearGradient6385);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.22957045;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 472 492 id="rect16940" 473 width=" 48.164581"474 height=" 245.18755"475 x="- 527.56781"476 y=" 109.25777"477 ry="0" 478 rx="1 3.87402"493 width="51.534176" 494 height="170.04312" 495 x="-62.7756" 496 y="0.47193456" 497 ry="0" 498 rx="14.844646" 479 499 transform="matrix(0,-1,1,0,0,0)" /> 480 500 <rect 481 style="fill:url(#linearGradient26547);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.713902;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 482 id="rect26543" 483 width="57.071758" 484 height="1.5005769" 485 x="-531.6651" 486 y="352.42014" 487 ry="0" 488 rx="28.535879" 501 transform="matrix(0,-1,1,0,0,0)" 502 rx="30.509558" 503 ry="0" 504 y="0.11478522" 505 x="-67.136963" 506 height="1.1517005" 507 width="61.019115" 508 id="rect3567" 509 style="fill:#280b0b;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.22957045;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> 510 <rect 511 style="fill:#280b0b;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.22957045;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 512 id="rect3575" 513 width="60.954746" 514 height="1.318965" 515 x="-67.104614" 516 y="32.158321" 517 ry="0" 518 rx="30.477373" 489 519 transform="matrix(0,-1,1,0,0,0)" /> 490 520 <rect 491 style="fill:url(#linearGradient26549);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.71390188;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 492 id="rect26545" 493 width="57.071758" 494 height="1.5005769" 495 x="-531.6651" 496 y="354.31726" 497 ry="0" 498 rx="28.535879" 521 transform="matrix(0,-1,1,0,0,0)" 522 rx="5.4494071" 523 ry="0" 524 y="11.928657" 525 x="-12.226699" 526 height="8.4674559" 527 width="10.898814" 528 id="rect3581" 529 style="fill:url(#linearGradient3585);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.22957045;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> 530 <rect 531 transform="matrix(1,-1.122173e-5,0,1,0,0)" 532 rx="6.545114" 533 ry="0" 534 y="0.11504081" 535 x="9.6853418" 536 height="1.1871309" 537 width="13.090228" 538 id="rect3583" 539 style="fill:url(#linearGradient3587);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.22957045;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> 540 <rect 541 style="fill:url(#linearGradient3225);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.22957045;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 542 id="rect3603" 543 width="10.898814" 544 height="8.4674559" 545 x="61.20113" 546 y="-20.532284" 547 ry="0" 548 rx="5.4494071" 549 transform="matrix(0,1,-1,0,0,0)" /> 550 <rect 551 style="fill:url(#linearGradient3222);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.22957045;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 552 id="rect3605" 553 width="13.090226" 554 height="1.1871308" 555 x="-22.775587" 556 y="-73.313004" 557 ry="0" 558 rx="6.5451131" 559 transform="matrix(-1,1.1221729e-5,0,-1,0,0)" /> 560 <rect 561 style="fill:url(#linearGradient3623);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.22957045;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 562 id="rect3619" 563 width="10.898814" 564 height="8.4674559" 565 x="-12.226699" 566 y="40.869038" 567 ry="0" 568 rx="5.4494071" 499 569 transform="matrix(0,-1,1,0,0,0)" /> 500 570 <rect 501 transform="matrix(0,-1,1,0,0,0)" 502 rx="28.514671" 503 ry="0" 504 y="109.96134" 505 x="-531.64398" 506 height="1.6606534" 507 width="57.029343" 508 id="rect3565" 509 style="fill:url(#linearGradient3569);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.75073647;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> 510 <rect 511 transform="matrix(0,-1,1,0,0,0)" 512 rx="28.514671" 513 ry="0" 514 y="112.06085" 515 x="-531.64398" 516 height="1.6606531" 517 width="57.029343" 518 id="rect3567" 519 style="fill:url(#linearGradient3571);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.7507363;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> 520 <rect 521 style="fill:url(#linearGradient3577);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.80298078;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 522 id="rect3573" 523 width="56.969181" 524 height="1.9018342" 525 x="-531.61377" 526 y="152.54237" 527 ry="0" 528 rx="28.484591" 529 transform="matrix(0,-1,1,0,0,0)" /> 530 <rect 531 style="fill:url(#linearGradient3579);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.80298072;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 532 id="rect3575" 533 width="56.969181" 534 height="1.9018341" 535 x="-531.61377" 536 y="154.94681" 537 ry="0" 538 rx="28.484591" 539 transform="matrix(0,-1,1,0,0,0)" /> 540 <rect 541 transform="matrix(0,-1,1,0,0,0)" 542 rx="5.0930943" 543 ry="0" 544 y="125.77737" 545 x="-478.9577" 546 height="12.209343" 547 width="10.186189" 548 id="rect3581" 549 style="fill:url(#linearGradient3585);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.40073827;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> 550 <rect 551 transform="matrix(1,-7.273659e-6,0,1,0,0)" 552 rx="9.4374914" 553 ry="0" 554 y="467.63876" 555 x="122.54271" 556 height="1.1095097" 557 width="18.874983" 558 id="rect3583" 559 style="fill:url(#linearGradient3587);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.35302672;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> 560 <g 561 id="g3611" 562 transform="matrix(-0.6386346,0,0,-0.6795485,269.92064,933.35158)"> 563 <rect 564 transform="matrix(0,-1,1,0,0,0)" 565 rx="7.4948206" 566 ry="0" 567 y="206.28006" 568 x="-597.29205" 569 height="19.117886" 570 width="14.989641" 571 id="rect3603" 572 style="fill:url(#linearGradient3615);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.60830927;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> 573 <rect 574 transform="matrix(1,-6.835729e-6,0,1,0,0)" 575 rx="14.777607" 576 ry="0" 577 y="580.63574" 578 x="201.21512" 579 height="1.6327158" 580 width="29.555214" 581 id="rect3605" 582 style="fill:url(#linearGradient3617);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.53588444;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> 583 </g> 584 <rect 585 style="fill:url(#linearGradient3623);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.40073827;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 586 id="rect3619" 587 width="10.186189" 588 height="12.209343" 589 x="-478.9577" 590 y="167.50691" 591 ry="0" 592 rx="5.0930943" 593 transform="matrix(0,-1,1,0,0,0)" /> 594 <rect 595 style="fill:url(#linearGradient3625);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.35302672;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 571 style="fill:url(#linearGradient3625);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.22957045;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 596 572 id="rect3621" 597 width="18.874983" 598 height="1.1095097" 599 x="164.27225" 600 y="467.6395" 601 ry="0" 602 rx="9.4374914" 603 transform="matrix(1,-7.273659e-6,0,1,0,0)" /> 604 <g 605 transform="matrix(-0.6386346,0,0,-0.6795485,477.54149,933.35158)" 606 id="g3627"> 607 <rect 608 style="fill:url(#linearGradient3633);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.60830927;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 609 id="rect3629" 610 width="14.989641" 611 height="19.117886" 612 x="-597.29205" 613 y="206.28006" 614 ry="0" 615 rx="7.4948206" 616 transform="matrix(0,-1,1,0,0,0)" /> 617 <rect 618 style="fill:url(#linearGradient3635);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.53588444;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 619 id="rect3631" 620 width="29.555214" 621 height="1.6327158" 622 x="201.21512" 623 y="580.63574" 624 ry="0" 625 rx="14.777607" 626 transform="matrix(1,-6.835729e-6,0,1,0,0)" /> 627 </g> 573 width="13.090228" 574 height="1.1871309" 575 x="38.625725" 576 y="0.11582158" 577 ry="0" 578 rx="6.545114" 579 transform="matrix(1,-1.122173e-5,0,1,0,0)" /> 580 <rect 581 transform="matrix(0,1,-1,0,0,0)" 582 rx="5.4494071" 583 ry="0" 584 y="-164.52205" 585 x="61.20113" 586 height="8.4674559" 587 width="10.898814" 588 id="rect3629" 589 style="fill:url(#linearGradient3231);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.22957045;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> 590 <rect 591 transform="matrix(-1,1.1221729e-5,0,-1,0,0)" 592 rx="6.5451131" 593 ry="0" 594 y="-73.314606" 595 x="-166.76534" 596 height="1.1871308" 597 width="13.090226" 598 id="rect3631" 599 style="fill:url(#linearGradient3228);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.22957045;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> 628 600 <path 629 style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0. 99190265px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"630 d="M 187,479.85412 C 187,489.69283 187,499.53154 187,509.37024"601 style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.85444307px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" 602 d="M 54.387932,11.723871 C 54.387932,22.250895 54.387932,32.777926 54.387932,43.304935" 631 603 id="path2220" /> 632 604 <path 633 style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0. 96354789px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"634 d="M 214.86197,499.04145 C 214.86197,508.3257 214.86197,517.60994 214.86197,526.89418"605 style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.83001781px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" 606 d="M 73.71084,32.253546 C 73.71084,42.187325 73.71084,52.121089 73.71084,62.054853" 635 607 id="path2222" /> 636 608 <path 637 609 id="path2226" 638 d="M 242.86197,479.04145 C 242.86197,488.3257 242.86197,497.60994 242.86197,506.89418"639 style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0. 96354789px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />610 d="M 93.129472,12.316297 C 93.129472,22.250076 93.129472,32.18384 93.129472,42.117604" 611 style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.83001781px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> 640 612 <path 641 613 id="path2230" 642 d="M 270.86197,499.04145 C 270.86197,508.3257 270.86197,517.60994 270.86197,526.89418"643 style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0. 96354789px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />614 d="M 112.5481,32.253546 C 112.5481,42.187325 112.5481,52.121089 112.5481,62.054853" 615 style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.83001781px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> 644 616 <path 645 style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0. 96354789px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"646 d="M 298.86197,479.04145 C 298.86197,488.3257 298.86197,497.60994 298.86197,506.89418"617 style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.83001781px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" 618 d="M 131.96674,12.316297 C 131.96674,22.250076 131.96674,32.18384 131.96674,42.117604" 647 619 id="path2234" /> 648 620 <path 649 style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0. 96354789px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"650 d="M 326.86197,499.04145 C 326.86197,508.3257 326.86197,517.60994 326.86197,526.89418"621 style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.83001781px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" 622 d="M 151.38537,32.253546 C 151.38537,42.187325 151.38537,52.121089 151.38537,62.054853" 651 623 id="path2239" /> 624 <rect 625 style="fill:#280b0b;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.22957045;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 626 id="rect3219" 627 width="60.954746" 628 height="1.318965" 629 x="-67.084137" 630 y="170.19449" 631 ry="0" 632 rx="30.477373" 633 transform="matrix(0,-1,1,0,0,0)" /> 652 634 </svg> -
trunk/eml/icon/Sink.svg
r621 r632 13 13 sodipodi:version="0.32" 14 14 inkscape:version="0.46" 15 width=" 210mm"16 height=" 297mm"15 width="113.04742" 16 height="49.879261" 17 17 sodipodi:docbase="/home/paula/BibliotecaSVN/eml" 18 18 sodipodi:docname="Sink.svg" 19 inkscape:export-filename="/media/sdb5/gerson/projetos/repositorio/biblioteca/ branches/gui/eml/icon/Sink.png"19 inkscape:export-filename="/media/sdb5/gerson/projetos/repositorio/biblioteca/trunk/eml/icon/Sink.png" 20 20 inkscape:export-xdpi="108.27314" 21 21 inkscape:export-ydpi="108.27314" 22 22 inkscape:output_extension="org.inkscape.output.svg.inkscape" 23 sodipodi:modified="true"> 23 sodipodi:modified="true" 24 version="1.0"> 24 25 <metadata 25 26 id="metadata2089"> … … 339 340 id="linearGradient1980" 340 341 gradientUnits="userSpaceOnUse" 341 x1="310.3672 3"342 y1="546.5855 3"342 x1="310.36722" 343 y1="546.58551" 343 344 x2="357.78821" 344 y2="546.5855 3"345 y2="546.58551" 345 346 gradientTransform="matrix(0.768134,0,0,0.811376,183.7375,267.6279)" /> 346 347 <linearGradient … … 398 399 gradientUnits="userSpaceOnUse" 399 400 gradientTransform="matrix(0.768134,0,0,0.811376,183.7375,267.6279)" 400 x1="310.3672 3"401 y1="546.5855 3"401 x1="310.36722" 402 y1="546.58551" 402 403 x2="357.78821" 403 y2="546.5855 3" />404 y2="546.58551" /> 404 405 <linearGradient 405 406 inkscape:collect="always" … … 408 409 gradientUnits="userSpaceOnUse" 409 410 gradientTransform="matrix(0.768134,0,0,0.811376,183.7375,267.6279)" 410 x1="310.3672 3"411 y1="546.5855 3"411 x1="310.36722" 412 y1="546.58551" 412 413 x2="357.78821" 413 y2="546.5855 3" />414 y2="546.58551" /> 414 415 <linearGradient 415 416 inkscape:collect="always" … … 619 620 </defs> 620 621 <sodipodi:namedview 621 inkscape:window-height="9 30"622 inkscape:window-height="926" 622 623 inkscape:window-width="1258" 623 624 inkscape:pageshadow="2" 624 inkscape:pageopacity="0.0 "625 inkscape:pageopacity="0.05882353" 625 626 guidetolerance="10.0" 626 627 gridtolerance="10.0" … … 630 631 pagecolor="#ffffff" 631 632 id="base" 632 showgrid=" true"633 inkscape:zoom=" 6.1432628"634 inkscape:cx=" 346.00755"635 inkscape:cy=" 433.51672"633 showgrid="false" 634 inkscape:zoom="4.3439428" 635 inkscape:cx="92.283632" 636 inkscape:cy="9.9383979" 636 637 inkscape:window-x="6" 637 inkscape:window-y=" 26"638 inkscape:window-y="44" 638 639 inkscape:current-layer="g6591" 639 640 showguides="true" 640 inkscape:guide-bbox="true"> 641 inkscape:guide-bbox="true" 642 showborder="false" 643 borderlayer="false" 644 inkscape:showpageshadow="false"> 641 645 <inkscape:grid 642 646 type="xygrid" 643 id="grid3216" /> 647 id="grid3216" 648 visible="true" 649 enabled="true" /> 644 650 </sodipodi:namedview> 645 651 <g 646 id="g6591"> 652 id="g6591" 653 transform="translate(-293.08037,-578.06465)"> 647 654 <path 648 style="fill:url(#linearGradient3214);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width: 1.97904956;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"655 style="fill:url(#linearGradient3214);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" 649 656 d="M 381.13596,579.39071 L 405.13826,601.18008 L 381.13597,626.80232 L 294.06989,626.95438 L 313.92953,601.18008 L 294.79795,579.05417 L 381.13596,579.39071 z" 650 657 id="rect2097" … … 652 659 <text 653 660 xml:space="preserve" 654 style="font-size:14px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width: 1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"661 style="font-size:14px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans;stroke-miterlimit:4;stroke-dasharray:none" 655 662 x="332.86008" 656 663 y="605.68774" -
trunk/eml/icon/Source.svg
r550 r632 13 13 sodipodi:version="0.32" 14 14 inkscape:version="0.46" 15 width=" 210mm"16 height=" 297mm"15 width="113.04742" 16 height="49.879261" 17 17 sodipodi:docbase="/home/paula/BibliotecaSVN/eml" 18 18 sodipodi:docname="Source.svg" 19 inkscape:export-filename="/ home/bicca/apps/repositorio/biblioteca/trunk/eml/icon/energy_source.png"19 inkscape:export-filename="/media/sdb5/gerson/projetos/repositorio/biblioteca/trunk/eml/icon/Source.png" 20 20 inkscape:export-xdpi="108.27314" 21 21 inkscape:export-ydpi="108.27314" 22 22 inkscape:output_extension="org.inkscape.output.svg.inkscape" 23 sodipodi:modified="true"> 23 sodipodi:modified="true" 24 version="1.0"> 24 25 <metadata 25 26 id="metadata2089"> … … 339 340 id="linearGradient1980" 340 341 gradientUnits="userSpaceOnUse" 341 x1="310.3672 3"342 y1="546.5855 3"342 x1="310.36722" 343 y1="546.58551" 343 344 x2="357.78821" 344 y2="546.5855 3"345 y2="546.58551" 345 346 gradientTransform="matrix(0.768134,0,0,0.811376,183.7375,267.6279)" /> 346 347 <linearGradient … … 398 399 gradientUnits="userSpaceOnUse" 399 400 gradientTransform="matrix(0.768134,0,0,0.811376,183.7375,267.6279)" 400 x1="310.3672 3"401 y1="546.5855 3"401 x1="310.36722" 402 y1="546.58551" 402 403 x2="357.78821" 403 y2="546.5855 3" />404 y2="546.58551" /> 404 405 <linearGradient 405 406 inkscape:collect="always" … … 408 409 gradientUnits="userSpaceOnUse" 409 410 gradientTransform="matrix(0.768134,0,0,0.811376,183.7375,267.6279)" 410 x1="310.3672 3"411 y1="546.5855 3"411 x1="310.36722" 412 y1="546.58551" 412 413 x2="357.78821" 413 y2="546.5855 3" />414 y2="546.58551" /> 414 415 <linearGradient 415 416 inkscape:collect="always" … … 619 620 </defs> 620 621 <sodipodi:namedview 621 inkscape:window-height="9 30"622 inkscape:window-width="12 80"622 inkscape:window-height="926" 623 inkscape:window-width="1268" 623 624 inkscape:pageshadow="2" 624 625 inkscape:pageopacity="0.0" … … 630 631 pagecolor="#ffffff" 631 632 id="base" 632 showgrid=" true"633 inkscape:zoom=" 6.1432628"634 inkscape:cx=" 346.00755"635 inkscape:cy=" 433.51672"633 showgrid="false" 634 inkscape:zoom="4.3439428" 635 inkscape:cx="105.25345" 636 inkscape:cy="-8.4780477" 636 637 inkscape:window-x="0" 637 inkscape:window-y=" 69"638 inkscape:window-y="44" 638 639 inkscape:current-layer="g6591" 639 640 showguides="true" 640 inkscape:guide-bbox="true"> 641 inkscape:guide-bbox="true" 642 showborder="false" 643 inkscape:showpageshadow="false"> 641 644 <inkscape:grid 642 645 type="xygrid" 643 id="grid3216" /> 646 id="grid3216" 647 visible="true" 648 enabled="true" /> 644 649 </sodipodi:namedview> 645 650 <g 646 id="g6591"> 651 id="g6591" 652 transform="translate(-293.08037,-578.06465)"> 647 653 <path 648 style="fill:url(#linearGradient3214);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width: 1.97904956;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"654 style="fill:url(#linearGradient3214);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" 649 655 d="M 381.13596,579.39071 L 405.13826,601.18008 L 381.13597,626.80232 L 294.06989,626.95438 L 313.92953,601.18008 L 294.79795,579.05417 L 381.13596,579.39071 z" 650 656 id="rect2097" … … 652 658 <text 653 659 xml:space="preserve" 654 style="font-size:14px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width: 1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"660 style="font-size:14px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans;stroke-miterlimit:4;stroke-dasharray:none" 655 661 x="327" 656 662 y="605.36218" -
trunk/eml/icon/energy_source.svg
r621 r632 13 13 sodipodi:version="0.32" 14 14 inkscape:version="0.46" 15 width=" 210mm"16 height=" 297mm"15 width="113.04742" 16 height="62.906914" 17 17 sodipodi:docbase="/home/paula/BibliotecaSVN/eml" 18 18 sodipodi:docname="energy_source.svg" … … 21 21 inkscape:export-ydpi="108.27314" 22 22 inkscape:output_extension="org.inkscape.output.svg.inkscape" 23 sodipodi:modified="true"> 23 sodipodi:modified="true" 24 version="1.0"> 24 25 <metadata 25 26 id="metadata2089"> … … 339 340 id="linearGradient1980" 340 341 gradientUnits="userSpaceOnUse" 341 x1="310.3672 3"342 y1="546.5855 3"342 x1="310.36722" 343 y1="546.58551" 343 344 x2="357.78821" 344 y2="546.5855 3"345 y2="546.58551" 345 346 gradientTransform="matrix(0.768134,0,0,0.811376,183.7375,267.6279)" /> 346 347 <linearGradient … … 398 399 gradientUnits="userSpaceOnUse" 399 400 gradientTransform="matrix(0.768134,0,0,0.811376,183.7375,267.6279)" 400 x1="310.3672 3"401 y1="546.5855 3"401 x1="310.36722" 402 y1="546.58551" 402 403 x2="357.78821" 403 y2="546.5855 3" />404 y2="546.58551" /> 404 405 <linearGradient 405 406 inkscape:collect="always" … … 408 409 gradientUnits="userSpaceOnUse" 409 410 gradientTransform="matrix(0.768134,0,0,0.811376,183.7375,267.6279)" 410 x1="310.3672 3"411 y1="546.5855 3"411 x1="310.36722" 412 y1="546.58551" 412 413 x2="357.78821" 413 y2="546.5855 3" />414 y2="546.58551" /> 414 415 <linearGradient 415 416 inkscape:collect="always" … … 619 620 </defs> 620 621 <sodipodi:namedview 621 inkscape:window-height="9 30"622 inkscape:window-width="12 80"622 inkscape:window-height="926" 623 inkscape:window-width="1268" 623 624 inkscape:pageshadow="2" 624 625 inkscape:pageopacity="0.0" … … 630 631 pagecolor="#ffffff" 631 632 id="base" 632 showgrid=" true"633 inkscape:zoom=" 3.0716314"634 inkscape:cx=" 346.00755"635 inkscape:cy=" 433.51672"633 showgrid="false" 634 inkscape:zoom="4.3439428" 635 inkscape:cx="59.336548" 636 inkscape:cy="11.247215" 636 637 inkscape:window-x="0" 637 inkscape:window-y=" 67"638 inkscape:window-y="44" 638 639 inkscape:current-layer="g6591" 639 640 showguides="true" 640 inkscape:guide-bbox="true"> 641 inkscape:guide-bbox="true" 642 inkscape:showpageshadow="false" 643 showborder="false"> 641 644 <inkscape:grid 642 645 type="xygrid" 643 id="grid3216" /> 646 id="grid3216" 647 visible="true" 648 enabled="true" /> 644 649 </sodipodi:namedview> 645 650 <g 646 id="g6591"> 651 id="g6591" 652 transform="translate(-293.08037,-578.06465)"> 647 653 <path 648 style="fill:url(#linearGradient3214);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width: 1.97904956;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"654 style="fill:url(#linearGradient3214);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" 649 655 d="M 381.13596,579.39071 L 405.13826,601.18008 L 381.13597,626.80232 L 294.06989,626.95438 L 313.92953,601.18008 L 294.79795,579.05417 L 381.13596,579.39071 z" 650 656 id="rect2097" … … 652 658 <text 653 659 xml:space="preserve" 654 style="font-size:14px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width: 1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"660 style="font-size:14px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans;stroke-miterlimit:4;stroke-dasharray:none" 655 661 x="327" 656 662 y="605.36218" … … 662 668 <text 663 669 xml:space="preserve" 664 style="font-size:28px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width: 1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"670 style="font-size:28px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans;stroke-miterlimit:4;stroke-dasharray:none" 665 671 x="335" 666 672 y="637.36218" … … 670 676 x="335" 671 677 y="637.36218">Q</tspan></text> 678 <path 679 sodipodi:type="arc" 680 style="opacity:0.97000002;fill:#f9f9f9;fill-opacity:1;stroke:#000000;stroke-width:0.30000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" 681 id="path3229" 682 sodipodi:cx="53.522804" 683 sodipodi:cy="48.519062" 684 sodipodi:rx="5.6400375" 685 sodipodi:ry="2.4171588" 686 d="M 59.162842,48.519062 A 5.6400375,2.4171588 0 1 1 47.882767,48.519062 A 5.6400375,2.4171588 0 1 1 59.162842,48.519062 z" 687 transform="matrix(1.2376349,0,0,3.3640054,279.78597,463.94084)" /> 672 688 </g> 673 689 </svg> -
trunk/eml/icon/work_source.svg
r622 r632 13 13 sodipodi:version="0.32" 14 14 inkscape:version="0.46" 15 width=" 210mm"16 height=" 297mm"15 width="113.04742" 16 height="59.297539" 17 17 sodipodi:docbase="/home/paula/BibliotecaSVN/eml" 18 18 sodipodi:docname="work_source.svg" 19 inkscape:export-filename=" C:\Documents and Settings\bicca\Desktop\figura.png"19 inkscape:export-filename="/media/sdb5/gerson/projetos/repositorio/biblioteca/trunk/eml/icon/work_source.png" 20 20 inkscape:export-xdpi="108.27314" 21 21 inkscape:export-ydpi="108.27314" 22 22 inkscape:output_extension="org.inkscape.output.svg.inkscape" 23 sodipodi:modified="true"> 23 sodipodi:modified="true" 24 version="1.0"> 24 25 <metadata 25 26 id="metadata2089"> … … 339 340 id="linearGradient1980" 340 341 gradientUnits="userSpaceOnUse" 341 x1="310.3672 3"342 y1="546.5855 3"342 x1="310.36722" 343 y1="546.58551" 343 344 x2="357.78821" 344 y2="546.5855 3"345 y2="546.58551" 345 346 gradientTransform="matrix(0.768134,0,0,0.811376,183.7375,267.6279)" /> 346 347 <linearGradient … … 398 399 gradientUnits="userSpaceOnUse" 399 400 gradientTransform="matrix(0.768134,0,0,0.811376,183.7375,267.6279)" 400 x1="310.3672 3"401 y1="546.5855 3"401 x1="310.36722" 402 y1="546.58551" 402 403 x2="357.78821" 403 y2="546.5855 3" />404 y2="546.58551" /> 404 405 <linearGradient 405 406 inkscape:collect="always" … … 408 409 gradientUnits="userSpaceOnUse" 409 410 gradientTransform="matrix(0.768134,0,0,0.811376,183.7375,267.6279)" 410 x1="310.3672 3"411 y1="546.5855 3"411 x1="310.36722" 412 y1="546.58551" 412 413 x2="357.78821" 413 y2="546.5855 3" />414 y2="546.58551" /> 414 415 <linearGradient 415 416 inkscape:collect="always" … … 619 620 </defs> 620 621 <sodipodi:namedview 621 inkscape:window-height="9 30"622 inkscape:window-width="12 80"622 inkscape:window-height="926" 623 inkscape:window-width="1268" 623 624 inkscape:pageshadow="2" 624 625 inkscape:pageopacity="0.0" … … 630 631 pagecolor="#ffffff" 631 632 id="base" 632 showgrid=" true"633 inkscape:zoom=" 3.0716314"634 inkscape:cx=" 346.00755"635 inkscape:cy=" 433.51672"633 showgrid="false" 634 inkscape:zoom="8.6878856" 635 inkscape:cx="50.259866" 636 inkscape:cy="31.339382" 636 637 inkscape:window-x="0" 637 inkscape:window-y=" 22"638 inkscape:window-y="44" 638 639 inkscape:current-layer="g6591" 639 640 showguides="true" 640 inkscape:guide-bbox="true"> 641 inkscape:guide-bbox="true" 642 showborder="false" 643 inkscape:showpageshadow="false"> 641 644 <inkscape:grid 642 645 type="xygrid" 643 id="grid3216" /> 646 id="grid3216" 647 visible="true" 648 enabled="true" /> 644 649 </sodipodi:namedview> 645 650 <g 646 id="g6591"> 651 id="g6591" 652 transform="translate(-293.08037,-578.06465)"> 647 653 <path 648 style="fill:url(#linearGradient3214);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width: 1.97904956;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"654 style="fill:url(#linearGradient3214);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" 649 655 d="M 381.13596,579.39071 L 405.13826,601.18008 L 381.13597,626.80232 L 294.06989,626.95438 L 313.92953,601.18008 L 294.79795,579.05417 L 381.13596,579.39071 z" 650 656 id="rect2097" -
trunk/eml/pressure_changers/icon/CentrifugalCompressor.svg
r616 r632 13 13 sodipodi:version="0.32" 14 14 inkscape:version="0.46" 15 width=" 210mm"16 height="2 97mm"15 width="323.70724" 16 height="228.38554" 17 17 sodipodi:docbase="C:\Documents and Settings\Administrador\Meus documentos\Bolsa Simulação\Desenhos Prontos 4" 18 18 sodipodi:docname="CentrifugalCompressor.svg" 19 19 inkscape:output_extension="org.inkscape.output.svg.inkscape" 20 inkscape:export-filename="/media/sdb5/gerson/projetos/repositorio/biblioteca/trunk/eml/pressure_changers/icon/ CentrifugalCompressor.png"20 inkscape:export-filename="/media/sdb5/gerson/projetos/repositorio/biblioteca/trunk/eml/pressure_changers/icon/expander.png" 21 21 inkscape:export-xdpi="108" 22 inkscape:export-ydpi="108"> 22 inkscape:export-ydpi="108" 23 version="1.0"> 23 24 <metadata 24 25 id="metadata2129"> … … 37 38 inkscape:stockid="EmptyTriangleOutL" 38 39 orient="auto" 39 refY="0 .0"40 refX="0 .0"40 refY="0" 41 refX="0" 41 42 id="EmptyTriangleOutL" 42 43 style="overflow:visible"> 43 44 <path 44 45 id="path3328" 45 d="M 5.77,0 .0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z"46 style="fill -rule:evenodd;fill:#FFFFFF;stroke:#000000;stroke-width:1.0pt;marker-start:none"47 transform=" scale(0.8) translate(-6,0)" />46 d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z" 47 style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" 48 transform="matrix(0.8,0,0,0.8,-4.8,0)" /> 48 49 </marker> 49 50 <marker 50 51 inkscape:stockid="EmptyTriangleInL" 51 52 orient="auto" 52 refY="0 .0"53 refX="0 .0"53 refY="0" 54 refX="0" 54 55 id="EmptyTriangleInL" 55 56 style="overflow:visible"> 56 57 <path 57 58 id="path3319" 58 d="M 5.77,0 .0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z"59 style="fill -rule:evenodd;fill:#FFFFFF;stroke:#000000;stroke-width:1.0pt;marker-start:none"60 transform=" scale(-0.8) translate(-6,0)" />59 d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z" 60 style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" 61 transform="matrix(-0.8,0,0,-0.8,4.8,0)" /> 61 62 </marker> 62 63 <inkscape:perspective … … 97 98 xlink:href="#linearGradient6760" 98 99 id="linearGradient3919" 100 x1="420.80212" 101 y1="592.51276" 102 x2="422.44012" 103 y2="392.2114" 104 gradientUnits="userSpaceOnUse" 105 gradientTransform="matrix(1.5321645,0,0,0.9953023,-414.20174,-388.04911)" /> 106 <linearGradient 107 inkscape:collect="always" 108 xlink:href="#linearGradient6760" 109 id="linearGradient3178" 110 gradientUnits="userSpaceOnUse" 111 gradientTransform="matrix(-0.3047711,0,0,-0.2196751,213.08136,208.55142)" 99 112 x1="420.34665" 100 y1="5 94.36218"113 y1="581.74152" 101 114 x2="421.98465" 102 y2="390.36218" 115 y2="411.39658" /> 116 <linearGradient 117 inkscape:collect="always" 118 xlink:href="#linearGradient6760" 119 id="linearGradient3182" 103 120 gradientUnits="userSpaceOnUse" 104 gradientTransform="matrix(1.5321645,0,0,0.9953023,-227.34481,2.8065289)" /> 121 gradientTransform="matrix(-0.3047711,0,0,-0.2196751,202.7303,208.26456)" 122 x1="420.34665" 123 y1="581.74152" 124 x2="421.98465" 125 y2="411.39658" /> 126 <linearGradient 127 inkscape:collect="always" 128 xlink:href="#linearGradient6760" 129 id="linearGradient3186" 130 gradientUnits="userSpaceOnUse" 131 gradientTransform="matrix(-0.3047711,0,0,-0.2196751,190.35863,208.01601)" 132 x1="420.34665" 133 y1="581.74152" 134 x2="421.98465" 135 y2="411.39658" /> 105 136 </defs> 106 137 <sodipodi:namedview 107 138 inkscape:window-height="900" 108 inkscape:window-width="12 80"139 inkscape:window-width="1268" 109 140 inkscape:pageshadow="2" 110 141 inkscape:pageopacity="0.0" … … 117 148 id="base" 118 149 showgrid="true" 119 inkscape:zoom=" 2.026521"120 inkscape:cx=" 372.04724"121 inkscape:cy=" 556.47932"150 inkscape:zoom="1.4329668" 151 inkscape:cx="193.42492" 152 inkscape:cy="67.982288" 122 153 inkscape:window-x="0" 123 inkscape:window-y="88" 124 inkscape:current-layer="svg2124" /> 154 inkscape:window-y="44" 155 inkscape:current-layer="svg2124" 156 showborder="false" 157 inkscape:showpageshadow="false" /> 125 158 <path 126 style="fill:url(#linearGradient3919);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width: 4.93958187;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"127 d="M 293.5913,413.23147 L 293.5913,592.38585 L 508.09438,532.66772 L 508.09438,453.04356 L 293.5913,393.32543 L 293.5913,413.23147 L 293.5913,413.23147"159 style="fill:url(#linearGradient3919);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.29999999999999999;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 160 d="M 106.73437,22.375831 L 106.73437,201.53021 L 321.23745,141.81208 L 321.23745,62.187921 L 106.73437,2.4697909 L 106.73437,22.375831 L 106.73437,22.375831" 128 161 id="path2131" /> 129 162 <path 130 163 style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.8903805;stroke-linecap:square;stroke-linejoin:miter;marker-end:url(#EmptyTriangleOutL);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 131 d="M 496.44274,447.49923 C 495.9383,419.45605 495.9383,419.45605 495.9383,419.45605"164 d="M 309.58581,56.643591 C 309.08137,28.600411 309.08137,28.600411 309.08137,28.600411" 132 165 id="path2392" /> 133 166 <path 134 167 style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.8903805;stroke-linecap:square;stroke-linejoin:miter;marker-end:url(#EmptyTriangleOutL);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 135 d="M 309.66003,618.29599 C 309.15559,590.25281 309.15559,590.25281 309.15559,590.25281"168 d="M 122.8031,227.44035 C 122.29866,199.39717 122.29866,199.39717 122.29866,199.39717" 136 169 id="path4465" /> 137 170 <path 138 style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3.47918963;stroke-linecap:square;stroke-linejoin:miter;marker-end:url(#EmptyTriangleOutL);stroke-miterlimit:4;stroke-dasharray:6.95837932, 6.95837932;stroke-dashoffset:0;stroke-opacity:1" 139 d="M 188.59652,494.78612 C 293.01679,495.24509 293.01679,495.24509 293.01679,495.24509" 140 id="path4467" /> 171 style="fill:url(#linearGradient3178);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.06285913;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 172 d="M 109.45915,117.96571 L 109.45915,78.424202 L 66.791207,91.604713 L 66.791207,109.17871 L 109.45915,122.35922 L 109.45915,117.96571 L 109.45915,117.96571" 173 id="path3176" 174 sodipodi:nodetypes="ccccccc" /> 175 <path 176 style="fill:url(#linearGradient3182);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.06285913;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 177 d="M 99.108098,117.67886 L 99.108098,78.137348 L 56.44015,91.317859 L 56.44015,108.89186 L 99.108098,122.07236 L 99.108098,117.67886 L 99.108098,117.67886" 178 id="path3180" /> 179 <path 180 style="fill:url(#linearGradient3186);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.06285913;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 181 d="M 86.736424,117.43031 L 86.736424,77.888799 L 44.068477,91.06931 L 44.068477,108.64331 L 86.736424,121.82381 L 86.736424,117.43031 L 86.736424,117.43031" 182 id="path3184" /> 141 183 </svg> -
trunk/eml/pressure_changers/icon/expander.svg
r625 r632 13 13 sodipodi:version="0.32" 14 14 inkscape:version="0.46" 15 width=" 210mm"16 height="2 97mm"15 width="323.70724" 16 height="228.38554" 17 17 sodipodi:docbase="C:\Documents and Settings\Administrador\Meus documentos\Bolsa Simulação\Desenhos Prontos 4" 18 sodipodi:docname=" HidraulicTurbine.svg"18 sodipodi:docname="expander.svg" 19 19 inkscape:output_extension="org.inkscape.output.svg.inkscape" 20 inkscape:export-filename=" D:\Apps\repositorio\branches\gui\eml\pressure_changers\icon\CentrifugalCompressor.png"20 inkscape:export-filename="/media/sdb5/gerson/projetos/repositorio/biblioteca/trunk/eml/pressure_changers/icon/expander.png" 21 21 inkscape:export-xdpi="108" 22 inkscape:export-ydpi="108"> 22 inkscape:export-ydpi="108" 23 version="1.0"> 23 24 <metadata 24 25 id="metadata2129"> … … 37 38 inkscape:stockid="EmptyTriangleOutL" 38 39 orient="auto" 39 refY="0 .0"40 refX="0 .0"40 refY="0" 41 refX="0" 41 42 id="EmptyTriangleOutL" 42 43 style="overflow:visible"> 43 44 <path 44 45 id="path3328" 45 d="M 5.77,0 .0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z"46 style="fill -rule:evenodd;fill:#FFFFFF;stroke:#000000;stroke-width:1.0pt;marker-start:none"47 transform=" scale(0.8) translate(-6,0)" />46 d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z" 47 style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" 48 transform="matrix(0.8,0,0,0.8,-4.8,0)" /> 48 49 </marker> 49 50 <marker 50 51 inkscape:stockid="EmptyTriangleInL" 51 52 orient="auto" 52 refY="0 .0"53 refX="0 .0"53 refY="0" 54 refX="0" 54 55 id="EmptyTriangleInL" 55 56 style="overflow:visible"> 56 57 <path 57 58 id="path3319" 58 d="M 5.77,0 .0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z"59 style="fill -rule:evenodd;fill:#FFFFFF;stroke:#000000;stroke-width:1.0pt;marker-start:none"60 transform=" scale(-0.8) translate(-6,0)" />59 d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z" 60 style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" 61 transform="matrix(-0.8,0,0,-0.8,4.8,0)" /> 61 62 </marker> 62 63 <inkscape:perspective … … 97 98 xlink:href="#linearGradient6760" 98 99 id="linearGradient3919" 100 x1="420.80212" 101 y1="592.51276" 102 x2="422.44012" 103 y2="392.2114" 104 gradientUnits="userSpaceOnUse" 105 gradientTransform="matrix(-1.5321645,0,0,0.9953023,779.59517,-388.04911)" /> 106 <linearGradient 107 inkscape:collect="always" 108 xlink:href="#linearGradient6760" 109 id="linearGradient3178" 110 gradientUnits="userSpaceOnUse" 111 gradientTransform="matrix(0.3047711,0,0,-0.2196751,152.31207,208.55142)" 99 112 x1="420.34665" 100 y1="5 94.36218"113 y1="581.74152" 101 114 x2="421.98465" 102 y2="390.36218" 115 y2="411.39658" /> 116 <linearGradient 117 inkscape:collect="always" 118 xlink:href="#linearGradient6760" 119 id="linearGradient3182" 103 120 gradientUnits="userSpaceOnUse" 104 gradientTransform="matrix(-1.5321645,0,0,0.9953023,924.76591,2.8065289)" /> 121 gradientTransform="matrix(0.3047711,0,0,-0.2196751,162.66313,208.26456)" 122 x1="420.34665" 123 y1="581.74152" 124 x2="421.98465" 125 y2="411.39658" /> 126 <linearGradient 127 inkscape:collect="always" 128 xlink:href="#linearGradient6760" 129 id="linearGradient3186" 130 gradientUnits="userSpaceOnUse" 131 gradientTransform="matrix(0.3047711,0,0,-0.2196751,175.0348,208.01601)" 132 x1="420.34665" 133 y1="581.74152" 134 x2="421.98465" 135 y2="411.39658" /> 105 136 </defs> 106 137 <sodipodi:namedview 107 138 inkscape:window-height="900" 108 inkscape:window-width="12 80"139 inkscape:window-width="1268" 109 140 inkscape:pageshadow="2" 110 141 inkscape:pageopacity="0.0" … … 117 148 id="base" 118 149 showgrid="true" 119 inkscape:zoom=" 2.026521"120 inkscape:cx=" 372.04724"121 inkscape:cy=" 556.47932"150 inkscape:zoom="1.4329668" 151 inkscape:cx="193.42492" 152 inkscape:cy="67.982288" 122 153 inkscape:window-x="0" 123 inkscape:window-y="97" 124 inkscape:current-layer="svg2124" /> 154 inkscape:window-y="44" 155 inkscape:current-layer="svg2124" 156 showborder="false" 157 inkscape:showpageshadow="false" /> 125 158 <path 126 style="fill:url(#linearGradient3919);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width: 4.93958187;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"127 d="M 4 03.8298,413.23147 L 403.8298,592.38585 L 189.32672,532.66772 L 189.32672,453.04356 L 403.8298,393.32543 L 403.8298,413.23147 L 403.8298,413.23147"159 style="fill:url(#linearGradient3919);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 160 d="M 41.8125 61.71875 C 41.885417 88.625 41.958333 115.53125 42.03125 142.4375 C 114.51042 162.48958 186.98958 182.54167 259.46875 202.59375 C 260.11458 134.63542 260.76042 66.677083 261.40625 -1.28125 C 188.20833 19.71875 115.01042 40.71875 41.8125 61.71875 z " 128 161 id="path2131" /> 129 162 <path 130 163 style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.8903805;stroke-linecap:square;stroke-linejoin:miter;marker-end:url(#EmptyTriangleOutL);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 131 d="M 388.03074,589.78862 C 387.5263,617.8318 387.5263,617.8318 387.5263,617.8318"164 d="M 55.807617,28.600411 C 56.312057,56.643591 56.312057,56.643591 56.312057,56.643591" 132 165 id="path2392" /> 133 166 <path 134 167 style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.8903805;stroke-linecap:square;stroke-linejoin:miter;marker-end:url(#EmptyTriangleOutL);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 135 d="M 2 02.74724,418.06574 C 202.2428,446.10892 202.2428,446.10892 202.2428,446.10892"168 d="M 242.59033,199.39717 C 243.09477,227.44035 243.09477,227.44035 243.09477,227.44035" 136 169 id="path4465" /> 137 170 <path 138 style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3.47918963;stroke-linecap:square;stroke-linejoin:miter;marker-end:url(#EmptyTriangleOutL);stroke-miterlimit:4;stroke-dasharray:6.95837932, 6.95837932;stroke-dashoffset:0;stroke-opacity:1" 139 d="M 404.40431,495.48679 C 508.82458,495.02782 508.82458,495.02782 508.82458,495.02782" 140 id="path4467" /> 171 style="fill:url(#linearGradient3178);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.06285913;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 172 d="M 255.93428,117.96571 L 255.93428,78.424202 L 298.60222,91.604713 L 298.60222,109.17871 L 255.93428,122.35922 L 255.93428,117.96571 L 255.93428,117.96571" 173 id="path3176" 174 sodipodi:nodetypes="ccccccc" /> 175 <path 176 style="fill:url(#linearGradient3182);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.06285913;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 177 d="M 266.28533,117.67886 L 266.28533,78.137348 L 308.95328,91.317859 L 308.95328,108.89186 L 266.28533,122.07236 L 266.28533,117.67886 L 266.28533,117.67886" 178 id="path3180" /> 179 <path 180 style="fill:url(#linearGradient3186);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.06285913;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 181 d="M 278.657,117.43031 L 278.657,77.888799 L 321.32495,91.06931 L 321.32495,108.64331 L 278.657,121.82381 L 278.657,117.43031 L 278.657,117.43031" 182 id="path3184" /> 141 183 </svg> -
trunk/sample/heat_exchangers/Cooler_Diagram.pfd
r547 r632 13 13 <Time_End>100</Time_End> 14 14 <Time_Unit_Index>0</Time_Unit_Index> 15 <Time_Unit_Text>s</Time_Unit_Text>16 15 <Sparse_Algebra>1</Sparse_Algebra> 17 16 <Integration_Index>0</Integration_Index> … … 26 25 <View> 27 26 <Zoom_Level>1</Zoom_Level> 28 <Show_Grid> 1</Show_Grid>29 <Snap_to_Grid> 1</Snap_to_Grid>30 <Width> 947</Width>31 <Height>4 77</Height>27 <Show_Grid>0</Show_Grid> 28 <Snap_to_Grid>0</Snap_to_Grid> 29 <Width>1248</Width> 30 <Height>444</Height> 32 31 <X>0</X> 33 32 <Y>0</Y> … … 35 34 <View> 36 35 <Zoom_Level>1</Zoom_Level> 37 <Show_Grid> 1</Show_Grid>38 <Snap_to_Grid> 1</Snap_to_Grid>39 <Width> 947</Width>36 <Show_Grid>0</Show_Grid> 37 <Snap_to_Grid>0</Snap_to_Grid> 38 <Width>1248</Width> 40 39 <Height>0</Height> 41 40 <X>0</X> … … 46 45 <Id_String>source_1</Id_String> 47 46 <Block_Name>source_1</Block_Name> 48 <Image_File_Name>/ home/bicca/apps/repositorio/biblioteca/trunk/eml/icon/Source.png</Image_File_Name>47 <Image_File_Name>/media/sdb5/gerson/projetos/repositorio/biblioteca/trunk/eml/icon/Source.png</Image_File_Name> 49 48 <X>94</X> 50 49 <Y>25</Y> … … 61 60 <Model_Name>stream</Model_Name> 62 61 <T_Connection>2</T_Connection> 63 <Variables> 64 <Desc>Outlet.F</Desc> 65 <Index>0</Index> 66 <Values>10</Values> 67 <Status>1</Status> 68 <Unit>kmol/h</Unit> 69 </Variables> 70 <Variables> 71 <Desc>Outlet.T</Desc> 72 <Index>0</Index> 73 <Values>(66+273)</Values> 74 <Status>1</Status> 75 <Unit>K</Unit> 76 </Variables> 77 <Variables> 78 <Desc>Outlet.P</Desc> 79 <Index>0</Index> 80 <Values>3</Values> 81 <Status>1</Status> 82 <Unit>atm</Unit> 83 </Variables> 84 <Variables> 85 <Desc>Outlet.z</Desc> 62 </Block_Properties> 63 </Base_Models> 64 <Model_File_Path>streams</Model_File_Path> 65 <Instance_Id>Outlet.</Instance_Id> 66 <Model_Name>Outlet</Model_Name> 67 <T_Connection>2</T_Connection> 68 </Block_Properties> 69 </Sub_Models> 70 <Model_File_Path>streams</Model_File_Path> 71 <Instance_Id></Instance_Id> 72 <Model_Name>source</Model_Name> 73 <T_Connection>0</T_Connection> 74 <Parameters> 75 <Desc>PP</Desc> 76 <Index>0</Index> 77 <Values>PP</Values> 78 <Status>0</Status> 79 </Parameters> 80 <Parameters> 81 <Desc>ValidPhases</Desc> 82 <Index>0</Index> 83 <Values>Vapour-Liquid</Values> 84 <Status>4</Status> 85 </Parameters> 86 <Variables> 87 <Desc>Composition</Desc> 86 88 <Index>0</Index> 87 89 <Values>0.5</Values> … … 94 96 <Status>1</Status> 95 97 </Variables> 96 </Block_Properties> 97 </Base_Models> 98 <Model_File_Path>streams</Model_File_Path> 99 <Instance_Id>Outlet.</Instance_Id> 100 <Model_Name>Outlet</Model_Name> 101 <T_Connection>2</T_Connection> 102 </Block_Properties> 103 </Sub_Models> 104 <Model_File_Path>streams</Model_File_Path> 105 <Instance_Id></Instance_Id> 106 <Model_Name>source</Model_Name> 107 <T_Connection>0</T_Connection> 98 <Variables> 99 <Desc>Fw</Desc> 100 <Index>0</Index> 101 <Values>749.552</Values> 102 <Status>1</Status> 103 <Unit>kg/h</Unit> 104 </Variables> 105 <Variables> 106 <Desc>T_Cdeg</Desc> 107 <Index>0</Index> 108 <Values>65.85</Values> 109 <Status>1</Status> 110 <Unit>K</Unit> 111 </Variables> 112 <Variables> 113 <Desc>P</Desc> 114 <Index>0</Index> 115 <Values>3</Values> 116 <Status>1</Status> 117 <Unit>atm</Unit> 118 </Variables> 108 119 </Block_Properties> 109 120 </Block> … … 112 123 <Id_String>sink_1</Id_String> 113 124 <Block_Name>sink_1</Block_Name> 114 <Image_File_Name>/ home/bicca/apps/repositorio/biblioteca/trunk/eml/icon/Sink.png</Image_File_Name>125 <Image_File_Name>/media/sdb5/gerson/projetos/repositorio/biblioteca/trunk/eml/icon/Sink.png</Image_File_Name> 115 126 <X>663</X> 116 127 <Y>269</Y> … … 139 150 <Model_Name>sink</Model_Name> 140 151 <T_Connection>0</T_Connection> 152 <Parameters> 153 <Desc>PP</Desc> 154 <Index>0</Index> 155 <Values>PP</Values> 156 <Status>0</Status> 157 </Parameters> 141 158 </Block_Properties> 142 159 </Block> … … 144 161 <Type>energy_source</Type> 145 162 <Id_String>energy_source_1</Id_String> 146 <Block_Name> Heat</Block_Name>147 <Image_File_Name>/ home/bicca/apps/repositorio/biblioteca/trunk/eml/icon/energy_source.png</Image_File_Name>148 <X> 412</X>149 <Y> 366</Y>163 <Block_Name>energy_source_1</Block_Name> 164 <Image_File_Name>/media/sdb5/gerson/projetos/repositorio/biblioteca/trunk/eml/icon/energy_source.png</Image_File_Name> 165 <X>147</X> 166 <Y>263</Y> 150 167 <Z>0</Z> 151 168 <Width>72.5</Width> … … 178 195 <Id_String>cooler_1</Id_String> 179 196 <Block_Name>cooler_1</Block_Name> 180 <Image_File_Name>/ home/bicca/apps/repositorio/biblioteca/trunk/eml/heat_exchangers/icon/cooler.png</Image_File_Name>197 <Image_File_Name>/media/sdb5/gerson/projetos/repositorio/biblioteca/trunk/eml/heat_exchangers/icon/cooler.png</Image_File_Name> 181 198 <X>342</X> 182 199 <Y>101</Y> … … 192 209 <Block_Properties> 193 210 <Model_File_Path>streams</Model_File_Path> 194 <Instance_Id>Inlet (1).</Instance_Id>211 <Instance_Id>Inlet.</Instance_Id> 195 212 <Model_Name>stream</Model_Name> 196 213 <T_Connection>1</T_Connection> … … 198 215 </Base_Models> 199 216 <Model_File_Path>heat_exchangers/heater</Model_File_Path> 200 <Instance_Id>Inlet (1).</Instance_Id>217 <Instance_Id>Inlet.</Instance_Id> 201 218 <Model_Name>Inlet</Model_Name> 202 219 <T_Connection>1</T_Connection> … … 216 233 <Desc>Outlet.T</Desc> 217 234 <Index>0</Index> 218 <Values>( 30+273)</Values>235 <Values>(25+273)</Values> 219 236 <Status>1</Status> 220 237 <Unit>K</Unit> … … 226 243 <Model_Name>streamPH</Model_Name> 227 244 <T_Connection>2</T_Connection> 245 <Parameters> 246 <Desc>Outlet.PP</Desc> 247 <Index>0</Index> 248 <Values>PP</Values> 249 <Status>0</Status> 250 </Parameters> 228 251 </Block_Properties> 229 252 </Base_Models> … … 239 262 <T_Connection>0</T_Connection> 240 263 <Parameters> 241 <Desc> Ninlet</Desc>242 <Index>0</Index> 243 <Values> 1</Values>244 <Status> 4</Status>264 <Desc>PP</Desc> 265 <Index>0</Index> 266 <Values>PP</Values> 267 <Status>0</Status> 245 268 </Parameters> 246 269 <Parameters> … … 264 287 <Block_Properties> 265 288 <Model_File_Path>streams</Model_File_Path> 266 <Instance_Id> InletQ.</Instance_Id>289 <Instance_Id>Heat.</Instance_Id> 267 290 <Model_Name>energy_stream</Model_Name> 268 291 <T_Connection>1</T_Connection> … … 270 293 </Base_Models> 271 294 <Model_File_Path>heat_exchangers/heater</Model_File_Path> 272 <Instance_Id> InletQ.</Instance_Id>273 <Model_Name> InletQ</Model_Name>295 <Instance_Id>Heat.</Instance_Id> 296 <Model_Name>Heat</Model_Name> 274 297 <T_Connection>1</T_Connection> 275 298 </Block_Properties> … … 282 305 </Block> 283 306 <Line> 284 <Line_Name>line_4</Line_Name> 285 <X1>484.5</X1> 286 <Y1>386.326</Y1> 287 <X2>417</X2> 288 <Y2>217</Y2> 289 <Block_Source>energy_source_1</Block_Source> 290 <Port_Source>energy_source_1.OutletQ</Port_Source> 291 <Block_Target>cooler_1</Block_Target> 292 <Port_Target>cooler_1.InletQ</Port_Target> 293 </Line> 294 <Line> 295 <Line_Name>line_5</Line_Name> 307 <Line_Name>line_7</Line_Name> 296 308 <X1>166.5</X1> 297 309 <Y1>44.4472</Y1> 298 <X2>34 3</X2>299 <Y2>15 7</Y2>310 <X2>347</X2> 311 <Y2>153</Y2> 300 312 <Block_Source>source_1</Block_Source> 301 313 <Port_Source>source_1.Outlet</Port_Source> … … 304 316 </Line> 305 317 <Line> 306 <Line_Name>line_ 6</Line_Name>318 <Line_Name>line_8</Line_Name> 307 319 <X1>491.5</X1> 308 <Y1>15 7.667</Y1>309 <X2>66 9</X2>310 <Y2>2 90</Y2>320 <Y1>154.325</Y1> 321 <X2>666</X2> 322 <Y2>288</Y2> 311 323 <Block_Source>cooler_1</Block_Source> 312 324 <Port_Source>cooler_1.Outlet</Port_Source> … … 314 326 <Port_Target>sink_1.Inlet</Port_Target> 315 327 </Line> 328 <Line> 329 <Line_Name>line_9</Line_Name> 330 <X1>219.5</X1> 331 <Y1>280.48</Y1> 332 <X2>416</X2> 333 <Y2>218</Y2> 334 <Block_Source>energy_source_1</Block_Source> 335 <Port_Source>energy_source_1.OutletQ</Port_Source> 336 <Block_Target>cooler_1</Block_Target> 337 <Port_Target>cooler_1.Heat</Port_Target> 338 </Line> 316 339 </Diagram> -
trunk/sample/heat_exchangers/DPHE_diagram.pfd
r525 r632 12 12 <Time_End>100</Time_End> 13 13 <Time_Unit_Index>0</Time_Unit_Index> 14 <Time_Unit_Text>s</Time_Unit_Text>15 14 <Sparse_Algebra>1</Sparse_Algebra> 16 15 <Integration_Index>0</Integration_Index> … … 19 18 <NLASolver_File_Text>nlasolver</NLASolver_File_Text> 20 19 <DAESolver_File_Index>0</DAESolver_File_Index> 21 <DAESolver_File_Text>sundials</DAESolver_File_Text>22 20 </Options> 23 21 <Width>2000</Width> … … 25 23 <Grid_Spacing>20</Grid_Spacing> 26 24 <View> 27 <Zoom_Level> 0.7</Zoom_Level>25 <Zoom_Level>1</Zoom_Level> 28 26 <Show_Grid>1</Show_Grid> 29 27 <Snap_to_Grid>1</Snap_to_Grid> 30 <Width> 915</Width>31 <Height> 316</Height>28 <Width>1248</Width> 29 <Height>408</Height> 32 30 <X>0</X> 33 31 <Y>0</Y> … … 37 35 <Show_Grid>1</Show_Grid> 38 36 <Snap_to_Grid>1</Snap_to_Grid> 39 <Width> 915</Width>37 <Width>1248</Width> 40 38 <Height>0</Height> 41 39 <X>0</X> … … 43 41 </View> 44 42 <Block> 45 <Type>simple_source</Type>46 <Id_String>simple_source_1</Id_String>47 <Block_Name>cold_in</Block_Name>48 <Image_File_Name>E:\Gerson\biblioteca\trunk\eml\icon/Source.png</Image_File_Name>49 <X>20.5714</X>50 <Y>21.8571</Y>51 <Z>0</Z>52 <Width>72.5</Width>53 <Height>37</Height>54 <Block_Properties>55 <Sub_Models>56 <Block_Properties>57 <Base_Models>58 <Block_Properties>59 <Model_File_Path>streams</Model_File_Path>60 <Instance_Id>Outlet.</Instance_Id>61 <Model_Name>stream</Model_Name>62 <T_Connection>2</T_Connection>63 <Variables>64 <Desc>Outlet.F</Desc>65 <Index>0</Index>66 <Values>3</Values>67 <Status>1</Status>68 <Unit>kmol/h</Unit>69 </Variables>70 <Variables>71 <Desc>Outlet.T</Desc>72 <Index>0</Index>73 <Values>330</Values>74 <Status>1</Status>75 <Unit>K</Unit>76 </Variables>77 <Variables>78 <Desc>Outlet.P</Desc>79 <Index>0</Index>80 <Values>5</Values>81 <Status>1</Status>82 <Unit>bar</Unit>83 </Variables>84 <Variables>85 <Desc>Outlet.z</Desc>86 <Index>0</Index>87 <Values>0</Values>88 <Status>1</Status>89 <Index>1</Index>90 <Values>1</Values>91 <Status>1</Status>92 </Variables>93 </Block_Properties>94 </Base_Models>95 <Model_File_Path>streams</Model_File_Path>96 <Instance_Id>Outlet.</Instance_Id>97 <Model_Name>Outlet</Model_Name>98 <T_Connection>2</T_Connection>99 </Block_Properties>100 </Sub_Models>101 <Model_File_Path>streams</Model_File_Path>102 <Instance_Id></Instance_Id>103 <Model_Name>simple_source</Model_Name>104 <T_Connection>0</T_Connection>105 </Block_Properties>106 </Block>107 <Block>108 <Type>simple_source</Type>109 <Id_String>simple_source_2</Id_String>110 <Block_Name>hot_in</Block_Name>111 <Image_File_Name>E:\Gerson\biblioteca\trunk\eml\icon/Source.png</Image_File_Name>112 <X>42</X>113 <Y>221</Y>114 <Z>0</Z>115 <Width>72.5</Width>116 <Height>37</Height>117 <Block_Properties>118 <Sub_Models>119 <Block_Properties>120 <Base_Models>121 <Block_Properties>122 <Model_File_Path>streams</Model_File_Path>123 <Instance_Id>Outlet.</Instance_Id>124 <Model_Name>stream</Model_Name>125 <T_Connection>2</T_Connection>126 <Variables>127 <Desc>Outlet.F</Desc>128 <Index>0</Index>129 <Values>1</Values>130 <Status>1</Status>131 <Unit>kmol/h</Unit>132 </Variables>133 <Variables>134 <Desc>Outlet.T</Desc>135 <Index>0</Index>136 <Values>373.15</Values>137 <Status>1</Status>138 <Unit>K</Unit>139 </Variables>140 <Variables>141 <Desc>Outlet.P</Desc>142 <Index>0</Index>143 <Values>5.7</Values>144 <Status>1</Status>145 <Unit>bar</Unit>146 </Variables>147 <Variables>148 <Desc>Outlet.z</Desc>149 <Index>0</Index>150 <Values>1</Values>151 <Status>1</Status>152 <Index>1</Index>153 <Values>0</Values>154 <Status>1</Status>155 </Variables>156 </Block_Properties>157 </Base_Models>158 <Model_File_Path>streams</Model_File_Path>159 <Instance_Id>Outlet.</Instance_Id>160 <Model_Name>Outlet</Model_Name>161 <T_Connection>2</T_Connection>162 </Block_Properties>163 </Sub_Models>164 <Model_File_Path>streams</Model_File_Path>165 <Instance_Id></Instance_Id>166 <Model_Name>simple_source</Model_Name>167 <T_Connection>0</T_Connection>168 </Block_Properties>169 </Block>170 <Block>171 43 <Type>DoublePipe_LMTD</Type> 172 44 <Id_String>DoublePipe_LMTD_1</Id_String> 173 <Block_Name>D PHE</Block_Name>174 <Image_File_Name> E:\Gerson\biblioteca\trunk\eml\heat_exchangers\icon/DoublePipe.png</Image_File_Name>175 <X>285 .143</X>176 <Y>100 .429</Y>45 <Block_Name>DoublePipe_LMTD_1</Block_Name> 46 <Image_File_Name>/media/sdb5/gerson/projetos/repositorio/biblioteca/trunk/eml/heat_exchangers/icon/DoublePipe.png</Image_File_Name> 47 <X>285</X> 48 <Y>100</Y> 177 49 <Z>0</Z> 178 50 <Width>278</Width> … … 185 57 <Base_Models> 186 58 <Block_Properties> 187 <Model_File_Path>heat_exchangers \DoublePipe</Model_File_Path>59 <Model_File_Path>heat_exchangers/DoublePipe</Model_File_Path> 188 60 <Instance_Id>Geometry.</Instance_Id> 189 61 <Model_Name>DoublePipe_Geometry</Model_Name> 190 62 <T_Connection>0</T_Connection> 191 63 <Parameters> 64 <Desc>Geometry.PP</Desc> 65 <Index>0</Index> 66 <Values>PP</Values> 67 <Status>0</Status> 68 </Parameters> 69 <Parameters> 192 70 <Desc>Geometry.DoInner</Desc> 193 71 <Index>0</Index> 194 <Values>0.04826</Values> 72 <Values>42.16</Values> 73 <Status>4</Status> 74 <Unit>mm</Unit> 75 </Parameters> 76 <Parameters> 77 <Desc>Geometry.DiInner</Desc> 78 <Index>0</Index> 79 <Values>35.05</Values> 80 <Status>4</Status> 81 <Unit>mm</Unit> 82 </Parameters> 83 <Parameters> 84 <Desc>Geometry.DiOuter</Desc> 85 <Index>0</Index> 86 <Values>52.50</Values> 87 <Status>4</Status> 88 <Unit>mm</Unit> 89 </Parameters> 90 <Parameters> 91 <Desc>Geometry.Lpipe</Desc> 92 <Index>0</Index> 93 <Values>9</Values> 195 94 <Status>4</Status> 196 95 <Unit>m</Unit> 197 96 </Parameters> 198 97 <Parameters> 199 <Desc>Geometry.DiInner</Desc>200 <Index>0</Index>201 <Values>0.04089</Values>202 <Status>4</Status>203 <Unit>m</Unit>204 </Parameters>205 <Parameters>206 <Desc>Geometry.DiOuter</Desc>207 <Index>0</Index>208 <Values>0.07793</Values>209 <Status>4</Status>210 <Unit>m</Unit>211 </Parameters>212 <Parameters>213 <Desc>Geometry.Lpipe</Desc>214 <Index>0</Index>215 <Values>3</Values>216 <Status>4</Status>217 <Unit>m</Unit>218 </Parameters>219 <Parameters>220 98 <Desc>Geometry.Kwall</Desc> 221 99 <Index>0</Index> … … 227 105 <Desc>Geometry.Rfi</Desc> 228 106 <Index>0</Index> 229 <Values> 0.0018</Values>107 <Values>1e-06</Values> 230 108 <Status>4</Status> 231 109 <Unit>m^2*K/kW</Unit> … … 234 112 <Desc>Geometry.Rfo</Desc> 235 113 <Index>0</Index> 236 <Values> 0.0021</Values>114 <Values>1e-06</Values> 237 115 <Status>4</Status> 238 116 <Unit>m^2*K/kW</Unit> … … 240 118 </Block_Properties> 241 119 </Base_Models> 242 <Model_File_Path>heat_exchangers \DoublePipe</Model_File_Path>120 <Model_File_Path>heat_exchangers/DoublePipe</Model_File_Path> 243 121 <Instance_Id>Geometry.</Instance_Id> 244 122 <Model_Name>Geometry</Model_Name> … … 256 134 </Block_Properties> 257 135 </Base_Models> 258 <Model_File_Path>heat_exchangers \DoublePipe</Model_File_Path>136 <Model_File_Path>heat_exchangers/DoublePipe</Model_File_Path> 259 137 <Instance_Id>InletInner.</Instance_Id> 260 138 <Model_Name>InletInner</Model_Name> … … 272 150 </Block_Properties> 273 151 </Base_Models> 274 <Model_File_Path>heat_exchangers \DoublePipe</Model_File_Path>152 <Model_File_Path>heat_exchangers/DoublePipe</Model_File_Path> 275 153 <Instance_Id>InletOuter.</Instance_Id> 276 154 <Model_Name>InletOuter</Model_Name> … … 288 166 <Model_Name>stream</Model_Name> 289 167 <T_Connection>2</T_Connection> 290 <Variables>291 <Desc>OutletInner.T</Desc>292 <Index>0</Index>293 <Values>377</Values>294 <Status>3</Status>295 <Unit>K</Unit>296 </Variables>297 168 </Block_Properties> 298 169 </Base_Models> … … 301 172 <Model_Name>streamPH</Model_Name> 302 173 <T_Connection>2</T_Connection> 303 </Block_Properties> 304 </Base_Models> 305 <Model_File_Path>heat_exchangers\DoublePipe</Model_File_Path> 174 <Parameters> 175 <Desc>OutletInner.PP</Desc> 176 <Index>0</Index> 177 <Values>PP</Values> 178 <Status>0</Status> 179 </Parameters> 180 </Block_Properties> 181 </Base_Models> 182 <Model_File_Path>heat_exchangers/DoublePipe</Model_File_Path> 306 183 <Instance_Id>OutletInner.</Instance_Id> 307 184 <Model_Name>OutletInner</Model_Name> … … 325 202 <Model_Name>streamPH</Model_Name> 326 203 <T_Connection>2</T_Connection> 327 </Block_Properties> 328 </Base_Models> 329 <Model_File_Path>heat_exchangers\DoublePipe</Model_File_Path> 204 <Parameters> 205 <Desc>OutletOuter.PP</Desc> 206 <Index>0</Index> 207 <Values>PP</Values> 208 <Status>0</Status> 209 </Parameters> 210 </Block_Properties> 211 </Base_Models> 212 <Model_File_Path>heat_exchangers/DoublePipe</Model_File_Path> 330 213 <Instance_Id>OutletOuter.</Instance_Id> 331 214 <Model_Name>OutletOuter</Model_Name> … … 337 220 <Base_Models> 338 221 <Block_Properties> 339 <Model_File_Path>heat_exchangers \HEX_Engine</Model_File_Path>222 <Model_File_Path>heat_exchangers/HEX_Engine</Model_File_Path> 340 223 <Instance_Id>Details.</Instance_Id> 341 224 <Model_Name>Details_Main</Model_Name> … … 343 226 </Block_Properties> 344 227 </Base_Models> 345 <Model_File_Path>heat_exchangers \DoublePipe</Model_File_Path>228 <Model_File_Path>heat_exchangers/DoublePipe</Model_File_Path> 346 229 <Instance_Id>Details.</Instance_Id> 347 230 <Model_Name>Details</Model_Name> … … 357 240 <Base_Models> 358 241 <Block_Properties> 359 <Model_File_Path>heat_exchangers \HEX_Engine</Model_File_Path>242 <Model_File_Path>heat_exchangers/HEX_Engine</Model_File_Path> 360 243 <Instance_Id>Inner.HeatTransfer.</Instance_Id> 361 244 <Model_Name>DoublePipe_HeatTransfer</Model_Name> … … 363 246 </Block_Properties> 364 247 </Base_Models> 365 <Model_File_Path>heat_exchangers \HEX_Engine</Model_File_Path>248 <Model_File_Path>heat_exchangers/HEX_Engine</Model_File_Path> 366 249 <Instance_Id>Inner.HeatTransfer.</Instance_Id> 367 250 <Model_Name>HeatTransfer</Model_Name> … … 373 256 <Base_Models> 374 257 <Block_Properties> 375 <Model_File_Path>heat_exchangers \HEX_Engine</Model_File_Path>258 <Model_File_Path>heat_exchangers/HEX_Engine</Model_File_Path> 376 259 <Instance_Id>Inner.PressureDrop.</Instance_Id> 377 260 <Model_Name>DoublePipe_PressureDrop</Model_Name> … … 379 262 </Block_Properties> 380 263 </Base_Models> 381 <Model_File_Path>heat_exchangers \HEX_Engine</Model_File_Path>264 <Model_File_Path>heat_exchangers/HEX_Engine</Model_File_Path> 382 265 <Instance_Id>Inner.PressureDrop.</Instance_Id> 383 266 <Model_Name>PressureDrop</Model_Name> … … 393 276 <Base_Models> 394 277 <Block_Properties> 395 <Model_File_Path>heat_exchangers \HEX_Engine</Model_File_Path>278 <Model_File_Path>heat_exchangers/HEX_Engine</Model_File_Path> 396 279 <Instance_Id>Inner.Properties.Inlet.</Instance_Id> 397 280 <Model_Name>Properties_In_Out</Model_Name> … … 399 282 </Block_Properties> 400 283 </Base_Models> 401 <Model_File_Path>heat_exchangers \HEX_Engine</Model_File_Path>284 <Model_File_Path>heat_exchangers/HEX_Engine</Model_File_Path> 402 285 <Instance_Id>Inner.Properties.Inlet.</Instance_Id> 403 286 <Model_Name>Inlet</Model_Name> … … 409 292 <Base_Models> 410 293 <Block_Properties> 411 <Model_File_Path>heat_exchangers \HEX_Engine</Model_File_Path>294 <Model_File_Path>heat_exchangers/HEX_Engine</Model_File_Path> 412 295 <Instance_Id>Inner.Properties.Average.</Instance_Id> 413 296 <Model_Name>Properties_Average</Model_Name> … … 415 298 </Block_Properties> 416 299 </Base_Models> 417 <Model_File_Path>heat_exchangers \HEX_Engine</Model_File_Path>300 <Model_File_Path>heat_exchangers/HEX_Engine</Model_File_Path> 418 301 <Instance_Id>Inner.Properties.Average.</Instance_Id> 419 302 <Model_Name>Average</Model_Name> … … 425 308 <Base_Models> 426 309 <Block_Properties> 427 <Model_File_Path>heat_exchangers \HEX_Engine</Model_File_Path>310 <Model_File_Path>heat_exchangers/HEX_Engine</Model_File_Path> 428 311 <Instance_Id>Inner.Properties.Outlet.</Instance_Id> 429 312 <Model_Name>Properties_In_Out</Model_Name> … … 431 314 </Block_Properties> 432 315 </Base_Models> 433 <Model_File_Path>heat_exchangers \HEX_Engine</Model_File_Path>316 <Model_File_Path>heat_exchangers/HEX_Engine</Model_File_Path> 434 317 <Instance_Id>Inner.Properties.Outlet.</Instance_Id> 435 318 <Model_Name>Outlet</Model_Name> … … 441 324 <Base_Models> 442 325 <Block_Properties> 443 <Model_File_Path>heat_exchangers \HEX_Engine</Model_File_Path>326 <Model_File_Path>heat_exchangers/HEX_Engine</Model_File_Path> 444 327 <Instance_Id>Inner.Properties.Wall.</Instance_Id> 445 328 <Model_Name>Properties_Wall</Model_Name> … … 447 330 </Block_Properties> 448 331 </Base_Models> 449 <Model_File_Path>heat_exchangers \HEX_Engine</Model_File_Path>332 <Model_File_Path>heat_exchangers/HEX_Engine</Model_File_Path> 450 333 <Instance_Id>Inner.Properties.Wall.</Instance_Id> 451 334 <Model_Name>Wall</Model_Name> … … 453 336 </Block_Properties> 454 337 </Sub_Models> 455 <Model_File_Path>heat_exchangers \HEX_Engine</Model_File_Path>338 <Model_File_Path>heat_exchangers/HEX_Engine</Model_File_Path> 456 339 <Instance_Id>Inner.Properties.</Instance_Id> 457 340 <Model_Name>Physical_Properties</Model_Name> … … 459 342 </Block_Properties> 460 343 </Base_Models> 461 <Model_File_Path>heat_exchangers \HEX_Engine</Model_File_Path>344 <Model_File_Path>heat_exchangers/HEX_Engine</Model_File_Path> 462 345 <Instance_Id>Inner.Properties.</Instance_Id> 463 346 <Model_Name>Properties</Model_Name> … … 465 348 </Block_Properties> 466 349 </Sub_Models> 467 <Model_File_Path>heat_exchangers \HEX_Engine</Model_File_Path>350 <Model_File_Path>heat_exchangers/HEX_Engine</Model_File_Path> 468 351 <Instance_Id>Inner.</Instance_Id> 469 352 <Model_Name>Main_DoublePipe</Model_Name> … … 471 354 </Block_Properties> 472 355 </Base_Models> 473 <Model_File_Path>heat_exchangers \DoublePipe</Model_File_Path>356 <Model_File_Path>heat_exchangers/DoublePipe</Model_File_Path> 474 357 <Instance_Id>Inner.</Instance_Id> 475 358 <Model_Name>Inner</Model_Name> … … 485 368 <Base_Models> 486 369 <Block_Properties> 487 <Model_File_Path>heat_exchangers \HEX_Engine</Model_File_Path>370 <Model_File_Path>heat_exchangers/HEX_Engine</Model_File_Path> 488 371 <Instance_Id>Outer.HeatTransfer.</Instance_Id> 489 372 <Model_Name>DoublePipe_HeatTransfer</Model_Name> … … 491 374 </Block_Properties> 492 375 </Base_Models> 493 <Model_File_Path>heat_exchangers \HEX_Engine</Model_File_Path>376 <Model_File_Path>heat_exchangers/HEX_Engine</Model_File_Path> 494 377 <Instance_Id>Outer.HeatTransfer.</Instance_Id> 495 378 <Model_Name>HeatTransfer</Model_Name> … … 501 384 <Base_Models> 502 385 <Block_Properties> 503 <Model_File_Path>heat_exchangers \HEX_Engine</Model_File_Path>386 <Model_File_Path>heat_exchangers/HEX_Engine</Model_File_Path> 504 387 <Instance_Id>Outer.PressureDrop.</Instance_Id> 505 388 <Model_Name>DoublePipe_PressureDrop</Model_Name> … … 507 390 </Block_Properties> 508 391 </Base_Models> 509 <Model_File_Path>heat_exchangers \HEX_Engine</Model_File_Path>392 <Model_File_Path>heat_exchangers/HEX_Engine</Model_File_Path> 510 393 <Instance_Id>Outer.PressureDrop.</Instance_Id> 511 394 <Model_Name>PressureDrop</Model_Name> … … 521 404 <Base_Models> 522 405 <Block_Properties> 523 <Model_File_Path>heat_exchangers \HEX_Engine</Model_File_Path>406 <Model_File_Path>heat_exchangers/HEX_Engine</Model_File_Path> 524 407 <Instance_Id>Outer.Properties.Inlet.</Instance_Id> 525 408 <Model_Name>Properties_In_Out</Model_Name> … … 527 410 </Block_Properties> 528 411 </Base_Models> 529 <Model_File_Path>heat_exchangers \HEX_Engine</Model_File_Path>412 <Model_File_Path>heat_exchangers/HEX_Engine</Model_File_Path> 530 413 <Instance_Id>Outer.Properties.Inlet.</Instance_Id> 531 414 <Model_Name>Inlet</Model_Name> … … 537 420 <Base_Models> 538 421 <Block_Properties> 539 <Model_File_Path>heat_exchangers \HEX_Engine</Model_File_Path>422 <Model_File_Path>heat_exchangers/HEX_Engine</Model_File_Path> 540 423 <Instance_Id>Outer.Properties.Average.</Instance_Id> 541 424 <Model_Name>Properties_Average</Model_Name> … … 543 426 </Block_Properties> 544 427 </Base_Models> 545 <Model_File_Path>heat_exchangers \HEX_Engine</Model_File_Path>428 <Model_File_Path>heat_exchangers/HEX_Engine</Model_File_Path> 546 429 <Instance_Id>Outer.Properties.Average.</Instance_Id> 547 430 <Model_Name>Average</Model_Name> … … 553 436 <Base_Models> 554 437 <Block_Properties> 555 <Model_File_Path>heat_exchangers \HEX_Engine</Model_File_Path>438 <Model_File_Path>heat_exchangers/HEX_Engine</Model_File_Path> 556 439 <Instance_Id>Outer.Properties.Outlet.</Instance_Id> 557 440 <Model_Name>Properties_In_Out</Model_Name> … … 559 442 </Block_Properties> 560 443 </Base_Models> 561 <Model_File_Path>heat_exchangers \HEX_Engine</Model_File_Path>444 <Model_File_Path>heat_exchangers/HEX_Engine</Model_File_Path> 562 445 <Instance_Id>Outer.Properties.Outlet.</Instance_Id> 563 446 <Model_Name>Outlet</Model_Name> … … 569 452 <Base_Models> 570 453 <Block_Properties> 571 <Model_File_Path>heat_exchangers \HEX_Engine</Model_File_Path>454 <Model_File_Path>heat_exchangers/HEX_Engine</Model_File_Path> 572 455 <Instance_Id>Outer.Properties.Wall.</Instance_Id> 573 456 <Model_Name>Properties_Wall</Model_Name> … … 575 458 </Block_Properties> 576 459 </Base_Models> 577 <Model_File_Path>heat_exchangers \HEX_Engine</Model_File_Path>460 <Model_File_Path>heat_exchangers/HEX_Engine</Model_File_Path> 578 461 <Instance_Id>Outer.Properties.Wall.</Instance_Id> 579 462 <Model_Name>Wall</Model_Name> … … 581 464 </Block_Properties> 582 465 </Sub_Models> 583 <Model_File_Path>heat_exchangers \HEX_Engine</Model_File_Path>466 <Model_File_Path>heat_exchangers/HEX_Engine</Model_File_Path> 584 467 <Instance_Id>Outer.Properties.</Instance_Id> 585 468 <Model_Name>Physical_Properties</Model_Name> … … 587 470 </Block_Properties> 588 471 </Base_Models> 589 <Model_File_Path>heat_exchangers \HEX_Engine</Model_File_Path>472 <Model_File_Path>heat_exchangers/HEX_Engine</Model_File_Path> 590 473 <Instance_Id>Outer.Properties.</Instance_Id> 591 474 <Model_Name>Properties</Model_Name> … … 593 476 </Block_Properties> 594 477 </Sub_Models> 595 <Model_File_Path>heat_exchangers \HEX_Engine</Model_File_Path>478 <Model_File_Path>heat_exchangers/HEX_Engine</Model_File_Path> 596 479 <Instance_Id>Outer.</Instance_Id> 597 480 <Model_Name>Main_DoublePipe</Model_Name> … … 599 482 </Block_Properties> 600 483 </Base_Models> 601 <Model_File_Path>heat_exchangers \DoublePipe</Model_File_Path>484 <Model_File_Path>heat_exchangers/DoublePipe</Model_File_Path> 602 485 <Instance_Id>Outer.</Instance_Id> 603 486 <Model_Name>Outer</Model_Name> … … 605 488 </Block_Properties> 606 489 </Sub_Models> 607 <Model_File_Path>heat_exchangers \DoublePipe</Model_File_Path>490 <Model_File_Path>heat_exchangers/DoublePipe</Model_File_Path> 608 491 <Instance_Id></Instance_Id> 609 492 <Model_Name>DoublePipe_Basic</Model_Name> 610 493 <T_Connection>0</T_Connection> 611 494 <Parameters> 495 <Desc>PP</Desc> 496 <Index>0</Index> 497 <Values>PP</Values> 498 <Status>0</Status> 499 </Parameters> 500 <Parameters> 612 501 <Desc>InnerLaminarCorrelation</Desc> 613 502 <Index>0</Index> … … 648 537 <Desc>CalculationApproach</Desc> 649 538 <Index>0</Index> 650 <Values> Simplified</Values>539 <Values>Full</Values> 651 540 <Status>4</Status> 652 541 </Parameters> … … 654 543 <Desc>Qestimated</Desc> 655 544 <Index>0</Index> 656 <Values> 1</Values>545 <Values>30</Values> 657 546 <Status>4</Status> 658 547 <Unit>kW</Unit> … … 664 553 <Base_Models> 665 554 <Block_Properties> 666 <Model_File_Path>heat_exchangers \HEX_Engine</Model_File_Path>555 <Model_File_Path>heat_exchangers/HEX_Engine</Model_File_Path> 667 556 <Instance_Id>Method.</Instance_Id> 668 557 <Model_Name>LMTD_Basic</Model_Name> … … 670 559 </Block_Properties> 671 560 </Base_Models> 672 <Model_File_Path>heat_exchangers \DoublePipe</Model_File_Path>561 <Model_File_Path>heat_exchangers/DoublePipe</Model_File_Path> 673 562 <Instance_Id>Method.</Instance_Id> 674 563 <Model_Name>Method</Model_Name> … … 676 565 </Block_Properties> 677 566 </Sub_Models> 678 <Model_File_Path>heat_exchangers \DoublePipe</Model_File_Path>567 <Model_File_Path>heat_exchangers/DoublePipe</Model_File_Path> 679 568 <Instance_Id></Instance_Id> 680 569 <Model_Name>DoublePipe_LMTD</Model_Name> … … 691 580 <Type>simple_sink</Type> 692 581 <Id_String>simple_sink_1</Id_String> 693 <Block_Name> cold_out</Block_Name>694 <Image_File_Name> E:\Gerson\biblioteca\trunk\eml\icon/Sink.png</Image_File_Name>695 <X> 697.143</X>696 <Y>2 91.429</Y>582 <Block_Name>simple_sink_1</Block_Name> 583 <Image_File_Name>/media/sdb5/gerson/projetos/repositorio/biblioteca/trunk/eml/icon/Sink.png</Image_File_Name> 584 <X>777</X> 585 <Y>277</Y> 697 586 <Z>0</Z> 698 587 <Width>72.5</Width> … … 724 613 <Type>simple_sink</Type> 725 614 <Id_String>simple_sink_2</Id_String> 726 <Block_Name> hot_out</Block_Name>727 <Image_File_Name> E:\Gerson\biblioteca\trunk\eml\icon/Sink.png</Image_File_Name>728 <X> 698.571</X>729 <Y>48 .5714</Y>615 <Block_Name>simple_sink_2</Block_Name> 616 <Image_File_Name>/media/sdb5/gerson/projetos/repositorio/biblioteca/trunk/eml/icon/Sink.png</Image_File_Name> 617 <X>769</X> 618 <Y>48</Y> 730 619 <Z>0</Z> 731 620 <Width>72.5</Width> … … 754 643 </Block_Properties> 755 644 </Block> 645 <Block> 646 <Type>source</Type> 647 <Id_String>source_1</Id_String> 648 <Block_Name>source_1</Block_Name> 649 <Image_File_Name>/media/sdb5/gerson/projetos/repositorio/biblioteca/trunk/eml/icon/Source.png</Image_File_Name> 650 <X>41</X> 651 <Y>21</Y> 652 <Z>0</Z> 653 <Width>68</Width> 654 <Height>30</Height> 655 <Block_Properties> 656 <Sub_Models> 657 <Block_Properties> 658 <Base_Models> 659 <Block_Properties> 660 <Model_File_Path>streams</Model_File_Path> 661 <Instance_Id>Outlet.</Instance_Id> 662 <Model_Name>stream</Model_Name> 663 <T_Connection>2</T_Connection> 664 </Block_Properties> 665 </Base_Models> 666 <Model_File_Path>streams</Model_File_Path> 667 <Instance_Id>Outlet.</Instance_Id> 668 <Model_Name>Outlet</Model_Name> 669 <T_Connection>2</T_Connection> 670 </Block_Properties> 671 </Sub_Models> 672 <Model_File_Path>streams</Model_File_Path> 673 <Instance_Id></Instance_Id> 674 <Model_Name>source</Model_Name> 675 <T_Connection>0</T_Connection> 676 <Parameters> 677 <Desc>PP</Desc> 678 <Index>0</Index> 679 <Values>PP</Values> 680 <Status>0</Status> 681 </Parameters> 682 <Parameters> 683 <Desc>CompositionBasis</Desc> 684 <Index>0</Index> 685 <Values>Molar</Values> 686 <Status>4</Status> 687 </Parameters> 688 <Parameters> 689 <Desc>ValidPhases</Desc> 690 <Index>0</Index> 691 <Values>Vapour-Liquid</Values> 692 <Status>4</Status> 693 </Parameters> 694 <Variables> 695 <Desc>Composition</Desc> 696 <Index>0</Index> 697 <Values>0</Values> 698 <Status>1</Status> 699 <Index>1</Index> 700 <Values>1</Values> 701 <Status>1</Status> 702 </Variables> 703 <Variables> 704 <Desc>F</Desc> 705 <Index>0</Index> 706 <Values>3</Values> 707 <Status>1</Status> 708 <Unit>kmol/h</Unit> 709 </Variables> 710 <Variables> 711 <Desc>T</Desc> 712 <Index>0</Index> 713 <Values>330</Values> 714 <Status>1</Status> 715 <Unit>K</Unit> 716 </Variables> 717 <Variables> 718 <Desc>P</Desc> 719 <Index>0</Index> 720 <Values>5</Values> 721 <Status>1</Status> 722 <Unit>bar</Unit> 723 </Variables> 724 </Block_Properties> 725 </Block> 726 <Block> 727 <Type>source</Type> 728 <Id_String>source_2</Id_String> 729 <Block_Name>source_2</Block_Name> 730 <Image_File_Name>/media/sdb5/gerson/projetos/repositorio/biblioteca/trunk/eml/icon/Source.png</Image_File_Name> 731 <X>48</X> 732 <Y>257</Y> 733 <Z>0</Z> 734 <Width>68</Width> 735 <Height>30</Height> 736 <Block_Properties> 737 <Sub_Models> 738 <Block_Properties> 739 <Base_Models> 740 <Block_Properties> 741 <Model_File_Path>streams</Model_File_Path> 742 <Instance_Id>Outlet.</Instance_Id> 743 <Model_Name>stream</Model_Name> 744 <T_Connection>2</T_Connection> 745 </Block_Properties> 746 </Base_Models> 747 <Model_File_Path>streams</Model_File_Path> 748 <Instance_Id>Outlet.</Instance_Id> 749 <Model_Name>Outlet</Model_Name> 750 <T_Connection>2</T_Connection> 751 </Block_Properties> 752 </Sub_Models> 753 <Model_File_Path>streams</Model_File_Path> 754 <Instance_Id></Instance_Id> 755 <Model_Name>source</Model_Name> 756 <T_Connection>0</T_Connection> 757 <Parameters> 758 <Desc>PP</Desc> 759 <Index>0</Index> 760 <Values>PP</Values> 761 <Status>0</Status> 762 </Parameters> 763 <Parameters> 764 <Desc>ValidPhases</Desc> 765 <Index>0</Index> 766 <Values>Vapour-Liquid</Values> 767 <Status>4</Status> 768 </Parameters> 769 <Variables> 770 <Desc>Composition</Desc> 771 <Index>0</Index> 772 <Values>1</Values> 773 <Status>1</Status> 774 <Index>1</Index> 775 <Values>0</Values> 776 <Status>1</Status> 777 </Variables> 778 <Variables> 779 <Desc>F</Desc> 780 <Index>0</Index> 781 <Values>1</Values> 782 <Status>1</Status> 783 <Unit>kmol/h</Unit> 784 </Variables> 785 <Variables> 786 <Desc>T</Desc> 787 <Index>0</Index> 788 <Values>373.15</Values> 789 <Status>1</Status> 790 <Unit>K</Unit> 791 </Variables> 792 <Variables> 793 <Desc>P</Desc> 794 <Index>0</Index> 795 <Values>5.7</Values> 796 <Status>1</Status> 797 <Unit>bar</Unit> 798 </Variables> 799 </Block_Properties> 800 </Block> 756 801 <Line> 757 <Line_Name>line_ 1</Line_Name>758 <X1> 93.0714</X1>759 <Y1> 41.3043</Y1>760 <X2>36 3.122</X2>761 <Y2>10 0.429</Y2>762 <Block_Source>s imple_source_1</Block_Source>763 <Port_Source>s imple_source_1.Outlet</Port_Source>802 <Line_Name>line_5</Line_Name> 803 <X1>109</X1> 804 <Y1>36.768</Y1> 805 <X2>365</X2> 806 <Y2>104</Y2> 807 <Block_Source>source_1</Block_Source> 808 <Port_Source>source_1.Outlet</Port_Source> 764 809 <Block_Target>DoublePipe_LMTD_1</Block_Target> 765 810 <Port_Target>DoublePipe_LMTD_1.InletOuter</Port_Target> 766 811 </Line> 767 812 <Line> 768 <Line_Name>line_ 2</Line_Name>769 <X1>11 4.5</X1>770 <Y1>2 40.447</Y1>771 <X2>2 85.143</X2>772 <Y2>13 9.094</Y2>773 <Block_Source>s imple_source_2</Block_Source>774 <Port_Source>s imple_source_2.Outlet</Port_Source>813 <Line_Name>line_6</Line_Name> 814 <X1>116</X1> 815 <Y1>272.768</Y1> 816 <X2>291</X2> 817 <Y2>136</Y2> 818 <Block_Source>source_2</Block_Source> 819 <Port_Source>source_2.Outlet</Port_Source> 775 820 <Block_Target>DoublePipe_LMTD_1</Block_Target> 776 821 <Port_Target>DoublePipe_LMTD_1.InletInner</Port_Target> 777 822 </Line> 778 823 <Line> 779 <Line_Name>line_3</Line_Name> 780 <X1>487.082</X1> 781 <Y1>174.429</Y1> 782 <X2>701.429</X2> 783 <Y2>307.143</Y2> 824 <Line_Name>line_7</Line_Name> 825 <X1>563</X1> 826 <Y1>138.665</Y1> 827 <X2>767</X2> 828 <Y2>66</Y2> 829 <Block_Source>DoublePipe_LMTD_1</Block_Source> 830 <Port_Source>DoublePipe_LMTD_1.OutletInner</Port_Source> 831 <Block_Target>simple_sink_2</Block_Target> 832 <Port_Target>simple_sink_2.Inlet</Port_Target> 833 </Line> 834 <Line> 835 <Line_Name>line_8</Line_Name> 836 <X1>486.939</X1> 837 <Y1>174</Y1> 838 <X2>785</X2> 839 <Y2>298</Y2> 784 840 <Block_Source>DoublePipe_LMTD_1</Block_Source> 785 841 <Port_Source>DoublePipe_LMTD_1.OutletOuter</Port_Source> … … 787 843 <Port_Target>simple_sink_1.Inlet</Port_Target> 788 844 </Line> 789 <Line>790 <Line_Name>line_4</Line_Name>791 <X1>563.143</X1>792 <Y1>139.094</Y1>793 <X2>701.429</X2>794 <Y2>67.1429</Y2>795 <Block_Source>DoublePipe_LMTD_1</Block_Source>796 <Port_Source>DoublePipe_LMTD_1.OutletInner</Port_Source>797 <Block_Target>simple_sink_2</Block_Target>798 <Port_Target>simple_sink_2.Inlet</Port_Target>799 </Line>800 845 </Diagram> -
trunk/sample/heat_exchangers/DPIncremental_diagram.pfd
r483 r632 12 12 <Time_End>100</Time_End> 13 13 <Time_Unit_Index>0</Time_Unit_Index> 14 <Time_Unit_Text>s</Time_Unit_Text>15 14 <Sparse_Algebra>1</Sparse_Algebra> 16 15 <Integration_Index>0</Integration_Index> 17 16 <Integration_Text>original</Integration_Text> 18 <Guess_File>sample/heat_exchangers/DPincremental.rlt</Guess_File>19 17 <NLASolver_File_Index>0</NLASolver_File_Index> 20 18 <NLASolver_File_Text>sundials</NLASolver_File_Text> 21 19 <DAESolver_File_Index>0</DAESolver_File_Index> 22 <DAESolver_File_Text>sundials</DAESolver_File_Text>23 20 </Options> 24 21 <Width>2000</Width> … … 29 26 <Show_Grid>1</Show_Grid> 30 27 <Snap_to_Grid>1</Snap_to_Grid> 31 <Width> 955</Width>32 <Height> 393</Height>33 <X> -193</X>28 <Width>1248</Width> 29 <Height>408</Height> 30 <X>0</X> 34 31 <Y>0</Y> 35 32 </View> … … 38 35 <Show_Grid>1</Show_Grid> 39 36 <Snap_to_Grid>1</Snap_to_Grid> 40 <Width> 955</Width>37 <Width>1248</Width> 41 38 <Height>0</Height> 42 39 <X>0</X> … … 46 43 <Type>DoublePipeIncr</Type> 47 44 <Id_String>DoublePipeIncr_1</Id_String> 48 <Block_Name> exchanger</Block_Name>49 <Image_File_Name>/ home/bicca/Desktop/biblioteca/biblioteca/trunk/eml/heat_exchangers/icon/DoublePipe.png</Image_File_Name>45 <Block_Name>DoublePipeIncr_1</Block_Name> 46 <Image_File_Name>/media/sdb5/gerson/projetos/repositorio/biblioteca/trunk/eml/heat_exchangers/icon/DoublePipe.png</Image_File_Name> 50 47 <X>484</X> 51 48 <Y>83</Y> … … 102 99 <Model_Name>streamPH</Model_Name> 103 100 <T_Connection>2</T_Connection> 101 <Parameters> 102 <Desc>OutletInner.PP</Desc> 103 <Index>0</Index> 104 <Values>PP</Values> 105 <Status>0</Status> 106 </Parameters> 104 107 </Block_Properties> 105 108 </Base_Models> … … 126 129 <Model_Name>streamPH</Model_Name> 127 130 <T_Connection>2</T_Connection> 131 <Parameters> 132 <Desc>OutletOuter.PP</Desc> 133 <Index>0</Index> 134 <Values>PP</Values> 135 <Status>0</Status> 136 </Parameters> 128 137 </Block_Properties> 129 138 </Base_Models> … … 142 151 <Model_Name>Details_Main</Model_Name> 143 152 <T_Connection>0</T_Connection> 153 <Parameters> 154 <Desc>Details.N</Desc> 155 <Index>0</Index> 156 <Values>2</Values> 157 <Status>0</Status> 158 </Parameters> 144 159 </Block_Properties> 145 160 </Base_Models> … … 162 177 <Model_Name>DoublePipe_HeatTransfer</Model_Name> 163 178 <T_Connection>0</T_Connection> 179 <Parameters> 180 <Desc>Inner.HeatTransfer.N</Desc> 181 <Index>0</Index> 182 <Values>2</Values> 183 <Status>0</Status> 184 </Parameters> 185 <Parameters> 186 <Desc>Inner.HeatTransfer.Npoints</Desc> 187 <Index>0</Index> 188 <Values>3</Values> 189 <Status>0</Status> 190 </Parameters> 164 191 </Block_Properties> 165 192 </Base_Models> … … 178 205 <Model_Name>DoublePipe_PressureDrop</Model_Name> 179 206 <T_Connection>0</T_Connection> 207 <Parameters> 208 <Desc>Inner.PressureDrop.N</Desc> 209 <Index>0</Index> 210 <Values>2</Values> 211 <Status>0</Status> 212 </Parameters> 213 <Parameters> 214 <Desc>Inner.PressureDrop.Npoints</Desc> 215 <Index>0</Index> 216 <Values>3</Values> 217 <Status>0</Status> 218 </Parameters> 180 219 </Block_Properties> 181 220 </Base_Models> … … 214 253 <Model_Name>Properties_Average</Model_Name> 215 254 <T_Connection>0</T_Connection> 255 <Parameters> 256 <Desc>Inner.Properties.Average.N</Desc> 257 <Index>0</Index> 258 <Values>2</Values> 259 <Status>0</Status> 260 </Parameters> 216 261 </Block_Properties> 217 262 </Base_Models> … … 246 291 <Model_Name>Properties_Wall</Model_Name> 247 292 <T_Connection>0</T_Connection> 293 <Parameters> 294 <Desc>Inner.Properties.Wall.N</Desc> 295 <Index>0</Index> 296 <Values>2</Values> 297 <Status>0</Status> 298 </Parameters> 248 299 </Block_Properties> 249 300 </Base_Models> … … 290 341 <Model_Name>DoublePipe_HeatTransfer</Model_Name> 291 342 <T_Connection>0</T_Connection> 343 <Parameters> 344 <Desc>Outer.HeatTransfer.N</Desc> 345 <Index>0</Index> 346 <Values>2</Values> 347 <Status>0</Status> 348 </Parameters> 349 <Parameters> 350 <Desc>Outer.HeatTransfer.Npoints</Desc> 351 <Index>0</Index> 352 <Values>3</Values> 353 <Status>0</Status> 354 </Parameters> 292 355 </Block_Properties> 293 356 </Base_Models> … … 306 369 <Model_Name>DoublePipe_PressureDrop</Model_Name> 307 370 <T_Connection>0</T_Connection> 371 <Parameters> 372 <Desc>Outer.PressureDrop.N</Desc> 373 <Index>0</Index> 374 <Values>2</Values> 375 <Status>0</Status> 376 </Parameters> 377 <Parameters> 378 <Desc>Outer.PressureDrop.Npoints</Desc> 379 <Index>0</Index> 380 <Values>3</Values> 381 <Status>0</Status> 382 </Parameters> 308 383 </Block_Properties> 309 384 </Base_Models> … … 342 417 <Model_Name>Properties_Average</Model_Name> 343 418 <T_Connection>0</T_Connection> 419 <Parameters> 420 <Desc>Outer.Properties.Average.N</Desc> 421 <Index>0</Index> 422 <Values>2</Values> 423 <Status>0</Status> 424 </Parameters> 344 425 </Block_Properties> 345 426 </Base_Models> … … 374 455 <Model_Name>Properties_Wall</Model_Name> 375 456 <T_Connection>0</T_Connection> 457 <Parameters> 458 <Desc>Outer.Properties.Wall.N</Desc> 459 <Index>0</Index> 460 <Values>2</Values> 461 <Status>0</Status> 462 </Parameters> 376 463 </Block_Properties> 377 464 </Base_Models> … … 411 498 <T_Connection>0</T_Connection> 412 499 <Parameters> 500 <Desc>PP</Desc> 501 <Index>0</Index> 502 <Values>PP</Values> 503 <Status>0</Status> 504 </Parameters> 505 <Parameters> 413 506 <Desc>N</Desc> 414 507 <Index>0</Index> … … 419 512 <Desc>CalculationApproach</Desc> 420 513 <Index>0</Index> 421 <Values> Full</Values>514 <Values>Simplified</Values> 422 515 <Status>4</Status> 423 516 </Parameters> … … 553 646 <Type>simple_source</Type> 554 647 <Id_String>simple_source_1</Id_String> 555 <Block_Name> cold_in</Block_Name>556 <Image_File_Name>/ home/bicca/Desktop/biblioteca/biblioteca/trunk/eml/icon/Source.png</Image_File_Name>648 <Block_Name>simple_source_1</Block_Name> 649 <Image_File_Name>/media/sdb5/gerson/projetos/repositorio/biblioteca/trunk/eml/icon/Source.png</Image_File_Name> 557 650 <X>317</X> 558 651 <Y>205</Y> … … 569 662 <Model_Name>stream</Model_Name> 570 663 <T_Connection>2</T_Connection> 664 </Block_Properties> 665 </Base_Models> 666 <Model_File_Path>streams</Model_File_Path> 667 <Instance_Id>Outlet.</Instance_Id> 668 <Model_Name>Outlet</Model_Name> 669 <T_Connection>2</T_Connection> 670 </Block_Properties> 671 </Sub_Models> 672 <Model_File_Path>streams</Model_File_Path> 673 <Instance_Id></Instance_Id> 674 <Model_Name>simple_source</Model_Name> 675 <T_Connection>0</T_Connection> 676 <Parameters> 677 <Desc>PP</Desc> 678 <Index>0</Index> 679 <Values>PP</Values> 680 <Status>0</Status> 681 </Parameters> 571 682 <Variables> 572 <Desc>Outlet.F</Desc> 683 <Desc>MolarComposition</Desc> 684 <Index>0</Index> 685 <Values>0</Values> 686 <Status>1</Status> 687 <Index>1</Index> 688 <Values>1</Values> 689 <Status>1</Status> 690 </Variables> 691 <Variables> 692 <Desc>F</Desc> 573 693 <Index>0</Index> 574 694 <Values>58.0694</Values> … … 577 697 </Variables> 578 698 <Variables> 579 <Desc> Outlet.T</Desc>699 <Desc>T</Desc> 580 700 <Index>0</Index> 581 701 <Values>288.71</Values> … … 584 704 </Variables> 585 705 <Variables> 586 <Desc> Outlet.P</Desc>587 <Index>0</Index> 588 <Values>4 13.685</Values>589 <Status>1</Status> 590 <Unit> kPa</Unit>706 <Desc>P</Desc> 707 <Index>0</Index> 708 <Values>4.08275</Values> 709 <Status>1</Status> 710 <Unit>atm</Unit> 591 711 </Variables> 592 <Variables>593 <Desc>Outlet.z</Desc>594 <Index>0</Index>595 <Values>0</Values>596 <Status>1</Status>597 <Index>1</Index>598 <Values>1</Values>599 <Status>1</Status>600 </Variables>601 </Block_Properties>602 </Base_Models>603 <Model_File_Path>streams</Model_File_Path>604 <Instance_Id>Outlet.</Instance_Id>605 <Model_Name>Outlet</Model_Name>606 <T_Connection>2</T_Connection>607 </Block_Properties>608 </Sub_Models>609 <Model_File_Path>streams</Model_File_Path>610 <Instance_Id></Instance_Id>611 <Model_Name>simple_source</Model_Name>612 <T_Connection>0</T_Connection>613 712 </Block_Properties> 614 713 </Block> … … 616 715 <Type>simple_source</Type> 617 716 <Id_String>simple_source_2</Id_String> 618 <Block_Name> hot_in</Block_Name>619 <Image_File_Name>/ home/bicca/Desktop/biblioteca/biblioteca/trunk/eml/icon/Source.png</Image_File_Name>717 <Block_Name>simple_source_2</Block_Name> 718 <Image_File_Name>/media/sdb5/gerson/projetos/repositorio/biblioteca/trunk/eml/icon/Source.png</Image_File_Name> 620 719 <X>323</X> 621 720 <Y>18</Y> … … 632 731 <Model_Name>stream</Model_Name> 633 732 <T_Connection>2</T_Connection> 733 </Block_Properties> 734 </Base_Models> 735 <Model_File_Path>streams</Model_File_Path> 736 <Instance_Id>Outlet.</Instance_Id> 737 <Model_Name>Outlet</Model_Name> 738 <T_Connection>2</T_Connection> 739 </Block_Properties> 740 </Sub_Models> 741 <Model_File_Path>streams</Model_File_Path> 742 <Instance_Id></Instance_Id> 743 <Model_Name>simple_source</Model_Name> 744 <T_Connection>0</T_Connection> 745 <Parameters> 746 <Desc>PP</Desc> 747 <Index>0</Index> 748 <Values>PP</Values> 749 <Status>0</Status> 750 </Parameters> 634 751 <Variables> 635 <Desc>Outlet.F</Desc> 752 <Desc>MolarComposition</Desc> 753 <Index>0</Index> 754 <Values>1</Values> 755 <Status>1</Status> 756 <Index>1</Index> 757 <Values>0</Values> 758 <Status>1</Status> 759 </Variables> 760 <Variables> 761 <Desc>F</Desc> 636 762 <Index>0</Index> 637 763 <Values>47.2038</Values> … … 640 766 </Variables> 641 767 <Variables> 642 <Desc> Outlet.T</Desc>768 <Desc>T</Desc> 643 769 <Index>0</Index> 644 770 <Values>338.71</Values> … … 647 773 </Variables> 648 774 <Variables> 649 <Desc> Outlet.P</Desc>650 <Index>0</Index> 651 <Values>4 13.685</Values>652 <Status>1</Status> 653 <Unit> kPa</Unit>775 <Desc>P</Desc> 776 <Index>0</Index> 777 <Values>4.08275</Values> 778 <Status>1</Status> 779 <Unit>atm</Unit> 654 780 </Variables> 655 <Variables>656 <Desc>Outlet.z</Desc>657 <Index>0</Index>658 <Values>1</Values>659 <Status>1</Status>660 <Index>1</Index>661 <Values>0</Values>662 <Status>1</Status>663 </Variables>664 </Block_Properties>665 </Base_Models>666 <Model_File_Path>streams</Model_File_Path>667 <Instance_Id>Outlet.</Instance_Id>668 <Model_Name>Outlet</Model_Name>669 <T_Connection>2</T_Connection>670 </Block_Properties>671 </Sub_Models>672 <Model_File_Path>streams</Model_File_Path>673 <Instance_Id></Instance_Id>674 <Model_Name>simple_source</Model_Name>675 <T_Connection>0</T_Connection>676 781 </Block_Properties> 677 782 </Block> … … 679 784 <Type>simple_sink</Type> 680 785 <Id_String>simple_sink_1</Id_String> 681 <Block_Name> hot_out</Block_Name>682 <Image_File_Name>/ home/bicca/Desktop/biblioteca/biblioteca/trunk/eml/icon/Sink.png</Image_File_Name>786 <Block_Name>simple_sink_1</Block_Name> 787 <Image_File_Name>/media/sdb5/gerson/projetos/repositorio/biblioteca/trunk/eml/icon/Sink.png</Image_File_Name> 683 788 <X>916</X> 684 789 <Y>234</Y> … … 712 817 <Type>simple_sink</Type> 713 818 <Id_String>simple_sink_2</Id_String> 714 <Block_Name> cold_out</Block_Name>715 <Image_File_Name>/ home/bicca/Desktop/biblioteca/biblioteca/trunk/eml/icon/Sink.png</Image_File_Name>819 <Block_Name>simple_sink_2</Block_Name> 820 <Image_File_Name>/media/sdb5/gerson/projetos/repositorio/biblioteca/trunk/eml/icon/Sink.png</Image_File_Name> 716 821 <X>909</X> 717 822 <Y>53</Y> … … 743 848 </Block> 744 849 <Line> 745 <Line_Name>line_1</Line_Name> 850 <Line_Name>line_5</Line_Name> 851 <X1>395.5</X1> 852 <Y1>37.4472</Y1> 853 <X2>573</X2> 854 <Y2>82</Y2> 855 <Block_Source>simple_source_2</Block_Source> 856 <Port_Source>simple_source_2.Outlet</Port_Source> 857 <Block_Target>DoublePipeIncr_1</Block_Target> 858 <Port_Target>DoublePipeIncr_1.InletOuter</Port_Target> 859 </Line> 860 <Line> 861 <Line_Name>line_6</Line_Name> 746 862 <X1>389.5</X1> 747 863 <Y1>224.447</Y1> 748 <X2>48 4</X2>749 <Y2>13 7.34</Y2>864 <X2>488</X2> 865 <Y2>134</Y2> 750 866 <Block_Source>simple_source_1</Block_Source> 751 867 <Port_Source>simple_source_1.Outlet</Port_Source> … … 754 870 </Line> 755 871 <Line> 756 <Line_Name>line_ 2</Line_Name>757 <X1> 395.5</X1>758 <Y1> 37.4472</Y1>759 <X2> 572.077</X2>760 <Y2> 83</Y2>761 <Block_Source> simple_source_2</Block_Source>762 <Port_Source> simple_source_2.Outlet</Port_Source>763 <Block_Target> DoublePipeIncr_1</Block_Target>764 <Port_Target> DoublePipeIncr_1.InletOuter</Port_Target>872 <Line_Name>line_7</Line_Name> 873 <X1>798</X1> 874 <Y1>137.34</Y1> 875 <X2>917</X2> 876 <Y2>73</Y2> 877 <Block_Source>DoublePipeIncr_1</Block_Source> 878 <Port_Source>DoublePipeIncr_1.OutletInner</Port_Source> 879 <Block_Target>simple_sink_2</Block_Target> 880 <Port_Target>simple_sink_2.Inlet</Port_Target> 765 881 </Line> 766 882 <Line> 767 <Line_Name>line_ 3</Line_Name>883 <Line_Name>line_8</Line_Name> 768 884 <X1>712.09</X1> 769 885 <Y1>187</Y1> 770 <X2>9 16</X2>771 <Y2>25 3.64</Y2>886 <X2>921</X2> 887 <Y2>256</Y2> 772 888 <Block_Source>DoublePipeIncr_1</Block_Source> 773 889 <Port_Source>DoublePipeIncr_1.OutletOuter</Port_Source> … … 775 891 <Port_Target>simple_sink_1.Inlet</Port_Target> 776 892 </Line> 777 <Line>778 <Line_Name>line_4</Line_Name>779 <X1>798</X1>780 <Y1>137.34</Y1>781 <X2>909</X2>782 <Y2>72.6396</Y2>783 <Block_Source>DoublePipeIncr_1</Block_Source>784 <Port_Source>DoublePipeIncr_1.OutletInner</Port_Source>785 <Block_Target>simple_sink_2</Block_Target>786 <Port_Target>simple_sink_2.Inlet</Port_Target>787 </Line>788 893 </Diagram> -
trunk/sample/heat_exchangers/DPIncremental_diagram.rlt
r483 r632 1 D PIncremental_diagram1 DoublePipe_Incremental 2 2 1 0 3 D PIncremental_diagram3 DoublePipe_Incremental 4 4 0 0 5 5 … … 14 14 0 0 15 15 16 29 17 NComp 18 0 0 19 20 0 16 28 21 17 N 22 1 1 1 40 018 1 1 1 100 0 23 19 24 20 0 25 21 Npoints 26 1 1 1 41 022 1 1 1 101 0 27 23 28 24 0 29 25 Qestimated 30 1 1 1 3 0026 1 1 1 33 0 31 27 32 28 0 … … 104 100 0 0 105 101 106 7 107 NComp 108 0 0 109 110 0 102 6 111 103 F 112 104 1 1 1 58.0694 0 … … 121 113 122 114 0 115 h 116 1 1 1 -33924 0 117 118 0 119 v 120 1 1 1 0 0 121 122 0 123 123 z 124 124 1 2 1 0 1 1 0 125 125 126 126 0 127 128 0 129 InletOuter 130 0 1 131 stream 132 0 0 133 134 6 135 F 136 1 1 1 47.2038 0 137 138 0 139 T 140 1 1 1 338.71 0 141 142 0 143 P 144 1 1 1 4.08275 0 145 146 0 127 147 h 128 1 1 1 - 339240148 1 1 1 -46122.3 0 129 149 130 150 0 … … 133 153 134 154 0 135 136 0 137 InletOuter 155 z 156 1 2 1 1 1 0 0 157 158 0 159 160 0 161 OutletInner 162 0 1 163 streamPH 138 164 0 1 139 165 stream 140 166 0 0 141 167 142 7 143 NComp 144 0 0 145 146 0 168 6 169 F 170 1 1 1 58.0694 0 171 172 0 173 T 174 1 1 1 306.094 0 175 176 0 177 P 178 1 1 1 4.02783 0 179 180 0 181 h 182 1 1 1 -31878.2 0 183 184 0 185 v 186 1 1 1 0 0 187 188 0 189 z 190 1 2 1 0 1 1 0 191 192 0 193 194 2 195 x 196 1 2 1 0 1 1 0 197 198 0 199 y 200 1 2 1 0 1 1 0 201 202 0 203 204 0 205 OutletOuter 206 0 1 207 streamPH 208 0 1 209 stream 210 0 0 211 212 6 147 213 F 148 214 1 1 1 47.2038 0 … … 150 216 0 151 217 T 152 1 1 1 338.71 0 153 154 0 155 P 156 1 1 1 4.08275 0 218 1 1 1 324.051 0 219 220 0 221 P 222 1 1 1 3.60943 0 223 224 0 225 h 226 1 1 1 -48639.1 0 227 228 0 229 v 230 1 1 1 0 0 157 231 158 232 0 … … 161 235 162 236 0 163 h 164 1 1 1 -46122.3 0 165 166 0 167 v 168 1 1 1 0 0 169 170 0 171 172 0 173 OutletInner 174 0 1 175 streamPH 176 0 1 177 stream 178 0 0 179 180 7 181 NComp 182 0 0 183 184 0 185 F 186 1 1 1 58.0694 0 187 188 0 189 T 190 1 1 1 302.678 0 191 192 0 193 P 194 1 1 1 4.02779 0 195 196 0 197 z 198 1 2 1 0 1 1 0 199 200 0 201 h 202 1 1 1 -32289.2 0 203 204 0 205 v 206 1 1 1 0 0 207 208 0 209 210 3 211 x 212 1 2 1 0 1 1 0 213 214 0 215 y 216 1 2 1 0 1 1 0 217 218 0 219 s 220 1 1 1 -187.416 0 221 222 0 223 224 0 225 OutletOuter 226 0 1 227 streamPH 228 0 1 229 stream 230 0 0 231 232 7 233 NComp 234 0 0 235 236 0 237 F 238 1 1 1 47.2038 0 239 240 0 241 T 242 1 1 1 327.034 0 243 244 0 245 P 246 1 1 1 3.63017 0 247 248 0 249 z 250 1 2 1 1 1 0 0 251 252 0 253 h 254 1 1 1 -48133.4 0 255 256 0 257 v 258 1 1 1 0 0 259 260 0 261 262 3 237 238 2 263 239 x 264 240 1 2 1 1 1 0 0 … … 269 245 270 246 0 271 s272 1 1 1 -199.74 0273 274 0275 247 276 248 0 … … 280 252 0 0 281 253 282 6 283 N 284 0 0 285 286 0 254 5 287 255 A 288 256 1 1 1 1.19205 0 … … 290 258 0 291 259 Q 292 1 40 1 0.65037 1 0.650868 1 0.651363 1 0.651855 1 0.652342 1 0.652827 1 0.653307 1 0.653784 1 0.654258 1 0.654728 1 0.655195 1 0.655658 1 0.656117 1 0.656573 1 0.657026 1 0.657475 1 0.657921 1 0.658363 1 0.658802 1 0.659238 1 0.65967 1 0.660099 1 0.660525 1 0.660947 1 0.661366 1 0.661782 1 0.662194 1 0.662603 1 0.663009 1 0.663412 1 0.663811 1 0.664208 1 0.664601 1 0.664991 1 0.665378 1 0.665762 1 0.666142 1 0.66652 1 0.6669 1 0.6672820260 1 100 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 1 0.33 0 293 261 294 262 0 295 263 Qtotal 296 1 1 1 26.3693 0264 1 1 1 33 0 297 265 298 266 0 299 267 Uc 300 1 40 1 0.650119 1 0.651872 1 0.653624 1 0.655374 1 0.657124 1 0.658872 1 0.660619 1 0.662364 1 0.664108 1 0.665851 1 0.667593 1 0.669333 1 0.671071 1 0.672809 1 0.674544 1 0.676279 1 0.678012 1 0.679743 1 0.681473 1 0.683201 1 0.684928 1 0.686653 1 0.688376 1 0.690098 1 0.691818 1 0.693537 1 0.695254 1 0.696969 1 0.698683 1 0.700395 1 0.702105 1 0.703813 1 0.70552 1 0.707225 1 0.708928 1 0.710629 1 0.712328 1 0.714026 1 0.715722 1 0.7174180268 1 100 1 0.638391 1 0.641355 1 0.642252 1 0.643149 1 0.644045 1 0.64494 1 0.645835 1 0.646729 1 0.647623 1 0.648515 1 0.649407 1 0.650299 1 0.65119 1 0.65208 1 0.652969 1 0.653858 1 0.654746 1 0.655633 1 0.65652 1 0.657406 1 0.658292 1 0.659176 1 0.660061 1 0.660944 1 0.661827 1 0.662709 1 0.66359 1 0.664471 1 0.665351 1 0.66623 1 0.667109 1 0.667987 1 0.668865 1 0.669741 1 0.670617 1 0.671493 1 0.672368 1 0.673242 1 0.674115 1 0.674988 1 0.67586 1 0.676731 1 0.677602 1 0.678472 1 0.679341 1 0.68021 1 0.681077 1 0.681945 1 0.682811 1 0.683677 1 0.684542 1 0.685407 1 0.686271 1 0.687134 1 0.687996 1 0.688858 1 0.689719 1 0.69058 1 0.69144 1 0.692299 1 0.693157 1 0.694015 1 0.694872 1 0.695728 1 0.696584 1 0.697439 1 0.698293 1 0.699147 1 0.7 1 0.700852 1 0.701703 1 0.702554 1 0.703404 1 0.704254 1 0.705103 1 0.705951 1 0.706798 1 0.707645 1 0.708491 1 0.709336 1 0.710181 1 0.711025 1 0.711868 1 0.712711 1 0.713553 1 0.714394 1 0.715234 1 0.716074 1 0.716913 1 0.717752 1 0.718589 1 0.719427 1 0.720263 1 0.721099 1 0.721934 1 0.722768 1 0.723601 1 0.724434 1 0.725267 1 0.726099 0 301 269 302 270 0 303 271 Ud 304 1 40 1 0.5699 1 0.571247 1 0.572592 1 0.573935 1 0.575276 1 0.576615 1 0.577953 1 0.579288 1 0.580622 1 0.581953 1 0.583283 1 0.584611 1 0.585937 1 0.587261 1 0.588583 1 0.589903 1 0.591221 1 0.592537 1 0.593851 1 0.595163 1 0.596473 1 0.597781 1 0.599087 1 0.60039 1 0.601692 1 0.602992 1 0.604289 1 0.605584 1 0.606878 1 0.608169 1 0.609458 1 0.610745 1 0.612029 1 0.613312 1 0.614592 1 0.615871 1 0.617147 1 0.61842 1 0.619693 1 0.6209630272 1 100 1 0.561232 1 0.563154 1 0.563846 1 0.564537 1 0.565227 1 0.565917 1 0.566606 1 0.567294 1 0.567981 1 0.568667 1 0.569353 1 0.570038 1 0.570723 1 0.571406 1 0.572089 1 0.572771 1 0.573452 1 0.574133 1 0.574813 1 0.575492 1 0.576171 1 0.576848 1 0.577525 1 0.578201 1 0.578877 1 0.579552 1 0.580226 1 0.580899 1 0.581571 1 0.582243 1 0.582914 1 0.583584 1 0.584254 1 0.584923 1 0.585591 1 0.586258 1 0.586925 1 0.587591 1 0.588256 1 0.58892 1 0.589584 1 0.590247 1 0.590909 1 0.591571 1 0.592232 1 0.592892 1 0.593551 1 0.59421 1 0.594867 1 0.595524 1 0.596181 1 0.596836 1 0.597491 1 0.598146 1 0.598799 1 0.599452 1 0.600104 1 0.600755 1 0.601406 1 0.602055 1 0.602704 1 0.603353 1 0.604 1 0.604647 1 0.605294 1 0.605939 1 0.606584 1 0.607228 1 0.607871 1 0.608514 1 0.609155 1 0.609797 1 0.610437 1 0.611077 1 0.611716 1 0.612354 1 0.612991 1 0.613628 1 0.614264 1 0.614899 1 0.615534 1 0.616168 1 0.616801 1 0.617434 1 0.618065 1 0.618696 1 0.619327 1 0.619956 1 0.620585 1 0.621213 1 0.621841 1 0.622467 1 0.623094 1 0.623719 1 0.624343 1 0.624967 1 0.62559 1 0.626213 1 0.626835 1 0.627456 0 305 273 306 274 0 … … 318 286 0 0 319 287 320 1 3288 11 321 289 As 322 290 1 1 1 0.000964864 0 … … 327 295 328 296 0 329 N330 0 0331 332 0333 Npoints334 0 0335 336 0337 297 Tlocal 338 1 41 1 288.71 1 289.062 1 289.414 1 289.766 1 290.118 1 290.47 1 290.821 1 291.173 1 291.524 1 291.875 1 292.226 1 292.577 1 292.927 1 293.278 1 293.628 1 293.978 1 294.328 1 294.678 1 295.028 1 295.377 1 295.727 1 296.076 1 296.425 1 296.774 1 297.123 1 297.471 1 297.819 1 298.168 1 298.516 1 298.863 1 299.211 1 299.559 1 299.906 1 300.253 1 300.6 1 300.947 1 301.293 1 301.64 1 301.986 1 302.332 1 302.6780298 1 101 1 288.71 1 288.889 1 289.067 1 289.246 1 289.424 1 289.603 1 289.781 1 289.959 1 290.137 1 290.315 1 290.493 1 290.671 1 290.848 1 291.026 1 291.203 1 291.381 1 291.558 1 291.735 1 291.912 1 292.089 1 292.266 1 292.442 1 292.619 1 292.795 1 292.972 1 293.148 1 293.324 1 293.5 1 293.676 1 293.852 1 294.028 1 294.204 1 294.379 1 294.555 1 294.73 1 294.905 1 295.081 1 295.256 1 295.431 1 295.606 1 295.78 1 295.955 1 296.13 1 296.304 1 296.479 1 296.653 1 296.827 1 297.001 1 297.175 1 297.349 1 297.523 1 297.697 1 297.87 1 298.044 1 298.217 1 298.391 1 298.564 1 298.737 1 298.91 1 299.083 1 299.256 1 299.429 1 299.601 1 299.774 1 299.946 1 300.119 1 300.291 1 300.463 1 300.635 1 300.807 1 300.979 1 301.151 1 301.323 1 301.494 1 301.666 1 301.837 1 302.009 1 302.18 1 302.351 1 302.522 1 302.693 1 302.864 1 303.035 1 303.205 1 303.376 1 303.547 1 303.717 1 303.887 1 304.058 1 304.228 1 304.398 1 304.568 1 304.738 1 304.907 1 305.077 1 305.247 1 305.416 1 305.586 1 305.755 1 305.924 1 306.094 0 339 299 340 300 0 341 301 Re 342 1 40 1 62681.4 1 63003.5 1 63326.2 1 63649.8 1 63974.2 1 64299.4 1 64625.3 1 64952 1 65279.6 1 65607.9 1 65936.9 1 66266.8 1 66597.4 1 66928.8 1 67261 1 67593.9 1 67927.6 1 68262.1 1 68597.3 1 68933.3 1 69270 1 69607.5 1 69945.7 1 70284.6 1 70624.4 1 70964.8 1 71306 1 71647.9 1 71990.6 1 72333.9 1 72678 1 73022.9 1 73368.4 1 73714.7 1 74061.7 1 74409.4 1 74757.8 1 75106.9 1 75456.8 1 75807.3 0302 1 100 1 62602.2 1 62765.4 1 62928.7 1 63092.2 1 63255.7 1 63419.5 1 63583.4 1 63747.4 1 63911.5 1 64075.8 1 64240.3 1 64404.8 1 64569.5 1 64734.4 1 64899.4 1 65064.5 1 65229.8 1 65395.2 1 65560.7 1 65726.4 1 65892.3 1 66058.2 1 66224.3 1 66390.5 1 66556.9 1 66723.4 1 66890.1 1 67056.8 1 67223.8 1 67390.8 1 67558 1 67725.3 1 67892.8 1 68060.4 1 68228.1 1 68396 1 68563.9 1 68732.1 1 68900.3 1 69068.7 1 69237.3 1 69405.9 1 69574.7 1 69743.6 1 69912.7 1 70081.9 1 70251.2 1 70420.6 1 70590.2 1 70759.9 1 70929.8 1 71099.7 1 71269.8 1 71440.1 1 71610.4 1 71780.9 1 71951.6 1 72122.3 1 72293.2 1 72464.2 1 72635.3 1 72806.6 1 72978 1 73149.5 1 73321.1 1 73492.9 1 73664.8 1 73836.8 1 74009 1 74181.3 1 74353.7 1 74526.2 1 74698.9 1 74871.7 1 75044.6 1 75217.6 1 75390.8 1 75564 1 75737.4 1 75911 1 76084.6 1 76258.4 1 76432.3 1 76606.3 1 76780.5 1 76954.8 1 77129.1 1 77303.7 1 77478.3 1 77653.1 1 77827.9 1 78002.9 1 78178.1 1 78353.3 1 78528.7 1 78704.2 1 78879.8 1 79055.5 1 79231.3 1 79407.3 0 343 303 344 304 0 345 305 hcoeff 346 1 40 1 1570.06 1 1573.68 1 1577.3 1 1580.91 1 1584.53 1 1588.14 1 1591.75 1 1595.36 1 1598.96 1 1602.56 1 1606.16 1 1609.76 1 1613.35 1 1616.94 1 1620.53 1 1624.12 1 1627.7 1 1631.29 1 1634.86 1 1638.44 1 1642.01 1 1645.58 1 1649.15 1 1652.72 1 1656.28 1 1659.84 1 1663.39 1 1666.95 1 1670.5 1 1674.05 1 1677.59 1 1681.13 1 1684.67 1 1688.21 1 1691.74 1 1695.27 1 1698.79 1 1702.32 1 1705.84 1 1709.350306 1 100 1 1564.91 1 1566.75 1 1568.58 1 1570.42 1 1572.25 1 1574.09 1 1575.92 1 1577.75 1 1579.58 1 1581.41 1 1583.23 1 1585.06 1 1586.88 1 1588.7 1 1590.53 1 1592.35 1 1594.16 1 1595.98 1 1597.8 1 1599.61 1 1601.43 1 1603.24 1 1605.05 1 1606.86 1 1608.67 1 1610.48 1 1612.28 1 1614.09 1 1615.89 1 1617.69 1 1619.49 1 1621.29 1 1623.09 1 1624.89 1 1626.68 1 1628.48 1 1630.27 1 1632.06 1 1633.85 1 1635.64 1 1637.43 1 1639.22 1 1641 1 1642.79 1 1644.57 1 1646.35 1 1648.13 1 1649.91 1 1651.69 1 1653.47 1 1655.24 1 1657.02 1 1658.79 1 1660.56 1 1662.33 1 1664.1 1 1665.87 1 1667.64 1 1669.4 1 1671.17 1 1672.93 1 1674.69 1 1676.45 1 1678.21 1 1679.97 1 1681.72 1 1683.48 1 1685.23 1 1686.99 1 1688.74 1 1690.49 1 1692.24 1 1693.98 1 1695.73 1 1697.47 1 1699.22 1 1700.96 1 1702.7 1 1704.44 1 1706.18 1 1707.92 1 1709.65 1 1711.39 1 1713.12 1 1714.85 1 1716.59 1 1718.32 1 1720.04 1 1721.77 1 1723.5 1 1725.22 1 1726.95 1 1728.67 1 1730.39 1 1732.11 1 1733.83 1 1735.55 1 1737.26 1 1738.98 1 1740.69 0 347 307 348 308 0 349 309 fi 350 1 40 1 0.0198889 1 0.0198662 1 0.0198436 1 0.0198211 1 0.0197987 1 0.0197764 1 0.0197542 1 0.019732 1 0.01971 1 0.0196881 1 0.0196663 1 0.0196445 1 0.0196229 1 0.0196013 1 0.0195799 1 0.0195585 1 0.0195372 1 0.019516 1 0.0194949 1 0.0194739 1 0.019453 1 0.0194322 1 0.0194114 1 0.0193908 1 0.0193702 1 0.0193497 1 0.0193294 1 0.0193091 1 0.0192888 1 0.0192687 1 0.0192486 1 0.0192287 1 0.0192088 1 0.019189 1 0.0191693 1 0.0191496 1 0.0191301 1 0.0191106 1 0.0190912 1 0.01907190310 1 100 1 0.0198945 1 0.0198829 1 0.0198714 1 0.01986 1 0.0198485 1 0.0198371 1 0.0198257 1 0.0198143 1 0.019803 1 0.0197917 1 0.0197804 1 0.0197692 1 0.0197579 1 0.0197468 1 0.0197356 1 0.0197245 1 0.0197134 1 0.0197023 1 0.0196912 1 0.0196802 1 0.0196692 1 0.0196582 1 0.0196473 1 0.0196364 1 0.0196255 1 0.0196147 1 0.0196038 1 0.019593 1 0.0195823 1 0.0195715 1 0.0195608 1 0.0195501 1 0.0195394 1 0.0195288 1 0.0195182 1 0.0195076 1 0.019497 1 0.0194865 1 0.019476 1 0.0194655 1 0.019455 1 0.0194446 1 0.0194342 1 0.0194238 1 0.0194135 1 0.0194031 1 0.0193928 1 0.0193825 1 0.0193723 1 0.0193621 1 0.0193518 1 0.0193417 1 0.0193315 1 0.0193214 1 0.0193113 1 0.0193012 1 0.0192911 1 0.0192811 1 0.0192711 1 0.0192611 1 0.0192511 1 0.0192412 1 0.0192313 1 0.0192214 1 0.0192115 1 0.0192017 1 0.0191918 1 0.019182 1 0.0191723 1 0.0191625 1 0.0191528 1 0.0191431 1 0.0191334 1 0.0191237 1 0.0191141 1 0.0191045 1 0.0190949 1 0.0190853 1 0.0190757 1 0.0190662 1 0.0190567 1 0.0190472 1 0.0190378 1 0.0190283 1 0.0190189 1 0.0190095 1 0.0190001 1 0.0189908 1 0.0189814 1 0.0189721 1 0.0189628 1 0.0189536 1 0.0189443 1 0.0189351 1 0.0189259 1 0.0189167 1 0.0189075 1 0.0188984 1 0.0188893 1 0.0188802 0 351 311 352 312 0 353 313 Nu 354 1 40 1 359.791 1 360.854 1 361.917 1 362.981 1 364.046 1 365.111 1 366.177 1 367.244 1 368.311 1 369.38 1 370.448 1 371.518 1 372.588 1 373.658 1 374.73 1 375.802 1 376.874 1 377.947 1 379.021 1 380.095 1 381.17 1 382.246 1 383.322 1 384.399 1 385.476 1 386.554 1 387.633 1 388.712 1 389.791 1 390.871 1 391.952 1 393.033 1 394.115 1 395.197 1 396.28 1 397.363 1 398.447 1 399.532 1 400.616 1 401.7020314 1 100 1 359.53 1 360.069 1 360.608 1 361.146 1 361.685 1 362.224 1 362.763 1 363.302 1 363.84 1 364.379 1 364.918 1 365.457 1 365.995 1 366.534 1 367.072 1 367.611 1 368.149 1 368.688 1 369.226 1 369.765 1 370.303 1 370.842 1 371.38 1 371.918 1 372.457 1 372.995 1 373.533 1 374.071 1 374.61 1 375.148 1 375.686 1 376.224 1 376.762 1 377.3 1 377.838 1 378.376 1 378.914 1 379.452 1 379.99 1 380.528 1 381.066 1 381.604 1 382.142 1 382.68 1 383.217 1 383.755 1 384.293 1 384.83 1 385.368 1 385.906 1 386.443 1 386.981 1 387.519 1 388.056 1 388.594 1 389.131 1 389.668 1 390.206 1 390.743 1 391.281 1 391.818 1 392.355 1 392.893 1 393.43 1 393.967 1 394.504 1 395.042 1 395.579 1 396.116 1 396.653 1 397.19 1 397.727 1 398.264 1 398.801 1 399.338 1 399.875 1 400.412 1 400.949 1 401.486 1 402.023 1 402.559 1 403.096 1 403.633 1 404.17 1 404.706 1 405.243 1 405.78 1 406.316 1 406.853 1 407.39 1 407.926 1 408.463 1 408.999 1 409.536 1 410.072 1 410.609 1 411.145 1 411.681 1 412.218 1 412.754 0 355 315 356 316 0 357 317 PR 358 1 40 1 7.25985 1 7.23484 1 7.21001 1 7.18535 1 7.16087 1 7.13656 1 7.11241 1 7.08843 1 7.06462 1 7.04098 1 7.0175 1 6.99418 1 6.97102 1 6.94802 1 6.92518 1 6.90249 1 6.87996 1 6.85759 1 6.83537 1 6.8133 1 6.79138 1 6.76961 1 6.74799 1 6.72651 1 6.70518 1 6.684 1 6.66296 1 6.64206 1 6.6213 1 6.60068 1 6.5802 1 6.55986 1 6.53966 1 6.51959 1 6.49966 1 6.47985 1 6.46019 1 6.44065 1 6.42124 1 6.401960318 1 100 1 7.26604 1 7.25331 1 7.24063 1 7.228 1 7.21542 1 7.20288 1 7.1904 1 7.17797 1 7.16559 1 7.15325 1 7.14096 1 7.12872 1 7.11653 1 7.10438 1 7.09229 1 7.08024 1 7.06823 1 7.05627 1 7.04436 1 7.0325 1 7.02068 1 7.0089 1 6.99717 1 6.98549 1 6.97385 1 6.96225 1 6.9507 1 6.93919 1 6.92773 1 6.91631 1 6.90493 1 6.8936 1 6.88231 1 6.87106 1 6.85986 1 6.84869 1 6.83757 1 6.82649 1 6.81546 1 6.80446 1 6.7935 1 6.78259 1 6.77172 1 6.76089 1 6.75009 1 6.73934 1 6.72863 1 6.71796 1 6.70732 1 6.69673 1 6.68618 1 6.67566 1 6.66518 1 6.65475 1 6.64435 1 6.63399 1 6.62366 1 6.61338 1 6.60313 1 6.59292 1 6.58275 1 6.57261 1 6.56251 1 6.55245 1 6.54242 1 6.53243 1 6.52248 1 6.51256 1 6.50268 1 6.49284 1 6.48303 1 6.47325 1 6.46351 1 6.45381 1 6.44414 1 6.4345 1 6.4249 1 6.41533 1 6.4058 1 6.3963 1 6.38684 1 6.37741 1 6.36801 1 6.35865 1 6.34931 1 6.34002 1 6.33075 1 6.32152 1 6.31232 1 6.30315 1 6.29402 1 6.28491 1 6.27584 1 6.2668 1 6.2578 1 6.24882 1 6.23988 1 6.23096 1 6.22208 1 6.21323 0 359 319 360 320 0 361 321 Phi 362 1 40 1 1.03749 1 1.03735 1 1.03721 1 1.03707 1 1.03694 1 1.0368 1 1.03666 1 1.03653 1 1.03639 1 1.03626 1 1.03613 1 1.03599 1 1.03586 1 1.03573 1 1.0356 1 1.03547 1 1.03534 1 1.03521 1 1.03509 1 1.03496 1 1.03483 1 1.03471 1 1.03458 1 1.03446 1 1.03433 1 1.03421 1 1.03409 1 1.03397 1 1.03385 1 1.03373 1 1.03361 1 1.03349 1 1.03337 1 1.03325 1 1.03314 1 1.03302 1 1.0329 1 1.03279 1 1.03267 1 1.03256 0322 1 100 1 1.03471 1 1.03464 1 1.03458 1 1.03451 1 1.03444 1 1.03438 1 1.03431 1 1.03424 1 1.03418 1 1.03411 1 1.03405 1 1.03398 1 1.03392 1 1.03385 1 1.03379 1 1.03372 1 1.03366 1 1.03359 1 1.03353 1 1.03347 1 1.0334 1 1.03334 1 1.03328 1 1.03321 1 1.03315 1 1.03309 1 1.03303 1 1.03296 1 1.0329 1 1.03284 1 1.03278 1 1.03272 1 1.03266 1 1.0326 1 1.03254 1 1.03248 1 1.03242 1 1.03235 1 1.03229 1 1.03224 1 1.03218 1 1.03212 1 1.03206 1 1.032 1 1.03194 1 1.03188 1 1.03182 1 1.03176 1 1.03171 1 1.03165 1 1.03159 1 1.03153 1 1.03147 1 1.03142 1 1.03136 1 1.0313 1 1.03125 1 1.03119 1 1.03113 1 1.03108 1 1.03102 1 1.03096 1 1.03091 1 1.03085 1 1.0308 1 1.03074 1 1.03069 1 1.03063 1 1.03058 1 1.03052 1 1.03047 1 1.03041 1 1.03036 1 1.03031 1 1.03025 1 1.0302 1 1.03015 1 1.03009 1 1.03004 1 1.02999 1 1.02993 1 1.02988 1 1.02983 1 1.02978 1 1.02972 1 1.02967 1 1.02962 1 1.02957 1 1.02952 1 1.02947 1 1.02941 1 1.02936 1 1.02931 1 1.02926 1 1.02921 1 1.02916 1 1.02911 1 1.02906 1 1.02901 1 1.02896 0 363 323 364 324 0 365 325 Vmean 366 1 40 1 1.44511 1 1.44559 1 1.44607 1 1.44655 1 1.44702 1 1.4475 1 1.44799 1 1.44847 1 1.44895 1 1.44943 1 1.44992 1 1.4504 1 1.45089 1 1.45137 1 1.45186 1 1.45235 1 1.45284 1 1.45332 1 1.45381 1 1.45431 1 1.4548 1 1.45529 1 1.45578 1 1.45628 1 1.45677 1 1.45727 1 1.45776 1 1.45826 1 1.45876 1 1.45926 1 1.45976 1 1.46026 1 1.46076 1 1.46126 1 1.46176 1 1.46227 1 1.46277 1 1.46328 1 1.46378 1 1.464290326 1 100 1 1.445 1 1.44524 1 1.44548 1 1.44572 1 1.44596 1 1.44621 1 1.44645 1 1.44669 1 1.44693 1 1.44717 1 1.44742 1 1.44766 1 1.4479 1 1.44815 1 1.44839 1 1.44863 1 1.44888 1 1.44912 1 1.44936 1 1.44961 1 1.44985 1 1.45009 1 1.45034 1 1.45058 1 1.45083 1 1.45107 1 1.45131 1 1.45156 1 1.4518 1 1.45205 1 1.45229 1 1.45254 1 1.45278 1 1.45303 1 1.45327 1 1.45352 1 1.45377 1 1.45401 1 1.45426 1 1.4545 1 1.45475 1 1.455 1 1.45524 1 1.45549 1 1.45573 1 1.45598 1 1.45623 1 1.45647 1 1.45672 1 1.45697 1 1.45722 1 1.45746 1 1.45771 1 1.45796 1 1.45821 1 1.45845 1 1.4587 1 1.45895 1 1.4592 1 1.45945 1 1.4597 1 1.45994 1 1.46019 1 1.46044 1 1.46069 1 1.46094 1 1.46119 1 1.46144 1 1.46169 1 1.46194 1 1.46219 1 1.46244 1 1.46269 1 1.46294 1 1.46319 1 1.46344 1 1.46369 1 1.46394 1 1.46419 1 1.46444 1 1.46469 1 1.46494 1 1.46519 1 1.46544 1 1.46569 1 1.46595 1 1.4662 1 1.46645 1 1.4667 1 1.46695 1 1.46721 1 1.46746 1 1.46771 1 1.46796 1 1.46822 1 1.46847 1 1.46872 1 1.46897 1 1.46923 1 1.46948 0 367 327 368 328 0 369 329 Enth 370 1 41 1 -33924 1 -33883.7 1 -33843.3 1 -33802.9 1 -33762.5 1 -33722.1 1 -33681.6 1 -33641.1 1 -33600.6 1 -33560 1 -33519.4 1 -33478.8 1 -33438.2 1 -33397.5 1 -33356.8 1 -33316.1 1 -33275.3 1 -33234.5 1 -33193.7 1 -33152.8 1 -33112 1 -33071.1 1 -33030.2 1 -32989.2 1 -32948.2 1 -32907.2 1 -32866.2 1 -32825.2 1 -32784.1 1 -32743 1 -32701.8 1 -32660.7 1 -32619.5 1 -32578.3 1 -32537.1 1 -32495.8 1 -32454.6 1 -32413.3 1 -32371.9 1 -32330.6 1 -32289.2 0330 1 101 1 -33924 1 -33903.5 1 -33883.1 1 -33862.6 1 -33842.2 1 -33821.7 1 -33801.2 1 -33780.8 1 -33760.3 1 -33739.9 1 -33719.4 1 -33699 1 -33678.5 1 -33658 1 -33637.6 1 -33617.1 1 -33596.7 1 -33576.2 1 -33555.7 1 -33535.3 1 -33514.8 1 -33494.4 1 -33473.9 1 -33453.5 1 -33433 1 -33412.5 1 -33392.1 1 -33371.6 1 -33351.2 1 -33330.7 1 -33310.2 1 -33289.8 1 -33269.3 1 -33248.9 1 -33228.4 1 -33208 1 -33187.5 1 -33167 1 -33146.6 1 -33126.1 1 -33105.7 1 -33085.2 1 -33064.7 1 -33044.3 1 -33023.8 1 -33003.4 1 -32982.9 1 -32962.5 1 -32942 1 -32921.5 1 -32901.1 1 -32880.6 1 -32860.2 1 -32839.7 1 -32819.2 1 -32798.8 1 -32778.3 1 -32757.9 1 -32737.4 1 -32717 1 -32696.5 1 -32676 1 -32655.6 1 -32635.1 1 -32614.7 1 -32594.2 1 -32573.7 1 -32553.3 1 -32532.8 1 -32512.4 1 -32491.9 1 -32471.5 1 -32451 1 -32430.5 1 -32410.1 1 -32389.6 1 -32369.2 1 -32348.7 1 -32328.2 1 -32307.8 1 -32287.3 1 -32266.9 1 -32246.4 1 -32226 1 -32205.5 1 -32185 1 -32164.6 1 -32144.1 1 -32123.7 1 -32103.2 1 -32082.7 1 -32062.3 1 -32041.8 1 -32021.4 1 -32000.9 1 -31980.5 1 -31960 1 -31939.5 1 -31919.1 1 -31898.6 1 -31878.2 0 371 331 372 332 0 … … 378 338 0 0 379 339 380 1 4340 12 381 341 Dh 382 342 1 1 1 0.03505 0 383 343 384 344 0 385 N386 0 0387 388 0389 Npoints390 0 0391 392 0393 345 Plocal 394 1 41 1 413.685 1 413.544 1 413.402 1 413.261 1 413.12 1 412.98 1 412.839 1 412.698 1 412.558 1 412.417 1 412.277 1 412.137 1 411.997 1 411.857 1 411.717 1 411.578 1 411.438 1 411.299 1 411.159 1 411.02 1 410.881 1 410.742 1 410.603 1 410.464 1 410.325 1 410.186 1 410.048 1 409.909 1 409.771 1 409.632 1 409.494 1 409.356 1 409.218 1 409.08 1 408.942 1 408.804 1 408.666 1 408.529 1 408.391 1 408.253 1 408.1160346 1 101 1 413.685 1 413.628 1 413.572 1 413.515 1 413.458 1 413.402 1 413.345 1 413.289 1 413.232 1 413.176 1 413.119 1 413.063 1 413.006 1 412.95 1 412.894 1 412.837 1 412.781 1 412.725 1 412.668 1 412.612 1 412.556 1 412.5 1 412.444 1 412.387 1 412.331 1 412.275 1 412.219 1 412.163 1 412.107 1 412.051 1 411.995 1 411.939 1 411.883 1 411.827 1 411.771 1 411.715 1 411.659 1 411.604 1 411.548 1 411.492 1 411.436 1 411.38 1 411.325 1 411.269 1 411.213 1 411.157 1 411.102 1 411.046 1 410.99 1 410.935 1 410.879 1 410.824 1 410.768 1 410.712 1 410.657 1 410.601 1 410.546 1 410.49 1 410.435 1 410.38 1 410.324 1 410.269 1 410.213 1 410.158 1 410.103 1 410.047 1 409.992 1 409.937 1 409.881 1 409.826 1 409.771 1 409.716 1 409.66 1 409.605 1 409.55 1 409.495 1 409.44 1 409.385 1 409.329 1 409.274 1 409.219 1 409.164 1 409.109 1 409.054 1 408.999 1 408.944 1 408.889 1 408.834 1 408.779 1 408.724 1 408.669 1 408.614 1 408.559 1 408.504 1 408.449 1 408.394 1 408.34 1 408.285 1 408.23 1 408.175 1 408.12 0 395 347 396 348 0 397 349 Pdrop 398 1 1 1 7.00017 0350 1 1 1 6.99787 0 399 351 400 352 0 401 353 Pd_fric 402 1 41 1 0 1 0.141323 1 0.282522 1 0.423597 1 0.56455 1 0.705382 1 0.846095 1 0.98669 1 1.12717 1 1.26753 1 1.40778 1 1.54792 1 1.68795 1 1.82787 1 1.96768 1 2.10738 1 2.24698 1 2.38647 1 2.52586 1 2.66515 1 2.80434 1 2.94343 1 3.08243 1 3.22132 1 3.36013 1 3.49884 1 3.63745 1 3.77598 1 3.91441 1 4.05276 1 4.19102 1 4.32919 1 4.46728 1 4.60528 1 4.7432 1 4.88104 1 5.0188 1 5.15648 1 5.29408 1 5.43161 1 5.569050354 1 101 1 0 1 0.0566893 1 0.113353 1 0.16999 1 0.226603 1 0.283189 1 0.339751 1 0.396287 1 0.452798 1 0.509285 1 0.565747 1 0.622184 1 0.678598 1 0.734987 1 0.791352 1 0.847693 1 0.904011 1 0.960305 1 1.01658 1 1.07282 1 1.12905 1 1.18525 1 1.24143 1 1.29759 1 1.35372 1 1.40983 1 1.46592 1 1.52199 1 1.57803 1 1.63406 1 1.69006 1 1.74604 1 1.802 1 1.85794 1 1.91386 1 1.96976 1 2.02563 1 2.08149 1 2.13733 1 2.19314 1 2.24894 1 2.30471 1 2.36047 1 2.4162 1 2.47192 1 2.52762 1 2.58329 1 2.63895 1 2.69459 1 2.75021 1 2.80581 1 2.8614 1 2.91696 1 2.97251 1 3.02804 1 3.08355 1 3.13904 1 3.19451 1 3.24997 1 3.30541 1 3.36083 1 3.41624 1 3.47162 1 3.52699 1 3.58235 1 3.63768 1 3.693 1 3.74831 1 3.80359 1 3.85886 1 3.91412 1 3.96936 1 4.02458 1 4.07979 1 4.13498 1 4.19015 1 4.24531 1 4.30046 1 4.35559 1 4.4107 1 4.4658 1 4.52089 1 4.57595 1 4.63101 1 4.68605 1 4.74108 1 4.79609 1 4.85109 1 4.90607 1 4.96104 1 5.016 1 5.07094 1 5.12587 1 5.18078 1 5.23568 1 5.29057 1 5.34545 1 5.40031 1 5.45516 1 5.51 1 5.56482 0 403 355 404 356 0 405 357 fi 406 1 40 1 0.00605156 1 0.00604607 1 0.00604061 1 0.00603518 1 0.00602977 1 0.00602439 1 0.00601904 1 0.00601371 1 0.0060084 1 0.00600312 1 0.00599787 1 0.00599264 1 0.00598744 1 0.00598225 1 0.0059771 1 0.00597197 1 0.00596686 1 0.00596178 1 0.00595672 1 0.00595168 1 0.00594667 1 0.00594168 1 0.00593671 1 0.00593177 1 0.00592685 1 0.00592195 1 0.00591708 1 0.00591223 1 0.0059074 1 0.00590259 1 0.00589781 1 0.00589305 1 0.00588831 1 0.00588359 1 0.00587889 1 0.00587422 1 0.00586956 1 0.00586493 1 0.00586032 1 0.005855730358 1 100 1 0.00605291 1 0.00605012 1 0.00604734 1 0.00604457 1 0.0060418 1 0.00603905 1 0.00603629 1 0.00603355 1 0.00603082 1 0.00602809 1 0.00602537 1 0.00602266 1 0.00601995 1 0.00601725 1 0.00601457 1 0.00601188 1 0.00600921 1 0.00600654 1 0.00600388 1 0.00600123 1 0.00599858 1 0.00599594 1 0.00599331 1 0.00599069 1 0.00598807 1 0.00598546 1 0.00598286 1 0.00598026 1 0.00597768 1 0.00597509 1 0.00597252 1 0.00596995 1 0.00596739 1 0.00596484 1 0.00596229 1 0.00595975 1 0.00595722 1 0.00595469 1 0.00595217 1 0.00594966 1 0.00594715 1 0.00594465 1 0.00594216 1 0.00593968 1 0.0059372 1 0.00593472 1 0.00593226 1 0.0059298 1 0.00592734 1 0.0059249 1 0.00592246 1 0.00592002 1 0.00591759 1 0.00591517 1 0.00591276 1 0.00591035 1 0.00590795 1 0.00590555 1 0.00590316 1 0.00590078 1 0.0058984 1 0.00589603 1 0.00589366 1 0.00589131 1 0.00588895 1 0.00588661 1 0.00588427 1 0.00588193 1 0.0058796 1 0.00587728 1 0.00587496 1 0.00587265 1 0.00587035 1 0.00586805 1 0.00586576 1 0.00586347 1 0.00586119 1 0.00585891 1 0.00585664 1 0.00585438 1 0.00585212 1 0.00584987 1 0.00584762 1 0.00584538 1 0.00584314 1 0.00584091 1 0.00583869 1 0.00583647 1 0.00583426 1 0.00583205 1 0.00582984 1 0.00582765 1 0.00582546 1 0.00582327 1 0.00582109 1 0.00581892 1 0.00581675 1 0.00581458 1 0.00581242 1 0.00581027 0 407 359 408 360 0 409 361 Re 410 1 40 1 62681.4 1 63003.5 1 63326.2 1 63649.8 1 63974.2 1 64299.4 1 64625.3 1 64952 1 65279.6 1 65607.9 1 65936.9 1 66266.8 1 66597.4 1 66928.8 1 67261 1 67593.9 1 67927.6 1 68262.1 1 68597.3 1 68933.3 1 69270 1 69607.5 1 69945.7 1 70284.6 1 70624.4 1 70964.8 1 71306 1 71647.9 1 71990.6 1 72333.9 1 72678 1 73022.9 1 73368.4 1 73714.7 1 74061.7 1 74409.4 1 74757.8 1 75106.9 1 75456.8 1 75807.3 0362 1 100 1 62602.2 1 62765.4 1 62928.7 1 63092.2 1 63255.7 1 63419.5 1 63583.4 1 63747.4 1 63911.5 1 64075.8 1 64240.3 1 64404.8 1 64569.5 1 64734.4 1 64899.4 1 65064.5 1 65229.8 1 65395.2 1 65560.7 1 65726.4 1 65892.3 1 66058.2 1 66224.3 1 66390.5 1 66556.9 1 66723.4 1 66890.1 1 67056.8 1 67223.8 1 67390.8 1 67558 1 67725.3 1 67892.8 1 68060.4 1 68228.1 1 68396 1 68563.9 1 68732.1 1 68900.3 1 69068.7 1 69237.3 1 69405.9 1 69574.7 1 69743.6 1 69912.7 1 70081.9 1 70251.2 1 70420.6 1 70590.2 1 70759.9 1 70929.8 1 71099.7 1 71269.8 1 71440.1 1 71610.4 1 71780.9 1 71951.6 1 72122.3 1 72293.2 1 72464.2 1 72635.3 1 72806.6 1 72978 1 73149.5 1 73321.1 1 73492.9 1 73664.8 1 73836.8 1 74009 1 74181.3 1 74353.7 1 74526.2 1 74698.9 1 74871.7 1 75044.6 1 75217.6 1 75390.8 1 75564 1 75737.4 1 75911 1 76084.6 1 76258.4 1 76432.3 1 76606.3 1 76780.5 1 76954.8 1 77129.1 1 77303.7 1 77478.3 1 77653.1 1 77827.9 1 78002.9 1 78178.1 1 78353.3 1 78528.7 1 78704.2 1 78879.8 1 79055.5 1 79231.3 1 79407.3 0 411 363 412 364 0 … … 416 368 0 417 369 Pdnozzle_out 418 1 1 1 0.56 1150370 1 1 1 0.563091 0 419 371 420 372 0 … … 424 376 0 425 377 Vnozzle_out 426 1 1 1 1.34 0930378 1 1 1 1.34556 0 427 379 428 380 0 … … 432 384 0 433 385 RVsquare_out 434 1 1 1 160 3.290386 1 1 1 1608.83 0 435 387 436 388 0 … … 464 416 0 0 465 417 466 8 467 N 468 0 0 469 470 0 418 7 471 419 Mw 472 420 1 1 1 78.1134 0 … … 474 422 0 475 423 T 476 1 40 1 288.886 1 289.238 1 289.59 1 289.942 1 290.294 1 290.646 1 290.997 1 291.348 1 291.7 1 292.051 1 292.401 1 292.752 1 293.103 1 293.453 1 293.803 1 294.153 1 294.503 1 294.853 1 295.203 1 295.552 1 295.901 1 296.25 1 296.599 1 296.948 1 297.297 1 297.645 1 297.994 1 298.342 1 298.69 1 299.037 1 299.385 1 299.732 1 300.079 1 300.426 1 300.773 1 301.12 1 301.467 1 301.813 1 302.159 1 302.5050477 478 0 479 P 480 1 40 1 413.614 1 413.473 1 413.332 1 413.191 1 413.05 1 412.909 1 412.769 1 412.628 1 412.488 1 412.347 1 412.207 1 412.067 1 411.927 1 411.787 1 411.647 1 411.508 1 411.368 1 411.229 1 411.089 1 410.95 1 410.811 1 410.672 1 410.533 1 410.394 1 410.256 1 410.117 1 409.978 1 409.84 1 409.701 1 409.563 1 409.425 1 409.287 1 409.149 1 409.011 1 408.873 1 408.735 1 408.597 1 408.46 1 408.322 1 408.1850424 1 100 1 288.799 1 288.978 1 289.157 1 289.335 1 289.514 1 289.692 1 289.87 1 290.048 1 290.226 1 290.404 1 290.582 1 290.76 1 290.937 1 291.115 1 291.292 1 291.469 1 291.646 1 291.823 1 292 1 292.177 1 292.354 1 292.531 1 292.707 1 292.884 1 293.06 1 293.236 1 293.412 1 293.588 1 293.764 1 293.94 1 294.116 1 294.292 1 294.467 1 294.642 1 294.818 1 294.993 1 295.168 1 295.343 1 295.518 1 295.693 1 295.868 1 296.042 1 296.217 1 296.391 1 296.566 1 296.74 1 296.914 1 297.088 1 297.262 1 297.436 1 297.61 1 297.783 1 297.957 1 298.131 1 298.304 1 298.477 1 298.65 1 298.823 1 298.996 1 299.169 1 299.342 1 299.515 1 299.688 1 299.86 1 300.032 1 300.205 1 300.377 1 300.549 1 300.721 1 300.893 1 301.065 1 301.237 1 301.408 1 301.58 1 301.752 1 301.923 1 302.094 1 302.265 1 302.437 1 302.608 1 302.779 1 302.949 1 303.12 1 303.291 1 303.461 1 303.632 1 303.802 1 303.972 1 304.143 1 304.313 1 304.483 1 304.653 1 304.823 1 304.992 1 305.162 1 305.332 1 305.501 1 305.67 1 305.84 1 306.009 0 425 426 0 427 P 428 1 100 1 413.657 1 413.6 1 413.543 1 413.487 1 413.43 1 413.374 1 413.317 1 413.26 1 413.204 1 413.147 1 413.091 1 413.035 1 412.978 1 412.922 1 412.865 1 412.809 1 412.753 1 412.697 1 412.64 1 412.584 1 412.528 1 412.472 1 412.415 1 412.359 1 412.303 1 412.247 1 412.191 1 412.135 1 412.079 1 412.023 1 411.967 1 411.911 1 411.855 1 411.799 1 411.743 1 411.687 1 411.631 1 411.576 1 411.52 1 411.464 1 411.408 1 411.352 1 411.297 1 411.241 1 411.185 1 411.13 1 411.074 1 411.018 1 410.963 1 410.907 1 410.851 1 410.796 1 410.74 1 410.685 1 410.629 1 410.574 1 410.518 1 410.463 1 410.407 1 410.352 1 410.296 1 410.241 1 410.186 1 410.13 1 410.075 1 410.02 1 409.964 1 409.909 1 409.854 1 409.799 1 409.743 1 409.688 1 409.633 1 409.578 1 409.522 1 409.467 1 409.412 1 409.357 1 409.302 1 409.247 1 409.192 1 409.137 1 409.082 1 409.026 1 408.971 1 408.916 1 408.861 1 408.806 1 408.751 1 408.696 1 408.642 1 408.587 1 408.532 1 408.477 1 408.422 1 408.367 1 408.312 1 408.257 1 408.202 1 408.148 0 481 429 482 430 0 483 431 rho 484 1 40 1 903.655 1 903.357 1 903.059 1 902.76 1 902.461 1 902.162 1 901.863 1 901.563 1 901.263 1 900.962 1 900.662 1 900.361 1 900.06 1 899.758 1 899.456 1 899.154 1 898.852 1 898.549 1 898.246 1 897.943 1 897.639 1 897.336 1 897.032 1 896.727 1 896.423 1 896.118 1 895.813 1 895.507 1 895.201 1 894.895 1 894.589 1 894.283 1 893.976 1 893.669 1 893.361 1 893.054 1 892.746 1 892.438 1 892.129 1 891.820432 1 100 1 903.728 1 903.577 1 903.426 1 903.275 1 903.124 1 902.973 1 902.821 1 902.67 1 902.519 1 902.368 1 902.216 1 902.065 1 901.914 1 901.762 1 901.611 1 901.46 1 901.308 1 901.157 1 901.006 1 900.854 1 900.703 1 900.551 1 900.4 1 900.248 1 900.097 1 899.945 1 899.793 1 899.642 1 899.49 1 899.339 1 899.187 1 899.035 1 898.884 1 898.732 1 898.58 1 898.428 1 898.277 1 898.125 1 897.973 1 897.821 1 897.669 1 897.517 1 897.365 1 897.213 1 897.062 1 896.91 1 896.758 1 896.606 1 896.454 1 896.302 1 896.149 1 895.997 1 895.845 1 895.693 1 895.541 1 895.389 1 895.237 1 895.084 1 894.932 1 894.78 1 894.627 1 894.475 1 894.323 1 894.17 1 894.018 1 893.866 1 893.713 1 893.561 1 893.408 1 893.256 1 893.103 1 892.951 1 892.798 1 892.646 1 892.493 1 892.34 1 892.188 1 892.035 1 891.882 1 891.73 1 891.577 1 891.424 1 891.271 1 891.118 1 890.966 1 890.813 1 890.66 1 890.507 1 890.354 1 890.201 1 890.048 1 889.895 1 889.742 1 889.589 1 889.436 1 889.283 1 889.13 1 888.976 1 888.823 1 888.67 0 485 433 486 434 0 487 435 Mu 488 1 40 1 0.73022 1 0.726487 1 0.722784 1 0.71911 1 0.715464 1 0.711846 1 0.708255 1 0.704692 1 0.701157 1 0.697648 1 0.694166 1 0.690711 1 0.687282 1 0.683879 1 0.680502 1 0.67715 1 0.673823 1 0.670522 1 0.667245 1 0.663993 1 0.660765 1 0.657562 1 0.654382 1 0.651226 1 0.648094 1 0.644985 1 0.641899 1 0.638835 1 0.635795 1 0.632776 1 0.62978 1 0.626806 1 0.623854 1 0.620924 1 0.618015 1 0.615127 1 0.61226 1 0.609414 1 0.606588 1 0.6037830436 1 100 1 0.731143 1 0.729243 1 0.72735 1 0.725466 1 0.72359 1 0.721722 1 0.719862 1 0.71801 1 0.716165 1 0.714329 1 0.712501 1 0.71068 1 0.708867 1 0.707062 1 0.705264 1 0.703474 1 0.701692 1 0.699917 1 0.69815 1 0.69639 1 0.694637 1 0.692892 1 0.691154 1 0.689424 1 0.6877 1 0.685984 1 0.684275 1 0.682573 1 0.680879 1 0.679191 1 0.67751 1 0.675836 1 0.674169 1 0.672509 1 0.670856 1 0.669209 1 0.66757 1 0.665937 1 0.664311 1 0.662691 1 0.661078 1 0.659471 1 0.657872 1 0.656278 1 0.654691 1 0.653111 1 0.651537 1 0.649969 1 0.648407 1 0.646852 1 0.645303 1 0.643761 1 0.642224 1 0.640694 1 0.63917 1 0.637651 1 0.636139 1 0.634633 1 0.633133 1 0.631639 1 0.630151 1 0.628669 1 0.627192 1 0.625722 1 0.624257 1 0.622798 1 0.621344 1 0.619897 1 0.618455 1 0.617018 1 0.615588 1 0.614163 1 0.612743 1 0.611329 1 0.609921 1 0.608517 1 0.60712 1 0.605728 1 0.604341 1 0.602959 1 0.601583 1 0.600212 1 0.598846 1 0.597486 1 0.596131 1 0.594781 1 0.593436 1 0.592096 1 0.590762 1 0.589432 1 0.588108 1 0.586788 1 0.585474 1 0.584164 1 0.58286 1 0.58156 1 0.580266 1 0.578976 1 0.577691 1 0.576411 0 489 437 490 438 0 491 439 Cp 492 1 40 1 114.49 1 114.624 1 114.757 1 114.89 1 115.023 1 115.156 1 115.289 1 115.421 1 115.554 1 115.687 1 115.819 1 115.952 1 116.084 1 116.217 1 116.349 1 116.481 1 116.614 1 116.746 1 116.878 1 117.01 1 117.142 1 117.274 1 117.405 1 117.537 1 117.669 1 117.8 1 117.932 1 118.063 1 118.195 1 118.326 1 118.457 1 118.588 1 118.719 1 118.85 1 118.981 1 119.112 1 119.243 1 119.374 1 119.504 1 119.6350440 1 100 1 114.458 1 114.525 1 114.593 1 114.66 1 114.728 1 114.795 1 114.863 1 114.93 1 114.997 1 115.064 1 115.132 1 115.199 1 115.266 1 115.333 1 115.4 1 115.467 1 115.534 1 115.601 1 115.668 1 115.735 1 115.801 1 115.868 1 115.935 1 116.002 1 116.068 1 116.135 1 116.201 1 116.268 1 116.334 1 116.401 1 116.467 1 116.534 1 116.6 1 116.666 1 116.732 1 116.799 1 116.865 1 116.931 1 116.997 1 117.063 1 117.129 1 117.195 1 117.261 1 117.327 1 117.393 1 117.458 1 117.524 1 117.59 1 117.656 1 117.721 1 117.787 1 117.852 1 117.918 1 117.983 1 118.049 1 118.114 1 118.18 1 118.245 1 118.31 1 118.376 1 118.441 1 118.506 1 118.571 1 118.636 1 118.701 1 118.766 1 118.832 1 118.896 1 118.961 1 119.026 1 119.091 1 119.156 1 119.221 1 119.286 1 119.35 1 119.415 1 119.48 1 119.544 1 119.609 1 119.673 1 119.738 1 119.802 1 119.867 1 119.931 1 119.996 1 120.06 1 120.124 1 120.188 1 120.253 1 120.317 1 120.381 1 120.445 1 120.509 1 120.573 1 120.637 1 120.701 1 120.765 1 120.829 1 120.893 1 120.957 0 493 441 494 442 0 495 443 K 496 1 40 1 0.147424 1 0.147349 1 0.147274 1 0.147198 1 0.147123 1 0.147047 1 0.146972 1 0.146896 1 0.14682 1 0.146744 1 0.146669 1 0.146593 1 0.146517 1 0.146441 1 0.146365 1 0.146288 1 0.146212 1 0.146136 1 0.14606 1 0.145983 1 0.145907 1 0.14583 1 0.145754 1 0.145677 1 0.1456 1 0.145524 1 0.145447 1 0.14537 1 0.145293 1 0.145216 1 0.145139 1 0.145062 1 0.144985 1 0.144908 1 0.144831 1 0.144754 1 0.144676 1 0.144599 1 0.144522 1 0.1444440444 1 100 1 0.147443 1 0.147405 1 0.147367 1 0.147328 1 0.14729 1 0.147252 1 0.147214 1 0.147176 1 0.147137 1 0.147099 1 0.147061 1 0.147023 1 0.146985 1 0.146946 1 0.146908 1 0.14687 1 0.146832 1 0.146794 1 0.146755 1 0.146717 1 0.146679 1 0.146641 1 0.146602 1 0.146564 1 0.146526 1 0.146488 1 0.14645 1 0.146411 1 0.146373 1 0.146335 1 0.146297 1 0.146258 1 0.14622 1 0.146182 1 0.146144 1 0.146105 1 0.146067 1 0.146029 1 0.145991 1 0.145952 1 0.145914 1 0.145876 1 0.145838 1 0.145799 1 0.145761 1 0.145723 1 0.145685 1 0.145646 1 0.145608 1 0.14557 1 0.145532 1 0.145493 1 0.145455 1 0.145417 1 0.145378 1 0.14534 1 0.145302 1 0.145264 1 0.145225 1 0.145187 1 0.145149 1 0.145111 1 0.145072 1 0.145034 1 0.144996 1 0.144957 1 0.144919 1 0.144881 1 0.144843 1 0.144804 1 0.144766 1 0.144728 1 0.144689 1 0.144651 1 0.144613 1 0.144574 1 0.144536 1 0.144498 1 0.14446 1 0.144421 1 0.144383 1 0.144345 1 0.144306 1 0.144268 1 0.14423 1 0.144191 1 0.144153 1 0.144115 1 0.144076 1 0.144038 1 0.144 1 0.143961 1 0.143923 1 0.143885 1 0.143846 1 0.143808 1 0.14377 1 0.143731 1 0.143693 1 0.143655 0 497 445 498 446 0 … … 510 458 0 511 459 rho 512 1 1 1 8 91.6660460 1 1 1 888.593 0 513 461 514 462 0 … … 520 468 0 0 521 469 522 3 523 N 524 0 0 525 526 0 470 2 527 471 Mu 528 1 40 1 0.561413 1 0.559082 1 0.556765 1 0.554462 1 0.552174 1 0.5499 1 0.547639 1 0.545393 1 0.54316 1 0.540941 1 0.538736 1 0.536544 1 0.534365 1 0.5322 1 0.530048 1 0.527909 1 0.525783 1 0.52367 1 0.52157 1 0.519482 1 0.517407 1 0.515345 1 0.513295 1 0.511258 1 0.509233 1 0.50722 1 0.505219 1 0.50323 1 0.501253 1 0.499288 1 0.497334 1 0.495393 1 0.493463 1 0.491544 1 0.489637 1 0.487742 1 0.485857 1 0.483984 1 0.482121 1 0.4802680472 1 100 1 0.573001 1 0.571778 1 0.570558 1 0.569343 1 0.568132 1 0.566925 1 0.565723 1 0.564525 1 0.563331 1 0.562141 1 0.560956 1 0.559774 1 0.558597 1 0.557424 1 0.556255 1 0.55509 1 0.55393 1 0.552773 1 0.55162 1 0.550472 1 0.549327 1 0.548186 1 0.54705 1 0.545917 1 0.544788 1 0.543663 1 0.542542 1 0.541425 1 0.540312 1 0.539202 1 0.538096 1 0.536995 1 0.535896 1 0.534802 1 0.533711 1 0.532625 1 0.531541 1 0.530462 1 0.529386 1 0.528314 1 0.527245 1 0.526181 1 0.525119 1 0.524062 1 0.523007 1 0.521957 1 0.52091 1 0.519866 1 0.518826 1 0.51779 1 0.516757 1 0.515727 1 0.514701 1 0.513678 1 0.512659 1 0.511643 1 0.51063 1 0.509621 1 0.508615 1 0.507613 1 0.506614 1 0.505618 1 0.504625 1 0.503636 1 0.50265 1 0.501667 1 0.500688 1 0.499711 1 0.498738 1 0.497768 1 0.496801 1 0.495838 1 0.494877 1 0.49392 1 0.492966 1 0.492014 1 0.491066 1 0.490121 1 0.48918 1 0.488241 1 0.487305 1 0.486372 1 0.485442 1 0.484515 1 0.483592 1 0.482671 1 0.481753 1 0.480838 1 0.479926 1 0.479017 1 0.478111 1 0.477207 1 0.476307 1 0.475409 1 0.474514 1 0.473623 1 0.472733 1 0.471847 1 0.470963 1 0.470082 0 529 473 530 474 0 531 475 Twall 532 1 40 1 308.033 1 308.355 1 308.676 1 308.998 1 309.319 1 309.641 1 309.962 1 310.284 1 310.605 1 310.927 1 311.248 1 311.569 1 311.89 1 312.211 1 312.532 1 312.853 1 313.174 1 313.495 1 313.816 1 314.136 1 314.457 1 314.777 1 315.098 1 315.418 1 315.739 1 316.059 1 316.379 1 316.699 1 317.019 1 317.339 1 317.659 1 317.979 1 318.298 1 318.618 1 318.938 1 319.257 1 319.576 1 319.896 1 320.215 1 320.5340476 1 100 1 306.462 1 306.626 1 306.79 1 306.953 1 307.117 1 307.28 1 307.443 1 307.607 1 307.77 1 307.933 1 308.096 1 308.259 1 308.422 1 308.585 1 308.747 1 308.91 1 309.073 1 309.235 1 309.398 1 309.56 1 309.722 1 309.884 1 310.047 1 310.209 1 310.371 1 310.533 1 310.694 1 310.856 1 311.018 1 311.18 1 311.341 1 311.503 1 311.664 1 311.826 1 311.987 1 312.148 1 312.309 1 312.47 1 312.631 1 312.792 1 312.953 1 313.114 1 313.275 1 313.435 1 313.596 1 313.756 1 313.917 1 314.077 1 314.238 1 314.398 1 314.558 1 314.718 1 314.878 1 315.038 1 315.198 1 315.358 1 315.517 1 315.677 1 315.837 1 315.996 1 316.156 1 316.315 1 316.475 1 316.634 1 316.793 1 316.952 1 317.111 1 317.27 1 317.429 1 317.588 1 317.747 1 317.906 1 318.064 1 318.223 1 318.381 1 318.54 1 318.698 1 318.857 1 319.015 1 319.173 1 319.331 1 319.489 1 319.647 1 319.805 1 319.963 1 320.121 1 320.279 1 320.436 1 320.594 1 320.751 1 320.909 1 321.066 1 321.224 1 321.381 1 321.538 1 321.695 1 321.852 1 322.009 1 322.166 1 322.323 0 533 477 534 478 0 … … 550 494 0 0 551 495 552 1 3496 11 553 497 As 554 498 1 1 1 0.000768735 0 … … 559 503 560 504 0 561 N562 0 0563 564 0565 Npoints566 0 0567 568 0569 505 Tlocal 570 1 41 1 327.034 1 327.326 1 327.617 1 327.908 1 328.199 1 328.491 1 328.782 1 329.074 1 329.365 1 329.657 1 329.948 1 330.24 1 330.532 1 330.823 1 331.115 1 331.407 1 331.699 1 331.991 1 332.283 1 332.574 1 332.866 1 333.158 1 333.45 1 333.742 1 334.034 1 334.327 1 334.619 1 334.911 1 335.203 1 335.495 1 335.787 1 336.079 1 336.371 1 336.664 1 336.956 1 337.248 1 337.54 1 337.832 1 338.125 1 338.4171 338.71 0506 1 101 1 324.051 1 324.199 1 324.348 1 324.497 1 324.645 1 324.794 1 324.942 1 325.091 1 325.239 1 325.387 1 325.536 1 325.684 1 325.832 1 325.98 1 326.129 1 326.277 1 326.425 1 326.573 1 326.721 1 326.869 1 327.016 1 327.164 1 327.312 1 327.46 1 327.608 1 327.755 1 327.903 1 328.05 1 328.198 1 328.345 1 328.493 1 328.64 1 328.788 1 328.935 1 329.082 1 329.229 1 329.377 1 329.524 1 329.671 1 329.818 1 329.965 1 330.112 1 330.259 1 330.406 1 330.553 1 330.699 1 330.846 1 330.993 1 331.14 1 331.286 1 331.433 1 331.579 1 331.726 1 331.872 1 332.019 1 332.165 1 332.311 1 332.458 1 332.604 1 332.75 1 332.896 1 333.043 1 333.189 1 333.335 1 333.481 1 333.627 1 333.773 1 333.918 1 334.064 1 334.21 1 334.356 1 334.502 1 334.647 1 334.793 1 334.938 1 335.084 1 335.23 1 335.375 1 335.52 1 335.666 1 335.811 1 335.956 1 336.102 1 336.247 1 336.392 1 336.537 1 336.682 1 336.827 1 336.972 1 337.117 1 337.262 1 337.407 1 337.552 1 337.697 1 337.842 1 337.986 1 338.131 1 338.276 1 338.42 1 338.565 1 338.71 0 571 507 572 508 0 573 509 Re 574 1 40 1 20127.2 1 20258.6 1 20390.5 1 20522.7 1 20655.5 1 20788.7 1 20922.4 1 21056.5 1 21191 1 21326 1 21461.5 1 21597.4 1 21733.7 1 21870.5 1 22007.7 1 22145.3 1 22283.4 1 22421.9 1 22560.8 1 22700.2 1 22840 1 22980.2 1 23120.9 1 23262 1 23403.4 1 23545.3 1 23687.7 1 23830.4 1 23973.5 1 24117.1 1 24261 1 24405.4 1 24550.1 1 24695.3 1 24840.9 1 24986.8 1 25133.2 1 25279.9 1 25427.2 1 25574.90510 1 100 1 18775.7 1 18840.4 1 18905.2 1 18970 1 19035 1 19100 1 19165.2 1 19230.4 1 19295.8 1 19361.2 1 19426.7 1 19492.4 1 19558.1 1 19623.9 1 19689.8 1 19755.8 1 19821.9 1 19888.1 1 19954.4 1 20020.8 1 20087.2 1 20153.8 1 20220.4 1 20287.2 1 20354 1 20421 1 20488 1 20555.1 1 20622.3 1 20689.6 1 20757 1 20824.5 1 20892 1 20959.7 1 21027.4 1 21095.3 1 21163.2 1 21231.2 1 21299.3 1 21367.5 1 21435.8 1 21504.1 1 21572.6 1 21641.1 1 21709.8 1 21778.5 1 21847.3 1 21916.2 1 21985.2 1 22054.2 1 22123.4 1 22192.6 1 22261.9 1 22331.3 1 22400.8 1 22470.4 1 22540.1 1 22609.8 1 22679.7 1 22749.6 1 22819.6 1 22889.6 1 22959.8 1 23030.1 1 23100.4 1 23170.8 1 23241.3 1 23311.9 1 23382.5 1 23453.3 1 23524.1 1 23595 1 23666 1 23737 1 23808.2 1 23879.4 1 23950.7 1 24022.1 1 24093.5 1 24165.1 1 24236.7 1 24308.4 1 24380.2 1 24452 1 24524 1 24596 1 24668.1 1 24740.2 1 24812.5 1 24884.8 1 24957.2 1 25029.6 1 25102.2 1 25174.8 1 25247.5 1 25320.3 1 25393.1 1 25466.1 1 25539.1 1 25612.3 0 575 511 576 512 0 577 513 hcoeff 578 1 40 1 1420.94 1 1425.75 1 1430.56 1 1435.37 1 1440.18 1 1445 1 1449.81 1 1454.62 1 1459.43 1 1464.24 1 1469.04 1 1473.85 1 1478.66 1 1483.47 1 1488.27 1 1493.08 1 1497.88 1 1502.69 1 1507.49 1 1512.29 1 1517.09 1 1521.89 1 1526.69 1 1531.49 1 1536.28 1 1541.07 1 1545.87 1 1550.66 1 1555.44 1 1560.23 1 1565.02 1 1569.8 1 1574.58 1 1579.36 1 1584.13 1 1588.91 1 1593.68 1 1598.45 1 1603.22 1 1607.99 0514 1 100 1 1380.38 1 1382.83 1 1385.28 1 1387.73 1 1390.18 1 1392.63 1 1395.08 1 1397.52 1 1399.97 1 1402.41 1 1404.86 1 1407.3 1 1409.75 1 1412.19 1 1414.63 1 1417.07 1 1419.51 1 1421.95 1 1424.38 1 1426.82 1 1429.26 1 1431.69 1 1434.12 1 1436.56 1 1438.99 1 1441.42 1 1443.85 1 1446.28 1 1448.71 1 1451.14 1 1453.56 1 1455.99 1 1458.41 1 1460.84 1 1463.26 1 1465.68 1 1468.1 1 1470.52 1 1472.94 1 1475.36 1 1477.77 1 1480.19 1 1482.6 1 1485.01 1 1487.43 1 1489.84 1 1492.25 1 1494.66 1 1497.07 1 1499.47 1 1501.88 1 1504.28 1 1506.69 1 1509.09 1 1511.49 1 1513.89 1 1516.29 1 1518.69 1 1521.09 1 1523.49 1 1525.88 1 1528.28 1 1530.67 1 1533.06 1 1535.45 1 1537.84 1 1540.23 1 1542.62 1 1545 1 1547.39 1 1549.77 1 1552.16 1 1554.54 1 1556.92 1 1559.3 1 1561.68 1 1564.05 1 1566.43 1 1568.8 1 1571.18 1 1573.55 1 1575.92 1 1578.29 1 1580.66 1 1583.03 1 1585.39 1 1587.76 1 1590.12 1 1592.48 1 1594.84 1 1597.2 1 1599.56 1 1601.92 1 1604.28 1 1606.63 1 1608.99 1 1611.34 1 1613.69 1 1616.04 1 1618.39 0 579 515 580 516 0 581 517 fi 582 1 40 1 0.0260743 1 0.0260311 1 0.0259881 1 0.0259453 1 0.0259028 1 0.0258605 1 0.0258184 1 0.0257765 1 0.0257349 1 0.0256935 1 0.0256523 1 0.0256114 1 0.0255707 1 0.0255302 1 0.0254899 1 0.0254498 1 0.02541 1 0.0253703 1 0.0253309 1 0.0252917 1 0.0252527 1 0.0252139 1 0.0251754 1 0.025137 1 0.0250988 1 0.0250609 1 0.0250231 1 0.0249856 1 0.0249482 1 0.0249111 1 0.0248741 1 0.0248374 1 0.0248008 1 0.0247645 1 0.0247283 1 0.0246923 1 0.0246566 1 0.024621 1 0.0245855 1 0.02455030518 1 100 1 0.0265432 1 0.0265197 1 0.0264963 1 0.026473 1 0.0264497 1 0.0264265 1 0.0264034 1 0.0263804 1 0.0263574 1 0.0263346 1 0.0263117 1 0.026289 1 0.0262663 1 0.0262437 1 0.0262212 1 0.0261988 1 0.0261764 1 0.0261541 1 0.0261319 1 0.0261097 1 0.0260876 1 0.0260656 1 0.0260436 1 0.0260218 1 0.0259999 1 0.0259782 1 0.0259565 1 0.0259349 1 0.0259134 1 0.0258919 1 0.0258705 1 0.0258492 1 0.0258279 1 0.0258067 1 0.0257856 1 0.0257645 1 0.0257435 1 0.0257225 1 0.0257017 1 0.0256809 1 0.0256601 1 0.0256394 1 0.0256188 1 0.0255983 1 0.0255778 1 0.0255574 1 0.025537 1 0.0255167 1 0.0254965 1 0.0254763 1 0.0254562 1 0.0254361 1 0.0254161 1 0.0253962 1 0.0253764 1 0.0253565 1 0.0253368 1 0.0253171 1 0.0252975 1 0.0252779 1 0.0252584 1 0.025239 1 0.0252196 1 0.0252002 1 0.025181 1 0.0251618 1 0.0251426 1 0.0251235 1 0.0251045 1 0.0250855 1 0.0250666 1 0.0250477 1 0.0250289 1 0.0250101 1 0.0249914 1 0.0249728 1 0.0249542 1 0.0249356 1 0.0249172 1 0.0248987 1 0.0248804 1 0.0248621 1 0.0248438 1 0.0248256 1 0.0248074 1 0.0247893 1 0.0247713 1 0.0247533 1 0.0247354 1 0.0247175 1 0.0246996 1 0.0246818 1 0.0246641 1 0.0246464 1 0.0246288 1 0.0246112 1 0.0245937 1 0.0245762 1 0.0245588 1 0.0245414 0 583 519 584 520 0 585 521 Nu 586 1 40 1 199.55 1 200.214 1 200.879 1 201.544 1 202.209 1 202.875 1 203.541 1 204.207 1 204.874 1 205.54 1 206.208 1 206.875 1 207.543 1 208.211 1 208.879 1 209.548 1 210.217 1 210.886 1 211.555 1 212.224 1 212.894 1 213.564 1 214.234 1 214.904 1 215.575 1 216.246 1 216.916 1 217.587 1 218.258 1 218.93 1 219.601 1 220.272 1 220.944 1 221.616 1 222.288 1 222.96 1 223.631 1 224.304 1 224.976 1 225.650522 1 100 1 192.6 1 192.937 1 193.275 1 193.612 1 193.95 1 194.287 1 194.625 1 194.962 1 195.3 1 195.637 1 195.975 1 196.312 1 196.65 1 196.987 1 197.324 1 197.661 1 197.999 1 198.336 1 198.673 1 199.01 1 199.347 1 199.684 1 200.021 1 200.358 1 200.695 1 201.032 1 201.369 1 201.706 1 202.043 1 202.38 1 202.716 1 203.053 1 203.39 1 203.726 1 204.063 1 204.399 1 204.736 1 205.072 1 205.409 1 205.745 1 206.081 1 206.417 1 206.754 1 207.09 1 207.426 1 207.762 1 208.098 1 208.434 1 208.77 1 209.105 1 209.441 1 209.777 1 210.113 1 210.448 1 210.784 1 211.119 1 211.455 1 211.79 1 212.126 1 212.461 1 212.796 1 213.131 1 213.466 1 213.801 1 214.136 1 214.471 1 214.806 1 215.141 1 215.476 1 215.81 1 216.145 1 216.48 1 216.814 1 217.149 1 217.483 1 217.817 1 218.151 1 218.486 1 218.82 1 219.154 1 219.488 1 219.822 1 220.155 1 220.489 1 220.823 1 221.156 1 221.49 1 221.823 1 222.157 1 222.49 1 222.823 1 223.156 1 223.49 1 223.823 1 224.155 1 224.488 1 224.821 1 225.154 1 225.487 1 225.82 0 587 523 588 524 0 589 525 PR 590 1 40 1 18.9227 1 18.8162 1 18.7106 1 18.606 1 18.5023 1 18.3996 1 18.2977 1 18.1968 1 18.0968 1 17.9977 1 17.8995 1 17.8021 1 17.7057 1 17.61 1 17.5153 1 17.4213 1 17.3282 1 17.236 1 17.1445 1 17.0538 1 16.964 1 16.8749 1 16.7866 1 16.6991 1 16.6124 1 16.5264 1 16.4411 1 16.3566 1 16.2729 1 16.1898 1 16.1075 1 16.0259 1 15.945 1 15.8648 1 15.7853 1 15.7065 1 15.6284 1 15.5509 1 15.474 1 15.39780526 1 100 1 20.1021 1 20.0419 1 19.9821 1 19.9225 1 19.8633 1 19.8044 1 19.7457 1 19.6874 1 19.6294 1 19.5716 1 19.5142 1 19.457 1 19.4001 1 19.3435 1 19.2872 1 19.2312 1 19.1755 1 19.12 1 19.0649 1 19.01 1 18.9553 1 18.901 1 18.8469 1 18.7931 1 18.7396 1 18.6863 1 18.6333 1 18.5805 1 18.528 1 18.4758 1 18.4238 1 18.3721 1 18.3207 1 18.2695 1 18.2185 1 18.1678 1 18.1174 1 18.0671 1 18.0172 1 17.9675 1 17.918 1 17.8687 1 17.8197 1 17.771 1 17.7225 1 17.6742 1 17.6261 1 17.5783 1 17.5307 1 17.4833 1 17.4362 1 17.3893 1 17.3426 1 17.2961 1 17.2499 1 17.2039 1 17.1581 1 17.1125 1 17.0671 1 17.022 1 16.977 1 16.9323 1 16.8878 1 16.8435 1 16.7994 1 16.7555 1 16.7119 1 16.6684 1 16.6251 1 16.5821 1 16.5392 1 16.4965 1 16.4541 1 16.4118 1 16.3697 1 16.3279 1 16.2862 1 16.2447 1 16.2034 1 16.1623 1 16.1214 1 16.0807 1 16.0401 1 15.9998 1 15.9596 1 15.9196 1 15.8799 1 15.8402 1 15.8008 1 15.7616 1 15.7225 1 15.6836 1 15.6449 1 15.6063 1 15.568 1 15.5298 1 15.4918 1 15.4539 1 15.4162 1 15.3787 0 591 527 592 528 0 593 529 Phi 594 1 40 1 0.935361 1 0.935674 1 0.935984 1 0.936293 1 0.936601 1 0.936906 1 0.93721 1 0.937513 1 0.937813 1 0.938113 1 0.93841 1 0.938706 1 0.939 1 0.939293 1 0.939584 1 0.939873 1 0.940161 1 0.940447 1 0.940732 1 0.941015 1 0.941296 1 0.941576 1 0.941855 1 0.942132 1 0.942407 1 0.942681 1 0.942953 1 0.943224 1 0.943494 1 0.943762 1 0.944028 1 0.944293 1 0.944556 1 0.944818 1 0.945079 1 0.945338 1 0.945596 1 0.945852 1 0.946106 1 0.9463590530 1 100 1 0.938724 1 0.938878 1 0.939032 1 0.939185 1 0.939337 1 0.939489 1 0.939641 1 0.939792 1 0.939942 1 0.940092 1 0.940242 1 0.940391 1 0.940539 1 0.940687 1 0.940835 1 0.940982 1 0.941129 1 0.941275 1 0.941421 1 0.941566 1 0.941711 1 0.941856 1 0.942 1 0.942143 1 0.942286 1 0.942429 1 0.942571 1 0.942712 1 0.942854 1 0.942995 1 0.943135 1 0.943275 1 0.943414 1 0.943553 1 0.943692 1 0.94383 1 0.943968 1 0.944105 1 0.944242 1 0.944378 1 0.944514 1 0.94465 1 0.944785 1 0.94492 1 0.945054 1 0.945188 1 0.945321 1 0.945454 1 0.945587 1 0.945719 1 0.945851 1 0.945982 1 0.946113 1 0.946244 1 0.946374 1 0.946504 1 0.946633 1 0.946762 1 0.946891 1 0.947019 1 0.947146 1 0.947274 1 0.947401 1 0.947527 1 0.947653 1 0.947779 1 0.947905 1 0.948029 1 0.948154 1 0.948278 1 0.948402 1 0.948526 1 0.948649 1 0.948771 1 0.948894 1 0.949016 1 0.949137 1 0.949258 1 0.949379 1 0.949499 1 0.94962 1 0.949739 1 0.949859 1 0.949977 1 0.950096 1 0.950214 1 0.950332 1 0.95045 1 0.950567 1 0.950684 1 0.9508 1 0.950916 1 0.951032 1 0.951147 1 0.951262 1 0.951377 1 0.951491 1 0.951605 1 0.951718 1 0.951831 0 595 531 596 532 0 597 533 Vmean 598 1 40 1 1.76375 1 1.76405 1 1.76436 1 1.76467 1 1.76498 1 1.76529 1 1.76561 1 1.76592 1 1.76623 1 1.76654 1 1.76686 1 1.76717 1 1.76748 1 1.7678 1 1.76811 1 1.76843 1 1.76874 1 1.76906 1 1.76938 1 1.76969 1 1.77001 1 1.77033 1 1.77065 1 1.77097 1 1.77129 1 1.77161 1 1.77193 1 1.77225 1 1.77257 1 1.77289 1 1.77321 1 1.77354 1 1.77386 1 1.77418 1 1.77451 1 1.77483 1 1.77516 1 1.77548 1 1.77581 1 1.776140534 1 100 1 1.76052 1 1.76068 1 1.76083 1 1.76099 1 1.76114 1 1.7613 1 1.76145 1 1.76161 1 1.76177 1 1.76192 1 1.76208 1 1.76223 1 1.76239 1 1.76255 1 1.7627 1 1.76286 1 1.76302 1 1.76317 1 1.76333 1 1.76349 1 1.76364 1 1.7638 1 1.76396 1 1.76411 1 1.76427 1 1.76443 1 1.76458 1 1.76474 1 1.7649 1 1.76506 1 1.76521 1 1.76537 1 1.76553 1 1.76569 1 1.76584 1 1.766 1 1.76616 1 1.76632 1 1.76647 1 1.76663 1 1.76679 1 1.76695 1 1.76711 1 1.76726 1 1.76742 1 1.76758 1 1.76774 1 1.7679 1 1.76806 1 1.76821 1 1.76837 1 1.76853 1 1.76869 1 1.76885 1 1.76901 1 1.76917 1 1.76933 1 1.76949 1 1.76964 1 1.7698 1 1.76996 1 1.77012 1 1.77028 1 1.77044 1 1.7706 1 1.77076 1 1.77092 1 1.77108 1 1.77124 1 1.7714 1 1.77156 1 1.77172 1 1.77188 1 1.77204 1 1.7722 1 1.77236 1 1.77252 1 1.77268 1 1.77284 1 1.773 1 1.77316 1 1.77332 1 1.77348 1 1.77364 1 1.7738 1 1.77396 1 1.77412 1 1.77428 1 1.77445 1 1.77461 1 1.77477 1 1.77493 1 1.77509 1 1.77525 1 1.77541 1 1.77557 1 1.77574 1 1.7759 1 1.77606 1 1.77622 0 599 535 600 536 0 601 537 Enth 602 1 41 1 -48133.4 1 -48083.8 1 -48034.1 1 -47984.5 1 -47934.8 1 -47885 1 -47835.2 1 -47785.4 1 -47735.5 1 -47685.6 1 -47635.7 1 -47585.7 1 -47535.7 1 -47485.7 1 -47435.6 1 -47385.5 1 -47335.4 1 -47285.2 1 -47235 1 -47184.7 1 -47134.5 1 -47084.1 1 -47033.8 1 -46983.4 1 -46933 1 -46882.6 1 -46832.1 1 -46781.6 1 -46731.1 1 -46680.5 1 -46629.9 1 -46579.3 1 -46528.6 1 -46478 1 -46427.2 1 -46376.5 1 -46325.7 1 -46274.9 1 -46224.1 1 -46173.21 -46122.3 0538 1 101 1 -48639.1 1 -48613.9 1 -48588.7 1 -48563.6 1 -48538.4 1 -48513.2 1 -48488.1 1 -48462.9 1 -48437.7 1 -48412.6 1 -48387.4 1 -48362.2 1 -48337.1 1 -48311.9 1 -48286.7 1 -48261.6 1 -48236.4 1 -48211.2 1 -48186.1 1 -48160.9 1 -48135.7 1 -48110.6 1 -48085.4 1 -48060.2 1 -48035.1 1 -48009.9 1 -47984.7 1 -47959.6 1 -47934.4 1 -47909.2 1 -47884.1 1 -47858.9 1 -47833.7 1 -47808.5 1 -47783.4 1 -47758.2 1 -47733 1 -47707.9 1 -47682.7 1 -47657.5 1 -47632.4 1 -47607.2 1 -47582 1 -47556.9 1 -47531.7 1 -47506.5 1 -47481.4 1 -47456.2 1 -47431 1 -47405.9 1 -47380.7 1 -47355.5 1 -47330.4 1 -47305.2 1 -47280 1 -47254.9 1 -47229.7 1 -47204.5 1 -47179.4 1 -47154.2 1 -47129 1 -47103.9 1 -47078.7 1 -47053.5 1 -47028.4 1 -47003.2 1 -46978 1 -46952.9 1 -46927.7 1 -46902.5 1 -46877.4 1 -46852.2 1 -46827 1 -46801.8 1 -46776.7 1 -46751.5 1 -46726.3 1 -46701.2 1 -46676 1 -46650.8 1 -46625.7 1 -46600.5 1 -46575.3 1 -46550.2 1 -46525 1 -46499.8 1 -46474.7 1 -46449.5 1 -46424.3 1 -46399.2 1 -46374 1 -46348.8 1 -46323.7 1 -46298.5 1 -46273.3 1 -46248.2 1 -46223 1 -46197.8 1 -46172.7 1 -46147.5 1 -46122.3 0 603 539 604 540 0 … … 610 546 0 0 611 547 612 1 4548 12 613 549 Dh 614 550 1 1 1 0.01034 0 615 551 616 552 0 617 N618 0 0619 620 0621 Npoints622 0 0623 624 0625 553 Plocal 626 1 41 1 367.827 1 369.117 1 370.401 1 371.68 1 372.955 1 374.224 1 375.489 1 376.749 1 378.005 1 379.255 1 380.501 1 381.743 1 382.98 1 384.212 1 385.44 1 386.664 1 387.883 1 389.098 1 390.308 1 391.515 1 392.717 1 393.915 1 395.109 1 396.299 1 397.485 1 398.667 1 399.845 1 401.019 1 402.189 1 403.355 1 404.517 1 405.676 1 406.831 1 407.983 1 409.13 1 410.274 1 411.415 1 412.5521 413.685 1 413.685 1 413.685 0554 1 101 1 365.725 1 366.261 1 366.796 1 367.329 1 367.862 1 368.393 1 368.924 1 369.453 1 369.981 1 370.508 1 371.034 1 371.559 1 372.083 1 372.606 1 373.127 1 373.648 1 374.167 1 374.686 1 375.203 1 375.72 1 376.235 1 376.75 1 377.263 1 377.775 1 378.287 1 378.797 1 379.306 1 379.815 1 380.322 1 380.828 1 381.334 1 381.838 1 382.342 1 382.844 1 383.346 1 383.847 1 384.346 1 384.845 1 385.343 1 385.84 1 386.336 1 386.831 1 387.325 1 387.818 1 388.311 1 388.802 1 389.293 1 389.782 1 390.271 1 390.759 1 391.246 1 391.732 1 392.218 1 392.702 1 393.186 1 393.668 1 394.15 1 394.631 1 395.112 1 395.591 1 396.07 1 396.547 1 397.024 1 397.5 1 397.976 1 398.45 1 398.924 1 399.397 1 399.869 1 400.34 1 400.811 1 401.281 1 401.75 1 402.218 1 402.685 1 403.152 1 403.618 1 404.083 1 404.548 1 405.011 1 405.474 1 405.936 1 406.398 1 406.859 1 407.319 1 407.778 1 408.237 1 408.695 1 409.152 1 409.608 1 410.064 1 410.519 1 410.973 1 411.427 1 411.88 1 412.332 1 412.784 1 413.235 1 413.685 1 413.685 1 413.685 0 627 555 628 556 0 629 557 Pdrop 630 1 1 1 4 7.8805 0558 1 1 1 49.225 0 631 559 632 560 0 633 561 Pd_fric 634 1 41 1 47.1521 1 45.8577 1 44.5684 1 43.2841 1 42.0047 1 40.7303 1 39.4606 1 38.1958 1 36.9358 1 35.6804 1 34.4298 1 33.1837 1 31.9423 1 30.7053 1 29.4729 1 28.2449 1 27.0213 1 25.8021 1 24.5872 1 23.3765 1 22.1701 1 20.9679 1 19.7698 1 18.5759 1 17.386 1 16.2002 1 15.0183 1 13.8404 1 12.6664 1 11.4963 1 10.33 1 9.16751 1 8.00879 1 6.85379 1 5.70248 1 4.55483 1 3.41078 1 2.27032 1 1.133411 0 1 0 0562 1 101 1 48.4971 1 47.96 1 47.424 1 46.8892 1 46.3555 1 45.823 1 45.2915 1 44.7612 1 44.232 1 43.7038 1 43.1768 1 42.6508 1 42.126 1 41.6022 1 41.0795 1 40.5578 1 40.0372 1 39.5176 1 38.9991 1 38.4817 1 37.9652 1 37.4498 1 36.9355 1 36.4221 1 35.9098 1 35.3984 1 34.8881 1 34.3787 1 33.8703 1 33.363 1 32.8566 1 32.3511 1 31.8467 1 31.3432 1 30.8407 1 30.3391 1 29.8384 1 29.3387 1 28.84 1 28.3421 1 27.8452 1 27.3492 1 26.8542 1 26.36 1 25.8668 1 25.3744 1 24.883 1 24.3924 1 23.9027 1 23.4139 1 22.926 1 22.439 1 21.9528 1 21.4675 1 20.983 1 20.4994 1 20.0167 1 19.5348 1 19.0537 1 18.5735 1 18.0941 1 17.6155 1 17.1377 1 16.6608 1 16.1847 1 15.7093 1 15.2348 1 14.7611 1 14.2882 1 13.8161 1 13.3447 1 12.8742 1 12.4044 1 11.9354 1 11.4671 1 10.9997 1 10.533 1 10.067 1 9.60183 1 9.13738 1 8.67368 1 8.21073 1 7.74851 1 7.28703 1 6.82627 1 6.36624 1 5.90694 1 5.44835 1 4.99048 1 4.53332 1 4.07687 1 3.62112 1 3.16607 1 2.71171 1 2.25805 1 1.80508 1 1.35279 1 0.901183 1 0.450254 1 0 1 0 0 635 563 636 564 0 637 565 fi 638 1 40 1 0.00927491 1 0.00925916 1 0.00924349 1 0.00922791 1 0.00921242 1 0.00919702 1 0.00918171 1 0.00916649 1 0.00915135 1 0.00913629 1 0.00912133 1 0.00910644 1 0.00909165 1 0.00907693 1 0.0090623 1 0.00904775 1 0.00903329 1 0.00901891 1 0.00900461 1 0.00899039 1 0.00897625 1 0.00896219 1 0.00894821 1 0.00893431 1 0.00892048 1 0.00890674 1 0.00889307 1 0.00887948 1 0.00886597 1 0.00885253 1 0.00883917 1 0.00882588 1 0.00881267 1 0.00879953 1 0.00878647 1 0.00877348 1 0.00876056 1 0.00874771 1 0.00873492 1 0.00872220566 1 100 1 0.00944599 1 0.00943742 1 0.00942887 1 0.00942035 1 0.00941185 1 0.00940339 1 0.00939495 1 0.00938654 1 0.00937816 1 0.00936981 1 0.00936149 1 0.00935319 1 0.00934492 1 0.00933668 1 0.00932847 1 0.00932028 1 0.00931212 1 0.00930399 1 0.00929588 1 0.0092878 1 0.00927975 1 0.00927173 1 0.00926373 1 0.00925576 1 0.00924781 1 0.00923989 1 0.009232 1 0.00922413 1 0.00921629 1 0.00920847 1 0.00920068 1 0.00919291 1 0.00918517 1 0.00917746 1 0.00916977 1 0.00916211 1 0.00915447 1 0.00914685 1 0.00913926 1 0.00913169 1 0.00912415 1 0.00911664 1 0.00910914 1 0.00910167 1 0.00909423 1 0.00908681 1 0.00907941 1 0.00907204 1 0.00906469 1 0.00905737 1 0.00905006 1 0.00904278 1 0.00903553 1 0.0090283 1 0.00902109 1 0.0090139 1 0.00900674 1 0.0089996 1 0.00899248 1 0.00898538 1 0.00897831 1 0.00897126 1 0.00896423 1 0.00895722 1 0.00895024 1 0.00894328 1 0.00893634 1 0.00892942 1 0.00892252 1 0.00891565 1 0.00890879 1 0.00890196 1 0.00889515 1 0.00888836 1 0.00888159 1 0.00887484 1 0.00886812 1 0.00886141 1 0.00885473 1 0.00884806 1 0.00884142 1 0.0088348 1 0.0088282 1 0.00882161 1 0.00881505 1 0.00880851 1 0.00880199 1 0.00879549 1 0.00878901 1 0.00878255 1 0.00877611 1 0.00876968 1 0.00876328 1 0.0087569 1 0.00875054 1 0.00874419 1 0.00873787 1 0.00873157 1 0.00872528 1 0.008719 0 639 567 640 568 0 641 569 Re 642 1 40 1 8964.34 1 9022.86 1 9081.57 1 9140.49 1 9199.62 1 9258.94 1 9318.47 1 9378.2 1 9438.13 1 9498.25 1 9558.58 1 9619.1 1 9679.82 1 9740.74 1 9801.85 1 9863.16 1 9924.65 1 9986.35 1 10048.2 1 10110.3 1 10172.6 1 10235 1 10297.7 1 10360.5 1 10423.5 1 10486.7 1 10550.1 1 10613.7 1 10677.4 1 10741.3 1 10805.5 1 10869.8 1 10934.2 1 10998.9 1 11063.7 1 11128.7 1 11193.9 1 11259.2 1 11324.8 1 11390.60570 1 100 1 8362.41 1 8391.21 1 8420.05 1 8448.94 1 8477.87 1 8506.84 1 8535.86 1 8564.92 1 8594.02 1 8623.16 1 8652.35 1 8681.57 1 8710.85 1 8740.16 1 8769.51 1 8798.91 1 8828.35 1 8857.83 1 8887.35 1 8916.91 1 8946.52 1 8976.16 1 9005.85 1 9035.58 1 9065.35 1 9095.16 1 9125.01 1 9154.9 1 9184.83 1 9214.8 1 9244.82 1 9274.87 1 9304.96 1 9335.1 1 9365.27 1 9395.48 1 9425.73 1 9456.03 1 9486.36 1 9516.73 1 9547.14 1 9577.59 1 9608.08 1 9638.61 1 9669.18 1 9699.78 1 9730.43 1 9761.11 1 9791.83 1 9822.59 1 9853.39 1 9884.23 1 9915.1 1 9946.01 1 9976.96 1 10008 1 10039 1 10070 1 10101.1 1 10132.3 1 10163.5 1 10194.7 1 10225.9 1 10257.2 1 10288.5 1 10319.9 1 10351.3 1 10382.7 1 10414.2 1 10445.7 1 10477.2 1 10508.8 1 10540.4 1 10572.1 1 10603.8 1 10635.5 1 10667.2 1 10699 1 10730.9 1 10762.7 1 10794.6 1 10826.6 1 10858.5 1 10890.5 1 10922.6 1 10954.6 1 10986.7 1 11018.9 1 11051.1 1 11083.3 1 11115.5 1 11147.8 1 11180.1 1 11212.4 1 11244.8 1 11277.2 1 11309.7 1 11342.2 1 11374.7 1 11407.3 0 643 571 644 572 0 … … 648 576 0 649 577 Pdnozzle_out 650 1 1 1 0.28 20290578 1 1 1 0.281525 0 651 579 652 580 0 … … 656 584 0 657 585 Vnozzle_out 658 1 1 1 0.94 58510586 1 1 1 0.944162 0 659 587 660 588 0 … … 664 592 0 665 593 RVsquare_out 666 1 1 1 80 5.7960594 1 1 1 804.357 0 667 595 668 596 0 … … 696 624 0 0 697 625 698 8 699 N 700 0 0 701 702 0 626 7 703 627 Mw 704 628 1 1 1 93.128 0 … … 706 630 0 707 631 T 708 1 40 1 327.18 1 327.471 1 327.762 1 328.054 1 328.345 1 328.636 1 328.928 1 329.219 1 329.511 1 329.802 1 330.094 1 330.386 1 330.678 1 330.969 1 331.261 1 331.553 1 331.845 1 332.137 1 332.428 1 332.72 1 333.012 1 333.304 1 333.596 1 333.888 1 334.181 1 334.473 1 334.765 1 335.057 1 335.349 1 335.641 1 335.933 1 336.225 1 336.518 1 336.81 1 337.102 1 337.394 1 337.686 1 337.978 1 338.271 1 338.5640709 710 0 711 P 712 1 40 1 368.472 1 369.759 1 371.041 1 372.318 1 373.59 1 374.857 1 376.119 1 377.377 1 378.63 1 379.878 1 381.122 1 382.361 1 383.596 1 384.826 1 386.052 1 387.273 1 388.49 1 389.703 1 390.912 1 392.116 1 393.316 1 394.512 1 395.704 1 396.892 1 398.076 1 399.256 1 400.432 1 401.604 1 402.772 1 403.936 1 405.097 1 406.254 1 407.407 1 408.556 1 409.702 1 410.844 1 411.983 1 413.1181 413.685 1 413.685 0632 1 100 1 324.125 1 324.274 1 324.422 1 324.571 1 324.72 1 324.868 1 325.017 1 325.165 1 325.313 1 325.462 1 325.61 1 325.758 1 325.906 1 326.055 1 326.203 1 326.351 1 326.499 1 326.647 1 326.795 1 326.943 1 327.09 1 327.238 1 327.386 1 327.534 1 327.681 1 327.829 1 327.977 1 328.124 1 328.272 1 328.419 1 328.567 1 328.714 1 328.861 1 329.009 1 329.156 1 329.303 1 329.45 1 329.597 1 329.744 1 329.891 1 330.038 1 330.185 1 330.332 1 330.479 1 330.626 1 330.773 1 330.92 1 331.066 1 331.213 1 331.359 1 331.506 1 331.653 1 331.799 1 331.946 1 332.092 1 332.238 1 332.385 1 332.531 1 332.677 1 332.823 1 332.969 1 333.116 1 333.262 1 333.408 1 333.554 1 333.7 1 333.846 1 333.991 1 334.137 1 334.283 1 334.429 1 334.574 1 334.72 1 334.866 1 335.011 1 335.157 1 335.302 1 335.448 1 335.593 1 335.739 1 335.884 1 336.029 1 336.174 1 336.32 1 336.465 1 336.61 1 336.755 1 336.9 1 337.045 1 337.19 1 337.335 1 337.48 1 337.625 1 337.769 1 337.914 1 338.059 1 338.204 1 338.348 1 338.493 1 338.638 0 633 634 0 635 P 636 1 100 1 365.993 1 366.528 1 367.063 1 367.596 1 368.128 1 368.659 1 369.188 1 369.717 1 370.245 1 370.771 1 371.297 1 371.821 1 372.344 1 372.866 1 373.388 1 373.908 1 374.427 1 374.945 1 375.462 1 375.977 1 376.492 1 377.006 1 377.519 1 378.031 1 378.542 1 379.052 1 379.56 1 380.068 1 380.575 1 381.081 1 381.586 1 382.09 1 382.593 1 383.095 1 383.596 1 384.096 1 384.596 1 385.094 1 385.591 1 386.088 1 386.583 1 387.078 1 387.572 1 388.064 1 388.556 1 389.047 1 389.537 1 390.027 1 390.515 1 391.002 1 391.489 1 391.975 1 392.46 1 392.944 1 393.427 1 393.909 1 394.391 1 394.871 1 395.351 1 395.83 1 396.308 1 396.786 1 397.262 1 397.738 1 398.213 1 398.687 1 399.16 1 399.633 1 400.105 1 400.576 1 401.046 1 401.515 1 401.984 1 402.452 1 402.919 1 403.385 1 403.851 1 404.315 1 404.779 1 405.243 1 405.705 1 406.167 1 406.628 1 407.089 1 407.548 1 408.007 1 408.466 1 408.923 1 409.38 1 409.836 1 410.291 1 410.746 1 411.2 1 411.653 1 412.106 1 412.558 1 413.009 1 413.46 1 413.685 1 413.685 0 713 637 714 638 0 715 639 rho 716 1 40 1 900.62 1 900.463 1 900.305 1 900.147 1 899.989 1 899.83 1 899.672 1 899.513 1 899.354 1 899.195 1 899.035 1 898.876 1 898.716 1 898.556 1 898.396 1 898.236 1 898.075 1 897.915 1 897.754 1 897.593 1 897.432 1 897.271 1 897.109 1 896.948 1 896.786 1 896.624 1 896.462 1 896.299 1 896.137 1 895.974 1 895.811 1 895.648 1 895.485 1 895.322 1 895.158 1 894.994 1 894.83 1 894.666 1 894.502 1 894.3370640 1 100 1 902.271 1 902.191 1 902.111 1 902.031 1 901.952 1 901.872 1 901.792 1 901.712 1 901.632 1 901.552 1 901.473 1 901.393 1 901.313 1 901.233 1 901.153 1 901.073 1 900.993 1 900.913 1 900.833 1 900.753 1 900.673 1 900.593 1 900.513 1 900.433 1 900.353 1 900.272 1 900.192 1 900.112 1 900.032 1 899.952 1 899.872 1 899.791 1 899.711 1 899.631 1 899.551 1 899.47 1 899.39 1 899.31 1 899.229 1 899.149 1 899.069 1 898.988 1 898.908 1 898.827 1 898.747 1 898.666 1 898.586 1 898.505 1 898.425 1 898.344 1 898.264 1 898.183 1 898.103 1 898.022 1 897.941 1 897.861 1 897.78 1 897.699 1 897.619 1 897.538 1 897.457 1 897.377 1 897.296 1 897.215 1 897.134 1 897.053 1 896.973 1 896.892 1 896.811 1 896.73 1 896.649 1 896.568 1 896.487 1 896.406 1 896.325 1 896.244 1 896.163 1 896.082 1 896.001 1 895.92 1 895.839 1 895.758 1 895.677 1 895.596 1 895.515 1 895.433 1 895.352 1 895.271 1 895.19 1 895.109 1 895.027 1 894.946 1 894.865 1 894.784 1 894.702 1 894.621 1 894.539 1 894.458 1 894.377 1 894.295 0 717 641 718 642 0 719 643 Mu 720 1 40 1 1.83222 1 1.82034 1 1.80857 1 1.79691 1 1.78537 1 1.77393 1 1.7626 1 1.75137 1 1.74025 1 1.72923 1 1.71832 1 1.70751 1 1.6968 1 1.68619 1 1.67567 1 1.66526 1 1.65494 1 1.64472 1 1.63459 1 1.62455 1 1.61461 1 1.60476 1 1.59499 1 1.58532 1 1.57574 1 1.56624 1 1.55683 1 1.54751 1 1.53827 1 1.52911 1 1.52004 1 1.51105 1 1.50214 1 1.49331 1 1.48456 1 1.47589 1 1.46729 1 1.45877 1 1.45033 1 1.44195 0644 1 100 1 1.96412 1 1.95737 1 1.95067 1 1.944 1 1.93737 1 1.93077 1 1.9242 1 1.91768 1 1.91118 1 1.90472 1 1.8983 1 1.89191 1 1.88555 1 1.87923 1 1.87294 1 1.86668 1 1.86045 1 1.85426 1 1.8481 1 1.84198 1 1.83588 1 1.82982 1 1.82379 1 1.81778 1 1.81182 1 1.80588 1 1.79997 1 1.79409 1 1.78825 1 1.78243 1 1.77664 1 1.77089 1 1.76516 1 1.75946 1 1.75379 1 1.74815 1 1.74254 1 1.73696 1 1.73141 1 1.72588 1 1.72038 1 1.71491 1 1.70947 1 1.70406 1 1.69867 1 1.69331 1 1.68798 1 1.68267 1 1.67739 1 1.67214 1 1.66691 1 1.66171 1 1.65654 1 1.65139 1 1.64627 1 1.64117 1 1.6361 1 1.63105 1 1.62603 1 1.62103 1 1.61606 1 1.61111 1 1.60619 1 1.60129 1 1.59641 1 1.59156 1 1.58673 1 1.58193 1 1.57715 1 1.57239 1 1.56766 1 1.56295 1 1.55826 1 1.5536 1 1.54895 1 1.54433 1 1.53974 1 1.53516 1 1.53061 1 1.52608 1 1.52157 1 1.51708 1 1.51261 1 1.50817 1 1.50374 1 1.49934 1 1.49496 1 1.4906 1 1.48626 1 1.48194 1 1.47764 1 1.47336 1 1.4691 1 1.46487 1 1.46065 1 1.45645 1 1.45227 1 1.44811 1 1.44397 1 1.43985 0 721 645 722 646 0 723 647 Cp 724 1 40 1 169.987 1 170.086 1 170.185 1 170.284 1 170.384 1 170.483 1 170.582 1 170.681 1 170.78 1 170.879 1 170.978 1 171.077 1 171.176 1 171.275 1 171.375 1 171.474 1 171.573 1 171.672 1 171.771 1 171.87 1 171.969 1 172.068 1 172.167 1 172.266 1 172.365 1 172.464 1 172.563 1 172.662 1 172.76 1 172.859 1 172.958 1 173.057 1 173.156 1 173.255 1 173.354 1 173.452 1 173.551 1 173.65 1 173.749 1 173.8480648 1 100 1 168.945 1 168.996 1 169.046 1 169.097 1 169.148 1 169.198 1 169.249 1 169.3 1 169.35 1 169.401 1 169.451 1 169.502 1 169.552 1 169.603 1 169.653 1 169.704 1 169.754 1 169.805 1 169.855 1 169.906 1 169.956 1 170.006 1 170.057 1 170.107 1 170.157 1 170.207 1 170.258 1 170.308 1 170.358 1 170.408 1 170.458 1 170.508 1 170.559 1 170.609 1 170.659 1 170.709 1 170.759 1 170.809 1 170.859 1 170.909 1 170.959 1 171.009 1 171.059 1 171.109 1 171.158 1 171.208 1 171.258 1 171.308 1 171.358 1 171.408 1 171.457 1 171.507 1 171.557 1 171.606 1 171.656 1 171.706 1 171.755 1 171.805 1 171.855 1 171.904 1 171.954 1 172.003 1 172.053 1 172.103 1 172.152 1 172.201 1 172.251 1 172.3 1 172.35 1 172.399 1 172.449 1 172.498 1 172.547 1 172.597 1 172.646 1 172.695 1 172.744 1 172.794 1 172.843 1 172.892 1 172.941 1 172.991 1 173.04 1 173.089 1 173.138 1 173.187 1 173.236 1 173.285 1 173.334 1 173.383 1 173.432 1 173.481 1 173.53 1 173.579 1 173.628 1 173.677 1 173.726 1 173.775 1 173.824 1 173.873 0 725 649 726 650 0 727 651 K 728 1 40 1 0.176739 1 0.17669 1 0.176641 1 0.176592 1 0.176543 1 0.176493 1 0.176444 1 0.176395 1 0.176346 1 0.176297 1 0.176248 1 0.176199 1 0.176149 1 0.1761 1 0.176051 1 0.176002 1 0.175953 1 0.175903 1 0.175854 1 0.175805 1 0.175755 1 0.175706 1 0.175657 1 0.175607 1 0.175558 1 0.175509 1 0.175459 1 0.17541 1 0.17536 1 0.175311 1 0.175261 1 0.175212 1 0.175162 1 0.175113 1 0.175063 1 0.175014 1 0.174964 1 0.174915 1 0.174865 1 0.1748160652 1 100 1 0.177252 1 0.177227 1 0.177202 1 0.177177 1 0.177152 1 0.177127 1 0.177102 1 0.177077 1 0.177052 1 0.177028 1 0.177003 1 0.176978 1 0.176953 1 0.176928 1 0.176903 1 0.176878 1 0.176853 1 0.176828 1 0.176803 1 0.176779 1 0.176754 1 0.176729 1 0.176704 1 0.176679 1 0.176654 1 0.176629 1 0.176605 1 0.17658 1 0.176555 1 0.17653 1 0.176505 1 0.17648 1 0.176456 1 0.176431 1 0.176406 1 0.176381 1 0.176356 1 0.176332 1 0.176307 1 0.176282 1 0.176257 1 0.176232 1 0.176208 1 0.176183 1 0.176158 1 0.176133 1 0.176109 1 0.176084 1 0.176059 1 0.176034 1 0.17601 1 0.175985 1 0.17596 1 0.175936 1 0.175911 1 0.175886 1 0.175861 1 0.175837 1 0.175812 1 0.175787 1 0.175763 1 0.175738 1 0.175713 1 0.175689 1 0.175664 1 0.175639 1 0.175615 1 0.17559 1 0.175565 1 0.175541 1 0.175516 1 0.175491 1 0.175467 1 0.175442 1 0.175417 1 0.175393 1 0.175368 1 0.175344 1 0.175319 1 0.175294 1 0.17527 1 0.175245 1 0.17522 1 0.175196 1 0.175171 1 0.175147 1 0.175122 1 0.175098 1 0.175073 1 0.175048 1 0.175024 1 0.174999 1 0.174975 1 0.17495 1 0.174926 1 0.174901 1 0.174877 1 0.174852 1 0.174828 1 0.174803 0 729 653 730 654 0 … … 742 666 0 743 667 rho 744 1 1 1 90 0.6990668 1 1 1 902.31 0 745 669 746 670 0 … … 752 676 0 0 753 677 754 3 755 N 756 0 0 757 758 0 678 2 759 679 Mu 760 1 40 1 2.95304 1 2.9269 1 2.90109 1 2.8756 1 2.85043 1 2.82557 1 2.80102 1 2.77678 1 2.75283 1 2.72918 1 2.70582 1 2.68275 1 2.65996 1 2.63745 1 2.61522 1 2.59325 1 2.57155 1 2.55011 1 2.52894 1 2.50801 1 2.48734 1 2.46692 1 2.44674 1 2.4268 1 2.4071 1 2.38763 1 2.36839 1 2.34938 1 2.3306 1 2.31203 1 2.29369 1 2.27555 1 2.25763 1 2.23992 1 2.22241 1 2.20511 1 2.18801 1 2.1711 1 2.15438 1 2.137850680 1 100 1 3.08549 1 3.0713 1 3.05721 1 3.04321 1 3.02931 1 3.01551 1 3.0018 1 2.98818 1 2.97466 1 2.96123 1 2.94789 1 2.93464 1 2.92148 1 2.90841 1 2.89542 1 2.88253 1 2.86972 1 2.85699 1 2.84436 1 2.8318 1 2.81933 1 2.80694 1 2.79464 1 2.78242 1 2.77027 1 2.75821 1 2.74623 1 2.73432 1 2.7225 1 2.71075 1 2.69908 1 2.68749 1 2.67597 1 2.66452 1 2.65315 1 2.64186 1 2.63064 1 2.61949 1 2.60841 1 2.5974 1 2.58647 1 2.5756 1 2.56481 1 2.55408 1 2.54342 1 2.53284 1 2.52231 1 2.51186 1 2.50147 1 2.49115 1 2.48089 1 2.4707 1 2.46057 1 2.45051 1 2.44051 1 2.43057 1 2.42069 1 2.41088 1 2.40113 1 2.39144 1 2.3818 1 2.37223 1 2.36272 1 2.35327 1 2.34387 1 2.33454 1 2.32526 1 2.31604 1 2.30687 1 2.29776 1 2.28871 1 2.27971 1 2.27077 1 2.26188 1 2.25305 1 2.24427 1 2.23554 1 2.22686 1 2.21824 1 2.20967 1 2.20115 1 2.19269 1 2.18427 1 2.17591 1 2.16759 1 2.15932 1 2.15111 1 2.14294 1 2.13482 1 2.12675 1 2.11873 1 2.11075 1 2.10282 1 2.09494 1 2.08711 1 2.07932 1 2.07157 1 2.06387 1 2.05622 1 2.04861 0 761 681 762 682 0 763 683 Twall 764 1 40 1 308.033 1 308.355 1 308.676 1 308.998 1 309.319 1 309.641 1 309.962 1 310.284 1 310.605 1 310.927 1 311.248 1 311.569 1 311.89 1 312.211 1 312.532 1 312.853 1 313.174 1 313.495 1 313.816 1 314.136 1 314.457 1 314.777 1 315.098 1 315.418 1 315.739 1 316.059 1 316.379 1 316.699 1 317.019 1 317.339 1 317.659 1 317.979 1 318.298 1 318.618 1 318.938 1 319.257 1 319.576 1 319.896 1 320.215 1 320.5340684 1 100 1 306.462 1 306.626 1 306.79 1 306.953 1 307.117 1 307.28 1 307.443 1 307.607 1 307.77 1 307.933 1 308.096 1 308.259 1 308.422 1 308.585 1 308.747 1 308.91 1 309.073 1 309.235 1 309.398 1 309.56 1 309.722 1 309.884 1 310.047 1 310.209 1 310.371 1 310.533 1 310.694 1 310.856 1 311.018 1 311.18 1 311.341 1 311.503 1 311.664 1 311.826 1 311.987 1 312.148 1 312.309 1 312.47 1 312.631 1 312.792 1 312.953 1 313.114 1 313.275 1 313.435 1 313.596 1 313.756 1 313.917 1 314.077 1 314.238 1 314.398 1 314.558 1 314.718 1 314.878 1 315.038 1 315.198 1 315.358 1 315.517 1 315.677 1 315.837 1 315.996 1 316.156 1 316.315 1 316.475 1 316.634 1 316.793 1 316.952 1 317.111 1 317.27 1 317.429 1 317.588 1 317.747 1 317.906 1 318.064 1 318.223 1 318.381 1 318.54 1 318.698 1 318.857 1 319.015 1 319.173 1 319.331 1 319.489 1 319.647 1 319.805 1 319.963 1 320.121 1 320.279 1 320.436 1 320.594 1 320.751 1 320.909 1 321.066 1 321.224 1 321.381 1 321.538 1 321.695 1 321.852 1 322.009 1 322.166 1 322.323 0 765 685 766 686 0 … … 772 692 0 773 693 Lincr 774 1 41 1 0 1 0.225 1 0.45 1 0.675 1 0.9 1 1.125 1 1.35 1 1.575 1 1.8 1 2.025 1 2.25 1 2.475 1 2.7 1 2.925 1 3.15 1 3.375 1 3.6 1 3.825 1 4.05 1 4.275 1 4.5 1 4.725 1 4.95 1 5.175 1 5.4 1 5.625 1 5.85 1 6.075 1 6.3 1 6.525 1 6.75 1 6.975 1 7.2 1 7.425 1 7.65 1 7.875 1 8.1 1 8.325 1 8.55 1 8.7751 9 0775 776 0 777 778 0 779 cold_in 694 1 101 1 0 1 0.09 1 0.18 1 0.27 1 0.36 1 0.45 1 0.54 1 0.63 1 0.72 1 0.81 1 0.9 1 0.99 1 1.08 1 1.17 1 1.26 1 1.35 1 1.44 1 1.53 1 1.62 1 1.71 1 1.8 1 1.89 1 1.98 1 2.07 1 2.16 1 2.25 1 2.34 1 2.43 1 2.52 1 2.61 1 2.7 1 2.79 1 2.88 1 2.97 1 3.06 1 3.15 1 3.24 1 3.33 1 3.42 1 3.51 1 3.6 1 3.69 1 3.78 1 3.87 1 3.96 1 4.05 1 4.14 1 4.23 1 4.32 1 4.41 1 4.5 1 4.59 1 4.68 1 4.77 1 4.86 1 4.95 1 5.04 1 5.13 1 5.22 1 5.31 1 5.4 1 5.49 1 5.58 1 5.67 1 5.76 1 5.85 1 5.94 1 6.03 1 6.12 1 6.21 1 6.3 1 6.39 1 6.48 1 6.57 1 6.66 1 6.75 1 6.84 1 6.93 1 7.02 1 7.11 1 7.2 1 7.29 1 7.38 1 7.47 1 7.56 1 7.65 1 7.74 1 7.83 1 7.92 1 8.01 1 8.1 1 8.19 1 8.28 1 8.37 1 8.46 1 8.55 1 8.64 1 8.73 1 8.82 1 8.91 1 9 0 695 696 0 697 698 0 699 InletHot 780 700 0 1 781 701 simple_source … … 783 703 784 704 9 785 NComp 786 00705 M 706 1 2 1 93.128 1 78.1134 0 787 707 788 708 0 … … 792 712 0 0 793 713 794 7 795 NComp 796 0 0 797 798 0 714 6 715 F 716 1 1 1 47.2038 0 717 718 0 719 T 720 1 1 1 338.71 0 721 722 0 723 P 724 1 1 1 4.08275 0 725 726 0 727 h 728 1 1 1 -46122.3 0 729 730 0 731 v 732 1 1 1 0 0 733 734 0 735 z 736 1 2 1 1 1 0 0 737 738 0 739 740 0 741 MolarComposition 742 1 2 1 1 1 0 0 743 744 0 745 F 746 1 1 1 47.2038 0 747 748 0 749 T 750 1 1 1 338.71 0 751 752 0 753 T_Cdeg 754 1 1 1 65.56 0 755 756 0 757 P 758 1 1 1 4.08275 0 759 760 0 761 x 762 1 2 1 1 1 0 0 763 764 0 765 y 766 1 2 1 1 1 0 0 767 768 0 769 770 0 771 InletCold 772 0 1 773 simple_source 774 0 0 775 776 9 777 M 778 1 2 1 93.128 1 78.1134 0 779 780 0 781 Outlet 782 0 1 783 stream 784 0 0 785 786 6 799 787 F 800 788 1 1 1 58.0694 0 … … 809 797 810 798 0 799 h 800 1 1 1 -33924 0 801 802 0 803 v 804 1 1 1 0 0 805 806 0 811 807 z 812 808 1 2 1 0 1 1 0 813 809 814 810 0 811 812 0 813 MolarComposition 814 1 2 1 0 1 1 0 815 816 0 817 F 818 1 1 1 58.0694 0 819 820 0 821 T 822 1 1 1 288.71 0 823 824 0 825 T_Cdeg 826 1 1 1 15.56 0 827 828 0 829 P 830 1 1 1 4.08275 0 831 832 0 833 x 834 1 2 1 0 1 1 0 835 836 0 837 y 838 1 2 1 0 1 1 0 839 840 0 841 842 0 843 OutletHot 844 0 1 845 simple_sink 846 0 0 847 848 1 849 Inlet 850 0 1 851 stream 852 0 0 853 854 6 855 F 856 1 1 1 47.2038 0 857 858 0 859 T 860 1 1 1 324.051 0 861 862 0 863 P 864 1 1 1 3.60943 0 865 866 0 815 867 h 816 1 1 1 - 339240868 1 1 1 -48639.1 0 817 869 818 870 0 … … 821 873 822 874 0 823 824 0825 x826 1 2 1 0 1 1 0827 828 0829 y830 1 2 1 0 1 1 0831 832 0833 hl834 1 1 1 -33924 0835 836 0837 hv838 1 1 1 -2450.57 0839 840 0841 s842 1 1 1 -192.946 0843 844 0845 sl846 1 1 1 -192.946 0847 848 0849 sv850 1 1 1 -114.132 0851 852 0853 854 0855 hot_in856 0 1857 simple_source858 0 0859 860 9861 NComp862 0 0863 864 0865 Outlet866 0 1867 stream868 0 0869 870 7871 NComp872 0 0873 874 0875 F876 1 1 1 47.2038 0877 878 0879 T880 1 1 1 338.71 0881 882 0883 P884 1 1 1 4.08275 0885 886 0887 875 z 888 876 1 2 1 1 1 0 0 889 877 890 878 0 879 880 0 881 882 0 883 OutletCold 884 0 1 885 simple_sink 886 0 0 887 888 1 889 Inlet 890 0 1 891 stream 892 0 0 893 894 6 895 F 896 1 1 1 58.0694 0 897 898 0 899 T 900 1 1 1 306.094 0 901 902 0 903 P 904 1 1 1 4.02783 0 905 906 0 891 907 h 892 1 1 1 - 46122.30908 1 1 1 -31878.2 0 893 909 894 910 0 … … 897 913 898 914 0 899 900 0901 x902 1 2 1 1 1 0 0903 904 0905 y906 1 2 1 1 1 0 0907 908 0909 hl910 1 1 1 -46122.3 0911 912 0913 hv914 1 1 1 1335.59 0915 916 0917 s918 1 1 1 -193.713 0919 920 0921 sl922 1 1 1 -193.713 0923 924 0925 sv926 1 1 1 -100.224 0927 928 0929 930 0931 hot_out932 0 1933 simple_sink934 0 0935 936 1937 Inlet938 0 1939 stream940 0 0941 942 7943 NComp944 0 0945 946 0947 F948 1 1 1 47.2038 0949 950 0951 T952 1 1 1 327.034 0953 954 0955 P956 1 1 1 3.63017 0957 958 0959 z960 1 2 1 1 1 0 0961 962 0963 h964 1 1 1 -48133.4 0965 966 0967 v968 1 1 1 0 0969 970 0971 972 0973 974 0975 cold_out976 0 1977 simple_sink978 0 0979 980 1981 Inlet982 0 1983 stream984 0 0985 986 7987 NComp988 0 0989 990 0991 F992 1 1 1 58.0694 0993 994 0995 T996 1 1 1 302.678 0997 998 0999 P1000 1 1 1 4.02779 01001 1002 01003 915 z 1004 916 1 2 1 0 1 1 0 1005 917 1006 918 0 1007 h 1008 1 1 1 -32289.2 0 1009 1010 0 1011 v 1012 1 1 1 0 0 1013 1014 0 1015 1016 0 1017 1018 0 919 920 0 921 922 0 -
trunk/sample/heat_exchangers/GuessDPincremental.rlt
r482 r632 16 16 28 17 17 N 18 1 1 1 100018 1 1 1 61 0 19 19 20 20 0 21 21 Npoints 22 1 1 1 101022 1 1 1 62 0 23 23 24 24 0 … … 113 113 114 114 0 115 h 116 1 1 1 -33924 0 117 118 0 119 v 120 1 1 1 0 0 121 122 0 115 123 z 116 124 1 2 1 0 1 1 0 117 118 0119 h120 1 1 1 -33924 0121 122 0123 v124 1 1 1 0 0125 125 126 126 0 … … 145 145 146 146 0 147 h 148 1 1 1 -46122.3 0 149 150 0 151 v 152 1 1 1 0 0 153 154 0 147 155 z 148 156 1 2 1 1 1 0 0 149 150 0151 h152 1 1 1 -46122.3 0153 154 0155 v156 1 1 1 0 0157 157 158 158 0 … … 179 179 180 180 0 181 h 182 1 1 1 -31878.2 0 183 184 0 185 v 186 1 1 1 0 0 187 188 0 181 189 z 182 190 1 2 1 0 1 1 0 183 191 184 192 0 185 h 186 1 1 1 -31878.2 0 187 188 0 189 v 190 1 1 1 0 0 191 192 0 193 194 3 193 194 2 195 195 x 196 196 1 2 1 0 1 1 0 … … 199 199 y 200 200