- Timestamp:
- Oct 26, 2008, 5:57:21 PM (14 years ago)
- Location:
- branches/gui
- Files:
-
- 2 added
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gui/eml/icon/SourceNoFlow.svg
r641 r672 17 17 sodipodi:docbase="/home/paula/BibliotecaSVN/eml" 18 18 sodipodi:docname="SourceNoFlow.svg" 19 inkscape:export-filename="/ Apps/repositorio/branches/gui/eml/icon/SourceNoFlow.png"19 inkscape:export-filename="/home/ubuntu/repositorio/alsoc/biblioteca/branches/gui/eml/icon/SourceNoFlow.png" 20 20 inkscape:export-xdpi="108.27314" 21 21 inkscape:export-ydpi="108.27314" … … 733 733 inkscape:cy="17.566744" 734 734 inkscape:window-x="4" 735 inkscape:window-y=" 71"735 inkscape:window-y="49" 736 736 inkscape:current-layer="g6591" 737 737 showguides="true" 738 738 inkscape:guide-bbox="true" 739 showborder=" false"739 showborder="true" 740 740 inkscape:showpageshadow="false"> 741 741 <inkscape:grid -
branches/gui/eml/stage_separators/column.mso
r666 r672 69 69 outer NComp as Integer (Brief="Number of components"); 70 70 NumberOfTrays as Integer (Brief="Number of trays", Default=8); 71 SpecialTrayIndex(NumberOfTrays) as Integer (Brief="Number of trays", Default=0,Hidden=true); 71 FeedTrayIndex(NumberOfTrays) as Integer (Brief="Number of trays", Default=0,Hidden=true); 72 LiqSideTrayIndex(NumberOfTrays) as Integer (Brief="Number of trays", Default=0,Hidden=true); 73 VapSideTrayIndex(NumberOfTrays) as Integer (Brief="Number of trays", Default=0,Hidden=true); 72 74 FeedTrayLocation as Integer (Brief="Feed tray Location", Default=2); 75 LiquidSideStreamLocation as Integer (Brief="Liquid Side Stream Location", Default=2); 76 VapourSideStreamLocation as Integer (Brief="Vapour Side Stream Location", Default=2); 73 77 g as acceleration (Brief="Gravity Acceleration",Default=9.81,Hidden=true); 74 78 Mw(NComp) as molweight (Brief="Component Mol Weight",Hidden=true); … … 114 118 115 119 SET 116 SpecialTrayIndex(FeedTrayLocation) =1; 120 FeedTrayIndex(FeedTrayLocation) =1; 121 VapSideTrayIndex(FeedTrayLocation) =1; 122 LiqSideTrayIndex(FeedTrayLocation) =1; 117 123 Mw = PP.MolecularWeight(); 118 124 … … 134 140 trays(NumberOfTrays) as tray (Brief="Number of trays"); 135 141 142 VapourDrawOffFlow as flow_mol (Brief = "Stream Molar Flow Rate"); 143 LiquidDrawOffFlow as flow_mol (Brief = "Stream Molar Flow Rate"); 144 136 145 MurphreeEff as Real (Brief = "Murphree efficiency"); 137 146 … … 144 153 EQUATIONS 145 154 # Connecting Trays 146 FeedTray.F* SpecialTrayIndex= trays.Inlet.F;155 FeedTray.F*FeedTrayIndex= trays.Inlet.F; 147 156 FeedTray.T = trays.Inlet.T; 148 157 FeedTray.P = trays.Inlet.P; … … 276 285 VARIABLES 277 286 287 out VapourDrawOff as vapour_stream (Brief="Vapour Outlet in the section", PosX=1, PosY=0.35,Protected = true); 288 out LiquidDrawOff as liquid_stream (Brief="Liquid Outlet in the section", PosX=1, PosY=0.65,Protected = true); 289 278 290 in LiquidInlet as stream (Brief="Liquid Inlet in the section", PosX=0.80, PosY=0); 279 291 out VapourOutlet as vapour_stream (Brief="Vapour Outlet in the section", PosX=0.30, PosY=0); … … 315 327 VapourOutlet.P = trays(1).OutletV.P; 316 328 VapourOutlet.z = trays(1).OutletV.z; 329 330 VapourDrawOff.F*VapSideTrayIndex= trays.VapourSideStream.F; 331 VapourDrawOff.T = trays(VapourSideStreamLocation).VapourSideStream.T; 332 VapourDrawOff.P = trays(VapourSideStreamLocation).VapourSideStream.P; 333 VapourDrawOff.z = trays(VapourSideStreamLocation).VapourSideStream.z; 334 335 LiquidDrawOff.F*LiqSideTrayIndex= trays.LiquidSideStream.F; 336 LiquidDrawOff.T = trays(LiquidSideStreamLocation).LiquidSideStream.T; 337 LiquidDrawOff.P = trays(LiquidSideStreamLocation).LiquidSideStream.P; 338 LiquidDrawOff.z = trays(LiquidSideStreamLocation).LiquidSideStream.z; 339 340 VapourDrawOffFlow = VapourDrawOff.F; 341 LiquidDrawOffFlow = LiquidDrawOff.F; 317 342 318 343 end … … 359 384 360 385 VARIABLES 386 out VapourDrawOff as vapour_stream (Brief="Vapour Outlet in the section", PosX=0.25, PosY=0.45,Protected = true); 387 out LiquidDrawOff as liquid_stream (Brief="Liquid Outlet in the section", PosX=0.25, PosY=0.65,Protected = true); 388 361 389 CondenserUnity as condenser; 362 390 ReboilerUnity as reboiler; … … 370 398 RebNoFlow as sourceNoFlow (Brief="No Inlet Flow to Reboiler",Hidden=true); 371 399 372 out VapourDistillate as vapour_stream (Brief="Vapour outlet stream From Top Condenser", PosX=0. 72, PosY=0);400 out VapourDistillate as vapour_stream (Brief="Vapour outlet stream From Top Condenser", PosX=0.68, PosY=0); 373 401 in ConnectorCondenserVout as stream (Brief="Connector for Vapour outlet stream From Top Condenser", Hidden=true); 374 402 375 out LiquidDistillate as liquid_stream (Brief="Liquid outlet stream From Top Splitter", PosX=1, PosY=0. 47);403 out LiquidDistillate as liquid_stream (Brief="Liquid outlet stream From Top Splitter", PosX=1, PosY=0.30); 376 404 in ConnectorSplitterOut as stream (Brief="Connector for Liquid outlet stream From Top Splitter", Hidden=true); 377 405 … … 412 440 ConnectorReboilerLout.z = BottomProduct.z; 413 441 442 VapourDrawOff.F*VapSideTrayIndex= trays.VapourSideStream.F; 443 VapourDrawOff.T = trays(VapourSideStreamLocation).VapourSideStream.T; 444 VapourDrawOff.P = trays(VapourSideStreamLocation).VapourSideStream.P; 445 VapourDrawOff.z = trays(VapourSideStreamLocation).VapourSideStream.z; 446 447 LiquidDrawOff.F*LiqSideTrayIndex= trays.LiquidSideStream.F; 448 LiquidDrawOff.T = trays(LiquidSideStreamLocation).LiquidSideStream.T; 449 LiquidDrawOff.P = trays(LiquidSideStreamLocation).LiquidSideStream.P; 450 LiquidDrawOff.z = trays(LiquidSideStreamLocation).LiquidSideStream.z; 451 452 VapourDrawOffFlow = VapourDrawOff.F; 453 LiquidDrawOffFlow = LiquidDrawOff.F; 454 414 455 CONNECTIONS 415 456 #vapor -
branches/gui/eml/stage_separators/icon/DistillationKettleCond.svg
r317 r672 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 4.1"15 width=" 210mm"16 height=" 297mm"14 inkscape:version="0.46" 15 width="477.36346" 16 height="806.57849" 17 17 sodipodi:docbase="C:\Documents and Settings\Administrador\Meus documentos\Bolsa Simulação\EMSO\mso\trunk\eml\stage_separators\icon" 18 18 sodipodi:docname="DistillationKettleCond.svg" 19 inkscape:export-filename=" C:\Documents and Settings\Administrador\Meus documentos\Bolsa Simulação\Colunas\Distillation_kettle_cond.png"19 inkscape:export-filename="/home/ubuntu/repositorio/alsoc/biblioteca/branches/gui/eml/stage_separators/icon/DistillationKettleCond.png" 20 20 inkscape:export-xdpi="90" 21 inkscape:export-ydpi="90"> 21 inkscape:export-ydpi="90" 22 inkscape:output_extension="org.inkscape.output.svg.inkscape" 23 version="1.0"> 22 24 <metadata 23 25 id="metadata2069"> … … 33 35 <defs 34 36 id="defs2067"> 37 <inkscape:perspective 38 sodipodi:type="inkscape:persp3d" 39 inkscape:vp_x="0 : 526.18109 : 1" 40 inkscape:vp_y="0 : 1000 : 0" 41 inkscape:vp_z="744.09448 : 526.18109 : 1" 42 inkscape:persp3d-origin="372.04724 : 350.78739 : 1" 43 id="perspective115" /> 35 44 <linearGradient 36 45 id="linearGradient6760"> … … 438 447 inkscape:collect="always" 439 448 xlink:href="#linearGradient6760" 440 id="linearGradient24525" 441 gradientUnits="userSpaceOnUse" 442 gradientTransform="matrix(-0.689772,3.285691e-3,-2.052647e-2,-0.453208,574.9578,1041.68)" 449 id="linearGradient1976" 450 gradientUnits="userSpaceOnUse" 451 x1="228.69115" 452 y1="870.7868" 453 x2="707.32397" 454 y2="870.7868" /> 455 <linearGradient 456 inkscape:collect="always" 457 xlink:href="#linearGradient6760" 458 id="linearGradient2508" 459 gradientUnits="userSpaceOnUse" 460 gradientTransform="matrix(1.1687622e-3,0.3288154,-0.9193971,-3.5428278e-3,1073.2055,753.05785)" 461 x1="157.75" 462 y1="532.36218" 463 x2="584.12329" 464 y2="532.36218" /> 465 <linearGradient 466 inkscape:collect="always" 467 xlink:href="#linearGradient6760" 468 id="linearGradient2515" 469 gradientUnits="userSpaceOnUse" 470 gradientTransform="matrix(-0.6375163,3.0089865e-3,-1.8971426e-2,-0.4150411,654.33759,1091.2391)" 443 471 x1="372.57718" 444 472 y1="509.53915" … … 448 476 inkscape:collect="always" 449 477 xlink:href="#linearGradient6760" 450 id="linearGradient2 4532"451 gradientUnits="userSpaceOnUse" 452 gradientTransform="matrix(-2. 868183e-3,0.339547,-0.818058,-7.333372e-3,392.876,715.5431)"478 id="linearGradient2522" 479 gradientUnits="userSpaceOnUse" 480 gradientTransform="matrix(-2.6508952e-3,0.310952,-0.7560836,-6.7157921e-3,186.33856,785.52651)" 453 481 x1="157.75" 454 482 y1="532.36218" … … 458 486 inkscape:collect="always" 459 487 xlink:href="#linearGradient6760" 460 id="linearGradient24538" 461 gradientUnits="userSpaceOnUse" 462 gradientTransform="translate(-248.7358,116.415)" 463 x1="228.69115" 464 y1="870.7868" 465 x2="707.32397" 466 y2="870.7868" /> 467 <linearGradient 468 inkscape:collect="always" 469 xlink:href="#linearGradient6760" 470 id="linearGradient24541" 471 gradientUnits="userSpaceOnUse" 472 gradientTransform="translate(-248.7358,116.415)" 473 x1="228.69115" 474 y1="870.7868" 475 x2="707.32397" 476 y2="870.7868" /> 477 <linearGradient 478 inkscape:collect="always" 479 xlink:href="#linearGradient6760" 480 id="linearGradient24544" 481 gradientUnits="userSpaceOnUse" 482 gradientTransform="translate(-248.7358,116.415)" 483 x1="228.69115" 484 y1="870.7868" 485 x2="707.32397" 486 y2="870.7868" /> 487 <linearGradient 488 inkscape:collect="always" 489 xlink:href="#linearGradient6760" 490 id="linearGradient24547" 491 gradientUnits="userSpaceOnUse" 492 gradientTransform="translate(-248.7358,116.415)" 493 x1="228.69115" 494 y1="870.7868" 495 x2="707.32397" 496 y2="870.7868" /> 497 <linearGradient 498 inkscape:collect="always" 499 xlink:href="#linearGradient6760" 500 id="linearGradient24550" 501 gradientUnits="userSpaceOnUse" 502 gradientTransform="translate(-248.7358,116.415)" 503 x1="228.69115" 504 y1="870.7868" 505 x2="707.32397" 506 y2="870.7868" /> 507 <linearGradient 508 inkscape:collect="always" 509 xlink:href="#linearGradient6760" 510 id="linearGradient24553" 511 gradientUnits="userSpaceOnUse" 512 gradientTransform="translate(-248.7358,116.415)" 513 x1="228.69115" 514 y1="870.7868" 515 x2="707.32397" 516 y2="870.7868" /> 517 <linearGradient 518 inkscape:collect="always" 519 xlink:href="#linearGradient6760" 520 id="linearGradient24556" 521 gradientUnits="userSpaceOnUse" 522 gradientTransform="translate(-116.4143,248.735)" 488 id="linearGradient2607" 489 gradientUnits="userSpaceOnUse" 490 gradientTransform="matrix(0.9077133,0,0,1.5905377,135.68965,570.2537)" 523 491 x1="-913.33197" 524 492 y1="-468.00757" … … 528 496 inkscape:collect="always" 529 497 xlink:href="#linearGradient6760" 530 id="linearGradient2859" 531 gradientUnits="userSpaceOnUse" 532 gradientTransform="matrix(1.264563e-3,0.359053,-0.994758,-3.868624e-3,1025.606,677.2927)" 533 x1="157.75" 534 y1="532.36218" 535 x2="584.12329" 536 y2="532.36218" /> 537 <linearGradient 538 inkscape:collect="always" 539 xlink:href="#linearGradient6760" 540 id="linearGradient1976" 498 id="linearGradient2609" 499 gradientUnits="userSpaceOnUse" 500 gradientTransform="matrix(0.7367323,0,0,1.9597203,-199.89252,-1010.7149)" 501 x1="228.69115" 502 y1="870.7868" 503 x2="707.32397" 504 y2="870.7868" /> 505 <linearGradient 506 inkscape:collect="always" 507 xlink:href="#linearGradient6760" 508 id="linearGradient2611" 509 gradientUnits="userSpaceOnUse" 510 gradientTransform="matrix(0.7235658,0,0,1.9953817,-92.227134,-1040.3768)" 511 x1="228.69115" 512 y1="870.7868" 513 x2="707.32397" 514 y2="870.7868" /> 515 <linearGradient 516 inkscape:collect="always" 517 xlink:href="#linearGradient6760" 518 id="linearGradient2613" 519 gradientUnits="userSpaceOnUse" 520 gradientTransform="matrix(0.7435026,0,0,1.9418873,-153.5393,-1076.2768)" 521 x1="228.69115" 522 y1="870.7868" 523 x2="707.32397" 524 y2="870.7868" /> 525 <linearGradient 526 inkscape:collect="always" 527 xlink:href="#linearGradient6760" 528 id="linearGradient2615" 529 gradientUnits="userSpaceOnUse" 530 gradientTransform="matrix(0.7367172,0,0,1.9597176,-297.04908,-1010.4789)" 531 x1="228.69115" 532 y1="870.7868" 533 x2="707.32397" 534 y2="870.7868" /> 535 <linearGradient 536 inkscape:collect="always" 537 xlink:href="#linearGradient6760" 538 id="linearGradient2617" 539 gradientUnits="userSpaceOnUse" 540 gradientTransform="matrix(0.743504,0,0,1.9418853,-249.93077,-1076.0453)" 541 x1="228.69115" 542 y1="870.7868" 543 x2="707.32397" 544 y2="870.7868" /> 545 <linearGradient 546 inkscape:collect="always" 547 xlink:href="#linearGradient6760" 548 id="linearGradient2619" 549 gradientUnits="userSpaceOnUse" 550 gradientTransform="matrix(0.736739,0,0,1.9597194,-49.806886,-1092.4951)" 551 x1="228.69115" 552 y1="870.7868" 553 x2="707.32397" 554 y2="870.7868" /> 555 <linearGradient 556 inkscape:collect="always" 557 xlink:href="#linearGradient6760" 558 id="linearGradient2621" 559 gradientUnits="userSpaceOnUse" 560 gradientTransform="matrix(0.736739,0,0,1.9597194,43.871058,-1092.2917)" 561 x1="228.69115" 562 y1="870.7868" 563 x2="707.32397" 564 y2="870.7868" /> 565 <linearGradient 566 inkscape:collect="always" 567 xlink:href="#linearGradient6760" 568 id="linearGradient2623" 569 gradientUnits="userSpaceOnUse" 570 gradientTransform="matrix(0.7367172,0,0,1.9597176,-388.12386,-1009.2253)" 571 x1="228.69115" 572 y1="870.7868" 573 x2="707.32397" 574 y2="870.7868" /> 575 <linearGradient 576 inkscape:collect="always" 577 xlink:href="#linearGradient6760" 578 id="linearGradient2625" 541 579 gradientUnits="userSpaceOnUse" 542 580 x1="228.69115" … … 547 585 <sodipodi:namedview 548 586 inkscape:window-height="900" 549 inkscape:window-width="12 80"587 inkscape:window-width="1272" 550 588 inkscape:pageshadow="2" 551 589 inkscape:pageopacity="0.0" … … 559 597 showgrid="true" 560 598 showguides="true" 561 inkscape:zoom="0. 35824169"562 inkscape:cx="4 63.05537"563 inkscape:cy=" 883.90986"564 inkscape:window-x=" -4"565 inkscape:window-y=" -4"599 inkscape:zoom="0.71648338" 600 inkscape:cx="442.38908" 601 inkscape:cy="402.18593" 602 inkscape:window-x="0" 603 inkscape:window-y="24" 566 604 inkscape:current-layer="g14168" 567 605 inkscape:guide-bbox="true" /> 568 606 <g 569 transform="matrix(0,-0.836391,-1.541763,0,16 77.846,672.611)"607 transform="matrix(0,-0.836391,-1.541763,0,1656.3969,576.69964)" 570 608 style="fill:url(#linearGradient21273);fill-opacity:1;fill-rule:nonzero" 571 609 id="g14168"> … … 574 612 style="fill:url(#linearGradient5143);fill-opacity:1;fill-rule:nonzero" 575 613 id="g5069" /> 614 <path 615 id="path5033" 616 d="M 471.3211,989.19129 L 482.37018,988.91043 L 477.57301,997.97966 L 471.3211,989.19129 z" 617 style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.81182224px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> 618 <path 619 style="fill:url(#linearGradient2522);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.1820271;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 620 d="M -186.77782,881.72432 L -187.36103,950.13368 C -207.59578,958.46365 -227.75097,957.4603 -247.84766,949.59642 L -246.99937,850.0919 L -246.84033,831.43479 L -201.47535,831.83774 L -201.63439,850.49484 L -246.99937,850.0919 L -201.63439,850.49484 L -201.74044,862.93291 L -186.77782,881.72432 L -186.77782,881.72432 L -186.77782,881.72432 z" 621 id="path2047" 622 sodipodi:nodetypes="ccccccccccccc" /> 623 <path 624 id="path4730" 625 d="M -118.59596,988.7126 L -110.66573,988.77266 L -114.16137,997.68699 L -118.59596,988.7126 z" 626 style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.68752825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> 627 <path 628 id="path9931" 629 d="M -223.25667,963.2708 L -231.29987,963.11083 L -226.12375,955.061 L -223.25667,963.2708 z" 630 style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.66118085px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> 631 <path 632 style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.56827581;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 633 d="M -229.85682,877.17288 L -230.6265,837.75891 L -216.97126,858.79755 L -217.85936,813.3199" 634 id="path9935" /> 635 <path 636 id="path10822" 637 d="M -233.45392,877.41963 L -226.65454,877.29839 L -230.12838,882.93352 L -233.45392,877.41963 z" 638 style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.50261962px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> 639 <path 640 style="fill:url(#linearGradient2515);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.91794777;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 641 d="M 405.7349,883.86684 L 452.59987,862.88913 L 429.53382,853.1794 L 403.83767,842.3627 C 396.59151,860.00931 400.39657,872.30898 405.7349,883.86684 z" 642 id="path22345" 643 sodipodi:nodetypes="ccccc" 644 inkscape:export-xdpi="90" 645 inkscape:export-ydpi="90" /> 646 <path 647 style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.92820442;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 648 d="M 480.34965,862.88886 C 451.90225,863.02311 451.90225,863.02311 451.90225,863.02311" 649 id="path1874" /> 650 <path 651 id="path4728" 652 d="M 372.09725,906.98618 L 363.37993,906.96764 L 367.36605,912.7277 L 372.09725,906.98618 z" 653 style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.57814503px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> 654 <path 655 sodipodi:type="arc" 656 style="fill:url(#linearGradient8353);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:4.1367197;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 657 id="path6504" 658 sodipodi:cx="475.17874" 659 sodipodi:cy="602.44745" 660 sodipodi:rx="50.259289" 661 sodipodi:ry="49.990524" 662 d="M 525.43803,602.44745 A 50.259289,49.990524 0 1 1 424.91945,602.44745 A 50.259289,49.990524 0 1 1 525.43803,602.44745 z" 663 transform="matrix(6.6501208e-3,0.3409138,-0.6371013,1.0595861e-2,749.57916,763.33048)" /> 664 <path 665 style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.92820442;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 666 d="M 337.05223,931.7042 L 322.56132,931.94519 L 322.512,929.41376 L 322.61066,934.47664 L 322.56132,931.94519" 667 id="path10135" /> 668 <path 669 sodipodi:nodetypes="ccccccccccccc" 670 id="path2264" 671 d="M 620.90304,856.53354 L 621.16,928.87291 C 596.67482,937.7763 572.15461,936.81022 547.60855,928.58947 L 547.23461,823.36859 L 547.16437,803.63966 L 602.32808,803.85224 L 602.39831,823.58115 L 547.23461,823.36859 L 602.39831,823.58115 L 602.44508,836.73376 L 620.90304,856.53354 L 620.90304,856.53354 L 620.90304,856.53354 z" 672 style="fill:url(#linearGradient2508);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.47421145;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> 673 <path 674 style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.64201891px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" 675 d="M 634.97393,902.714 L 635.0997,907.28433 L 621.52153,905.46953 L 634.97393,902.714 z" 676 id="path2266" /> 677 <path 678 id="path7262" 679 d="M 574.27428,884.8743 L 573.38179,816.17298 L 588.5915,856.61747 L 587.56686,777.7382 L 587.56686,777.7382 L 587.56686,777.7382" 680 style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.62033987;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> 681 <path 682 id="path2272" 683 d="M 482.83905,862.2484 L 545.14119,861.89431 L 482.83905,862.2484 z" 684 style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.90609694;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> 685 <path 686 id="path4063" 687 d="M 550.40083,1037.3335 L 688.28995,1037.3335 L 688.29007,905.00384 L 635.76053,905.00384 L 635.76053,905.00384 L 635.76053,905.00384" 688 style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.79649448;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> 689 <path 690 style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.70871884px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" 691 d="M 491.60954,859.94006 L 491.82547,865.15925 L 477.30718,863.1617 L 491.60954,859.94006 z" 692 id="path4952" /> 693 <path 694 id="path14705" 695 d="M 367.39548,931.36749 L 367.39546,872.42346 L 401.35868,872.42346" 696 style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.92820442;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> 697 <path 698 id="path15596" 699 d="M 398.92216,854.43223 C 366.72565,854.43223 366.72565,854.43223 366.72565,854.43223 L 366.72565,770.87395" 700 style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.65966523;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> 701 <path 702 id="path17376" 703 d="M 401.3601,932.0784 L 401.3601,972.66143 L 477.19533,972.66143 L 477.19533,994.51382" 704 style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.92820442;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> 705 <path 706 id="path18278" 707 d="M -247.82143,897.8402 L -271.36214,897.8402 L -271.36214,768.91925" 708 style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.62033987;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> 709 <path 710 id="path19167" 711 d="M -186.39101,937.40646 L -115.56493,937.40646 L -115.56493,998.52967 L -115.56493,998.52967" 712 style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.69850659;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> 713 <path 714 id="path20054" 715 d="M -192.8571,1037.878 L -226.44213,1037.878 L -226.44212,958.16354" 716 style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.61005425;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> 717 <path 718 style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.32096973px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" 719 d="M -268.20559,770.94418 L -274.62829,770.94418 L -271.41694,764.84889 L -268.20559,770.94418 z" 720 id="path1977" /> 721 <path 722 style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.56140006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 723 d="M -217.37823,857.788 L -218.49735,768.07031" 724 id="path2868" /> 725 <path 726 style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.32096973px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" 727 d="M -215.16387,770.94418 L -221.58657,770.94418 L -218.37522,764.84889 L -215.16387,770.94418 z" 728 id="path3755" /> 729 <path 730 style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.32096973px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" 731 d="M 369.98826,770.57135 L 363.56556,770.57135 L 366.7769,764.47606 L 369.98826,770.57135 z" 732 id="path5527" /> 733 <path 734 style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.62033999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 735 d="M 588.58234,855.59279 L 587.4773,770.05888" 736 id="path5532" /> 737 <path 738 style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.32096973px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" 739 d="M 590.57351,770.92682 L 584.15081,770.92682 L 587.36215,764.83153 L 590.57351,770.92682 z" 740 id="path8189" /> 741 <path 742 style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.62033999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 743 d="M 622.83845,865.09656 L 678.09024,865.09656" 744 id="path8191" /> 745 <path 746 style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.32096973px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" 747 d="M 678.64396,866.84476 L 678.66089,863.3924 L 689.99191,865.13463 L 678.64396,866.84476 z" 748 id="path9078" /> 576 749 <g 577 id="g 1975"578 style="fill:url(#linearGradient 1976)"579 transform=" matrix(0.924242,0,0,0.915785,-8.038794,90.55544)">750 id="g2596" 751 style="fill:url(#linearGradient2625)" 752 transform="translate(-1.1799661,381.5114)"> 580 753 <rect 581 ry=" 30.369915"582 transform="matrix(0,-1,-1,1. 809807e-8,0,0)"583 y="- 456.30664"584 x="- 1027.4641"585 height=" 474.06699"586 width=" 80.52401"587 id="rect 11493"588 style="fill:url(#linearGradient2 4556);fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:3.52246428;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"589 rx=" 40.262005" />754 ry="48.304493" 755 transform="matrix(0,-1,-1,1.0328494e-8,0,0)" 756 y="-551.14166" 757 x="-691.28241" 758 height="754.02136" 759 width="73.09272" 760 id="rect2548" 761 style="fill:url(#linearGradient2607);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:4.2324605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 762 rx="36.54636" /> 590 763 <path 591 id="path 8726"592 d="M 1 85.04269,948.18307 L 185.04276,984.08304"593 style="fill:url(#linearGradient2 4553);fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:3.08215547;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />764 id="path2550" 765 d="M 119.68609,619.31795 L 119.68615,689.67187" 766 style="fill:url(#linearGradient2609);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3.70344949;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> 594 767 <path 595 id="path 8728"596 d="M 30 2.64057,948.18307 L 302.64064,984.08304"597 style="fill:url(#linearGradient2 4550);fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:3.08215547;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />768 id="path2552" 769 d="M 306.72993,619.31795 L 306.72999,690.95211" 770 style="fill:url(#linearGradient2611);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3.70345044;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> 598 771 <path 599 id="path 8732"600 d="M 2 43.23403,990.02127 L 243.23393,1025.9213"601 style="fill:url(#linearGradient2 4547);fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:3.08215547;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />772 id="path2554" 773 d="M 212.24152,620.16809 L 212.24145,689.88196" 774 style="fill:url(#linearGradient2613);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3.70346093;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> 602 775 <path 603 style="fill:url(#linearGradient2 4544);fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:3.08215547;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"604 d="M 71.244663,947.9609 L 71.244668,983.86099"605 id="path 7820" />776 style="fill:url(#linearGradient2615);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3.70340919;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 777 d="M -61.313984,619.11626 L -61.313976,689.47033" 778 id="path2556" /> 606 779 <path 607 style="fill:url(#linearGradient2 4541);fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:3.08215547;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"608 d="M 129.43599,989.79909 L 129.43589,1025.6992"609 id="path 8730" />780 style="fill:url(#linearGradient2617);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3.70346284;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 781 d="M 31.241469,619.96642 L 31.241396,689.68035" 782 id="path2558" /> 610 783 <path 611 style="fill:url(#linearGradient2 4538);fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:3.08215547;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"612 d="M 3 60.83191,990.02121 L 360.83181,1025.9212"613 id="path 8734" />784 style="fill:url(#linearGradient2619);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3.70346522;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 785 d="M 399.28538,619.52792 L 399.2853,689.88186" 786 id="path2560" /> 614 787 <path 615 style="fill: black;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:0.88241184px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"616 d="M 198.09049,1039.7375 L 186.12337,1039.8174 L 191.94857,1030.0186 L 198.09049,1039.7375 z"617 id="path2 0553" />788 style="fill:url(#linearGradient2621);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3.70346522;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 789 d="M 492.96355,619.73354 L 492.96347,690.08748" 790 id="path2582" /> 618 791 <path 619 style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:0.88241184px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" 620 d="M 376.93986,935.91397 L 388.89461,935.60729 L 383.70423,945.51051 L 376.93986,935.91397 z " 621 id="path5033" /> 622 <path 623 sodipodi:nodetypes="cc" 624 id="path4989" 625 d="M 192.14393,1038.243 C 192.14387,1077.1595 192.14386,1074.599 192.14386,1074.599" 626 style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:1.78853083;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> 627 <path 628 sodipodi:nodetypes="ccccccccccccc" 629 id="path2047" 630 d="M -10.823871,820.5872 L -11.454879,895.28744 C -33.34823,904.38343 -55.15549,903.28781 -76.899466,894.70078 L -75.981643,786.04588 L -75.809564,765.67308 L -26.726119,766.11308 L -26.898199,786.48588 L -75.981643,786.04588 L -26.898199,786.48588 L -27.012935,800.06774 L -10.823871,820.5872 L -10.823871,820.5872 L -10.823871,820.5872 z " 631 style="fill:url(#linearGradient24532);fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:2.37175894;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> 632 <path 633 style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:0.74731022px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" 634 d="M 62.946707,937.41406 L 71.526961,937.47964 L 67.744787,947.21372 L 62.946707,937.41406 z " 635 id="path4730" /> 636 <path 637 style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:0.71867186px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" 638 d="M -50.29281,909.63264 L -58.995292,909.45796 L -53.394889,900.66788 L -50.29281,909.63264 z " 639 id="path9931" /> 640 <path 641 id="path9935" 642 d="M -57.433954,815.61721 L -58.266729,772.57876 L -43.4922,795.5521 L -44.453091,745.89236" 643 style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:1.70464063;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> 644 <path 645 style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:0.54632342px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" 646 d="M -61.325903,815.88666 L -53.969187,815.75427 L -57.727773,821.9076 L -61.325903,815.88666 z " 647 id="path10822" /> 648 <path 649 inkscape:export-ydpi="90" 650 inkscape:export-xdpi="90" 651 sodipodi:nodetypes="ccccc" 652 id="path22345" 653 d="M 305.97771,815.23791 L 356.6841,792.3311 L 331.72738,781.72847 L 303.92497,769.91708 C 296.08486,789.18646 300.20181,802.6172 305.97771,815.23791 z " 654 style="fill:url(#linearGradient24525);fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:2.08471727;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> 655 <path 656 id="path1874" 657 d="M 386.70846,792.33081 C 355.9293,792.47741 355.9293,792.47741 355.9293,792.47741" 658 style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:2.09586573;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> 659 <path 660 style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:0.62841594px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" 661 d="M 269.58286,840.48329 L 260.151,840.46305 L 264.46386,846.7528 L 269.58286,840.48329 z " 662 id="path4728" /> 663 <path 664 transform="matrix(7.195216e-3,0.372264,-0.689323,1.157025e-2,678.0061,683.6171)" 665 d="M 525.43803 602.44745 A 50.259289 49.990524 0 1 1 424.91945,602.44745 A 50.259289 49.990524 0 1 1 525.43803 602.44745 z" 666 sodipodi:ry="49.990524" 667 sodipodi:rx="50.259289" 668 sodipodi:cy="602.44745" 669 sodipodi:cx="475.17874" 670 id="path6504" 671 style="fill:url(#linearGradient8353);fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:4.1367197;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 672 sodipodi:type="arc" /> 673 <path 674 id="path10135" 675 d="M 231.66528,867.47436 L 215.98659,867.73752 L 215.93322,864.9733 L 216.03997,870.50176 L 215.98659,867.73752" 676 style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:2.09586573;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> 677 <path 678 style="fill:url(#linearGradient2859);fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:2.68934917;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 679 d="M 536.22932,790.28395 L 536.50735,869.2756 C 510.01517,878.99775 483.4851,877.94283 456.92705,868.9661 L 456.52246,754.06918 L 456.44647,732.52599 L 516.13182,732.75811 L 516.20781,754.30128 L 456.52246,754.06918 L 516.20781,754.30128 L 516.25841,768.6634 L 536.22932,790.28395 L 536.22932,790.28395 L 536.22932,790.28395 z " 680 id="path2264" 681 sodipodi:nodetypes="ccccccccccccc" /> 682 <path 683 id="path2266" 684 d="M 551.45357,840.71114 L 551.58965,845.70175 L 536.89851,843.72007 L 551.45357,840.71114 z " 685 style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:0.69784379px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> 686 <path 687 style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:1.76123178;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 688 d="M 485.77851,821.23091 L 484.81287,746.21186 L 501.26928,790.3756 L 500.16065,704.24264 L 500.16065,704.24264 L 500.16065,704.24264" 689 id="path7262" /> 690 <path 691 style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:2.07183599;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 692 d="M 389.40191,791.63145 L 456.81082,791.2448 L 389.40191,791.63145 z " 693 id="path2272" /> 694 <path 695 style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:1.95270336;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 696 d="M 453.56479,987.01116 L 602.75636,987.01116 L 602.75649,842.51257 L 545.92122,842.51257 L 545.92122,842.51257 L 545.92122,842.51257" 697 id="path4063" /> 698 <path 699 id="path4952" 700 d="M 398.8913,789.11084 L 399.12493,794.80998 L 383.41661,792.62874 L 398.8913,789.11084 z " 701 style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:0.77034342px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> 702 <path 703 style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:2.09586573;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 704 d="M 264.4957,867.10669 L 264.49568,802.7422 L 301.24278,802.7422" 705 id="path14705" /> 706 <path 707 style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:1.76123178;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 708 d="M 298.63544,783.11232 C 263.74208,783.11232 263.74208,783.11232 263.74208,783.11232 L 263.74208,696.28677" 709 id="path15596" /> 710 <path 711 style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:2.09586573;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 712 d="M 301.24432,867.88298 L 301.24432,912.19799 L 383.29559,912.19799 L 383.29559,936.05992" 713 id="path17376" /> 714 <path 715 style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:1.76123178;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 716 d="M -76.871088,838.18509 L -102.34137,838.18509 L -102.34137,697.40865" 717 id="path18278" /> 718 <path 719 style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:1.84619522;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 720 d="M -10.405353,881.38984 L 66.226178,881.38984 L 66.226183,948.1339 L 66.226183,948.1339" 721 id="path19167" /> 722 <path 723 style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:1.75005174;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 724 d="M -17.401457,991.10069 L -53.739367,991.10069 L -53.739362,904.05572" 725 id="path20054" /> 726 <path 727 id="path1977" 728 d="M -98.926087,699.61979 L -105.87524,699.61979 L -102.40067,692.96398 L -98.926087,699.61979 z " 729 style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:0.34887871px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> 730 <path 731 id="path2868" 732 d="M -43.932522,794.44971 L -45.143379,696.48164" 733 style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:1.69716704;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> 734 <path 735 id="path3755" 736 d="M -41.536657,699.61979 L -48.48581,699.61979 L -45.01124,692.96398 L -41.536657,699.61979 z " 737 style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:0.34887871px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> 738 <path 739 id="path5527" 740 d="M 267.301,699.67908 L 260.35185,699.67908 L 263.82642,693.02327 L 267.301,699.67908 z " 741 style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:0.34887871px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> 742 <path 743 transform="matrix(0,-0.648608,-1.195613,0,804.1825,1088.265)" 744 id="path5532" 745 d="M 461,253.36218 L 605,254.36218" 746 style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:2.00000024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> 747 <path 748 id="path8189" 749 d="M 503.41375,699.63792 L 496.4646,699.63792 L 499.93917,692.98211 L 503.41375,699.63792 z " 750 style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:0.34887871px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> 751 <path 752 transform="matrix(0,-0.648608,-1.195613,0,804.1825,1088.265)" 753 id="path8191" 754 d="M 445,222.36218 L 445,172.36218" 755 style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:2.00000024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> 756 <path 757 id="path9078" 758 d="M 590.94144,801.54339 L 590.95975,797.77355 L 603.21955,799.67599 L 590.94144,801.54339 z " 759 style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:0.34887871px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> 792 style="fill:url(#linearGradient2623);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3.70340919;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" 793 d="M -152.38876,620.37095 L -152.38876,690.72502" 794 id="path2588" /> 760 795 </g> 761 796 </g> -
branches/gui/eml/stage_separators/tray.mso
r648 r672 44 44 45 45 Inlet as stream (Brief="Feed stream", PosX=0, PosY=0.4932, Symbol="_{in}"); 46 LiquidSideStream as liquid_stream (Brief="liquid Sidestream", Hidden=true, Symbol="_{outL}"); 47 VapourSideStream as vapour_stream (Brief="vapour Sidestream", Hidden=true, Symbol="_{outV}"); 48 46 49 in InletL as stream (Brief="Inlet liquid stream", PosX=0.5195, PosY=0, Symbol="_{inL}"); 47 50 in InletV as stream (Brief="Inlet vapour stream", PosX=0.4994, PosY=1, Symbol="_{inV}"); 48 51 out OutletL as liquid_stream (Brief="Outlet liquid stream", PosX=0.8277, PosY=1, Symbol="_{outL}"); 49 52 out OutletV as vapour_stream (Brief="Outlet vapour stream", PosX=0.8043, PosY=0, Symbol="_{outV}"); 53 50 54 51 55 M(NComp) as mol (Brief="Molar Holdup in the tray"); … … 60 64 61 65 EQUATIONS 62 "Component Molar Balance" 63 diff(M)=Inlet.F*Inlet.z + InletL.F*InletL.z + InletV.F*InletV.z- OutletL.F*OutletL.z - OutletV.F*OutletV.z; 66 "Component Molar Balance" 67 diff(M)=Inlet.F*Inlet.z + InletL.F*InletL.z + InletV.F*InletV.z- OutletL.F*OutletL.z - OutletV.F*OutletV.z- 68 LiquidSideStream.F*LiquidSideStream.z-VapourSideStream.F*VapourSideStream.z; 64 69 65 70 "Molar Holdup" … … 84 89 "Mechanical Equilibrium" 85 90 OutletV.P = OutletL.P; 91 92 "Thermal Equilibrium Vapour Side Stream" 93 OutletV.T = VapourSideStream.T; 94 95 "Thermal Equilibrium Liquid Side Stream" 96 OutletL.T = LiquidSideStream.T; 97 98 "Mechanical Equilibrium Vapour Side Stream" 99 OutletV.P= VapourSideStream.P; 100 101 "Mechanical Equilibrium Liquid Side Stream" 102 OutletL.P = LiquidSideStream.P; 103 104 "Composition Liquid Side Stream" 105 OutletL.z= LiquidSideStream.z; 106 107 "Composition Vapour Side Stream" 108 OutletV.z= VapourSideStream.z; 86 109 87 110 end -
branches/gui/eml/streams.mso
r641 r672 673 673 674 674 end 675 676 Model sinkNoFlow 677 ATTRIBUTES 678 Pallete = true; 679 Icon = "icon/sinkNoFlow"; 680 Brief = "Simple material stream sink"; 681 Info = " 682 This model should be used for seal an outlet material stream port. 683 "; 684 685 VARIABLES 686 in Inlet as stream (Brief = "Inlet Stream", PosX=0, PosY=0.5308, Protected=true,Symbol="_{in}"); 687 688 EQUATIONS 689 "Stream Molar Flow" 690 Inlet.F = 0 * 'kmol/h'; 691 692 end -
branches/gui/sample/stage_separators/Column_Diagram.pfd
r648 r672 30 30 <View> 31 31 <Zoom_Level>1</Zoom_Level> 32 <Show_Grid> 1</Show_Grid>33 <Snap_to_Grid> 1</Snap_to_Grid>34 <Width> 921</Width>35 <Height> 623</Height>32 <Show_Grid>0</Show_Grid> 33 <Snap_to_Grid>0</Snap_to_Grid> 34 <Width>1260</Width> 35 <Height>530</Height> 36 36 <X>0</X> 37 37 <Y>0</Y> … … 39 39 <View> 40 40 <Zoom_Level>1</Zoom_Level> 41 <Show_Grid> 1</Show_Grid>42 <Snap_to_Grid> 1</Snap_to_Grid>43 <Width> 921</Width>41 <Show_Grid>0</Show_Grid> 42 <Snap_to_Grid>0</Snap_to_Grid> 43 <Width>1260</Width> 44 44 <Height>0</Height> 45 45 <X>0</X> … … 49 49 <Type>simple_source</Type> 50 50 <Id_String>feed</Id_String> 51 <Image_File_Name> D:\Apps\repositorio\branches\gui\eml\icon/Source.png</Image_File_Name>51 <Image_File_Name>Z:\home\ubuntu\repositorio\alsoc\biblioteca\branches\gui\eml\icon/Source.png</Image_File_Name> 52 52 <X>67</X> 53 53 <Y>174</Y> … … 196 196 <Type>source</Type> 197 197 <Id_String>reboilerDevice</Id_String> 198 <Image_File_Name> D:\Apps\repositorio\branches\gui\eml\icon/Source.png</Image_File_Name>198 <Image_File_Name>Z:\home\ubuntu\repositorio\alsoc\biblioteca\branches\gui\eml\icon/Source.png</Image_File_Name> 199 199 <X>216</X> 200 200 <Y>401</Y> … … 400 400 <Type>simple_sink</Type> 401 401 <Id_String>LiquidToReboiler</Id_String> 402 <Image_File_Name> D:\Apps\repositorio\branches\gui\eml\icon/Sink.png</Image_File_Name>402 <Image_File_Name>Z:\home\ubuntu\repositorio\alsoc\biblioteca\branches\gui\eml\icon/Sink.png</Image_File_Name> 403 403 <X>557</X> 404 404 <Y>399</Y> … … 481 481 <Type>simple_sink</Type> 482 482 <Id_String>vapourOut</Id_String> 483 <Image_File_Name> D:\Apps\repositorio\branches\gui\eml\icon/Sink.png</Image_File_Name>483 <Image_File_Name>Z:\home\ubuntu\repositorio\alsoc\biblioteca\branches\gui\eml\icon/Sink.png</Image_File_Name> 484 484 <X>683</X> 485 485 <Y>29</Y> … … 513 513 <Type>Section_Column</Type> 514 514 <Id_String>SectionColumnDevice</Id_String> 515 <Image_File_Name> D:\Apps\repositorio\branches\gui\eml\stage_separators\icon/SectionColumn.png</Image_File_Name>515 <Image_File_Name>Z:\home\ubuntu\repositorio\alsoc\biblioteca\branches\gui\eml\stage_separators\icon/SectionColumn.png</Image_File_Name> 516 516 <X>354</X> 517 517 <Y>147</Y> … … 521 521 <Block_Properties> 522 522 <Model_File_Path>stage_separators\column</Model_File_Path> 523 <Instance_Id>Section _Column_1</Instance_Id>523 <Instance_Id>SectionColumnDevice</Instance_Id> 524 524 <Model_Name>Section_Column</Model_Name> 525 525 <T_Connection>0</T_Connection> … … 527 527 <Block_Properties> 528 528 <Model_File_Path>stage_separators\column</Model_File_Path> 529 <Instance_Id>Section _Column_1</Instance_Id>529 <Instance_Id>SectionColumnDevice</Instance_Id> 530 530 <Model_Name>Section_ColumnBasic</Model_Name> 531 531 <T_Connection>0</T_Connection> … … 1676 1676 </Parameters> 1677 1677 <Parameters> 1678 <Desc>LiquidSideStreamLocation</Desc> 1679 <Index>0</Index> 1680 <Values>2</Values> 1681 <Status>4</Status> 1682 </Parameters> 1683 <Parameters> 1684 <Desc>VapourSideStreamLocation</Desc> 1685 <Index>0</Index> 1686 <Values>2</Values> 1687 <Status>0</Status> 1688 </Parameters> 1689 <Parameters> 1678 1690 <Desc>VapourFlowModel</Desc> 1679 1691 <Index>0</Index> … … 1774 1786 </Parameters> 1775 1787 <Variables> 1788 <Desc>VapourDrawOffFlow</Desc> 1789 <Index>0</Index> 1790 <Values>0</Values> 1791 <Status>0</Status> 1792 <Unit>kmol/h</Unit> 1793 </Variables> 1794 <Variables> 1795 <Desc>LiquidDrawOffFlow</Desc> 1796 <Index>0</Index> 1797 <Values>2</Values> 1798 <Status>1</Status> 1799 <Unit>kmol/h</Unit> 1800 </Variables> 1801 <Variables> 1776 1802 <Desc>MurphreeEff</Desc> 1777 1803 <Index>0</Index> … … 1781 1807 </Block_Properties> 1782 1808 </Base_Models> 1809 <Sub_Models> 1810 <Block_Properties> 1811 <Model_File_Path>stage_separators\column</Model_File_Path> 1812 <Instance_Id>VapourDrawOff</Instance_Id> 1813 <Model_Name>VapourDrawOff</Model_Name> 1814 <T_Connection>2</T_Connection> 1815 <Base_Models> 1816 <Block_Properties> 1817 <Model_File_Path>streams</Model_File_Path> 1818 <Instance_Id>VapourDrawOff</Instance_Id> 1819 <Model_Name>vapour_stream</Model_Name> 1820 <T_Connection>2</T_Connection> 1821 <Base_Models> 1822 <Block_Properties> 1823 <Model_File_Path>streams</Model_File_Path> 1824 <Instance_Id>VapourDrawOff</Instance_Id> 1825 <Model_Name>stream</Model_Name> 1826 <T_Connection>2</T_Connection> 1827 </Block_Properties> 1828 </Base_Models> 1829 <Parameters> 1830 <Desc>PP</Desc> 1831 <Index>0</Index> 1832 <Values>PP</Values> 1833 <Status>0</Status> 1834 </Parameters> 1835 </Block_Properties> 1836 </Base_Models> 1837 </Block_Properties> 1838 </Sub_Models> 1839 <Sub_Models> 1840 <Block_Properties> 1841 <Model_File_Path>stage_separators\column</Model_File_Path> 1842 <Instance_Id>LiquidDrawOff</Instance_Id> 1843 <Model_Name>LiquidDrawOff</Model_Name> 1844 <T_Connection>2</T_Connection> 1845 <Base_Models> 1846 <Block_Properties> 1847 <Model_File_Path>streams</Model_File_Path> 1848 <Instance_Id>LiquidDrawOff</Instance_Id> 1849 <Model_Name>liquid_stream</Model_Name> 1850 <T_Connection>2</T_Connection> 1851 <Base_Models> 1852 <Block_Properties> 1853 <Model_File_Path>streams</Model_File_Path> 1854 <Instance_Id>LiquidDrawOff</Instance_Id> 1855 <Model_Name>stream</Model_Name> 1856 <T_Connection>2</T_Connection> 1857 </Block_Properties> 1858 </Base_Models> 1859 <Parameters> 1860 <Desc>PP</Desc> 1861 <Index>0</Index> 1862 <Values>PP</Values> 1863 <Status>0</Status> 1864 </Parameters> 1865 </Block_Properties> 1866 </Base_Models> 1867 </Block_Properties> 1868 </Sub_Models> 1783 1869 <Sub_Models> 1784 1870 <Block_Properties> … … 1878 1964 <Type>simple_source</Type> 1879 1965 <Id_String>CondenserDevice</Id_String> 1880 <Image_File_Name> D:\Apps\repositorio\branches\gui\eml\icon/Source.png</Image_File_Name>1966 <Image_File_Name>Z:\home\ubuntu\repositorio\alsoc\biblioteca\branches\gui\eml\icon/Source.png</Image_File_Name> 1881 1967 <X>617</X> 1882 1968 <Y>145</Y> … … 1886 1972 <Block_Properties> 1887 1973 <Model_File_Path>streams</Model_File_Path> 1888 <Instance_Id> simple_source_1</Instance_Id>1974 <Instance_Id>CondenserDevice</Instance_Id> 1889 1975 <Model_Name>simple_source</Model_Name> 1890 1976 <T_Connection>0</T_Connection> … … 1947 2033 <Unit>kPa</Unit> 1948 2034 </Variables> 2035 </Block_Properties> 2036 </Block> 2037 <Block> 2038 <Type>sinkNoFlow</Type> 2039 <Id_String>PortSealed</Id_String> 2040 <Image_File_Name>Z:\home\ubuntu\repositorio\alsoc\biblioteca\branches\gui\eml\icon/sinkNoFlow.png</Image_File_Name> 2041 <X>474</X> 2042 <Y>205</Y> 2043 <Z>0</Z> 2044 <Width>67</Width> 2045 <Height>29</Height> 2046 <Block_Properties> 2047 <Model_File_Path>streams</Model_File_Path> 2048 <Instance_Id>sinkNoFlow_1</Instance_Id> 2049 <Model_Name>sinkNoFlow</Model_Name> 2050 <T_Connection>0</T_Connection> 2051 <Sub_Models> 2052 <Block_Properties> 2053 <Model_File_Path>streams</Model_File_Path> 2054 <Instance_Id>Inlet</Instance_Id> 2055 <Model_Name>Inlet</Model_Name> 2056 <T_Connection>1</T_Connection> 2057 <Base_Models> 2058 <Block_Properties> 2059 <Model_File_Path>streams</Model_File_Path> 2060 <Instance_Id>Inlet</Instance_Id> 2061 <Model_Name>stream</Model_Name> 2062 <T_Connection>1</T_Connection> 2063 </Block_Properties> 2064 </Base_Models> 2065 </Block_Properties> 2066 </Sub_Models> 2067 </Block_Properties> 2068 </Block> 2069 <Block> 2070 <Type>sink</Type> 2071 <Id_String>LiquidOff</Id_String> 2072 <Image_File_Name>Z:\home\ubuntu\repositorio\alsoc\biblioteca\branches\gui\eml\icon/Sink.png</Image_File_Name> 2073 <X>714</X> 2074 <Y>243</Y> 2075 <Z>0</Z> 2076 <Width>68</Width> 2077 <Height>30</Height> 2078 <Block_Properties> 2079 <Model_File_Path>streams</Model_File_Path> 2080 <Instance_Id>sink_1</Instance_Id> 2081 <Model_Name>sink</Model_Name> 2082 <T_Connection>0</T_Connection> 2083 <Sub_Models> 2084 <Block_Properties> 2085 <Model_File_Path>streams</Model_File_Path> 2086 <Instance_Id>Inlet</Instance_Id> 2087 <Model_Name>Inlet</Model_Name> 2088 <T_Connection>1</T_Connection> 2089 <Base_Models> 2090 <Block_Properties> 2091 <Model_File_Path>streams</Model_File_Path> 2092 <Instance_Id>Inlet</Instance_Id> 2093 <Model_Name>stream</Model_Name> 2094 <T_Connection>1</T_Connection> 2095 </Block_Properties> 2096 </Base_Models> 2097 </Block_Properties> 2098 </Sub_Models> 2099 <Parameters> 2100 <Desc>PP</Desc> 2101 <Index>0</Index> 2102 <Values>PP</Values> 2103 <Status>0</Status> 2104 </Parameters> 1949 2105 </Block_Properties> 1950 2106 </Block> … … 2004 2160 <Port_Target>LiquidInlet</Port_Target> 2005 2161 </Line> 2162 <Line> 2163 <Line_Name>6</Line_Name> 2164 <X1>429</X1> 2165 <Y1>220.15</Y1> 2166 <X2>474</X2> 2167 <Y2>220.393</Y2> 2168 <Block_Source>SectionColumnDevice</Block_Source> 2169 <Port_Source>VapourDrawOff</Port_Source> 2170 <Block_Target>PortSealed</Block_Target> 2171 <Port_Target>Inlet</Port_Target> 2172 </Line> 2173 <Line> 2174 <Line_Name>7</Line_Name> 2175 <X1>429</X1> 2176 <Y1>282.85</Y1> 2177 <X2>714</X2> 2178 <Y2>258.924</Y2> 2179 <Block_Source>SectionColumnDevice</Block_Source> 2180 <Port_Source>LiquidDrawOff</Port_Source> 2181 <Block_Target>LiquidOff</Block_Target> 2182 <Port_Target>Inlet</Port_Target> 2183 </Line> 2006 2184 </Diagram> -
branches/gui/sample/stage_separators/Column_Distillation_Kettle_Diagram.pfd
r654 r672 35 35 <Show_Grid>0</Show_Grid> 36 36 <Snap_to_Grid>0</Snap_to_Grid> 37 <Width>1 032</Width>38 <Height>5 91</Height>37 <Width>1260</Width> 38 <Height>556</Height> 39 39 <X>0</X> 40 40 <Y>0</Y> … … 44 44 <Show_Grid>0</Show_Grid> 45 45 <Snap_to_Grid>0</Snap_to_Grid> 46 <Width>1 032</Width>46 <Width>1260</Width> 47 47 <Height>0</Height> 48 48 <X>0</X> … … 52 52 <Type>simple_source</Type> 53 53 <Id_String>feed</Id_String> 54 <Image_File_Name> D:\Apps\repositorio\branches\gui\eml\icon/Source.png</Image_File_Name>54 <Image_File_Name>Z:\home\ubuntu\repositorio\alsoc\biblioteca\branches\gui\eml\icon/Source.png</Image_File_Name> 55 55 <X>67</X> 56 56 <Y>174</Y> … … 229 229 <Type>simple_sink</Type> 230 230 <Id_String>vapourOutlet</Id_String> 231 <Image_File_Name> D:\Apps\repositorio\branches\gui\eml\icon/Sink.png</Image_File_Name>231 <Image_File_Name>Z:\home\ubuntu\repositorio\alsoc\biblioteca\branches\gui\eml\icon/Sink.png</Image_File_Name> 232 232 <X>720</X> 233 233 <Y>33</Y> … … 319 319 <Type>simple_sink</Type> 320 320 <Id_String>liquidOut</Id_String> 321 <Image_File_Name> D:\Apps\repositorio\branches\gui\eml\icon/Sink.png</Image_File_Name>321 <Image_File_Name>Z:\home\ubuntu\repositorio\alsoc\biblioteca\branches\gui\eml\icon/Sink.png</Image_File_Name> 322 322 <X>691</X> 323 323 <Y>249</Y> … … 409 409 <Type>simple_sink</Type> 410 410 <Id_String>LiquidBottom</Id_String> 411 <Image_File_Name> D:\Apps\repositorio\branches\gui\eml\icon/Sink.png</Image_File_Name>411 <Image_File_Name>Z:\home\ubuntu\repositorio\alsoc\biblioteca\branches\gui\eml\icon/Sink.png</Image_File_Name> 412 412 <X>726</X> 413 413 <Y>440</Y> … … 499 499 <Type>Distillation_kettle_cond</Type> 500 500 <Id_String>Distillation_kettle_cond_1</Id_String> 501 <Image_File_Name> D:\Apps\repositorio\branches\gui\eml\stage_separators\icon/DistillationKettleCond.png</Image_File_Name>502 <X>2 36</X>503 <Y> 95</Y>501 <Image_File_Name>Z:\home\ubuntu\repositorio\alsoc\biblioteca\branches\gui\eml\stage_separators\icon/DistillationKettleCond.png</Image_File_Name> 502 <X>246</X> 503 <Y>51</Y> 504 504 <Z>0</Z> 505 <Width>2 83</Width>506 <Height> 276</Height>505 <Width>290</Width> 506 <Height>434</Height> 507 507 <Block_Properties> 508 508 <Model_File_Path>stage_separators\column</Model_File_Path> … … 1652 1652 <Index>0</Index> 1653 1653 <Values>5</Values> 1654 <Status>4</Status> 1655 </Parameters> 1656 <Parameters> 1657 <Desc>LiquidSideStreamLocation</Desc> 1658 <Index>0</Index> 1659 <Values>2</Values> 1660 <Status>4</Status> 1661 </Parameters> 1662 <Parameters> 1663 <Desc>VapourSideStreamLocation</Desc> 1664 <Index>0</Index> 1665 <Values>2</Values> 1654 1666 <Status>4</Status> 1655 1667 </Parameters> … … 1771 1783 </Parameters> 1772 1784 <Variables> 1785 <Desc>VapourDrawOffFlow</Desc> 1786 <Index>0</Index> 1787 <Values>0</Values> 1788 <Status>1</Status> 1789 <Unit>kmol/h</Unit> 1790 </Variables> 1791 <Variables> 1792 <Desc>LiquidDrawOffFlow</Desc> 1793 <Index>0</Index> 1794 <Values>1</Values> 1795 <Status>1</Status> 1796 <Unit>kmol/h</Unit> 1797 </Variables> 1798 <Variables> 1773 1799 <Desc>MurphreeEff</Desc> 1774 1800 <Index>0</Index> … … 1778 1804 </Block_Properties> 1779 1805 </Base_Models> 1806 <Sub_Models> 1807 <Block_Properties> 1808 <Model_File_Path>stage_separators\column</Model_File_Path> 1809 <Instance_Id>VapourDrawOff</Instance_Id> 1810 <Model_Name>VapourDrawOff</Model_Name> 1811 <T_Connection>2</T_Connection> 1812 <Base_Models> 1813 <Block_Properties> 1814 <Model_File_Path>streams</Model_File_Path> 1815 <Instance_Id>VapourDrawOff</Instance_Id> 1816 <Model_Name>vapour_stream</Model_Name> 1817 <T_Connection>2</T_Connection> 1818 <Base_Models> 1819 <Block_Properties> 1820 <Model_File_Path>streams</Model_File_Path> 1821 <Instance_Id>VapourDrawOff</Instance_Id> 1822 <Model_Name>stream</Model_Name> 1823 <T_Connection>2</T_Connection> 1824 </Block_Properties> 1825 </Base_Models> 1826 <Parameters> 1827 <Desc>PP</Desc> 1828 <Index>0</Index> 1829 <Values>PP</Values> 1830 <Status>0</Status> 1831 </Parameters> 1832 </Block_Properties> 1833 </Base_Models> 1834 </Block_Properties> 1835 </Sub_Models> 1836 <Sub_Models> 1837 <Block_Properties> 1838 <Model_File_Path>stage_separators\column</Model_File_Path> 1839 <Instance_Id>LiquidDrawOff</Instance_Id> 1840 <Model_Name>LiquidDrawOff</Model_Name> 1841 <T_Connection>2</T_Connection> 1842 <Base_Models> 1843 <Block_Properties> 1844 <Model_File_Path>streams</Model_File_Path> 1845 <Instance_Id>LiquidDrawOff</Instance_Id> 1846 <Model_Name>liquid_stream</Model_Name> 1847 <T_Connection>2</T_Connection> 1848 <Base_Models> 1849 <Block_Properties> 1850 <Model_File_Path>streams</Model_File_Path> 1851 <Instance_Id>LiquidDrawOff</Instance_Id> 1852 <Model_Name>stream</Model_Name> 1853 <T_Connection>2</T_Connection> 1854 </Block_Properties> 1855 </Base_Models> 1856 <Parameters> 1857 <Desc>PP</Desc> 1858 <Index>0</Index> 1859 <Values>PP</Values> 1860 <Status>0</Status> 1861 </Parameters> 1862 </Block_Properties> 1863 </Base_Models> 1864 </Block_Properties> 1865 </Sub_Models> 1780 1866 <Sub_Models> 1781 1867 <Block_Properties> … … 2358 2444 <X1>135</X1> 2359 2445 <Y1>189.768</Y1> 2360 <X2>2 36</X2>2361 <Y2>2 46.8</Y2>2446 <X2>246</X2> 2447 <Y2>289.7</Y2> 2362 2448 <Block_Source>feed</Block_Source> 2363 2449 <Port_Source>Outlet</Port_Source> … … 2367 2453 <Line> 2368 2454 <Line_Name>2</Line_Name> 2369 <X1>4 39.76</X1>2370 <Y1> 95</Y1>2455 <X1>443.2</X1> 2456 <Y1>51</Y1> 2371 2457 <X2>723</X2> 2372 2458 <Y2>45</Y2> … … 2378 2464 <Line> 2379 2465 <Line_Name>3</Line_Name> 2380 <X1>5 19</X1>2381 <Y1>2 24.72</Y1>2466 <X1>536</X1> 2467 <Y1>211.58</Y1> 2382 2468 <X2>691</X2> 2383 2469 <Y2>264.924</Y2> … … 2389 2475 <Line> 2390 2476 <Line_Name>4</Line_Name> 2391 <X1>5 19</X1>2392 <Y1> 371</Y1>2477 <X1>536</X1> 2478 <Y1>485</Y1> 2393 2479 <X2>726</X2> 2394 2480 <Y2>455.924</Y2>
Note: See TracChangeset
for help on using the changeset viewer.