Changeset 796 for branches/gui


Ignore:
Timestamp:
Jul 18, 2009, 6:08:44 PM (14 years ago)
Author:
gerson bicca
Message:

updated flash model

Location:
branches/gui
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • branches/gui/eml/stage_separators/flash.mso

    r714 r796  
    2424        Pallete         = true;
    2525        Icon            = "icon/Flash";
    26         Brief           = "Model of a dynamic flash.";
     26        Brief           = "Model of a Dynamic Flash Vessel.";
    2727        Info            =
    28 "== Assumptions ==
    29 * Both phases are perfectly mixed.
    30        
    31 == Specify ==
    32 * The feed stream;
    33 * The outlet flows: OutletVapour.F and OutletLiquid.F.
    34 
    35 == Initial Conditions ==
    36 * The flash initial temperature (Temperature_Initial);
    37 * The flash initial level (Levelpercent_Initial);
    38 *The Outlet Liquid Composition (Composition_Initial).
     28"== ASSUMPTIONS ==
     29* perfect mixing of both phases;
     30* thermodynamics equilibrium.
     31
     32== SET ==
     33*Orientation: vessel position - vertical or horizontal;
     34*Heads (bottom and top heads are identical)
     35**elliptical: 2:1 elliptical heads (25% of vessel diameter);
     36**hemispherical: hemispherical heads (50% of vessel diameter);
     37**flat: flat heads (0% of vessel diameter);
     38*Diameter: Vessel diameter;
     39*Lenght: Side length of the cylinder shell;
     40       
     41== SPECIFY ==
     42* the Inlet stream;
     43* the outlet flows: OutletVapour.F and OutletLiquid.F;
     44* the InletQ (the model requires an energy stream, also you can use a controller for setting the heat duty using the heat_flow model).
     45
     46== OPTIONAL ==
     47* the Flash model has three control ports
     48** TI OutletLiquid Temperature Indicator;
     49** PI OutletLiquid Pressure Indicator;
     50** LI Level Indicator;
     51
     52== INITIAL CONDITIONS ==
     53* Initial_Temperature :  the Flash temperature (OutletLiquid.T);
     54* Initial_Level : the Flash liquid level (Level);
     55* Initial_Composition : (NoComps) OutletLiquid compositions.
    3956";
    4057       
    4158PARAMETERS
    42 
    43 outer PP                        as Plugin       (Brief = "External Physical Properties", Type="PP");
    44 outer NComp     as Integer      (Brief = "Number of chemical components", Lower = 1);
    45 
    46         VesselVolume    as volume               (Brief="Total Volume of the flash");
    47         Mw(NComp)               as molweight    (Hidden=true);
    48         Orientation                     as Switcher     (Valid=["vertical","horizontal"],Default="vertical");
    49         Diameter                        as length               (Brief="Vessel diameter");
    50 
    51         Levelpercent_Initial                                    as positive                     (Brief="Initial liquid height in Percent", Default = 0.70);
    52         Temperature_Initial                                             as temperature  (Brief="Initial Liquid Temperature", Default = 330);
    53         Composition_Initial(NComp)              as fraction                     (Brief="Initial Composition", Default = 0.10);
    54        
     59outer PP                as Plugin       (Brief = "External Physical Properties", Type="PP");
     60outer NComp     as Integer      (Brief = "Number of components", Lower = 1);
     61
     62        Mw(NComp)               as molweight    (Brief="Mol Weight", Hidden=true);
     63        pi                      as positive             (Brief="Pi value", Default=3.141593,Hidden=true, Symbol="\pi");
     64       
     65        Orientation     as Switcher     (Valid=["vertical","horizontal"],Default="vertical");
     66        Heads                   as Switcher     (Valid=["elliptical","hemispherical","flat"],Default="flat");
     67        Diameter                as length               (Brief="Vessel diameter", Symbol="D_{i}");
     68        Lenght                  as length               (Brief="Side length of the cylinder shell", Symbol="L_{vessel}");
     69       
     70        Vhead_elliptical                as volume               (Brief="Elliptical Head Total Volume",Hidden=true, Symbol="V_{head}^{elliptical}");
     71        Vhead_hemispherical     as volume               (Brief="Hemispherical Head Total Volume",Hidden=true, Symbol="V_{head}^{hemispherical}");
     72        Vcylinder                               as volume               (Brief="Cylinder Total Volume",Hidden=true, Symbol="V_{cylinder}");
     73        radius                                  as length               (Brief="Vessel radius",Hidden=true, Symbol="R_{cylinder}");
     74       
     75        Levelpercent_Initial                    as positive     (Brief="Initial liquid height in Percent", Default = 0.70);
     76        Temperature_Initial                             as temperature  (Brief="Initial Liquid Temperature", Default = 330);
     77        Composition_Initial(NComp)              as fraction             (Brief="Initial Composition", Default = 0.10);
     78
    5579SET
    5680
    5781        Mw=PP.MolecularWeight();
    5882
     83        Vhead_elliptical        = (pi*Diameter^3)/12;
     84        Vhead_hemispherical = (pi*Diameter^3)/6;
     85        Vcylinder = 0.25*(pi*Diameter^2)*Lenght;
     86        radius = 0.5*Diameter;
     87
    5988VARIABLES
    6089
    61 in              Inlet                           as stream                               (Brief="Feed Stream", PosX=0, PosY=0.5421, Symbol="_{in}");
    62 out     OutletLiquid    as liquid_stream                (Brief="Liquid outlet stream", PosX=0.4790, PosY=1, Symbol="_{outL}");
    63 out     OutletVapour    as vapour_stream        (Brief="Vapour outlet stream", PosX=0.4877, PosY=0, Symbol="_{outV}");
    64 in              InletQ                          as power                                        (Brief="Rate of heat supply", PosX=1, PosY=0.7559, Protected =true,Symbol="_{in}");
     90in      Inlet                   as stream                       (Brief="Feed Stream", PosX=0, PosY=0.48, Symbol="_{in}");
     91out     OutletLiquid    as liquid_stream        (Brief="Liquid outlet stream", PosX=0.43, PosY=1, Symbol="_{out}^{Liquid}");
     92out     OutletVapour    as vapour_stream        (Brief="Vapour outlet stream", PosX=0.43, PosY=0, Symbol="_{out}^{Vapour}");
     93in      InletQ                  as power                        (Brief="Heat Duty", PosX=1, PosY=0.81, Protected =true,Symbol="Q_{in}");
     94
     95        Vtotal                  as volume                       (Brief="Vessel total volume",Protected=true, Symbol="V_{total}");
     96        Vfilled                 as volume                       (Brief="Vessel volume content",Protected=true, Symbol="V_{filled}");
    6597
    6698        TotalHoldup(NComp)              as mol  (Brief="Molar Holdup in the Vessel", Protected=true);
    67         LiquidHoldup                                            as mol  (Brief="Molar liquid holdup", Protected=true);
    68         VapourHoldup                                    as mol  (Brief="Molar vapour holdup", Protected=true);
    69        
    70         E                       as energy                       (Brief="Total Energy Holdup in the Vessel", Protected=true);
     99        LiquidHoldup                    as mol  (Brief="Molar liquid holdup", Protected=true);
     100        VapourHoldup                    as mol  (Brief="Molar vapour holdup", Protected=true);
     101       
     102        E                       as energy               (Brief="Total Energy Holdup in the Vessel", Protected=true);
    71103        vL                      as volume_mol   (Brief="Liquid Molar Volume", Protected=true);
    72104        vV                      as volume_mol   (Brief="Vapour Molar volume", Protected=true);
    73         Level           as length                       (Brief="liquid height", Protected=true);
    74         Across  as area                                 (Brief="Flash Cross section area", Protected=true);
    75         vfrac           as positive                     (Brief="Vapourization fraction", Symbol="\phi", Protected=true);
    76         Pratio          as positive                     (Brief = "Pressure Ratio", Symbol ="P_{ratio}", Protected=true);       
     105        Level           as length               (Brief="liquid height", Protected=true);
     106        Across          as area                 (Brief="Vessel cylinder shell Cross section area", Hidden=true, Symbol="A_{cross}");
     107        vfrac           as positive     (Brief="Vapourization fraction", Symbol="\phi", Protected=true);
     108        Pratio          as positive             (Brief = "Pressure Ratio", Symbol ="P_{ratio}", Protected=true);       
    77109        Pdrop           as press_delta  (Brief = "Pressure Drop", DisplayUnit = 'kPa', Symbol ="\Delta P", Protected=true);
    78110
    79 out     TI as control_signal    (Brief="Temperature Indicator", PosX=1, PosY=0.2, Protected=true);
    80 out     PI as control_signal    (Brief="Pressure Indicator", PosX=1, PosY=0.3, Protected=true);
    81 out     LI as control_signal    (Brief="Level Indicator", PosX=1, PosY=0.4, Protected=true);
     111out     TI as control_signal    (Brief="Temperature Indicator", PosX=1, PosY=0.39, Protected=true);
     112out     PI as control_signal    (Brief="Pressure Indicator", PosX=1, PosY=0.21, Protected=true);
     113out     LI as control_signal    (Brief="Level Indicator", PosX=1, PosY=0.59, Protected=true);
    82114
    83115INITIAL
    84116
    85 # Initial level Percent
     117"Initial level Percent"
    86118        LI = Levelpercent_Initial;
    87119       
    88 # Initial Outlet Liquid Temperature
     120"Initial Outlet Liquid Temperature"
    89121        OutletLiquid.T = Temperature_Initial;
    90122       
    91 # Initial Outlet Liquid Composition Normalized
     123"Initial Outlet Liquid Composition Normalized"
    92124        OutletLiquid.z(1:NComp - 1) = Composition_Initial(1:NComp - 1)/sum(Composition_Initial);
    93125
    94126EQUATIONS
     127
     128switch Orientation
     129
     130case "vertical":
     131
     132"Vessel Cross Section Area"
     133        Across = 0.25*(pi*Diameter^2);
     134
     135switch Heads
     136
     137case "elliptical":
     138
     139"Vessel Total Volume"
     140        Vtotal = Vhead_elliptical +     Vcylinder;
     141
     142if Level < 0.25*Diameter then
     143
     144"Vessel Filled Volume"
     145        Vfilled = 0.25*pi*(((Diameter*Level)/(0.25*Diameter))^2)*(0.25*Diameter-Level/3);
     146
     147else
     148
     149"Vessel Filled Volume"
     150        Vfilled = 0.25*pi*(Diameter^2)*(Level - 0.25*Diameter/3);
     151
     152end
     153
     154case "hemispherical":
     155
     156"Vessel Total Volume"
     157        Vtotal = Vhead_hemispherical + Vcylinder;
     158
     159if Level < 0.5*Diameter then
     160
     161"Vessel Filled Volume"
     162        Vfilled = 0.25*pi*(Level^2)*(2*Diameter-4*Level/3);
     163
     164else
     165
     166"Vessel Filled Volume"
     167        Vfilled = 0.25*pi*((2/3)*((0.5*Diameter)^3) - (0.25*(Diameter)^3) + Level*Diameter^2);
     168
     169end
     170
     171case "flat":
     172
     173"Vessel Total Volume"
     174        Vtotal = Vcylinder;
     175
     176"Vessel Filled Volume"
     177        Vfilled = Across*Level;
     178
     179end
     180
     181case "horizontal":
     182
     183"Vessel Cross Section Area"
     184        Across = (radius^2)*acos((radius-Level)/radius)-(radius-Level)*sqrt((2*radius*Level-Level^2));
     185
     186switch Heads
     187
     188case "elliptical":
     189
     190"Vessel Total Volume"
     191        Vtotal = Vhead_elliptical +     Vcylinder;
     192
     193"Vessel Filled Volume"
     194        Vfilled = 0.5236*Level^2*(1.5*Diameter-Level) + Across*Lenght;
     195
     196case "hemispherical":
     197
     198"Vessel Total Volume"
     199        Vtotal = Vhead_hemispherical + Vcylinder;
     200
     201"Vessel Filled Volume"
     202        Vfilled = 1.0472*Level^2*(1.5*Diameter-Level) + Across*Lenght;
     203
     204case "flat":
     205
     206"Vessel Total Volume"
     207        Vtotal = Vcylinder;
     208
     209"Vessel Filled Volume"
     210        Vfilled = Across*Lenght;
     211
     212end
     213
     214end
    95215
    96216"Component Molar Balance"
     
    104224       
    105225"Energy Holdup"
    106         E = LiquidHoldup*OutletLiquid.h + VapourHoldup*OutletVapour.h - OutletLiquid.P*VesselVolume;
     226        E = LiquidHoldup*OutletLiquid.h + VapourHoldup*OutletVapour.h - OutletLiquid.P*Vtotal;
    107227       
    108228"Mol fraction normalisation"
     
    138258
    139259"Geometry Constraint"
    140         VesselVolume = LiquidHoldup * vL + VapourHoldup * vV;
    141 
    142 "Temperature indicator in Celsius Degree"
    143         TI * 'K' = OutletLiquid.T - 273.15*'K';
     260        Vtotal = LiquidHoldup * vL + VapourHoldup * vV;
     261
     262"Temperature indicator"
     263        TI * 'K' = OutletLiquid.T;
    144264
    145265"Pressure indicator"
     
    147267
    148268"Level indicator"
    149         LI*VesselVolume= Level*Across;
    150 
    151 switch Orientation
    152         case "vertical":
    153         "Cross Section Area"
    154                 Across = 0.5 * asin(1) * Diameter^2;
    155        
    156         "Liquid Level"
    157                 LiquidHoldup * vL = Across * Level;
    158                
    159         case "horizontal":
    160         "Cylindrical Side Area"
    161                 Across = 0.25*Diameter^2 * (asin(1) - asin((Diameter - 2*Level)/Diameter)) +
    162                                 (Level - 0.5*Diameter)*sqrt(Level*(Diameter - Level));
    163 
    164         "Liquid Level"
    165                 0.5 * asin(1) * Diameter^2 * LiquidHoldup* vL = Across * VesselVolume;
    166 end
     269        LI*Vtotal= Vfilled;
     270
     271"Liquid Level"
     272        LiquidHoldup * vL = Vfilled;
    167273
    168274end
  • branches/gui/eml/stage_separators/icon/Flash.svg

    r759 r796  
    1313   sodipodi:version="0.32"
    1414   inkscape:version="0.46"
    15    width="239.99998"
    16    height="380"
    17    sodipodi:docbase="D:\User\Arge\PROJETOS\Alsoc\EMSO\mso\eml\stage_separators\icon"
     15   width="83.773003"
     16   height="136.26199"
     17   sodipodi:docbase="C:\Documents and Settings\Administrador\Meus documentos\Bolsa Simulação\EMSO\mso\trunk\eml\stage_separators\icon"
    1818   sodipodi:docname="Flash.svg"
    19    inkscape:export-filename="/home/ubuntu/repositorio/alsoc/biblioteca/branches/gui/eml/stage_separators/icon/Flash.png"
    20    inkscape:export-xdpi="90"
    21    inkscape:export-ydpi="90"
     19   inkscape:export-filename="/home/gerson/repositorio/alsoc/biblioteca/branches/gui/eml/stage_separators/icon/Flash.png"
     20   inkscape:export-xdpi="208.71756"
     21   inkscape:export-ydpi="208.71756"
    2222   inkscape:output_extension="org.inkscape.output.svg.inkscape"
    2323   version="1.0">
     24  <sodipodi:namedview
     25     inkscape:window-height="900"
     26     inkscape:window-width="1268"
     27     inkscape:pageshadow="2"
     28     inkscape:pageopacity="0.0"
     29     guidetolerance="10.0"
     30     gridtolerance="10.0"
     31     objecttolerance="10.0"
     32     borderopacity="1.0"
     33     bordercolor="#666666"
     34     pagecolor="#ffffff"
     35     id="base"
     36     showgrid="false"
     37     showguides="true"
     38     inkscape:zoom="4.0530422"
     39     inkscape:cx="84.340159"
     40     inkscape:cy="74.216098"
     41     inkscape:window-x="0"
     42     inkscape:window-y="25"
     43     inkscape:current-layer="svg2064"
     44     inkscape:guide-bbox="true">
     45    <inkscape:grid
     46       enabled="true"
     47       visible="true"
     48       id="grid21746"
     49       type="xygrid" />
     50  </sodipodi:namedview>
    2451  <metadata
    2552     id="metadata2069">
     
    3663     id="defs2067">
    3764    <linearGradient
    38        id="linearGradient3236">
     65       id="linearGradient6760">
    3966      <stop
    4067         style="stop-color:#3447ff;stop-opacity:1;"
    4168         offset="0"
    42          id="stop3238" />
     69         id="stop12971" />
    4370      <stop
    44          id="stop3242"
    45          offset="0.5"
    46          style="stop-color:#ffffff;stop-opacity:1;" />
     71         id="stop22168"
     72         offset="0.51282054"
     73         style="stop-color:white;stop-opacity:0.94117647;" />
    4774      <stop
    48          id="stop3240"
     75         style="stop-color:#341dff;stop-opacity:1;"
    4976         offset="1"
    50          style="stop-color:#3447ff;stop-opacity:1;" />
     77         id="stop6764" />
    5178    </linearGradient>
    5279    <linearGradient
    53        id="linearGradient6760">
     80       id="linearGradient10543">
    5481      <stop
    55          id="stop12971"
     82         style="stop-color:#6496d3;stop-opacity:1;"
     83         offset="0"
     84         id="stop10545" />
     85      <stop
     86         style="stop-color:#969696;stop-opacity:1;"
     87         offset="1"
     88         id="stop10547" />
     89    </linearGradient>
     90    <filter
     91       y="-0.5"
     92       x="-0.5"
     93       width="1.9"
     94       height="2"
     95       id="filterV">
     96      <feGaussianBlur
     97         id="feGaussianBlur5032"
     98         stdDeviation="5.0" />
     99    </filter>
     100    <clipPath
     101       id="clipPathQ">
     102      <path
     103         style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
     104         d="M 293.75006,362.51843 C 335.03364,362.51843 376.19195,362.51843 417.96881,362.51843"
     105         id="path3306"
     106         sodipodi:nodetypes="cc" />
     107    </clipPath>
     108    <filter
     109       y="-0.5"
     110       x="-0.5"
     111       width="1.9"
     112       height="2"
     113       id="filterS">
     114      <feGaussianBlur
     115         id="feGaussianBlur5022"
     116         stdDeviation="5.0" />
     117    </filter>
     118    <clipPath
     119       id="clipPathm">
     120      <path
     121         style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
     122         d="M 292.39114,658.61218 C 333.67472,658.61218 374.83303,658.61218 416.60989,658.61218"
     123         id="path4440"
     124         sodipodi:nodetypes="cc" />
     125    </clipPath>
     126    <filter
     127       y="-0.5"
     128       x="-0.5"
     129       width="1.9"
     130       height="2"
     131       id="filterv">
     132      <feGaussianBlur
     133         id="feGaussianBlur3299"
     134         stdDeviation="5.0" />
     135    </filter>
     136    <clipPath
     137       id="clipPaths">
     138      <path
     139         sodipodi:nodetypes="cc"
     140         id="path3227"
     141         d="M 5.6649772,898.15665 C 5.6649772,871.37979 5.6649772,844.68418 5.6649772,817.58737"
     142         style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.88061589;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
     143    </clipPath>
     144    <filter
     145       y="-0.5"
     146       x="-0.5"
     147       width="1.9"
     148       height="2"
     149       id="filterK">
     150      <feGaussianBlur
     151         id="feGaussianBlur3294"
     152         stdDeviation="5.0" />
     153    </filter>
     154    <clipPath
     155       id="clipPathl">
     156      <path
     157         sodipodi:nodetypes="cc"
     158         transform="matrix(0,-0.6486081,-1.1956131,0,804.18249,1088.2645)"
     159         id="path3225"
     160         d="M 293.75,362.51843 C 335.03358,362.51843 376.19189,362.51843 417.96875,362.51843"
     161         style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
     162    </clipPath>
     163    <linearGradient
     164       id="linearGradient3827">
     165      <stop
     166         id="stop3829"
    56167         offset="0"
    57168         style="stop-color:#3447ff;stop-opacity:1;" />
    58169      <stop
    59170         style="stop-color:white;stop-opacity:0.94117647;"
    60          offset="0.51282054"
    61          id="stop22168" />
     171         offset="0"
     172         id="stop3831" />
    62173      <stop
    63          id="stop6764"
     174         id="stop3833"
    64175         offset="1"
    65          style="stop-color:#341dff;stop-opacity:1;" />
     176         style="stop-color:#3447ff;stop-opacity:1;" />
    66177    </linearGradient>
    67178    <linearGradient
    68        inkscape:collect="always"
    69        xlink:href="#linearGradient6760"
    70        id="linearGradient21273"
    71        x1="228.69115"
    72        y1="870.7868"
    73        x2="707.32397"
    74        y2="870.7868"
    75        gradientUnits="userSpaceOnUse" />
    76     <linearGradient
    77        id="linearGradient3827">
     179       id="linearGradient3236">
    78180      <stop
    79          id="stop3831"
     181         id="stop3238"
    80182         offset="0"
    81          style="stop-color:#ffffff;stop-opacity:1;" />
     183         style="stop-color:#3447ff;stop-opacity:1;" />
     184      <stop
     185         style="stop-color:#ffffff;stop-opacity:1;"
     186         offset="0.50793654"
     187         id="stop3242" />
    82188      <stop
    83189         style="stop-color:#3447ff;stop-opacity:1;"
    84190         offset="1"
    85          id="stop3833" />
     191         id="stop3240" />
    86192    </linearGradient>
     193    <linearGradient
     194       inkscape:collect="always"
     195       xlink:href="#linearGradient6760"
     196       id="linearGradient8915"
     197       gradientUnits="userSpaceOnUse"
     198       x1="228.69115"
     199       y1="870.7868"
     200       x2="707.32397"
     201       y2="870.7868" />
     202    <linearGradient
     203       inkscape:collect="always"
     204       xlink:href="#linearGradient10543"
     205       id="linearGradient8917"
     206       gradientUnits="userSpaceOnUse"
     207       x1="-42.013222"
     208       y1="895.25244"
     209       x2="66.722748"
     210       y2="895.25244" />
     211    <linearGradient
     212       inkscape:collect="always"
     213       xlink:href="#linearGradient6760"
     214       id="linearGradient8919"
     215       gradientUnits="userSpaceOnUse"
     216       x1="228.69115"
     217       y1="870.7868"
     218       x2="707.32397"
     219       y2="870.7868" />
     220    <linearGradient
     221       inkscape:collect="always"
     222       xlink:href="#linearGradient10543"
     223       id="linearGradient8923"
     224       gradientUnits="userSpaceOnUse"
     225       x1="-42.013222"
     226       y1="895.25244"
     227       x2="66.722748"
     228       y2="895.25244" />
     229    <linearGradient
     230       inkscape:collect="always"
     231       xlink:href="#linearGradient6760"
     232       id="linearGradient8927"
     233       gradientUnits="userSpaceOnUse"
     234       x1="228.69115"
     235       y1="870.7868"
     236       x2="707.32397"
     237       y2="870.7868" />
     238    <linearGradient
     239       inkscape:collect="always"
     240       xlink:href="#linearGradient6760"
     241       id="linearGradient8929"
     242       gradientUnits="userSpaceOnUse"
     243       x1="228.69115"
     244       y1="870.7868"
     245       x2="707.32397"
     246       y2="870.7868" />
     247    <linearGradient
     248       inkscape:collect="always"
     249       xlink:href="#linearGradient6760"
     250       id="linearGradient8931"
     251       gradientUnits="userSpaceOnUse"
     252       x1="228.69115"
     253       y1="870.7868"
     254       x2="707.32397"
     255       y2="870.7868" />
     256    <linearGradient
     257       inkscape:collect="always"
     258       xlink:href="#linearGradient6760"
     259       id="linearGradient8933"
     260       gradientUnits="userSpaceOnUse"
     261       x1="228.69115"
     262       y1="870.7868"
     263       x2="707.32397"
     264       y2="870.7868" />
     265    <linearGradient
     266       inkscape:collect="always"
     267       xlink:href="#linearGradient6760"
     268       id="linearGradient8935"
     269       gradientUnits="userSpaceOnUse"
     270       x1="228.69115"
     271       y1="870.7868"
     272       x2="707.32397"
     273       y2="870.7868" />
     274    <linearGradient
     275       inkscape:collect="always"
     276       xlink:href="#linearGradient6760"
     277       id="linearGradient8937"
     278       gradientUnits="userSpaceOnUse"
     279       x1="228.69115"
     280       y1="870.7868"
     281       x2="707.32397"
     282       y2="870.7868" />
     283    <linearGradient
     284       inkscape:collect="always"
     285       xlink:href="#linearGradient6760"
     286       id="linearGradient8939"
     287       gradientUnits="userSpaceOnUse"
     288       x1="228.69115"
     289       y1="870.7868"
     290       x2="707.32397"
     291       y2="870.7868" />
     292    <linearGradient
     293       inkscape:collect="always"
     294       xlink:href="#linearGradient6760"
     295       id="linearGradient8941"
     296       gradientUnits="userSpaceOnUse"
     297       x1="228.69115"
     298       y1="870.7868"
     299       x2="707.32397"
     300       y2="870.7868" />
     301    <linearGradient
     302       inkscape:collect="always"
     303       xlink:href="#linearGradient10543"
     304       id="linearGradient8943"
     305       gradientUnits="userSpaceOnUse"
     306       x1="-42.013222"
     307       y1="895.25244"
     308       x2="66.722748"
     309       y2="895.25244" />
     310    <linearGradient
     311       inkscape:collect="always"
     312       xlink:href="#linearGradient6760"
     313       id="linearGradient8945"
     314       gradientUnits="userSpaceOnUse"
     315       x1="228.69115"
     316       y1="870.7868"
     317       x2="707.32397"
     318       y2="870.7868" />
     319    <linearGradient
     320       inkscape:collect="always"
     321       xlink:href="#linearGradient10543"
     322       id="linearGradient8947"
     323       gradientUnits="userSpaceOnUse"
     324       x1="-42.013222"
     325       y1="895.25244"
     326       x2="66.722748"
     327       y2="895.25244" />
     328    <linearGradient
     329       inkscape:collect="always"
     330       xlink:href="#linearGradient6760"
     331       id="linearGradient8949"
     332       gradientUnits="userSpaceOnUse"
     333       x1="228.69115"
     334       y1="870.7868"
     335       x2="707.32397"
     336       y2="870.7868" />
     337    <linearGradient
     338       inkscape:collect="always"
     339       xlink:href="#linearGradient6760"
     340       id="linearGradient8951"
     341       gradientUnits="userSpaceOnUse"
     342       x1="228.69115"
     343       y1="870.7868"
     344       x2="707.32397"
     345       y2="870.7868" />
     346    <linearGradient
     347       inkscape:collect="always"
     348       xlink:href="#linearGradient6760"
     349       id="linearGradient8953"
     350       gradientUnits="userSpaceOnUse"
     351       x1="228.69115"
     352       y1="870.7868"
     353       x2="707.32397"
     354       y2="870.7868" />
     355    <linearGradient
     356       inkscape:collect="always"
     357       xlink:href="#linearGradient6760"
     358       id="linearGradient8955"
     359       gradientUnits="userSpaceOnUse"
     360       x1="228.69115"
     361       y1="870.7868"
     362       x2="707.32397"
     363       y2="870.7868" />
     364    <linearGradient
     365       inkscape:collect="always"
     366       xlink:href="#linearGradient6760"
     367       id="linearGradient8957"
     368       gradientUnits="userSpaceOnUse"
     369       x1="228.69115"
     370       y1="870.7868"
     371       x2="707.32397"
     372       y2="870.7868" />
     373    <linearGradient
     374       inkscape:collect="always"
     375       xlink:href="#linearGradient6760"
     376       id="linearGradient8959"
     377       gradientUnits="userSpaceOnUse"
     378       x1="228.69115"
     379       y1="870.7868"
     380       x2="707.32397"
     381       y2="870.7868" />
     382    <linearGradient
     383       inkscape:collect="always"
     384       xlink:href="#linearGradient6760"
     385       id="linearGradient8961"
     386       gradientUnits="userSpaceOnUse"
     387       x1="228.69115"
     388       y1="870.7868"
     389       x2="707.32397"
     390       y2="870.7868" />
     391    <linearGradient
     392       inkscape:collect="always"
     393       xlink:href="#linearGradient6760"
     394       id="linearGradient9017"
     395       gradientUnits="userSpaceOnUse"
     396       x1="228.69115"
     397       y1="870.7868"
     398       x2="707.32397"
     399       y2="870.7868" />
     400    <linearGradient
     401       inkscape:collect="always"
     402       xlink:href="#linearGradient10543"
     403       id="linearGradient9019"
     404       gradientUnits="userSpaceOnUse"
     405       x1="-42.013222"
     406       y1="895.25244"
     407       x2="66.722748"
     408       y2="895.25244" />
     409    <linearGradient
     410       inkscape:collect="always"
     411       xlink:href="#linearGradient6760"
     412       id="linearGradient9021"
     413       gradientUnits="userSpaceOnUse"
     414       x1="228.69115"
     415       y1="870.7868"
     416       x2="707.32397"
     417       y2="870.7868" />
     418    <linearGradient
     419       inkscape:collect="always"
     420       xlink:href="#linearGradient10543"
     421       id="linearGradient9023"
     422       gradientUnits="userSpaceOnUse"
     423       x1="-42.013222"
     424       y1="895.25244"
     425       x2="66.722748"
     426       y2="895.25244" />
     427    <linearGradient
     428       inkscape:collect="always"
     429       xlink:href="#linearGradient6760"
     430       id="linearGradient9025"
     431       gradientUnits="userSpaceOnUse"
     432       x1="228.69115"
     433       y1="870.7868"
     434       x2="707.32397"
     435       y2="870.7868" />
     436    <linearGradient
     437       inkscape:collect="always"
     438       xlink:href="#linearGradient6760"
     439       id="linearGradient9027"
     440       gradientUnits="userSpaceOnUse"
     441       x1="228.69115"
     442       y1="870.7868"
     443       x2="707.32397"
     444       y2="870.7868" />
     445    <linearGradient
     446       inkscape:collect="always"
     447       xlink:href="#linearGradient6760"
     448       id="linearGradient9029"
     449       gradientUnits="userSpaceOnUse"
     450       x1="228.69115"
     451       y1="870.7868"
     452       x2="707.32397"
     453       y2="870.7868" />
     454    <linearGradient
     455       inkscape:collect="always"
     456       xlink:href="#linearGradient6760"
     457       id="linearGradient9031"
     458       gradientUnits="userSpaceOnUse"
     459       x1="228.69115"
     460       y1="870.7868"
     461       x2="707.32397"
     462       y2="870.7868" />
     463    <linearGradient
     464       inkscape:collect="always"
     465       xlink:href="#linearGradient6760"
     466       id="linearGradient9033"
     467       gradientUnits="userSpaceOnUse"
     468       x1="228.69115"
     469       y1="870.7868"
     470       x2="707.32397"
     471       y2="870.7868" />
     472    <linearGradient
     473       inkscape:collect="always"
     474       xlink:href="#linearGradient6760"
     475       id="linearGradient9035"
     476       gradientUnits="userSpaceOnUse"
     477       x1="228.69115"
     478       y1="870.7868"
     479       x2="707.32397"
     480       y2="870.7868" />
     481    <linearGradient
     482       inkscape:collect="always"
     483       xlink:href="#linearGradient6760"
     484       id="linearGradient9037"
     485       gradientUnits="userSpaceOnUse"
     486       x1="228.69115"
     487       y1="870.7868"
     488       x2="707.32397"
     489       y2="870.7868" />
     490    <linearGradient
     491       inkscape:collect="always"
     492       xlink:href="#linearGradient6760"
     493       id="linearGradient9041"
     494       gradientUnits="userSpaceOnUse"
     495       x1="228.69115"
     496       y1="870.7868"
     497       x2="707.32397"
     498       y2="870.7868" />
     499    <linearGradient
     500       inkscape:collect="always"
     501       xlink:href="#linearGradient10543"
     502       id="linearGradient9043"
     503       gradientUnits="userSpaceOnUse"
     504       x1="-42.013222"
     505       y1="895.25244"
     506       x2="66.722748"
     507       y2="895.25244" />
     508    <linearGradient
     509       inkscape:collect="always"
     510       xlink:href="#linearGradient6760"
     511       id="linearGradient9045"
     512       gradientUnits="userSpaceOnUse"
     513       x1="228.69115"
     514       y1="870.7868"
     515       x2="707.32397"
     516       y2="870.7868" />
     517    <linearGradient
     518       id="linearGradient12236">
     519      <stop
     520         style="stop-color:#3447ff;stop-opacity:1;"
     521         offset="0"
     522         id="stop12238" />
     523      <stop
     524         id="stop12240"
     525         offset="0.55764729"
     526         style="stop-color:#ffffff;stop-opacity:1;" />
     527      <stop
     528         id="stop12242"
     529         offset="1"
     530         style="stop-color:#3447ff;stop-opacity:1;" />
     531    </linearGradient>
     532    <linearGradient
     533       id="linearGradient3787">
     534      <stop
     535         id="stop3789"
     536         offset="0"
     537         style="stop-color:#3447ff;stop-opacity:1;" />
     538      <stop
     539         style="stop-color:#ffffff;stop-opacity:1;"
     540         offset="0.47906613"
     541         id="stop3791" />
     542      <stop
     543         style="stop-color:#3447ff;stop-opacity:1;"
     544         offset="1"
     545         id="stop3793" />
     546    </linearGradient>
     547    <linearGradient
     548       inkscape:collect="always"
     549       xlink:href="#linearGradient6760"
     550       id="linearGradient6487"
     551       gradientUnits="userSpaceOnUse"
     552       x1="228.69115"
     553       y1="870.7868"
     554       x2="707.32397"
     555       y2="870.7868" />
     556    <linearGradient
     557       inkscape:collect="always"
     558       xlink:href="#linearGradient6760"
     559       id="linearGradient6489"
     560       gradientUnits="userSpaceOnUse"
     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="#linearGradient10543"
     568       id="linearGradient6491"
     569       gradientUnits="userSpaceOnUse"
     570       x1="-42.013222"
     571       y1="895.25244"
     572       x2="66.722748"
     573       y2="895.25244" />
     574    <linearGradient
     575       inkscape:collect="always"
     576       xlink:href="#linearGradient6760"
     577       id="linearGradient6493"
     578       gradientUnits="userSpaceOnUse"
     579       x1="228.69115"
     580       y1="870.7868"
     581       x2="707.32397"
     582       y2="870.7868" />
     583    <linearGradient
     584       inkscape:collect="always"
     585       xlink:href="#linearGradient10543"
     586       id="linearGradient6495"
     587       gradientUnits="userSpaceOnUse"
     588       x1="-42.013222"
     589       y1="895.25244"
     590       x2="66.722748"
     591       y2="895.25244" />
     592    <linearGradient
     593       inkscape:collect="always"
     594       xlink:href="#linearGradient6760"
     595       id="linearGradient6497"
     596       gradientUnits="userSpaceOnUse"
     597       x1="228.69115"
     598       y1="870.7868"
     599       x2="707.32397"
     600       y2="870.7868" />
     601    <linearGradient
     602       inkscape:collect="always"
     603       xlink:href="#linearGradient6760"
     604       id="linearGradient6499"
     605       gradientUnits="userSpaceOnUse"
     606       x1="228.69115"
     607       y1="870.7868"
     608       x2="707.32397"
     609       y2="870.7868" />
     610    <linearGradient
     611       inkscape:collect="always"
     612       xlink:href="#linearGradient6760"
     613       id="linearGradient6501"
     614       gradientUnits="userSpaceOnUse"
     615       x1="228.69115"
     616       y1="870.7868"
     617       x2="707.32397"
     618       y2="870.7868" />
     619    <linearGradient
     620       inkscape:collect="always"
     621       xlink:href="#linearGradient6760"
     622       id="linearGradient6503"
     623       gradientUnits="userSpaceOnUse"
     624       x1="228.69115"
     625       y1="870.7868"
     626       x2="707.32397"
     627       y2="870.7868" />
     628    <linearGradient
     629       inkscape:collect="always"
     630       xlink:href="#linearGradient6760"
     631       id="linearGradient6505"
     632       gradientUnits="userSpaceOnUse"
     633       x1="228.69115"
     634       y1="870.7868"
     635       x2="707.32397"
     636       y2="870.7868" />
     637    <linearGradient
     638       inkscape:collect="always"
     639       xlink:href="#linearGradient6760"
     640       id="linearGradient6507"
     641       gradientUnits="userSpaceOnUse"
     642       x1="228.69115"
     643       y1="870.7868"
     644       x2="707.32397"
     645       y2="870.7868" />
     646    <linearGradient
     647       inkscape:collect="always"
     648       xlink:href="#linearGradient6760"
     649       id="linearGradient6509"
     650       gradientUnits="userSpaceOnUse"
     651       x1="228.69115"
     652       y1="870.7868"
     653       x2="707.32397"
     654       y2="870.7868" />
     655    <linearGradient
     656       inkscape:collect="always"
     657       xlink:href="#linearGradient6760"
     658       id="linearGradient6511"
     659       gradientUnits="userSpaceOnUse"
     660       x1="228.69115"
     661       y1="870.7868"
     662       x2="707.32397"
     663       y2="870.7868" />
     664    <linearGradient
     665       inkscape:collect="always"
     666       xlink:href="#linearGradient10543"
     667       id="linearGradient6513"
     668       gradientUnits="userSpaceOnUse"
     669       x1="-42.013222"
     670       y1="895.25244"
     671       x2="66.722748"
     672       y2="895.25244" />
     673    <linearGradient
     674       inkscape:collect="always"
     675       xlink:href="#linearGradient6760"
     676       id="linearGradient6515"
     677       gradientUnits="userSpaceOnUse"
     678       x1="228.69115"
     679       y1="870.7868"
     680       x2="707.32397"
     681       y2="870.7868" />
     682    <linearGradient
     683       inkscape:collect="always"
     684       xlink:href="#linearGradient10543"
     685       id="linearGradient6517"
     686       gradientUnits="userSpaceOnUse"
     687       x1="-42.013222"
     688       y1="895.25244"
     689       x2="66.722748"
     690       y2="895.25244" />
     691    <linearGradient
     692       inkscape:collect="always"
     693       xlink:href="#linearGradient6760"
     694       id="linearGradient6519"
     695       gradientUnits="userSpaceOnUse"
     696       x1="228.69115"
     697       y1="870.7868"
     698       x2="707.32397"
     699       y2="870.7868" />
     700    <linearGradient
     701       inkscape:collect="always"
     702       xlink:href="#linearGradient6760"
     703       id="linearGradient6521"
     704       gradientUnits="userSpaceOnUse"
     705       x1="228.69115"
     706       y1="870.7868"
     707       x2="707.32397"
     708       y2="870.7868" />
     709    <linearGradient
     710       inkscape:collect="always"
     711       xlink:href="#linearGradient6760"
     712       id="linearGradient6523"
     713       gradientUnits="userSpaceOnUse"
     714       x1="228.69115"
     715       y1="870.7868"
     716       x2="707.32397"
     717       y2="870.7868" />
     718    <linearGradient
     719       inkscape:collect="always"
     720       xlink:href="#linearGradient6760"
     721       id="linearGradient6525"
     722       gradientUnits="userSpaceOnUse"
     723       x1="228.69115"
     724       y1="870.7868"
     725       x2="707.32397"
     726       y2="870.7868" />
     727    <linearGradient
     728       inkscape:collect="always"
     729       xlink:href="#linearGradient6760"
     730       id="linearGradient6527"
     731       gradientUnits="userSpaceOnUse"
     732       x1="228.69115"
     733       y1="870.7868"
     734       x2="707.32397"
     735       y2="870.7868" />
     736    <linearGradient
     737       inkscape:collect="always"
     738       xlink:href="#linearGradient6760"
     739       id="linearGradient6529"
     740       gradientUnits="userSpaceOnUse"
     741       x1="228.69115"
     742       y1="870.7868"
     743       x2="707.32397"
     744       y2="870.7868" />
     745    <linearGradient
     746       inkscape:collect="always"
     747       xlink:href="#linearGradient6760"
     748       id="linearGradient6531"
     749       gradientUnits="userSpaceOnUse"
     750       x1="228.69115"
     751       y1="870.7868"
     752       x2="707.32397"
     753       y2="870.7868" />
     754    <linearGradient
     755       inkscape:collect="always"
     756       xlink:href="#linearGradient10543"
     757       id="linearGradient6533"
     758       gradientUnits="userSpaceOnUse"
     759       x1="-42.013222"
     760       y1="895.25244"
     761       x2="66.722748"
     762       y2="895.25244" />
     763    <linearGradient
     764       inkscape:collect="always"
     765       xlink:href="#linearGradient6760"
     766       id="linearGradient6535"
     767       gradientUnits="userSpaceOnUse"
     768       x1="228.69115"
     769       y1="870.7868"
     770       x2="707.32397"
     771       y2="870.7868" />
     772    <linearGradient
     773       inkscape:collect="always"
     774       xlink:href="#linearGradient10543"
     775       id="linearGradient6537"
     776       gradientUnits="userSpaceOnUse"
     777       x1="-42.013222"
     778       y1="895.25244"
     779       x2="66.722748"
     780       y2="895.25244" />
     781    <linearGradient
     782       inkscape:collect="always"
     783       xlink:href="#linearGradient6760"
     784       id="linearGradient6539"
     785       gradientUnits="userSpaceOnUse"
     786       x1="228.69115"
     787       y1="870.7868"
     788       x2="707.32397"
     789       y2="870.7868" />
     790    <linearGradient
     791       inkscape:collect="always"
     792       xlink:href="#linearGradient10543"
     793       id="linearGradient6541"
     794       gradientUnits="userSpaceOnUse"
     795       x1="-42.013222"
     796       y1="895.25244"
     797       x2="66.722748"
     798       y2="895.25244" />
     799    <linearGradient
     800       inkscape:collect="always"
     801       xlink:href="#linearGradient6760"
     802       id="linearGradient6543"
     803       gradientUnits="userSpaceOnUse"
     804       x1="228.69115"
     805       y1="870.7868"
     806       x2="707.32397"
     807       y2="870.7868" />
     808    <linearGradient
     809       inkscape:collect="always"
     810       xlink:href="#linearGradient6760"
     811       id="linearGradient6545"
     812       gradientUnits="userSpaceOnUse"
     813       x1="228.69115"
     814       y1="870.7868"
     815       x2="707.32397"
     816       y2="870.7868" />
     817    <linearGradient
     818       inkscape:collect="always"
     819       xlink:href="#linearGradient6760"
     820       id="linearGradient6547"
     821       gradientUnits="userSpaceOnUse"
     822       x1="228.69115"
     823       y1="870.7868"
     824       x2="707.32397"
     825       y2="870.7868" />
     826    <linearGradient
     827       inkscape:collect="always"
     828       xlink:href="#linearGradient6760"
     829       id="linearGradient6549"
     830       gradientUnits="userSpaceOnUse"
     831       x1="228.69115"
     832       y1="870.7868"
     833       x2="707.32397"
     834       y2="870.7868" />
     835    <linearGradient
     836       inkscape:collect="always"
     837       xlink:href="#linearGradient6760"
     838       id="linearGradient6551"
     839       gradientUnits="userSpaceOnUse"
     840       x1="228.69115"
     841       y1="870.7868"
     842       x2="707.32397"
     843       y2="870.7868" />
     844    <linearGradient
     845       inkscape:collect="always"
     846       xlink:href="#linearGradient6760"
     847       id="linearGradient6553"
     848       gradientUnits="userSpaceOnUse"
     849       x1="228.69115"
     850       y1="870.7868"
     851       x2="707.32397"
     852       y2="870.7868" />
     853    <linearGradient
     854       inkscape:collect="always"
     855       xlink:href="#linearGradient6760"
     856       id="linearGradient6555"
     857       gradientUnits="userSpaceOnUse"
     858       x1="228.69115"
     859       y1="870.7868"
     860       x2="707.32397"
     861       y2="870.7868" />
     862    <linearGradient
     863       inkscape:collect="always"
     864       xlink:href="#linearGradient6760"
     865       id="linearGradient6557"
     866       gradientUnits="userSpaceOnUse"
     867       x1="228.69115"
     868       y1="870.7868"
     869       x2="707.32397"
     870       y2="870.7868" />
     871    <linearGradient
     872       inkscape:collect="always"
     873       xlink:href="#linearGradient10543"
     874       id="linearGradient6559"
     875       gradientUnits="userSpaceOnUse"
     876       x1="-42.013222"
     877       y1="895.25244"
     878       x2="66.722748"
     879       y2="895.25244" />
     880    <linearGradient
     881       inkscape:collect="always"
     882       xlink:href="#linearGradient6760"
     883       id="linearGradient6561"
     884       gradientUnits="userSpaceOnUse"
     885       x1="228.69115"
     886       y1="870.7868"
     887       x2="707.32397"
     888       y2="870.7868" />
     889    <linearGradient
     890       inkscape:collect="always"
     891       xlink:href="#linearGradient10543"
     892       id="linearGradient6563"
     893       gradientUnits="userSpaceOnUse"
     894       x1="-42.013222"
     895       y1="895.25244"
     896       x2="66.722748"
     897       y2="895.25244" />
     898    <linearGradient
     899       inkscape:collect="always"
     900       xlink:href="#linearGradient6760"
     901       id="linearGradient6565"
     902       gradientUnits="userSpaceOnUse"
     903       x1="228.69115"
     904       y1="870.7868"
     905       x2="707.32397"
     906       y2="870.7868" />
     907    <linearGradient
     908       inkscape:collect="always"
     909       xlink:href="#linearGradient6760"
     910       id="linearGradient6567"
     911       gradientUnits="userSpaceOnUse"
     912       x1="228.69115"
     913       y1="870.7868"
     914       x2="707.32397"
     915       y2="870.7868" />
     916    <linearGradient
     917       inkscape:collect="always"
     918       xlink:href="#linearGradient6760"
     919       id="linearGradient6569"
     920       gradientUnits="userSpaceOnUse"
     921       x1="228.69115"
     922       y1="870.7868"
     923       x2="707.32397"
     924       y2="870.7868" />
     925    <linearGradient
     926       inkscape:collect="always"
     927       xlink:href="#linearGradient6760"
     928       id="linearGradient6571"
     929       gradientUnits="userSpaceOnUse"
     930       x1="228.69115"
     931       y1="870.7868"
     932       x2="707.32397"
     933       y2="870.7868" />
     934    <linearGradient
     935       inkscape:collect="always"
     936       xlink:href="#linearGradient6760"
     937       id="linearGradient6573"
     938       gradientUnits="userSpaceOnUse"
     939       x1="228.69115"
     940       y1="870.7868"
     941       x2="707.32397"
     942       y2="870.7868" />
     943    <linearGradient
     944       inkscape:collect="always"
     945       xlink:href="#linearGradient6760"
     946       id="linearGradient6575"
     947       gradientUnits="userSpaceOnUse"
     948       x1="228.69115"
     949       y1="870.7868"
     950       x2="707.32397"
     951       y2="870.7868" />
     952    <linearGradient
     953       inkscape:collect="always"
     954       xlink:href="#linearGradient6760"
     955       id="linearGradient6577"
     956       gradientUnits="userSpaceOnUse"
     957       x1="228.69115"
     958       y1="870.7868"
     959       x2="707.32397"
     960       y2="870.7868" />
     961    <linearGradient
     962       inkscape:collect="always"
     963       xlink:href="#linearGradient6760"
     964       id="linearGradient6579"
     965       gradientUnits="userSpaceOnUse"
     966       x1="228.69115"
     967       y1="870.7868"
     968       x2="707.32397"
     969       y2="870.7868" />
     970    <linearGradient
     971       inkscape:collect="always"
     972       xlink:href="#linearGradient10543"
     973       id="linearGradient6581"
     974       gradientUnits="userSpaceOnUse"
     975       x1="-42.013222"
     976       y1="895.25244"
     977       x2="66.722748"
     978       y2="895.25244" />
     979    <linearGradient
     980       inkscape:collect="always"
     981       xlink:href="#linearGradient6760"
     982       id="linearGradient6583"
     983       gradientUnits="userSpaceOnUse"
     984       x1="228.69115"
     985       y1="870.7868"
     986       x2="707.32397"
     987       y2="870.7868" />
     988    <linearGradient
     989       inkscape:collect="always"
     990       xlink:href="#linearGradient10543"
     991       id="linearGradient6585"
     992       gradientUnits="userSpaceOnUse"
     993       x1="-42.013222"
     994       y1="895.25244"
     995       x2="66.722748"
     996       y2="895.25244" />
     997    <linearGradient
     998       inkscape:collect="always"
     999       xlink:href="#linearGradient6760"
     1000       id="linearGradient6587"
     1001       gradientUnits="userSpaceOnUse"
     1002       x1="228.69115"
     1003       y1="870.7868"
     1004       x2="707.32397"
     1005       y2="870.7868" />
     1006    <linearGradient
     1007       inkscape:collect="always"
     1008       xlink:href="#linearGradient6760"
     1009       id="linearGradient6589"
     1010       gradientUnits="userSpaceOnUse"
     1011       x1="228.69115"
     1012       y1="870.7868"
     1013       x2="707.32397"
     1014       y2="870.7868" />
     1015    <linearGradient
     1016       inkscape:collect="always"
     1017       xlink:href="#linearGradient6760"
     1018       id="linearGradient6591"
     1019       gradientUnits="userSpaceOnUse"
     1020       x1="228.69115"
     1021       y1="870.7868"
     1022       x2="707.32397"
     1023       y2="870.7868" />
     1024    <linearGradient
     1025       inkscape:collect="always"
     1026       xlink:href="#linearGradient6760"
     1027       id="linearGradient6593"
     1028       gradientUnits="userSpaceOnUse"
     1029       x1="228.69115"
     1030       y1="870.7868"
     1031       x2="707.32397"
     1032       y2="870.7868" />
     1033    <linearGradient
     1034       inkscape:collect="always"
     1035       xlink:href="#linearGradient6760"
     1036       id="linearGradient6595"
     1037       gradientUnits="userSpaceOnUse"
     1038       x1="228.69115"
     1039       y1="870.7868"
     1040       x2="707.32397"
     1041       y2="870.7868" />
     1042    <linearGradient
     1043       inkscape:collect="always"
     1044       xlink:href="#linearGradient6760"
     1045       id="linearGradient6597"
     1046       gradientUnits="userSpaceOnUse"
     1047       x1="228.69115"
     1048       y1="870.7868"
     1049       x2="707.32397"
     1050       y2="870.7868" />
     1051    <linearGradient
     1052       inkscape:collect="always"
     1053       xlink:href="#linearGradient6760"
     1054       id="linearGradient6599"
     1055       gradientUnits="userSpaceOnUse"
     1056       x1="228.69115"
     1057       y1="870.7868"
     1058       x2="707.32397"
     1059       y2="870.7868" />
     1060    <linearGradient
     1061       inkscape:collect="always"
     1062       xlink:href="#linearGradient6760"
     1063       id="linearGradient6601"
     1064       gradientUnits="userSpaceOnUse"
     1065       x1="228.69115"
     1066       y1="870.7868"
     1067       x2="707.32397"
     1068       y2="870.7868" />
     1069    <linearGradient
     1070       inkscape:collect="always"
     1071       xlink:href="#linearGradient10543"
     1072       id="linearGradient6603"
     1073       gradientUnits="userSpaceOnUse"
     1074       x1="-42.013222"
     1075       y1="895.25244"
     1076       x2="66.722748"
     1077       y2="895.25244" />
     1078    <linearGradient
     1079       inkscape:collect="always"
     1080       xlink:href="#linearGradient6760"
     1081       id="linearGradient6605"
     1082       gradientUnits="userSpaceOnUse"
     1083       x1="228.69115"
     1084       y1="870.7868"
     1085       x2="707.32397"
     1086       y2="870.7868" />
     1087    <linearGradient
     1088       inkscape:collect="always"
     1089       xlink:href="#linearGradient10543"
     1090       id="linearGradient6607"
     1091       gradientUnits="userSpaceOnUse"
     1092       x1="-42.013222"
     1093       y1="895.25244"
     1094       x2="66.722748"
     1095       y2="895.25244" />
     1096    <linearGradient
     1097       inkscape:collect="always"
     1098       xlink:href="#linearGradient6760"
     1099       id="linearGradient6609"
     1100       gradientUnits="userSpaceOnUse"
     1101       x1="228.69115"
     1102       y1="870.7868"
     1103       x2="707.32397"
     1104       y2="870.7868" />
     1105    <linearGradient
     1106       inkscape:collect="always"
     1107       xlink:href="#linearGradient6760"
     1108       id="linearGradient6611"
     1109       gradientUnits="userSpaceOnUse"
     1110       x1="228.69115"
     1111       y1="870.7868"
     1112       x2="707.32397"
     1113       y2="870.7868" />
     1114    <linearGradient
     1115       inkscape:collect="always"
     1116       xlink:href="#linearGradient6760"
     1117       id="linearGradient6613"
     1118       gradientUnits="userSpaceOnUse"
     1119       x1="228.69115"
     1120       y1="870.7868"
     1121       x2="707.32397"
     1122       y2="870.7868" />
     1123    <linearGradient
     1124       inkscape:collect="always"
     1125       xlink:href="#linearGradient6760"
     1126       id="linearGradient6615"
     1127       gradientUnits="userSpaceOnUse"
     1128       x1="228.69115"
     1129       y1="870.7868"
     1130       x2="707.32397"
     1131       y2="870.7868" />
     1132    <linearGradient
     1133       inkscape:collect="always"
     1134       xlink:href="#linearGradient6760"
     1135       id="linearGradient6617"
     1136       gradientUnits="userSpaceOnUse"
     1137       x1="228.69115"
     1138       y1="870.7868"
     1139       x2="707.32397"
     1140       y2="870.7868" />
     1141    <linearGradient
     1142       inkscape:collect="always"
     1143       xlink:href="#linearGradient6760"
     1144       id="linearGradient6619"
     1145       gradientUnits="userSpaceOnUse"
     1146       x1="228.69115"
     1147       y1="870.7868"
     1148       x2="707.32397"
     1149       y2="870.7868" />
     1150    <linearGradient
     1151       inkscape:collect="always"
     1152       xlink:href="#linearGradient6760"
     1153       id="linearGradient6621"
     1154       gradientUnits="userSpaceOnUse"
     1155       x1="228.69115"
     1156       y1="870.7868"
     1157       x2="707.32397"
     1158       y2="870.7868" />
     1159    <linearGradient
     1160       inkscape:collect="always"
     1161       xlink:href="#linearGradient6760"
     1162       id="linearGradient6623"
     1163       gradientUnits="userSpaceOnUse"
     1164       x1="228.69115"
     1165       y1="870.7868"
     1166       x2="707.32397"
     1167       y2="870.7868" />
     1168    <linearGradient
     1169       inkscape:collect="always"
     1170       xlink:href="#linearGradient10543"
     1171       id="linearGradient6625"
     1172       gradientUnits="userSpaceOnUse"
     1173       x1="-42.013222"
     1174       y1="895.25244"
     1175       x2="66.722748"
     1176       y2="895.25244" />
     1177    <linearGradient
     1178       inkscape:collect="always"
     1179       xlink:href="#linearGradient6760"
     1180       id="linearGradient6627"
     1181       gradientUnits="userSpaceOnUse"
     1182       x1="228.69115"
     1183       y1="870.7868"
     1184       x2="707.32397"
     1185       y2="870.7868" />
     1186    <linearGradient
     1187       inkscape:collect="always"
     1188       xlink:href="#linearGradient10543"
     1189       id="linearGradient6629"
     1190       gradientUnits="userSpaceOnUse"
     1191       x1="-42.013222"
     1192       y1="895.25244"
     1193       x2="66.722748"
     1194       y2="895.25244" />
     1195    <linearGradient
     1196       inkscape:collect="always"
     1197       xlink:href="#linearGradient6760"
     1198       id="linearGradient6631"
     1199       gradientUnits="userSpaceOnUse"
     1200       x1="228.69115"
     1201       y1="870.7868"
     1202       x2="707.32397"
     1203       y2="870.7868" />
     1204    <linearGradient
     1205       inkscape:collect="always"
     1206       xlink:href="#linearGradient6760"
     1207       id="linearGradient6633"
     1208       gradientUnits="userSpaceOnUse"
     1209       x1="228.69115"
     1210       y1="870.7868"
     1211       x2="707.32397"
     1212       y2="870.7868" />
     1213    <linearGradient
     1214       inkscape:collect="always"
     1215       xlink:href="#linearGradient6760"
     1216       id="linearGradient6635"
     1217       gradientUnits="userSpaceOnUse"
     1218       x1="228.69115"
     1219       y1="870.7868"
     1220       x2="707.32397"
     1221       y2="870.7868" />
     1222    <linearGradient
     1223       inkscape:collect="always"
     1224       xlink:href="#linearGradient6760"
     1225       id="linearGradient6637"
     1226       gradientUnits="userSpaceOnUse"
     1227       x1="228.69115"
     1228       y1="870.7868"
     1229       x2="707.32397"
     1230       y2="870.7868" />
     1231    <linearGradient
     1232       inkscape:collect="always"
     1233       xlink:href="#linearGradient6760"
     1234       id="linearGradient6639"
     1235       gradientUnits="userSpaceOnUse"
     1236       x1="228.69115"
     1237       y1="870.7868"
     1238       x2="707.32397"
     1239       y2="870.7868" />
     1240    <linearGradient
     1241       inkscape:collect="always"
     1242       xlink:href="#linearGradient6760"
     1243       id="linearGradient6641"
     1244       gradientUnits="userSpaceOnUse"
     1245       x1="228.69115"
     1246       y1="870.7868"
     1247       x2="707.32397"
     1248       y2="870.7868" />
     1249    <linearGradient
     1250       inkscape:collect="always"
     1251       xlink:href="#linearGradient6760"
     1252       id="linearGradient6643"
     1253       gradientUnits="userSpaceOnUse"
     1254       x1="228.69115"
     1255       y1="870.7868"
     1256       x2="707.32397"
     1257       y2="870.7868" />
     1258    <linearGradient
     1259       inkscape:collect="always"
     1260       xlink:href="#linearGradient6760"
     1261       id="linearGradient6645"
     1262       gradientUnits="userSpaceOnUse"
     1263       x1="228.69115"
     1264       y1="870.7868"
     1265       x2="707.32397"
     1266       y2="870.7868" />
     1267    <linearGradient
     1268       inkscape:collect="always"
     1269       xlink:href="#linearGradient10543"
     1270       id="linearGradient6647"
     1271       gradientUnits="userSpaceOnUse"
     1272       x1="-42.013222"
     1273       y1="895.25244"
     1274       x2="66.722748"
     1275       y2="895.25244" />
     1276    <linearGradient
     1277       inkscape:collect="always"
     1278       xlink:href="#linearGradient6760"
     1279       id="linearGradient6649"
     1280       gradientUnits="userSpaceOnUse"
     1281       x1="228.69115"
     1282       y1="870.7868"
     1283       x2="707.32397"
     1284       y2="870.7868" />
     1285    <linearGradient
     1286       inkscape:collect="always"
     1287       xlink:href="#linearGradient10543"
     1288       id="linearGradient6651"
     1289       gradientUnits="userSpaceOnUse"
     1290       x1="-42.013222"
     1291       y1="895.25244"
     1292       x2="66.722748"
     1293       y2="895.25244" />
     1294    <linearGradient
     1295       inkscape:collect="always"
     1296       xlink:href="#linearGradient6760"
     1297       id="linearGradient6653"
     1298       gradientUnits="userSpaceOnUse"
     1299       x1="228.69115"
     1300       y1="870.7868"
     1301       x2="707.32397"
     1302       y2="870.7868" />
     1303    <linearGradient
     1304       inkscape:collect="always"
     1305       xlink:href="#linearGradient6760"
     1306       id="linearGradient6655"
     1307       gradientUnits="userSpaceOnUse"
     1308       x1="228.69115"
     1309       y1="870.7868"
     1310       x2="707.32397"
     1311       y2="870.7868" />
     1312    <linearGradient
     1313       inkscape:collect="always"
     1314       xlink:href="#linearGradient6760"
     1315       id="linearGradient6657"
     1316       gradientUnits="userSpaceOnUse"
     1317       x1="228.69115"
     1318       y1="870.7868"
     1319       x2="707.32397"
     1320       y2="870.7868" />
     1321    <linearGradient
     1322       inkscape:collect="always"
     1323       xlink:href="#linearGradient6760"
     1324       id="linearGradient6659"
     1325       gradientUnits="userSpaceOnUse"
     1326       x1="228.69115"
     1327       y1="870.7868"
     1328       x2="707.32397"
     1329       y2="870.7868" />
     1330    <linearGradient
     1331       inkscape:collect="always"
     1332       xlink:href="#linearGradient6760"
     1333       id="linearGradient6661"
     1334       gradientUnits="userSpaceOnUse"
     1335       x1="228.69115"
     1336       y1="870.7868"
     1337       x2="707.32397"
     1338       y2="870.7868" />
     1339    <linearGradient
     1340       inkscape:collect="always"
     1341       xlink:href="#linearGradient6760"
     1342       id="linearGradient6663"
     1343       gradientUnits="userSpaceOnUse"
     1344       x1="228.69115"
     1345       y1="870.7868"
     1346       x2="707.32397"
     1347       y2="870.7868" />
     1348    <linearGradient
     1349       inkscape:collect="always"
     1350       xlink:href="#linearGradient6760"
     1351       id="linearGradient6665"
     1352       gradientUnits="userSpaceOnUse"
     1353       x1="228.69115"
     1354       y1="870.7868"
     1355       x2="707.32397"
     1356       y2="870.7868" />
     1357    <linearGradient
     1358       inkscape:collect="always"
     1359       xlink:href="#linearGradient6760"
     1360       id="linearGradient6667"
     1361       gradientUnits="userSpaceOnUse"
     1362       x1="228.69115"
     1363       y1="870.7868"
     1364       x2="707.32397"
     1365       y2="870.7868" />
     1366    <linearGradient
     1367       inkscape:collect="always"
     1368       xlink:href="#linearGradient10543"
     1369       id="linearGradient6669"
     1370       gradientUnits="userSpaceOnUse"
     1371       x1="-42.013222"
     1372       y1="895.25244"
     1373       x2="66.722748"
     1374       y2="895.25244" />
     1375    <linearGradient
     1376       inkscape:collect="always"
     1377       xlink:href="#linearGradient6760"
     1378       id="linearGradient6671"
     1379       gradientUnits="userSpaceOnUse"
     1380       x1="228.69115"
     1381       y1="870.7868"
     1382       x2="707.32397"
     1383       y2="870.7868" />
     1384    <linearGradient
     1385       inkscape:collect="always"
     1386       xlink:href="#linearGradient10543"
     1387       id="linearGradient6673"
     1388       gradientUnits="userSpaceOnUse"
     1389       x1="-42.013222"
     1390       y1="895.25244"
     1391       x2="66.722748"
     1392       y2="895.25244" />
     1393    <linearGradient
     1394       inkscape:collect="always"
     1395       xlink:href="#linearGradient6760"
     1396       id="linearGradient6675"
     1397       gradientUnits="userSpaceOnUse"
     1398       x1="228.69115"
     1399       y1="870.7868"
     1400       x2="707.32397"
     1401       y2="870.7868" />
     1402    <linearGradient
     1403       inkscape:collect="always"
     1404       xlink:href="#linearGradient6760"
     1405       id="linearGradient6677"
     1406       gradientUnits="userSpaceOnUse"
     1407       x1="228.69115"
     1408       y1="870.7868"
     1409       x2="707.32397"
     1410       y2="870.7868" />
     1411    <linearGradient
     1412       inkscape:collect="always"
     1413       xlink:href="#linearGradient6760"
     1414       id="linearGradient6679"
     1415       gradientUnits="userSpaceOnUse"
     1416       x1="228.69115"
     1417       y1="870.7868"
     1418       x2="707.32397"
     1419       y2="870.7868" />
     1420    <linearGradient
     1421       inkscape:collect="always"
     1422       xlink:href="#linearGradient6760"
     1423       id="linearGradient6681"
     1424       gradientUnits="userSpaceOnUse"
     1425       x1="228.69115"
     1426       y1="870.7868"
     1427       x2="707.32397"
     1428       y2="870.7868" />
     1429    <linearGradient
     1430       inkscape:collect="always"
     1431       xlink:href="#linearGradient6760"
     1432       id="linearGradient6683"
     1433       gradientUnits="userSpaceOnUse"
     1434       x1="228.69115"
     1435       y1="870.7868"
     1436       x2="707.32397"
     1437       y2="870.7868" />
     1438    <linearGradient
     1439       inkscape:collect="always"
     1440       xlink:href="#linearGradient6760"
     1441       id="linearGradient6685"
     1442       gradientUnits="userSpaceOnUse"
     1443       x1="228.69115"
     1444       y1="870.7868"
     1445       x2="707.32397"
     1446       y2="870.7868" />
     1447    <linearGradient
     1448       inkscape:collect="always"
     1449       xlink:href="#linearGradient6760"
     1450       id="linearGradient6687"
     1451       gradientUnits="userSpaceOnUse"
     1452       x1="228.69115"
     1453       y1="870.7868"
     1454       x2="707.32397"
     1455       y2="870.7868" />
     1456    <linearGradient
     1457       inkscape:collect="always"
     1458       xlink:href="#linearGradient6760"
     1459       id="linearGradient6689"
     1460       gradientUnits="userSpaceOnUse"
     1461       x1="228.69115"
     1462       y1="870.7868"
     1463       x2="707.32397"
     1464       y2="870.7868" />
     1465    <linearGradient
     1466       inkscape:collect="always"
     1467       xlink:href="#linearGradient10543"
     1468       id="linearGradient6691"
     1469       gradientUnits="userSpaceOnUse"
     1470       x1="-42.013222"
     1471       y1="895.25244"
     1472       x2="66.722748"
     1473       y2="895.25244" />
     1474    <linearGradient
     1475       inkscape:collect="always"
     1476       xlink:href="#linearGradient6760"
     1477       id="linearGradient6693"
     1478       gradientUnits="userSpaceOnUse"
     1479       x1="228.69115"
     1480       y1="870.7868"
     1481       x2="707.32397"
     1482       y2="870.7868" />
     1483    <linearGradient
     1484       inkscape:collect="always"
     1485       xlink:href="#linearGradient10543"
     1486       id="linearGradient6695"
     1487       gradientUnits="userSpaceOnUse"
     1488       x1="-42.013222"
     1489       y1="895.25244"
     1490       x2="66.722748"
     1491       y2="895.25244" />
     1492    <linearGradient
     1493       inkscape:collect="always"
     1494       xlink:href="#linearGradient6760"
     1495       id="linearGradient6697"
     1496       gradientUnits="userSpaceOnUse"
     1497       x1="228.69115"
     1498       y1="870.7868"
     1499       x2="707.32397"
     1500       y2="870.7868" />
     1501    <linearGradient
     1502       inkscape:collect="always"
     1503       xlink:href="#linearGradient6760"
     1504       id="linearGradient6699"
     1505       gradientUnits="userSpaceOnUse"
     1506       x1="228.69115"
     1507       y1="870.7868"
     1508       x2="707.32397"
     1509       y2="870.7868" />
     1510    <linearGradient
     1511       inkscape:collect="always"
     1512       xlink:href="#linearGradient6760"
     1513       id="linearGradient6701"
     1514       gradientUnits="userSpaceOnUse"
     1515       x1="228.69115"
     1516       y1="870.7868"
     1517       x2="707.32397"
     1518       y2="870.7868" />
     1519    <linearGradient
     1520       inkscape:collect="always"
     1521       xlink:href="#linearGradient6760"
     1522       id="linearGradient6703"
     1523       gradientUnits="userSpaceOnUse"
     1524       x1="228.69115"
     1525       y1="870.7868"
     1526       x2="707.32397"
     1527       y2="870.7868" />
     1528    <linearGradient
     1529       inkscape:collect="always"
     1530       xlink:href="#linearGradient6760"
     1531       id="linearGradient6705"
     1532       gradientUnits="userSpaceOnUse"
     1533       x1="228.69115"
     1534       y1="870.7868"
     1535       x2="707.32397"
     1536       y2="870.7868" />
     1537    <linearGradient
     1538       inkscape:collect="always"
     1539       xlink:href="#linearGradient6760"
     1540       id="linearGradient6707"
     1541       gradientUnits="userSpaceOnUse"
     1542       x1="228.69115"
     1543       y1="870.7868"
     1544       x2="707.32397"
     1545       y2="870.7868" />
     1546    <linearGradient
     1547       inkscape:collect="always"
     1548       xlink:href="#linearGradient6760"
     1549       id="linearGradient6709"
     1550       gradientUnits="userSpaceOnUse"
     1551       x1="228.69115"
     1552       y1="870.7868"
     1553       x2="707.32397"
     1554       y2="870.7868" />
    871555    <radialGradient
    881556       inkscape:collect="always"
    891557       xlink:href="#linearGradient3827"
    90        id="radialGradient3236"
    91        gradientUnits="userSpaceOnUse"
    92        gradientTransform="matrix(1,0,0,0.4346623,0,122.79469)"
     1558       id="radialGradient3056"
     1559       gradientUnits="userSpaceOnUse"
     1560       gradientTransform="matrix(0.9035519,-3.9397966e-3,3.6648618e-3,0.4340579,52.250444,125.09286)"
    931561       cx="550"
    941562       cy="217.20593"
    951563       fx="550"
    961564       fy="217.20593"
    97        r="142.33749" />
     1565       r="142.1875" />
    981566    <radialGradient
    991567       inkscape:collect="always"
    1001568       xlink:href="#linearGradient3827"
    101        id="radialGradient3238"
    102        gradientUnits="userSpaceOnUse"
    103        gradientTransform="matrix(1,0,0,0.4346623,0,122.79469)"
     1569       id="radialGradient3058"
     1570       gradientUnits="userSpaceOnUse"
     1571       gradientTransform="matrix(0.9035519,-3.9397966e-3,3.6648618e-3,0.4340579,52.250444,125.09286)"
    1041572       cx="550"
    1051573       cy="217.20593"
    1061574       fx="550"
    1071575       fy="217.20593"
    108        r="142.33749" />
     1576       r="142.1875" />
     1577    <linearGradient
     1578       inkscape:collect="always"
     1579       xlink:href="#linearGradient3787"
     1580       id="linearGradient3062"
     1581       gradientUnits="userSpaceOnUse"
     1582       gradientTransform="matrix(0,-0.1058194,-3.392469e-2,0,45.831997,98.100685)"
     1583       x1="328.47549"
     1584       y1="214.0296"
     1585       x2="328.47549"
     1586       y2="645.03595" />
     1587    <linearGradient
     1588       inkscape:collect="always"
     1589       xlink:href="#linearGradient12236"
     1590       id="linearGradient3064"
     1591       gradientUnits="userSpaceOnUse"
     1592       gradientTransform="matrix(0.1852233,0,0,3.4984285e-3,-87.633755,57.314978)"
     1593       x1="243.3891"
     1594       y1="444.52151"
     1595       x2="366.54971"
     1596       y2="444.52151" />
    1091597    <linearGradient
    1101598       inkscape:collect="always"
    1111599       xlink:href="#linearGradient3236"
    112        id="linearGradient2442"
    113        gradientUnits="userSpaceOnUse"
    114        gradientTransform="matrix(0.8723821,0,0,0.9798766,-367.06557,605.85268)"
    115        x1="-826.83124"
    116        y1="-386.76718"
     1600       id="linearGradient3098"
     1601       gradientUnits="userSpaceOnUse"
     1602       gradientTransform="matrix(0.351638,0,0,0.3169371,223.28571,57.688731)"
     1603       x1="-827.12714"
     1604       y1="-386.76682"
    1171605       x2="-648.12933"
    1181606       y2="-386.76718" />
     1607    <linearGradient
     1608       inkscape:collect="always"
     1609       xlink:href="#linearGradient12236"
     1610       id="linearGradient3124"
     1611       gradientUnits="userSpaceOnUse"
     1612       gradientTransform="matrix(0.1523916,0,0,2.3989571e-3,-82.297401,-3.2828597)"
     1613       x1="243.3891"
     1614       y1="444.52151"
     1615       x2="366.54971"
     1616       y2="444.52151" />
     1617    <linearGradient
     1618       inkscape:collect="always"
     1619       xlink:href="#linearGradient3787"
     1620       id="linearGradient3127"
     1621       gradientUnits="userSpaceOnUse"
     1622       gradientTransform="matrix(0,-7.2562923e-2,-2.7911376e-2,0,47.905206,24.684952)"
     1623       x1="328.47549"
     1624       y1="214.0296"
     1625       x2="328.47549"
     1626       y2="645.03595" />
     1627    <linearGradient
     1628       inkscape:collect="always"
     1629       xlink:href="#linearGradient3787"
     1630       id="linearGradient3909"
     1631       gradientUnits="userSpaceOnUse"
     1632       gradientTransform="matrix(0,-7.2562923e-2,-2.7911376e-2,0,47.905206,24.684952)"
     1633       x1="328.47549"
     1634       y1="214.0296"
     1635       x2="328.47549"
     1636       y2="645.03595" />
     1637    <linearGradient
     1638       inkscape:collect="always"
     1639       xlink:href="#linearGradient12236"
     1640       id="linearGradient3911"
     1641       gradientUnits="userSpaceOnUse"
     1642       gradientTransform="matrix(0.1523916,0,0,2.3989571e-3,-82.297401,-3.2828597)"
     1643       x1="243.3891"
     1644       y1="444.52151"
     1645       x2="366.54971"
     1646       y2="444.52151" />
     1647    <radialGradient
     1648       inkscape:collect="always"
     1649       xlink:href="#linearGradient3827"
     1650       id="radialGradient3950"
     1651       gradientUnits="userSpaceOnUse"
     1652       gradientTransform="matrix(0.9035519,-3.9397966e-3,3.6648618e-3,0.4340579,52.250444,125.09286)"
     1653       cx="550"
     1654       cy="217.20593"
     1655       fx="550"
     1656       fy="217.20593"
     1657       r="142.1875" />
     1658    <radialGradient
     1659       inkscape:collect="always"
     1660       xlink:href="#linearGradient3827"
     1661       id="radialGradient3952"
     1662       gradientUnits="userSpaceOnUse"
     1663       gradientTransform="matrix(0.9035519,-3.9397966e-3,3.6648618e-3,0.4340579,52.250444,125.09286)"
     1664       cx="550"
     1665       cy="217.20593"
     1666       fx="550"
     1667       fy="217.20593"
     1668       r="142.1875" />
     1669    <linearGradient
     1670       inkscape:collect="always"
     1671       xlink:href="#linearGradient3236"
     1672       id="linearGradient3954"
     1673       gradientUnits="userSpaceOnUse"
     1674       gradientTransform="matrix(0.351638,0,0,0.3169371,223.28571,57.688731)"
     1675       x1="-827.12714"
     1676       y1="-386.76682"
     1677       x2="-648.12933"
     1678       y2="-386.76718" />
     1679    <linearGradient
     1680       inkscape:collect="always"
     1681       xlink:href="#linearGradient3787"
     1682       id="linearGradient3956"
     1683       gradientUnits="userSpaceOnUse"
     1684       gradientTransform="matrix(0,-0.1058194,-3.392469e-2,0,45.831997,98.100685)"
     1685       x1="328.47549"
     1686       y1="214.0296"
     1687       x2="328.47549"
     1688       y2="645.03595" />
     1689    <linearGradient
     1690       inkscape:collect="always"
     1691       xlink:href="#linearGradient12236"
     1692       id="linearGradient3958"
     1693       gradientUnits="userSpaceOnUse"
     1694       gradientTransform="matrix(0.1852233,0,0,3.4984285e-3,-87.633755,57.314978)"
     1695       x1="243.3891"
     1696       y1="444.52151"
     1697       x2="366.54971"
     1698       y2="444.52151" />
     1699    <linearGradient
     1700       inkscape:collect="always"
     1701       xlink:href="#linearGradient3787"
     1702       id="linearGradient3960"
     1703       gradientUnits="userSpaceOnUse"
     1704       gradientTransform="matrix(0,-7.2562923e-2,-2.7911376e-2,0,47.905206,24.684952)"
     1705       x1="328.47549"
     1706       y1="214.0296"
     1707       x2="328.47549"
     1708       y2="645.03595" />
     1709    <linearGradient
     1710       inkscape:collect="always"
     1711       xlink:href="#linearGradient12236"
     1712       id="linearGradient3962"
     1713       gradientUnits="userSpaceOnUse"
     1714       gradientTransform="matrix(0.1523916,0,0,2.3989571e-3,-82.297401,-3.2828597)"
     1715       x1="243.3891"
     1716       y1="444.52151"
     1717       x2="366.54971"
     1718       y2="444.52151" />
     1719    <linearGradient
     1720       inkscape:collect="always"
     1721       xlink:href="#linearGradient3787"
     1722       id="linearGradient3964"
     1723       gradientUnits="userSpaceOnUse"
     1724       gradientTransform="matrix(0,-7.2562923e-2,-2.7911376e-2,0,47.905206,24.684952)"
     1725       x1="328.47549"
     1726       y1="214.0296"
     1727       x2="328.47549"
     1728       y2="645.03595" />
     1729    <linearGradient
     1730       inkscape:collect="always"
     1731       xlink:href="#linearGradient12236"
     1732       id="linearGradient3966"
     1733       gradientUnits="userSpaceOnUse"
     1734       gradientTransform="matrix(0.1523916,0,0,2.3989571e-3,-82.297401,-3.2828597)"
     1735       x1="243.3891"
     1736       y1="444.52151"
     1737       x2="366.54971"
     1738       y2="444.52151" />
    1191739  </defs>
    120   <sodipodi:namedview
    121      inkscape:window-height="811"
    122      inkscape:window-width="1272"
    123      inkscape:pageshadow="2"
    124      inkscape:pageopacity="0.0"
    125      guidetolerance="10.0"
    126      gridtolerance="10.0"
    127      objecttolerance="10.0"
    128      borderopacity="1.0"
    129      bordercolor="#666666"
    130      pagecolor="#ffffff"
    131      id="base"
    132      showgrid="true"
    133      showguides="false"
    134      inkscape:zoom="1.5588623"
    135      inkscape:cx="20.050235"
    136      inkscape:cy="198.80041"
    137      inkscape:window-x="0"
    138      inkscape:window-y="67"
    139      inkscape:current-layer="g14168" />
    140   <g
    141      transform="matrix(0,-0.836391,-1.541763,0,1677.8459,0.2488158)"
    142      style="fill:url(#linearGradient21273);fill-opacity:1;fill-rule:nonzero"
    143      id="g14168">
     1740  <g
     1741     transform="matrix(0,-0.836391,-1.541763,0,2835.829,366.99429)"
     1742     style="fill:url(#linearGradient8915);fill-opacity:1;fill-rule:nonzero"
     1743     id="g5069" />
     1744  <g
     1745     transform="matrix(-2.1236907,0,0,2.1771014,2557.357,-1800.2471)"
     1746     id="g6062"
     1747     style="fill:url(#linearGradient8917);fill-opacity:1;fill-rule:nonzero" />
     1748  <g
     1749     transform="matrix(0,-1.2895167,-1.2895167,0,1991.6659,405.8401)"
     1750     style="fill:url(#linearGradient8919);fill-opacity:1;fill-rule:nonzero"
     1751     id="g36698" />
     1752  <g
     1753     transform="matrix(-1.7762357,0,0,3.3565743,1758.7545,-2935.5325)"
     1754     id="g36742"
     1755     style="fill:url(#linearGradient8923);fill-opacity:1;fill-rule:nonzero" />
     1756  <g
     1757     id="g26091"
     1758     style="fill:url(#linearGradient8927);fill-opacity:1;fill-rule:nonzero"
     1759     transform="matrix(0,-0.7158751,-1.5420277,-1.0740741e-8,2221.8504,1132.8102)" />
     1760  <g
     1761     transform="matrix(0,-0.836391,-1.541763,0,2221.6003,1124.5065)"
     1762     id="g3324"
     1763     clip-path="url(#clipPathl)"
     1764     style="fill:url(#linearGradient8931);fill-opacity:1;fill-rule:nonzero">
     1765    <g
     1766       id="g3326"
     1767       style="fill:url(#linearGradient8929)">
     1768      <path
     1769         sodipodi:nodetypes="cc"
     1770         transform="matrix(0,-0.6486081,-1.1956131,0,804.18249,1088.2645)"
     1771         id="path3328"
     1772         d="M 293.75,362.51843 C 335.03358,362.51843 376.19189,362.51843 417.96875,362.51843"
     1773         style="fill:none;stroke:#c0c0c0;stroke-width:10;stroke-opacity:1;filter:url(#filterK)" />
     1774    </g>
     1775  </g>
     1776  <g
     1777     transform="matrix(0,-0.836391,-1.541763,0,2221.6003,1124.5065)"
     1778     id="g3330"
     1779     clip-path="url(#clipPaths)"
     1780     style="fill:url(#linearGradient8935);fill-opacity:1;fill-rule:nonzero">
     1781    <g
     1782       id="g3332"
     1783       style="fill:url(#linearGradient8933)">
     1784      <path
     1785         sodipodi:nodetypes="cc"
     1786         id="path3334"
     1787         d="M 5.6649772,898.15665 C 5.6649772,871.37979 5.6649772,844.68418 5.6649772,817.58737"
     1788         style="fill:none;stroke:#404040;stroke-width:10;stroke-opacity:1;filter:url(#filterv)" />
     1789    </g>
     1790  </g>
     1791  <g
     1792     id="g3688"
     1793     style="fill:url(#linearGradient8937);fill-opacity:1;fill-rule:nonzero"
     1794     transform="matrix(1.2895167,0,0,1.2895175,881.80949,-111.08379)" />
     1795  <g
     1796     transform="translate(543.75417,451.89568)"
     1797     clip-path="url(#clipPathm)"
     1798     id="g5068">
     1799    <g
     1800       id="g5070">
     1801      <path
     1802         sodipodi:nodetypes="cc"
     1803         id="path5072"
     1804         d="M 292.39114,658.61218 C 333.67472,658.61218 374.83303,658.61218 416.60989,658.61218"
     1805         style="fill:none;stroke:#c0c0c0;stroke-width:10;stroke-opacity:1;filter:url(#filterS)" />
     1806    </g>
     1807  </g>
     1808  <g
     1809     transform="translate(543.75417,451.89568)"
     1810     clip-path="url(#clipPathQ)"
     1811     id="g5080">
     1812    <g
     1813       id="g5082">
     1814      <path
     1815         sodipodi:nodetypes="cc"
     1816         id="path5084"
     1817         d="M 293.75006,362.51843 C 335.03364,362.51843 376.19195,362.51843 417.96881,362.51843"
     1818         style="fill:none;stroke:#c0c0c0;stroke-width:10;stroke-opacity:1;filter:url(#filterV)" />
     1819    </g>
     1820  </g>
     1821  <g
     1822     transform="matrix(0,-0.7158751,-1.5420277,-1.0740741e-8,2387.9288,620.84456)"
     1823     style="fill:url(#linearGradient8939);fill-opacity:1;fill-rule:nonzero;stroke:#0000ff;stroke-opacity:1"
     1824     id="g5600" />
     1825  <g
     1826     transform="matrix(0,-0.836391,-1.541763,0,2091.1382,344.84962)"
     1827     style="fill:url(#linearGradient8941);fill-opacity:1;fill-rule:nonzero"
     1828     id="g12980" />
     1829  <g
     1830     transform="matrix(-2.1236907,0,0,2.1771014,1812.6662,-1822.3918)"
     1831     id="g12982"
     1832     style="fill:url(#linearGradient8943);fill-opacity:1;fill-rule:nonzero" />
     1833  <g
     1834     transform="matrix(0,-1.2895167,-1.2895167,0,1246.9752,383.69543)"
     1835     style="fill:url(#linearGradient8945);fill-opacity:1;fill-rule:nonzero"
     1836     id="g12988" />
     1837  <g
     1838     transform="matrix(-1.7762357,0,0,3.3565743,1014.0637,-2957.6772)"
     1839     id="g12990"
     1840     style="fill:url(#linearGradient8947);fill-opacity:1;fill-rule:nonzero" />
     1841  <g
     1842     id="g12992"
     1843     style="fill:url(#linearGradient8949);fill-opacity:1;fill-rule:nonzero"
     1844     transform="matrix(0,-0.7158751,-1.5420277,-1.0740741e-8,1477.1596,1110.6655)" />
     1845  <g
     1846     transform="matrix(0,-0.836391,-1.541763,0,1476.9095,1102.3618)"
     1847     id="g12994"
     1848     clip-path="url(#clipPathl)"
     1849     style="fill:url(#linearGradient8953);fill-opacity:1;fill-rule:nonzero">
     1850    <g
     1851       id="g12996"
     1852       style="fill:url(#linearGradient8951)">
     1853      <path
     1854         sodipodi:nodetypes="cc"
     1855         transform="matrix(0,-0.6486081,-1.1956131,0,804.18249,1088.2645)"
     1856         id="path12998"
     1857         d="M 293.75,362.51843 C 335.03358,362.51843 376.19189,362.51843 417.96875,362.51843"
     1858         style="fill:none;stroke:#c0c0c0;stroke-width:10;stroke-opacity:1;filter:url(#filterK)" />
     1859    </g>
     1860  </g>
     1861  <g
     1862     transform="matrix(0,-0.836391,-1.541763,0,1476.9095,1102.3618)"
     1863     id="g13000"
     1864     clip-path="url(#clipPaths)"
     1865     style="fill:url(#linearGradient8957);fill-opacity:1;fill-rule:nonzero">
     1866    <g
     1867       id="g13002"
     1868       style="fill:url(#linearGradient8955)">
     1869      <path
     1870         sodipodi:nodetypes="cc"
     1871         id="path13004"
     1872         d="M 5.6649772,898.15665 C 5.6649772,871.37979 5.6649772,844.68418 5.6649772,817.58737"
     1873         style="fill:none;stroke:#404040;stroke-width:10;stroke-opacity:1;filter:url(#filterv)" />
     1874    </g>
     1875  </g>
     1876  <g
     1877     id="g13006"
     1878     style="fill:url(#linearGradient8959);fill-opacity:1;fill-rule:nonzero"
     1879     transform="matrix(1.2895167,0,0,1.2895175,137.11863,-133.22846)" />
     1880  <g
     1881     transform="translate(-200.93662,429.75101)"
     1882     clip-path="url(#clipPathm)"
     1883     id="g13008">
     1884    <g
     1885       id="g13010">
     1886      <path
     1887         sodipodi:nodetypes="cc"
     1888         id="path13012"
     1889         d="M 292.39114,658.61218 C 333.67472,658.61218 374.83303,658.61218 416.60989,658.61218"
     1890         style="fill:none;stroke:#c0c0c0;stroke-width:10;stroke-opacity:1;filter:url(#filterS)" />
     1891    </g>
     1892  </g>
     1893  <g
     1894     transform="translate(-200.93662,429.75101)"
     1895     clip-path="url(#clipPathQ)"
     1896     id="g13014">
     1897    <g
     1898       id="g13016">
     1899      <path
     1900         sodipodi:nodetypes="cc"
     1901         id="path13018"
     1902         d="M 293.75006,362.51843 C 335.03364,362.51843 376.19195,362.51843 417.96881,362.51843"
     1903         style="fill:none;stroke:#c0c0c0;stroke-width:10;stroke-opacity:1;filter:url(#filterV)" />
     1904    </g>
     1905  </g>
     1906  <g
     1907     transform="matrix(0,-0.7158751,-1.5420277,-1.0740741e-8,1643.238,598.69989)"
     1908     style="fill:url(#linearGradient8961);fill-opacity:1;fill-rule:nonzero;stroke:#0000ff;stroke-opacity:1"
     1909     id="g13020" />
     1910  <g
     1911     transform="matrix(0,-0.836391,-1.541763,0,2683.0514,1973.8975)"
     1912     style="fill:url(#linearGradient9017);fill-opacity:1;fill-rule:nonzero"
     1913     id="g9322" />
     1914  <g
     1915     transform="matrix(-2.1236907,0,0,2.1771014,2404.5794,-193.34357)"
     1916     id="g9324"
     1917     style="fill:url(#linearGradient9019);fill-opacity:1;fill-rule:nonzero" />
     1918  <g
     1919     transform="matrix(0,-1.2895167,-1.2895167,0,1838.8883,2012.7434)"
     1920     style="fill:url(#linearGradient9021);fill-opacity:1;fill-rule:nonzero"
     1921     id="g9364" />
     1922  <g
     1923     transform="matrix(-1.7762357,0,0,3.3565743,1605.9769,-1328.6291)"
     1924     id="g9368"
     1925     style="fill:url(#linearGradient9023);fill-opacity:1;fill-rule:nonzero" />
     1926  <g
     1927     id="g9392"
     1928     style="fill:url(#linearGradient9025);fill-opacity:1;fill-rule:nonzero"
     1929     transform="matrix(0,-0.7158751,-1.5420277,-1.0740741e-8,2069.0728,2739.7136)" />
     1930  <g
     1931     transform="matrix(0,-0.836391,-1.541763,0,2068.8227,2731.4099)"
     1932     id="g9394"
     1933     clip-path="url(#clipPathl)"
     1934     style="fill:url(#linearGradient9029);fill-opacity:1;fill-rule:nonzero">
     1935    <g
     1936       id="g9396"
     1937       style="fill:url(#linearGradient9027)">
     1938      <path
     1939         sodipodi:nodetypes="cc"
     1940         transform="matrix(0,-0.6486081,-1.1956131,0,804.18249,1088.2645)"
     1941         id="path9398"
     1942         d="M 293.75,362.51843 C 335.03358,362.51843 376.19189,362.51843 417.96875,362.51843"
     1943         style="fill:none;stroke:#c0c0c0;stroke-width:10;stroke-opacity:1;filter:url(#filterK)" />
     1944    </g>
     1945  </g>
     1946  <g
     1947     transform="matrix(0,-0.836391,-1.541763,0,2068.8227,2731.4099)"
     1948     id="g9400"
     1949     clip-path="url(#clipPaths)"
     1950     style="fill:url(#linearGradient9033);fill-opacity:1;fill-rule:nonzero">
     1951    <g
     1952       id="g9402"
     1953       style="fill:url(#linearGradient9031)">
     1954      <path
     1955         sodipodi:nodetypes="cc"
     1956         id="path9404"
     1957         d="M 5.6649772,898.15665 C 5.6649772,871.37979 5.6649772,844.68418 5.6649772,817.58737"
     1958         style="fill:none;stroke:#404040;stroke-width:10;stroke-opacity:1;filter:url(#filterv)" />
     1959    </g>
     1960  </g>
     1961  <g
     1962     id="g9406"
     1963     style="fill:url(#linearGradient9035);fill-opacity:1;fill-rule:nonzero"
     1964     transform="matrix(1.2895167,0,0,1.2895175,729.0318,1495.8195)" />
     1965  <g
     1966     transform="translate(390.97655,2058.7989)"
     1967     clip-path="url(#clipPathm)"
     1968     id="g9408">
     1969    <g
     1970       id="g9410">
     1971      <path
     1972         sodipodi:nodetypes="cc"
     1973         id="path9412"
     1974         d="M 292.39114,658.61218 C 333.67472,658.61218 374.83303,658.61218 416.60989,658.61218"
     1975         style="fill:none;stroke:#c0c0c0;stroke-width:10;stroke-opacity:1;filter:url(#filterS)" />
     1976    </g>
     1977  </g>
     1978  <g
     1979     transform="translate(390.97655,2058.7989)"
     1980     clip-path="url(#clipPathQ)"
     1981     id="g9414">
     1982    <g
     1983       id="g9416">
     1984      <path
     1985         sodipodi:nodetypes="cc"
     1986         id="path9418"
     1987         d="M 293.75006,362.51843 C 335.03364,362.51843 376.19195,362.51843 417.96881,362.51843"
     1988         style="fill:none;stroke:#c0c0c0;stroke-width:10;stroke-opacity:1;filter:url(#filterV)" />
     1989    </g>
     1990  </g>
     1991  <g
     1992     transform="matrix(0,-0.7158751,-1.5420277,-1.0740741e-8,2235.1512,2227.7478)"
     1993     style="fill:url(#linearGradient9037);fill-opacity:1;fill-rule:nonzero;stroke:#0000ff;stroke-opacity:1"
     1994     id="g9423" />
     1995  <g
     1996     transform="matrix(0,-0.836391,-1.541763,0,712.01893,434.02559)"
     1997     style="fill:url(#linearGradient9041);fill-opacity:1;fill-rule:nonzero"
     1998     id="g7069" />
     1999  <g
     2000     transform="matrix(-2.1236907,0,0,2.1771014,433.54692,-1733.2158)"
     2001     id="g7108"
     2002     style="fill:url(#linearGradient9043);fill-opacity:1;fill-rule:nonzero" />
     2003  <g
     2004     id="g3765"
     2005     style="fill:url(#linearGradient9045);fill-opacity:1;fill-rule:nonzero"
     2006     transform="matrix(0,-0.9131902,-1.7193912,0,1608.5082,357.53191)" />
     2007  <g
     2008     id="g5937"
     2009     style="fill:url(#linearGradient6487);fill-opacity:1;fill-rule:nonzero"
     2010     transform="matrix(1.158344e-8,-0.836391,-1.541764,0,1532.1049,60.5632)" />
     2011  <g
     2012     transform="matrix(0,-0.836391,1.541763,0,-1401.104,-354.90642)"
     2013     style="fill:url(#linearGradient6489);fill-opacity:1;fill-rule:nonzero"
     2014     id="g5911" />
     2015  <g
     2016     transform="matrix(2.1236907,0,0,2.1771014,-1122.632,-2522.1478)"
     2017     id="g5940"
     2018     style="fill:url(#linearGradient6491);fill-opacity:1;fill-rule:nonzero" />
     2019  <g
     2020     transform="matrix(0,-1.2895167,1.2895167,0,-556.941,-316.06061)"
     2021     style="fill:url(#linearGradient6493);fill-opacity:1;fill-rule:nonzero"
     2022     id="g5942" />
     2023  <g
     2024     transform="matrix(1.7762357,0,0,3.3565743,-324.02953,-3657.4332)"
     2025     id="g5944"
     2026     style="fill:url(#linearGradient6495);fill-opacity:1;fill-rule:nonzero" />
     2027  <g
     2028     id="g5946"
     2029     style="fill:url(#linearGradient6497);fill-opacity:1;fill-rule:nonzero"
     2030     transform="matrix(0,-0.7158751,1.5420277,-1.0740741e-8,-787.12541,410.90969)" />
     2031  <g
     2032     transform="matrix(0,-0.836391,1.541763,0,-786.87531,402.60599)"
     2033     id="g5948"
     2034     clip-path="url(#clipPathl)"
     2035     style="fill:url(#linearGradient6501);fill-opacity:1;fill-rule:nonzero">
     2036    <g
     2037       id="g5950"
     2038       style="fill:url(#linearGradient6499)">
     2039      <path
     2040         sodipodi:nodetypes="cc"
     2041         transform="matrix(0,-0.6486081,-1.1956131,0,804.18249,1088.2645)"
     2042         id="path5952"
     2043         d="M 293.75,362.51843 C 335.03358,362.51843 376.19189,362.51843 417.96875,362.51843"
     2044         style="fill:none;stroke:#c0c0c0;stroke-width:10;stroke-opacity:1;filter:url(#filterK)" />
     2045    </g>
     2046  </g>
     2047  <g
     2048     transform="matrix(0,-0.836391,1.541763,0,-786.87531,402.60599)"
     2049     id="g5954"
     2050     clip-path="url(#clipPaths)"
     2051     style="fill:url(#linearGradient6505);fill-opacity:1;fill-rule:nonzero">
     2052    <g
     2053       id="g5956"
     2054       style="fill:url(#linearGradient6503)">
     2055      <path
     2056         sodipodi:nodetypes="cc"
     2057         id="path5958"
     2058         d="M 5.6649772,898.15665 C 5.6649772,871.37979 5.6649772,844.68418 5.6649772,817.58737"
     2059         style="fill:none;stroke:#404040;stroke-width:10;stroke-opacity:1;filter:url(#filterv)" />
     2060    </g>
     2061  </g>
     2062  <g
     2063     id="g5960"
     2064     style="fill:url(#linearGradient6507);fill-opacity:1;fill-rule:nonzero"
     2065     transform="matrix(-1.2895167,0,0,1.2895175,552.91549,-832.9845)" />
     2066  <g
     2067     transform="matrix(-1,0,0,1,890.97071,-270.00503)"
     2068     clip-path="url(#clipPathm)"
     2069     id="g5962">
     2070    <g
     2071       id="g5964">
     2072      <path
     2073         sodipodi:nodetypes="cc"
     2074         id="path5966"
     2075         d="M 292.39114,658.61218 C 333.67472,658.61218 374.83303,658.61218 416.60989,658.61218"
     2076         style="fill:none;stroke:#c0c0c0;stroke-width:10;stroke-opacity:1;filter:url(#filterS)" />
     2077    </g>
     2078  </g>
     2079  <g
     2080     transform="matrix(-1,0,0,1,890.97071,-270.00503)"
     2081     clip-path="url(#clipPathQ)"
     2082     id="g5968">
     2083    <g
     2084       id="g5970">
     2085      <path
     2086         sodipodi:nodetypes="cc"
     2087         id="path5972"
     2088         d="M 293.75006,362.51843 C 335.03364,362.51843 376.19195,362.51843 417.96881,362.51843"
     2089         style="fill:none;stroke:#c0c0c0;stroke-width:10;stroke-opacity:1;filter:url(#filterV)" />
     2090    </g>
     2091  </g>
     2092  <g
     2093     transform="matrix(0,-0.7158751,1.5420277,-1.0740741e-8,-953.20382,-101.05615)"
     2094     style="fill:url(#linearGradient6509);fill-opacity:1;fill-rule:nonzero;stroke:#0000ff;stroke-opacity:1"
     2095     id="g5974" />
     2096  <g
     2097     transform="matrix(0,-0.836391,-1.541763,0,1569.9037,-260.79562)"
     2098     style="fill:url(#linearGradient6511);fill-opacity:1;fill-rule:nonzero"
     2099     id="g2932" />
     2100  <g
     2101     transform="matrix(-2.1236907,0,0,2.1771014,1291.4317,-2428.037)"
     2102     id="g2934"
     2103     style="fill:url(#linearGradient6513);fill-opacity:1;fill-rule:nonzero" />
     2104  <g
     2105     transform="matrix(0,-1.2895167,-1.2895167,0,725.74064,-221.94981)"
     2106     style="fill:url(#linearGradient6515);fill-opacity:1;fill-rule:nonzero"
     2107     id="g2938" />
     2108  <g
     2109     transform="matrix(-1.7762357,0,0,3.3565743,492.82917,-3563.3224)"
     2110     id="g2940"
     2111     style="fill:url(#linearGradient6517);fill-opacity:1;fill-rule:nonzero" />
     2112  <g
     2113     id="g2942"
     2114     style="fill:url(#linearGradient6519);fill-opacity:1;fill-rule:nonzero"
     2115     transform="matrix(0,-0.7158751,-1.5420277,-1.0740741e-8,955.92504,505.02045)" />
     2116  <g
     2117     transform="matrix(0,-0.836391,-1.541763,0,955.67494,496.71675)"
     2118     id="g2944"
     2119     clip-path="url(#clipPathl)"
     2120     style="fill:url(#linearGradient6523);fill-opacity:1;fill-rule:nonzero">
     2121    <g
     2122       id="g2946"
     2123       style="fill:url(#linearGradient6521)">
     2124      <path
     2125         sodipodi:nodetypes="cc"
     2126         transform="matrix(0,-0.6486081,-1.1956131,0,804.18249,1088.2645)"
     2127         id="path2948"
     2128         d="M 293.75,362.51843 C 335.03358,362.51843 376.19189,362.51843 417.96875,362.51843"
     2129         style="fill:none;stroke:#c0c0c0;stroke-width:10;stroke-opacity:1;filter:url(#filterK)" />
     2130    </g>
     2131  </g>
     2132  <g
     2133     transform="matrix(0,-0.836391,-1.541763,0,955.67494,496.71675)"
     2134     id="g2950"
     2135     clip-path="url(#clipPaths)"
     2136     style="fill:url(#linearGradient6527);fill-opacity:1;fill-rule:nonzero">
     2137    <g
     2138       id="g2952"
     2139       style="fill:url(#linearGradient6525)">
     2140      <path
     2141         sodipodi:nodetypes="cc"
     2142         id="path2954"
     2143         d="M 5.6649772,898.15665 C 5.6649772,871.37979 5.6649772,844.68418 5.6649772,817.58737"
     2144         style="fill:none;stroke:#404040;stroke-width:10;stroke-opacity:1;filter:url(#filterv)" />
     2145    </g>
     2146  </g>
     2147  <g
     2148     id="g2956"
     2149     style="fill:url(#linearGradient6529);fill-opacity:1;fill-rule:nonzero"
     2150     transform="matrix(1.2895167,0,0,1.2895175,-384.11585,-738.8737)" />
     2151  <g
     2152     transform="translate(-722.1711,-175.89423)"
     2153     clip-path="url(#clipPathm)"
     2154     id="g2958">
     2155    <g
     2156       id="g2960">
     2157      <path
     2158         sodipodi:nodetypes="cc"
     2159         id="path2962"
     2160         d="M 292.39114,658.61218 C 333.67472,658.61218 374.83303,658.61218 416.60989,658.61218"
     2161         style="fill:none;stroke:#c0c0c0;stroke-width:10;stroke-opacity:1;filter:url(#filterS)" />
     2162    </g>
     2163  </g>
     2164  <g
     2165     transform="translate(-722.1711,-175.89423)"
     2166     clip-path="url(#clipPathQ)"
     2167     id="g2964">
     2168    <g
     2169       id="g2966">
     2170      <path
     2171         sodipodi:nodetypes="cc"
     2172         id="path2968"
     2173         d="M 293.75006,362.51843 C 335.03364,362.51843 376.19195,362.51843 417.96881,362.51843"
     2174         style="fill:none;stroke:#c0c0c0;stroke-width:10;stroke-opacity:1;filter:url(#filterV)" />
     2175    </g>
     2176  </g>
     2177  <g
     2178     transform="matrix(0,-0.7158751,-1.5420277,-1.0740741e-8,1122.0035,-6.9453306)"
     2179     style="fill:url(#linearGradient6531);fill-opacity:1;fill-rule:nonzero;stroke:#0000ff;stroke-opacity:1"
     2180     id="g2970" />
     2181  <g
     2182     transform="matrix(1.727169,0,0,1.666775,-596.57676,-1487.662)"
     2183     id="g4653"
     2184     style="fill:url(#linearGradient6533);fill-opacity:1;fill-rule:nonzero" />
     2185  <g
     2186     transform="matrix(0,-2.0833608,-3.4908256,0,6368.8831,683.62467)"
     2187     style="fill:url(#linearGradient6535);fill-opacity:1;fill-rule:nonzero"
     2188     id="g4655" />
     2189  <g
     2190     transform="matrix(-4.8084133,0,0,5.4229275,5738.373,-4714.7425)"
     2191     id="g16167"
     2192     style="fill:url(#linearGradient6537);fill-opacity:1;fill-rule:nonzero" />
     2193  <g
     2194     transform="matrix(0,-3.2120486,-2.9196951,0,4457.5478,780.38544)"
     2195     style="fill:url(#linearGradient6539);fill-opacity:1;fill-rule:nonzero"
     2196     id="g4658" />
     2197  <g
     2198     transform="matrix(-4.0217134,0,0,8.3608688,3930.195,-7542.6174)"
     2199     id="g4660"
     2200     style="fill:url(#linearGradient6541);fill-opacity:1;fill-rule:nonzero" />
     2201  <g
     2202     id="g4662"
     2203     style="fill:url(#linearGradient6543);fill-opacity:1;fill-rule:nonzero"
     2204     transform="matrix(0,-1.7831686,-3.4914249,-2.6754041e-8,4978.7264,2591.1905)" />
     2205  <g
     2206     transform="matrix(0,-2.0833608,-3.4908256,0,4978.1602,2570.5069)"
     2207     id="g4664"
     2208     clip-path="url(#clipPathl)"
     2209     style="fill:url(#linearGradient6547);fill-opacity:1;fill-rule:nonzero">
     2210    <g
     2211       id="g4666"
     2212       style="fill:url(#linearGradient6545)">
     2213      <path
     2214         sodipodi:nodetypes="cc"
     2215         transform="matrix(0,-0.6486081,-1.1956131,0,804.18249,1088.2645)"
     2216         id="path4668"
     2217         d="M 293.75,362.51843 C 335.03358,362.51843 376.19189,362.51843 417.96875,362.51843"
     2218         style="fill:none;stroke:#c0c0c0;stroke-width:10;stroke-opacity:1;filter:url(#filterK)" />
     2219    </g>
     2220  </g>
     2221  <g
     2222     transform="matrix(0,-2.0833608,-3.4908256,0,4978.1602,2570.5069)"
     2223     id="g4670"
     2224     clip-path="url(#clipPaths)"
     2225     style="fill:url(#linearGradient6551);fill-opacity:1;fill-rule:nonzero">
     2226    <g
     2227       id="g4672"
     2228       style="fill:url(#linearGradient6549)">
     2229      <path
     2230         sodipodi:nodetypes="cc"
     2231         id="path4674"
     2232         d="M 5.6649772,898.15665 C 5.6649772,871.37979 5.6649772,844.68418 5.6649772,817.58737"
     2233         style="fill:none;stroke:#404040;stroke-width:10;stroke-opacity:1;filter:url(#filterv)" />
     2234    </g>
     2235  </g>
     2236  <g
     2237     id="g4676"
     2238     style="fill:url(#linearGradient6553);fill-opacity:1;fill-rule:nonzero"
     2239     transform="matrix(2.9196951,0,0,3.2120506,1944.6356,-507.21687)" />
     2240  <g
     2241     transform="matrix(2.2641778,0,0,2.4908934,1179.2184,895.10498)"
     2242     clip-path="url(#clipPathm)"
     2243     id="g4678">
     2244    <g
     2245       id="g4680">
     2246      <path
     2247         sodipodi:nodetypes="cc"
     2248         id="path4682"
     2249         d="M 292.39114,658.61218 C 333.67472,658.61218 374.83303,658.61218 416.60989,658.61218"
     2250         style="fill:none;stroke:#c0c0c0;stroke-width:10;stroke-opacity:1;filter:url(#filterS)" />
     2251    </g>
     2252  </g>
     2253  <g
     2254     transform="matrix(2.2641778,0,0,2.4908934,1179.2184,895.10498)"
     2255     clip-path="url(#clipPathQ)"
     2256     id="g4684">
     2257    <g
     2258       id="g4686">
     2259      <path
     2260         sodipodi:nodetypes="cc"
     2261         id="path4688"
     2262         d="M 293.75006,362.51843 C 335.03364,362.51843 376.19195,362.51843 417.96881,362.51843"
     2263         style="fill:none;stroke:#c0c0c0;stroke-width:10;stroke-opacity:1;filter:url(#filterV)" />
     2264    </g>
     2265  </g>
     2266  <g
     2267     transform="matrix(0,-1.7831686,-3.4914249,-2.6754041e-8,5354.7575,1315.9386)"
     2268     style="fill:url(#linearGradient6555);fill-opacity:1;fill-rule:nonzero;stroke:#0000ff;stroke-opacity:1"
     2269     id="g4690" />
     2270  <g
     2271     transform="matrix(0,-2.0833608,-3.4908256,0,4682.7708,628.46465)"
     2272     style="fill:url(#linearGradient6557);fill-opacity:1;fill-rule:nonzero"
     2273     id="g6028" />
     2274  <g
     2275     transform="matrix(-4.8084133,0,0,5.4229275,4052.2606,-4769.9026)"
     2276     id="g6030"
     2277     style="fill:url(#linearGradient6559);fill-opacity:1;fill-rule:nonzero" />
     2278  <g
     2279     transform="matrix(0,-3.2120486,-2.9196951,0,2771.4356,725.22543)"
     2280     style="fill:url(#linearGradient6561);fill-opacity:1;fill-rule:nonzero"
     2281     id="g6032" />
     2282  <g
     2283     transform="matrix(-4.0217134,0,0,8.3608688,2244.0826,-7597.7775)"
     2284     id="g6034"
     2285     style="fill:url(#linearGradient6563);fill-opacity:1;fill-rule:nonzero" />
     2286  <g
     2287     id="g6036"
     2288     style="fill:url(#linearGradient6565);fill-opacity:1;fill-rule:nonzero"
     2289     transform="matrix(0,-1.7831686,-3.4914249,-2.6754041e-8,3292.6141,2536.0305)" />
     2290  <g
     2291     transform="matrix(0,-2.0833608,-3.4908256,0,3292.0478,2515.3468)"
     2292     id="g6038"
     2293     clip-path="url(#clipPathl)"
     2294     style="fill:url(#linearGradient6569);fill-opacity:1;fill-rule:nonzero">
     2295    <g
     2296       id="g6040"
     2297       style="fill:url(#linearGradient6567)">
     2298      <path
     2299         sodipodi:nodetypes="cc"
     2300         transform="matrix(0,-0.6486081,-1.1956131,0,804.18249,1088.2645)"
     2301         id="path6042"
     2302         d="M 293.75,362.51843 C 335.03358,362.51843 376.19189,362.51843 417.96875,362.51843"
     2303         style="fill:none;stroke:#c0c0c0;stroke-width:10;stroke-opacity:1;filter:url(#filterK)" />
     2304    </g>
     2305  </g>
     2306  <g
     2307     transform="matrix(0,-2.0833608,-3.4908256,0,3292.0478,2515.3468)"
     2308     id="g6044"
     2309     clip-path="url(#clipPaths)"
     2310     style="fill:url(#linearGradient6573);fill-opacity:1;fill-rule:nonzero">
     2311    <g
     2312       id="g6046"
     2313       style="fill:url(#linearGradient6571)">
     2314      <path
     2315         sodipodi:nodetypes="cc"
     2316         id="path6048"
     2317         d="M 5.6649772,898.15665 C 5.6649772,871.37979 5.6649772,844.68418 5.6649772,817.58737"
     2318         style="fill:none;stroke:#404040;stroke-width:10;stroke-opacity:1;filter:url(#filterv)" />
     2319    </g>
     2320  </g>
     2321  <g
     2322     id="g6050"
     2323     style="fill:url(#linearGradient6575);fill-opacity:1;fill-rule:nonzero"
     2324     transform="matrix(2.9196951,0,0,3.2120506,258.52316,-562.37688)" />
     2325  <g
     2326     transform="matrix(2.2641778,0,0,2.4908934,-506.89403,839.94497)"
     2327     clip-path="url(#clipPathm)"
     2328     id="g6052">
     2329    <g
     2330       id="g6054">
     2331      <path
     2332         sodipodi:nodetypes="cc"
     2333         id="path6056"
     2334         d="M 292.39114,658.61218 C 333.67472,658.61218 374.83303,658.61218 416.60989,658.61218"
     2335         style="fill:none;stroke:#c0c0c0;stroke-width:10;stroke-opacity:1;filter:url(#filterS)" />
     2336    </g>
     2337  </g>
     2338  <g
     2339     transform="matrix(2.2641778,0,0,2.4908934,-506.89403,839.94497)"
     2340     clip-path="url(#clipPathQ)"
     2341     id="g6058">
     2342    <g
     2343       id="g6060">
     2344      <path
     2345         sodipodi:nodetypes="cc"
     2346         id="path6062"
     2347         d="M 293.75006,362.51843 C 335.03364,362.51843 376.19195,362.51843 417.96881,362.51843"
     2348         style="fill:none;stroke:#c0c0c0;stroke-width:10;stroke-opacity:1;filter:url(#filterV)" />
     2349    </g>
     2350  </g>
     2351  <g
     2352     transform="matrix(0,-1.7831686,-3.4914249,-2.6754041e-8,3668.6451,1260.7785)"
     2353     style="fill:url(#linearGradient6577);fill-opacity:1;fill-rule:nonzero;stroke:#0000ff;stroke-opacity:1"
     2354     id="g6064" />
     2355  <g
     2356     transform="matrix(0,-2.0833608,-3.4908256,0,6022.9675,4686.2493)"
     2357     style="fill:url(#linearGradient6579);fill-opacity:1;fill-rule:nonzero"
     2358     id="g6066" />
     2359  <g
     2360     transform="matrix(-4.8084133,0,0,5.4229275,5392.4574,-712.11721)"
     2361     id="g6068"
     2362     style="fill:url(#linearGradient6581);fill-opacity:1;fill-rule:nonzero" />
     2363  <g
     2364     transform="matrix(0,-3.2120486,-2.9196951,0,4111.6321,4783.0103)"
     2365     style="fill:url(#linearGradient6583);fill-opacity:1;fill-rule:nonzero"
     2366     id="g6070" />
     2367  <g
     2368     transform="matrix(-4.0217134,0,0,8.3608688,3584.2793,-3539.9924)"
     2369     id="g6072"
     2370     style="fill:url(#linearGradient6585);fill-opacity:1;fill-rule:nonzero" />
     2371  <g
     2372     id="g6074"
     2373     style="fill:url(#linearGradient6587);fill-opacity:1;fill-rule:nonzero"
     2374     transform="matrix(0,-1.7831686,-3.4914249,-2.6754041e-8,4632.8108,6593.8156)" />
     2375  <g
     2376     transform="matrix(0,-2.0833608,-3.4908256,0,4632.2445,6573.132)"
     2377     id="g6076"
     2378     clip-path="url(#clipPathl)"
     2379     style="fill:url(#linearGradient6591);fill-opacity:1;fill-rule:nonzero">
     2380    <g
     2381       id="g6078"
     2382       style="fill:url(#linearGradient6589)">
     2383      <path
     2384         sodipodi:nodetypes="cc"
     2385         transform="matrix(0,-0.6486081,-1.1956131,0,804.18249,1088.2645)"
     2386         id="path6080"
     2387         d="M 293.75,362.51843 C 335.03358,362.51843 376.19189,362.51843 417.96875,362.51843"
     2388         style="fill:none;stroke:#c0c0c0;stroke-width:10;stroke-opacity:1;filter:url(#filterK)" />
     2389    </g>
     2390  </g>
     2391  <g
     2392     transform="matrix(0,-2.0833608,-3.4908256,0,4632.2445,6573.132)"
     2393     id="g6082"
     2394     clip-path="url(#clipPaths)"
     2395     style="fill:url(#linearGradient6595);fill-opacity:1;fill-rule:nonzero">
     2396    <g
     2397       id="g6084"
     2398       style="fill:url(#linearGradient6593)">
     2399      <path
     2400         sodipodi:nodetypes="cc"
     2401         id="path6086"
     2402         d="M 5.6649772,898.15665 C 5.6649772,871.37979 5.6649772,844.68418 5.6649772,817.58737"
     2403         style="fill:none;stroke:#404040;stroke-width:10;stroke-opacity:1;filter:url(#filterv)" />
     2404    </g>
     2405  </g>
     2406  <g
     2407     id="g6088"
     2408     style="fill:url(#linearGradient6597);fill-opacity:1;fill-rule:nonzero"
     2409     transform="matrix(2.9196951,0,0,3.2120506,1598.7199,3495.4081)" />
     2410  <g
     2411     transform="matrix(2.2641778,0,0,2.4908934,833.30263,4897.7297)"
     2412     clip-path="url(#clipPathm)"
     2413     id="g6090">
     2414    <g
     2415       id="g6092">
     2416      <path
     2417         sodipodi:nodetypes="cc"
     2418         id="path6094"
     2419         d="M 292.39114,658.61218 C 333.67472,658.61218 374.83303,658.61218 416.60989,658.61218"
     2420         style="fill:none;stroke:#c0c0c0;stroke-width:10;stroke-opacity:1;filter:url(#filterS)" />
     2421    </g>
     2422  </g>
     2423  <g
     2424     transform="matrix(2.2641778,0,0,2.4908934,833.30263,4897.7297)"
     2425     clip-path="url(#clipPathQ)"
     2426     id="g6096">
     2427    <g
     2428       id="g6098">
     2429      <path
     2430         sodipodi:nodetypes="cc"
     2431         id="path6100"
     2432         d="M 293.75006,362.51843 C 335.03364,362.51843 376.19195,362.51843 417.96881,362.51843"
     2433         style="fill:none;stroke:#c0c0c0;stroke-width:10;stroke-opacity:1;filter:url(#filterV)" />
     2434    </g>
     2435  </g>
     2436  <g
     2437     transform="matrix(0,-1.7831686,-3.4914249,-2.6754041e-8,5008.8418,5318.5634)"
     2438     style="fill:url(#linearGradient6599);fill-opacity:1;fill-rule:nonzero;stroke:#0000ff;stroke-opacity:1"
     2439     id="g6102" />
     2440  <g
     2441     transform="matrix(0,-2.0833608,-3.4908256,0,3563.0945,684.75987)"
     2442     style="fill:url(#linearGradient6601);fill-opacity:1;fill-rule:nonzero"
     2443     id="g11595" />
     2444  <g
     2445     transform="matrix(-4.8084133,0,0,5.4229275,2932.5844,-4713.6072)"
     2446     id="g11597"
     2447     style="fill:url(#linearGradient6603);fill-opacity:1;fill-rule:nonzero" />
     2448  <g
     2449     transform="matrix(0,-3.2120486,-2.9196951,0,1651.7594,781.52064)"
     2450     style="fill:url(#linearGradient6605);fill-opacity:1;fill-rule:nonzero"
     2451     id="g11601" />
     2452  <g
     2453     transform="matrix(-4.0217134,0,0,8.3608688,1124.4065,-7541.4821)"
     2454     id="g11603"
     2455     style="fill:url(#linearGradient6607);fill-opacity:1;fill-rule:nonzero" />
     2456  <g
     2457     id="g11605"
     2458     style="fill:url(#linearGradient6609);fill-opacity:1;fill-rule:nonzero"
     2459     transform="matrix(0,-1.7831686,-3.4914249,-2.6754041e-8,2172.9378,2592.3259)" />
     2460  <g
     2461     transform="matrix(0,-2.0833608,-3.4908256,0,2172.3715,2571.6423)"
     2462     id="g11607"
     2463     clip-path="url(#clipPathl)"
     2464     style="fill:url(#linearGradient6613);fill-opacity:1;fill-rule:nonzero">
     2465    <g
     2466       id="g11609"
     2467       style="fill:url(#linearGradient6611)">
     2468      <path
     2469         sodipodi:nodetypes="cc"
     2470         transform="matrix(0,-0.6486081,-1.1956131,0,804.18249,1088.2645)"
     2471         id="path11611"
     2472         d="M 293.75,362.51843 C 335.03358,362.51843 376.19189,362.51843 417.96875,362.51843"
     2473         style="fill:none;stroke:#c0c0c0;stroke-width:10;stroke-opacity:1;filter:url(#filterK)" />
     2474    </g>
     2475  </g>
     2476  <g
     2477     transform="matrix(0,-2.0833608,-3.4908256,0,2172.3715,2571.6423)"
     2478     id="g11613"
     2479     clip-path="url(#clipPaths)"
     2480     style="fill:url(#linearGradient6617);fill-opacity:1;fill-rule:nonzero">
     2481    <g
     2482       id="g11615"
     2483       style="fill:url(#linearGradient6615)">
     2484      <path
     2485         sodipodi:nodetypes="cc"
     2486         id="path11617"
     2487         d="M 5.6649772,898.15665 C 5.6649772,871.37979 5.6649772,844.68418 5.6649772,817.58737"
     2488         style="fill:none;stroke:#404040;stroke-width:10;stroke-opacity:1;filter:url(#filterv)" />
     2489    </g>
     2490  </g>
     2491  <g
     2492     id="g11619"
     2493     style="fill:url(#linearGradient6619);fill-opacity:1;fill-rule:nonzero"
     2494     transform="matrix(2.9196951,0,0,3.2120506,-861.15302,-506.08167)" />
     2495  <g
     2496     transform="matrix(2.2641778,0,0,2.4908934,-1626.5702,896.24018)"
     2497     clip-path="url(#clipPathm)"
     2498     id="g11621">
     2499    <g
     2500       id="g11623">
     2501      <path
     2502         sodipodi:nodetypes="cc"
     2503         id="path11625"
     2504         d="M 292.39114,658.61218 C 333.67472,658.61218 374.83303,658.61218 416.60989,658.61218"
     2505         style="fill:none;stroke:#c0c0c0;stroke-width:10;stroke-opacity:1;filter:url(#filterS)" />
     2506    </g>
     2507  </g>
     2508  <g
     2509     transform="matrix(2.2641778,0,0,2.4908934,-1626.5702,896.24018)"
     2510     clip-path="url(#clipPathQ)"
     2511     id="g11627">
     2512    <g
     2513       id="g11629">
     2514      <path
     2515         sodipodi:nodetypes="cc"
     2516         id="path11631"
     2517         d="M 293.75006,362.51843 C 335.03364,362.51843 376.19195,362.51843 417.96881,362.51843"
     2518         style="fill:none;stroke:#c0c0c0;stroke-width:10;stroke-opacity:1;filter:url(#filterV)" />
     2519    </g>
     2520  </g>
     2521  <g
     2522     transform="matrix(0,-1.7831686,-3.4914249,-2.6754041e-8,2548.9689,1317.0738)"
     2523     style="fill:url(#linearGradient6621);fill-opacity:1;fill-rule:nonzero;stroke:#0000ff;stroke-opacity:1"
     2524     id="g11633" />
     2525  <g
     2526     transform="matrix(0,-0.836391,-1.541763,0,2773.2064,342.47906)"
     2527     style="fill:url(#linearGradient6623);fill-opacity:1;fill-rule:nonzero"
     2528     id="g3294" />
     2529  <g
     2530     transform="matrix(-2.1236907,0,0,2.1771014,2494.7344,-1824.7623)"
     2531     id="g3296"
     2532     style="fill:url(#linearGradient6625);fill-opacity:1;fill-rule:nonzero" />
     2533  <g
     2534     transform="matrix(0,-1.2895167,-1.2895167,0,1929.0433,381.32487)"
     2535     style="fill:url(#linearGradient6627);fill-opacity:1;fill-rule:nonzero"
     2536     id="g3298" />
     2537  <g
     2538     transform="matrix(-1.7762357,0,0,3.3565743,1696.1319,-2960.0478)"
     2539     id="g3300"
     2540     style="fill:url(#linearGradient6629);fill-opacity:1;fill-rule:nonzero" />
     2541  <g
     2542     id="g3302"
     2543     style="fill:url(#linearGradient6631);fill-opacity:1;fill-rule:nonzero"
     2544     transform="matrix(0,-0.7158751,-1.5420277,-1.0740741e-8,2159.2278,1108.295)" />
     2545  <g
     2546     transform="matrix(0,-0.836391,-1.541763,0,2158.9777,1099.9913)"
     2547     id="g3304"
     2548     clip-path="url(#clipPathl)"
     2549     style="fill:url(#linearGradient6635);fill-opacity:1;fill-rule:nonzero">
     2550    <g
     2551       id="g3306"
     2552       style="fill:url(#linearGradient6633)">
     2553      <path
     2554         sodipodi:nodetypes="cc"
     2555         transform="matrix(0,-0.6486081,-1.1956131,0,804.18249,1088.2645)"
     2556         id="path3308"
     2557         d="M 293.75,362.51843 C 335.03358,362.51843 376.19189,362.51843 417.96875,362.51843"
     2558         style="fill:none;stroke:#c0c0c0;stroke-width:10;stroke-opacity:1;filter:url(#filterK)" />
     2559    </g>
     2560  </g>
     2561  <g
     2562     transform="matrix(0,-0.836391,-1.541763,0,2158.9777,1099.9913)"
     2563     id="g3310"
     2564     clip-path="url(#clipPaths)"
     2565     style="fill:url(#linearGradient6639);fill-opacity:1;fill-rule:nonzero">
     2566    <g
     2567       id="g3312"
     2568       style="fill:url(#linearGradient6637)">
     2569      <path
     2570         sodipodi:nodetypes="cc"
     2571         id="path3314"
     2572         d="M 5.6649772,898.15665 C 5.6649772,871.37979 5.6649772,844.68418 5.6649772,817.58737"
     2573         style="fill:none;stroke:#404040;stroke-width:10;stroke-opacity:1;filter:url(#filterv)" />
     2574    </g>
     2575  </g>
     2576  <g
     2577     id="g3316"
     2578     style="fill:url(#linearGradient6641);fill-opacity:1;fill-rule:nonzero"
     2579     transform="matrix(1.2895167,0,0,1.2895175,819.18691,-135.59902)" />
     2580  <g
     2581     transform="translate(481.13167,427.38045)"
     2582     clip-path="url(#clipPathm)"
     2583     id="g3318">
     2584    <g
     2585       id="g3320">
     2586      <path
     2587         sodipodi:nodetypes="cc"
     2588         id="path3322"
     2589         d="M 292.39114,658.61218 C 333.67472,658.61218 374.83303,658.61218 416.60989,658.61218"
     2590         style="fill:none;stroke:#c0c0c0;stroke-width:10;stroke-opacity:1;filter:url(#filterS)" />
     2591    </g>
     2592  </g>
     2593  <g
     2594     transform="translate(481.13167,427.38045)"
     2595     clip-path="url(#clipPathQ)"
     2596     id="g3325">
     2597    <g
     2598       id="g3327">
     2599      <path
     2600         sodipodi:nodetypes="cc"
     2601         id="path3329"
     2602         d="M 293.75006,362.51843 C 335.03364,362.51843 376.19195,362.51843 417.96881,362.51843"
     2603         style="fill:none;stroke:#c0c0c0;stroke-width:10;stroke-opacity:1;filter:url(#filterV)" />
     2604    </g>
     2605  </g>
     2606  <g
     2607     transform="matrix(0,-0.7158751,-1.5420277,-1.0740741e-8,2325.3062,596.32933)"
     2608     style="fill:url(#linearGradient6643);fill-opacity:1;fill-rule:nonzero;stroke:#0000ff;stroke-opacity:1"
     2609     id="g3331" />
     2610  <g
     2611     transform="matrix(0,-0.836391,-1.541763,0,2028.5156,320.33439)"
     2612     style="fill:url(#linearGradient6645);fill-opacity:1;fill-rule:nonzero"
     2613     id="g3333" />
     2614  <g
     2615     transform="matrix(-2.1236907,0,0,2.1771014,1750.0436,-1846.9071)"
     2616     id="g3335"
     2617     style="fill:url(#linearGradient6647);fill-opacity:1;fill-rule:nonzero" />
     2618  <g
     2619     transform="matrix(0,-1.2895167,-1.2895167,0,1184.3526,359.1802)"
     2620     style="fill:url(#linearGradient6649);fill-opacity:1;fill-rule:nonzero"
     2621     id="g3337" />
     2622  <g
     2623     transform="matrix(-1.7762357,0,0,3.3565743,951.44114,-2982.1925)"
     2624     id="g3339"
     2625     style="fill:url(#linearGradient6651);fill-opacity:1;fill-rule:nonzero" />
     2626  <g
     2627     id="g3341"
     2628     style="fill:url(#linearGradient6653);fill-opacity:1;fill-rule:nonzero"
     2629     transform="matrix(0,-0.7158751,-1.5420277,-1.0740741e-8,1414.537,1086.1503)" />
     2630  <g
     2631     transform="matrix(0,-0.836391,-1.541763,0,1414.2869,1077.8466)"
     2632     id="g3343"
     2633     clip-path="url(#clipPathl)"
     2634     style="fill:url(#linearGradient6657);fill-opacity:1;fill-rule:nonzero">
     2635    <g
     2636       id="g3345"
     2637       style="fill:url(#linearGradient6655)">
     2638      <path
     2639         sodipodi:nodetypes="cc"
     2640         transform="matrix(0,-0.6486081,-1.1956131,0,804.18249,1088.2645)"
     2641         id="path3347"
     2642         d="M 293.75,362.51843 C 335.03358,362.51843 376.19189,362.51843 417.96875,362.51843"
     2643         style="fill:none;stroke:#c0c0c0;stroke-width:10;stroke-opacity:1;filter:url(#filterK)" />
     2644    </g>
     2645  </g>
     2646  <g
     2647     transform="matrix(0,-0.836391,-1.541763,0,1414.2869,1077.8466)"
     2648     id="g3349"
     2649     clip-path="url(#clipPaths)"
     2650     style="fill:url(#linearGradient6661);fill-opacity:1;fill-rule:nonzero">
     2651    <g
     2652       id="g3351"
     2653       style="fill:url(#linearGradient6659)">
     2654      <path
     2655         sodipodi:nodetypes="cc"
     2656         id="path3353"
     2657         d="M 5.6649772,898.15665 C 5.6649772,871.37979 5.6649772,844.68418 5.6649772,817.58737"
     2658         style="fill:none;stroke:#404040;stroke-width:10;stroke-opacity:1;filter:url(#filterv)" />
     2659    </g>
     2660  </g>
     2661  <g
     2662     id="g3355"
     2663     style="fill:url(#linearGradient6663);fill-opacity:1;fill-rule:nonzero"
     2664     transform="matrix(1.2895167,0,0,1.2895175,74.496133,-157.74369)" />
     2665  <g
     2666     transform="translate(-263.55912,405.23578)"
     2667     clip-path="url(#clipPathm)"
     2668     id="g3357">
     2669    <g
     2670       id="g3359">
     2671      <path
     2672         sodipodi:nodetypes="cc"
     2673         id="path3361"
     2674         d="M 292.39114,658.61218 C 333.67472,658.61218 374.83303,658.61218 416.60989,658.61218"
     2675         style="fill:none;stroke:#c0c0c0;stroke-width:10;stroke-opacity:1;filter:url(#filterS)" />
     2676    </g>
     2677  </g>
     2678  <g
     2679     transform="translate(-263.55912,405.23578)"
     2680     clip-path="url(#clipPathQ)"
     2681     id="g3363">
     2682    <g
     2683       id="g3365">
     2684      <path
     2685         sodipodi:nodetypes="cc"
     2686         id="path3367"
     2687         d="M 293.75006,362.51843 C 335.03364,362.51843 376.19195,362.51843 417.96881,362.51843"
     2688         style="fill:none;stroke:#c0c0c0;stroke-width:10;stroke-opacity:1;filter:url(#filterV)" />
     2689    </g>
     2690  </g>
     2691  <g
     2692     transform="matrix(0,-0.7158751,-1.5420277,-1.0740741e-8,1580.6154,574.18466)"
     2693     style="fill:url(#linearGradient6665);fill-opacity:1;fill-rule:nonzero;stroke:#0000ff;stroke-opacity:1"
     2694     id="g3369" />
     2695  <g
     2696     transform="matrix(0,-0.836391,-1.541763,0,2620.4288,1949.3823)"
     2697     style="fill:url(#linearGradient6667);fill-opacity:1;fill-rule:nonzero"
     2698     id="g3371" />
     2699  <g
     2700     transform="matrix(-2.1236907,0,0,2.1771014,2341.9568,-217.8588)"
     2701     id="g3373"
     2702     style="fill:url(#linearGradient6669);fill-opacity:1;fill-rule:nonzero" />
     2703  <g
     2704     transform="matrix(0,-1.2895167,-1.2895167,0,1776.2657,1988.2282)"
     2705     style="fill:url(#linearGradient6671);fill-opacity:1;fill-rule:nonzero"
     2706     id="g3375" />
     2707  <g
     2708     transform="matrix(-1.7762357,0,0,3.3565743,1543.3543,-1353.1444)"
     2709     id="g3377"
     2710     style="fill:url(#linearGradient6673);fill-opacity:1;fill-rule:nonzero" />
     2711  <g
     2712     id="g3379"
     2713     style="fill:url(#linearGradient6675);fill-opacity:1;fill-rule:nonzero"
     2714     transform="matrix(0,-0.7158751,-1.5420277,-1.0740741e-8,2006.4502,2715.1984)" />
     2715  <g
     2716     transform="matrix(0,-0.836391,-1.541763,0,2006.2001,2706.8947)"
     2717     id="g3381"
     2718     clip-path="url(#clipPathl)"
     2719     style="fill:url(#linearGradient6679);fill-opacity:1;fill-rule:nonzero">
     2720    <g
     2721       id="g3383"
     2722       style="fill:url(#linearGradient6677)">
     2723      <path
     2724         sodipodi:nodetypes="cc"
     2725         transform="matrix(0,-0.6486081,-1.1956131,0,804.18249,1088.2645)"
     2726         id="path3385"
     2727         d="M 293.75,362.51843 C 335.03358,362.51843 376.19189,362.51843 417.96875,362.51843"
     2728         style="fill:none;stroke:#c0c0c0;stroke-width:10;stroke-opacity:1;filter:url(#filterK)" />
     2729    </g>
     2730  </g>
     2731  <g
     2732     transform="matrix(0,-0.836391,-1.541763,0,2006.2001,2706.8947)"
     2733     id="g3387"
     2734     clip-path="url(#clipPaths)"
     2735     style="fill:url(#linearGradient6683);fill-opacity:1;fill-rule:nonzero">
     2736    <g
     2737       id="g3389"
     2738       style="fill:url(#linearGradient6681)">
     2739      <path
     2740         sodipodi:nodetypes="cc"
     2741         id="path3391"
     2742         d="M 5.6649772,898.15665 C 5.6649772,871.37979 5.6649772,844.68418 5.6649772,817.58737"
     2743         style="fill:none;stroke:#404040;stroke-width:10;stroke-opacity:1;filter:url(#filterv)" />
     2744    </g>
     2745  </g>
     2746  <g
     2747     id="g3393"
     2748     style="fill:url(#linearGradient6685);fill-opacity:1;fill-rule:nonzero"
     2749     transform="matrix(1.2895167,0,0,1.2895175,666.40931,1471.3043)" />
     2750  <g
     2751     transform="translate(328.35405,2034.2837)"
     2752     clip-path="url(#clipPathm)"
     2753     id="g3395">
     2754    <g
     2755       id="g3397">
     2756      <path
     2757         sodipodi:nodetypes="cc"
     2758         id="path3399"
     2759         d="M 292.39114,658.61218 C 333.67472,658.61218 374.83303,658.61218 416.60989,658.61218"
     2760         style="fill:none;stroke:#c0c0c0;stroke-width:10;stroke-opacity:1;filter:url(#filterS)" />
     2761    </g>
     2762  </g>
     2763  <g
     2764     transform="translate(328.35405,2034.2837)"
     2765     clip-path="url(#clipPathQ)"
     2766     id="g3401">
     2767    <g
     2768       id="g3403">
     2769      <path
     2770         sodipodi:nodetypes="cc"
     2771         id="path3405"
     2772         d="M 293.75006,362.51843 C 335.03364,362.51843 376.19195,362.51843 417.96881,362.51843"
     2773         style="fill:none;stroke:#c0c0c0;stroke-width:10;stroke-opacity:1;filter:url(#filterV)" />
     2774    </g>
     2775  </g>
     2776  <g
     2777     transform="matrix(0,-0.7158751,-1.5420277,-1.0740741e-8,2172.5286,2203.2325)"
     2778     style="fill:url(#linearGradient6687);fill-opacity:1;fill-rule:nonzero;stroke:#0000ff;stroke-opacity:1"
     2779     id="g3407" />
     2780  <g
     2781     transform="matrix(0,-0.836391,-1.541763,0,1533.9978,342.9348)"
     2782     style="fill:url(#linearGradient6689);fill-opacity:1;fill-rule:nonzero"
     2783     id="g3409" />
     2784  <g
     2785     transform="matrix(-2.1236907,0,0,2.1771014,1255.5258,-1824.3066)"
     2786     id="g3411"
     2787     style="fill:url(#linearGradient6691);fill-opacity:1;fill-rule:nonzero" />
     2788  <g
     2789     transform="matrix(0,-1.2895167,-1.2895167,0,689.83481,381.78061)"
     2790     style="fill:url(#linearGradient6693);fill-opacity:1;fill-rule:nonzero"
     2791     id="g3413" />
     2792  <g
     2793     transform="matrix(-1.7762357,0,0,3.3565743,456.92337,-2959.592)"
     2794     id="g3415"
     2795     style="fill:url(#linearGradient6695);fill-opacity:1;fill-rule:nonzero" />
     2796  <g
     2797     id="g3417"
     2798     style="fill:url(#linearGradient6697);fill-opacity:1;fill-rule:nonzero"
     2799     transform="matrix(0,-0.7158751,-1.5420277,-1.0740741e-8,920.01921,1108.7508)" />
     2800  <g
     2801     transform="matrix(0,-0.836391,-1.541763,0,919.76911,1100.4471)"
     2802     id="g3419"
     2803     clip-path="url(#clipPathl)"
     2804     style="fill:url(#linearGradient6701);fill-opacity:1;fill-rule:nonzero">
     2805    <g
     2806       id="g3421"
     2807       style="fill:url(#linearGradient6699)">
     2808      <path
     2809         sodipodi:nodetypes="cc"
     2810         transform="matrix(0,-0.6486081,-1.1956131,0,804.18249,1088.2645)"
     2811         id="path3423"
     2812         d="M 293.75,362.51843 C 335.03358,362.51843 376.19189,362.51843 417.96875,362.51843"
     2813         style="fill:none;stroke:#c0c0c0;stroke-width:10;stroke-opacity:1;filter:url(#filterK)" />
     2814    </g>
     2815  </g>
     2816  <g
     2817     transform="matrix(0,-0.836391,-1.541763,0,919.76911,1100.4471)"
     2818     id="g3425"
     2819     clip-path="url(#clipPaths)"
     2820     style="fill:url(#linearGradient6705);fill-opacity:1;fill-rule:nonzero">
     2821    <g
     2822       id="g3427"
     2823       style="fill:url(#linearGradient6703)">
     2824      <path
     2825         sodipodi:nodetypes="cc"
     2826         id="path3429"
     2827         d="M 5.6649772,898.15665 C 5.6649772,871.37979 5.6649772,844.68418 5.6649772,817.58737"
     2828         style="fill:none;stroke:#404040;stroke-width:10;stroke-opacity:1;filter:url(#filterv)" />
     2829    </g>
     2830  </g>
     2831  <g
     2832     id="g3431"
     2833     style="fill:url(#linearGradient6707);fill-opacity:1;fill-rule:nonzero"
     2834     transform="matrix(1.2895167,0,0,1.2895175,-420.02165,-135.14328)" />
     2835  <g
     2836     transform="translate(-758.0769,427.83619)"
     2837     clip-path="url(#clipPathm)"
     2838     id="g3433">
     2839    <g
     2840       id="g3435">
     2841      <path
     2842         sodipodi:nodetypes="cc"
     2843         id="path3437"
     2844         d="M 292.39114,658.61218 C 333.67472,658.61218 374.83303,658.61218 416.60989,658.61218"
     2845         style="fill:none;stroke:#c0c0c0;stroke-width:10;stroke-opacity:1;filter:url(#filterS)" />
     2846    </g>
     2847  </g>
     2848  <g
     2849     transform="translate(-758.0769,427.83619)"
     2850     clip-path="url(#clipPathQ)"
     2851     id="g3439">
     2852    <g
     2853       id="g3441">
     2854      <path
     2855         sodipodi:nodetypes="cc"
     2856         id="path3443"
     2857         d="M 293.75006,362.51843 C 335.03364,362.51843 376.19195,362.51843 417.96881,362.51843"
     2858         style="fill:none;stroke:#c0c0c0;stroke-width:10;stroke-opacity:1;filter:url(#filterV)" />
     2859    </g>
     2860  </g>
     2861  <g
     2862     transform="matrix(0,-0.7158751,-1.5420277,-1.0740741e-8,1086.0976,596.78507)"
     2863     style="fill:url(#linearGradient6709);fill-opacity:1;fill-rule:nonzero;stroke:#0000ff;stroke-opacity:1"
     2864     id="g3445" />
     2865  <g
     2866     id="g3919"
     2867     transform="translate(4.5110372e-7,2.8256455)">
     2868    <g
     2869       transform="matrix(0,-1,1,0,-27.432039,224.76301)"
     2870       id="g3913">
     2871      <path
     2872         inkscape:export-ydpi="300"
     2873         inkscape:export-xdpi="300"
     2874         inkscape:export-filename="/home/bicca/Documentos/repositorio/alsoc/biblioteca/branches/gui/eml/stage_separators/icon/Condenser_column2.png"
     2875         style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
     2876         d="M 146.65745,98.144372 C 146.65745,89.526912 146.65745,89.526912 146.65745,89.526912"
     2877         id="path2870" />
     2878      <text
     2879         xml:space="preserve"
     2880         style="font-size:2.66979432px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans"
     2881         x="80.591087"
     2882         y="-181.65558"
     2883         id="text2874"
     2884         sodipodi:linespacing="125%"
     2885         transform="matrix(0,1.2471055,-0.8018568,0,0,0)"><tspan
     2886           sodipodi:role="line"
     2887           id="tspan2876"
     2888           x="80.591087"
     2889           y="-181.65558"
     2890           style="font-size:5.33958864px">LI</tspan></text>
     2891      <path
     2892         sodipodi:type="arc"
     2893         style="opacity:0.97000002;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.17;stroke-linecap:round;stroke-linejoin:round;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
     2894         id="path2878"
     2895         sodipodi:cx="4.4411087"
     2896         sodipodi:cy="61.621449"
     2897         sodipodi:rx="51.07275"
     2898         sodipodi:ry="49.345654"
     2899         d="M 55.513859,61.621449 A 51.07275,49.345654 0 1 1 -46.631641,61.621449 A 51.07275,49.345654 0 1 1 55.513859,61.621449 z"
     2900         transform="matrix(0,0.1257504,-0.1239957,0,155.02587,103.5901)" />
     2901    </g>
    1442902    <path
    1452903       sodipodi:type="arc"
    146        style="fill:url(#radialGradient3236);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.33553269;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
    147        id="path2438"
     2904       style="fill:url(#radialGradient3950);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.32165313;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
     2905       id="path6447"
    1482906       sodipodi:cx="550"
    1492907       sodipodi:cy="217.20593"
    1502908       sodipodi:rx="142.1875"
    1512909       sodipodi:ry="61.71875"
    152        d="M 692.1875,217.20593 A 142.1875,61.71875 0 1 1 407.8125,217.20593 A 142.1875,61.71875 0 1 1 692.1875,217.20593 z"
    153        transform="matrix(0,0.5473966,-1.1325145,0,176.38898,709.36338)"
    154        inkscape:export-filename="/home/rafael/src/biblioteca/trunk/eml/stage_separators/icon/Vessel.png"
    155        inkscape:export-xdpi="300"
    156        inkscape:export-ydpi="300" />
    157     <path
    158        sodipodi:type="arc"
    159        style="fill:url(#radialGradient3238);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.33553269;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
    160        id="path3244"
    161        sodipodi:cx="550"
    162        sodipodi:cy="217.20593"
    163        sodipodi:rx="142.1875"
    164        sodipodi:ry="61.71875"
    165        d="M 692.1875,217.20593 A 142.1875,61.71875 0 1 1 407.8125,217.20593 A 142.1875,61.71875 0 1 1 692.1875,217.20593 z"
    166        transform="matrix(0,0.5473966,-1.1325145,0,-138.14924,709.36338)"
    167        inkscape:export-filename="/home/rafael/src/biblioteca/trunk/eml/stage_separators/icon/Vessel.png"
    168        inkscape:export-xdpi="300"
    169        inkscape:export-ydpi="300" />
    170     <rect
    171        style="fill:url(#linearGradient2442);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.26418477;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
    172        id="rect3232"
    173        width="155.66594"
    174        height="314.53821"
    175        x="-1088.2645"
    176        y="69.599899"
    177        transform="matrix(0,-1,-1,0,0,0)"
    178        rx="22.351431"
    179        ry="0"
     2910       d="M 692.1875,217.20593 A 142.1875,61.71875 0 1 1 407.8125,217.20593 L 550,217.20593 z"
     2911       transform="matrix(0.2206431,0,0,0.2335163,-85.251087,65.07995)"
     2912       inkscape:export-filename="/home/bicca/Documentos/repositorio/alsoc/biblioteca/branches/gui/eml/stage_separators/icon/Condenser_column2.png"
    1802913       inkscape:export-xdpi="300"
    1812914       inkscape:export-ydpi="300"
    182        inkscape:export-filename="/home/rafael/src/biblioteca/trunk/eml/stage_separators/icon/Vessel.png" />
     2915       sodipodi:start="0"
     2916       sodipodi:end="3.1415927" />
     2917    <path
     2918       inkscape:export-ydpi="300"
     2919       inkscape:export-xdpi="300"
     2920       inkscape:export-filename="/home/bicca/Documentos/repositorio/alsoc/biblioteca/branches/gui/eml/stage_separators/icon/Condenser_column2.png"
     2921       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
     2922       d="M 70.869189,50.33295 C 62.251729,50.33295 62.251729,50.33295 62.251729,50.33295"
     2923       id="path5870" />
     2924    <path
     2925       inkscape:export-ydpi="300"
     2926       inkscape:export-xdpi="300"
     2927       inkscape:export-filename="/home/bicca/Documentos/repositorio/alsoc/biblioteca/branches/gui/eml/stage_separators/icon/Condenser_column2.png"
     2928       id="path5690"
     2929       d="M 71.115917,26.291765 C 62.498457,26.291765 62.498457,26.291765 62.498457,26.291765"
     2930       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
     2931    <path
     2932       sodipodi:end="3.1415927"
     2933       sodipodi:start="0"
     2934       inkscape:export-ydpi="300"
     2935       inkscape:export-xdpi="300"
     2936       inkscape:export-filename="/home/bicca/Documentos/repositorio/alsoc/biblioteca/branches/gui/eml/stage_separators/icon/Condenser_column2.png"
     2937       transform="matrix(0.2206431,0,0,-0.2335163,-85.251087,65.28346)"
     2938       d="M 692.1875,217.20593 A 142.1875,61.71875 0 1 1 407.8125,217.20593 L 550,217.20593 z"
     2939       sodipodi:ry="61.71875"
     2940       sodipodi:rx="142.1875"
     2941       sodipodi:cy="217.20593"
     2942       sodipodi:cx="550"
     2943       id="path2972"
     2944       style="fill:url(#radialGradient3952);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.32165313;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
     2945       sodipodi:type="arc" />
     2946    <rect
     2947       transform="scale(-1,-1)"
     2948       inkscape:export-filename="/home/bicca/Documentos/repositorio/alsoc/biblioteca/branches/gui/eml/stage_separators/icon/Condenser_column2.png"
     2949       inkscape:export-ydpi="300"
     2950       inkscape:export-xdpi="300"
     2951       ry="0"
     2952       rx="9.0093689"
     2953       y="-115.76006"
     2954       x="-67.413681"
     2955       height="101.73609"
     2956       width="62.745514"
     2957       id="rect2974"
     2958       style="fill:url(#linearGradient3954);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.29987198;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
     2959    <g
     2960       inkscape:export-ydpi="300"
     2961       inkscape:export-xdpi="300"
     2962       inkscape:export-filename="/home/bicca/Documentos/repositorio/alsoc/biblioteca/branches/gui/eml/stage_separators/icon/Condenser_column2.png"
     2963       transform="matrix(0,-0.8227452,0.6857242,0,-39.759417,88.79816)"
     2964       id="g3833">
     2965      <path
     2966         style="fill:url(#linearGradient3956);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.38496149;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
     2967         d="M 38.338807,67.852395 L 38.338807,59.577195 L 24.181717,59.577195 L 24.181717,67.852395 C 24.181717,67.852395 24.247817,72.792315 31.260267,72.735615 C 38.408887,72.678975 38.338807,67.852395 38.338807,67.852395 z"
     2968         id="path3825"
     2969         sodipodi:nodetypes="ccccsc" />
     2970      <rect
     2971         transform="matrix(-1,-7.6610847e-6,0,1,0,0)"
     2972         rx="12.729493"
     2973         ry="0"
     2974         y="58.192326"
     2975         x="-42.08947"
     2976         height="1.355034"
     2977         width="21.886097"
     2978         id="rect3827"
     2979         style="fill:url(#linearGradient3958);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.38496149;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
     2980    </g>
     2981    <g
     2982       transform="translate(-20.35852,-105.85117)"
     2983       id="g5685">
     2984      <text
     2985         inkscape:export-ydpi="300"
     2986         inkscape:export-xdpi="300"
     2987         inkscape:export-filename="/home/bicca/Documentos/repositorio/alsoc/biblioteca/branches/gui/eml/stage_separators/icon/Condenser_column2.png"
     2988         xml:space="preserve"
     2989         style="font-size:2.66979432px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans"
     2990         x="75.377419"
     2991         y="167.02792"
     2992         id="text11790"
     2993         sodipodi:linespacing="125%"
     2994         transform="scale(1.2471055,0.8018568)"><tspan
     2995           sodipodi:role="line"
     2996           id="tspan11792"
     2997           x="75.377419"
     2998           y="167.02792"
     2999           style="font-size:5.33958864px">PI</tspan></text>
     3000      <path
     3001         inkscape:export-ydpi="300"
     3002         inkscape:export-xdpi="300"
     3003         inkscape:export-filename="/home/bicca/Documentos/repositorio/alsoc/biblioteca/branches/gui/eml/stage_separators/icon/Condenser_column2.png"
     3004         sodipodi:type="arc"
     3005         style="opacity:0.97000002;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.17;stroke-linecap:round;stroke-linejoin:round;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
     3006         id="path2396"
     3007         sodipodi:cx="4.4411087"
     3008         sodipodi:cy="61.621449"
     3009         sodipodi:rx="51.07275"
     3010         sodipodi:ry="49.345654"
     3011         d="M 55.513859,61.621449 A 51.07275,49.345654 0 1 1 -46.631641,61.621449 A 51.07275,49.345654 0 1 1 55.513859,61.621449 z"
     3012         transform="matrix(0.1257504,0,0,0.1239957,97.088131,124.56835)" />
     3013    </g>
     3014    <g
     3015       inkscape:export-ydpi="300"
     3016       inkscape:export-xdpi="300"
     3017       inkscape:export-filename="/home/bicca/Documentos/repositorio/alsoc/biblioteca/branches/gui/eml/stage_separators/icon/Condenser_column2.png"
     3018       id="g5872"
     3019       transform="translate(-20.605247,-81.809988)">
     3020      <text
     3021         transform="scale(1.2471055,0.8018568)"
     3022         sodipodi:linespacing="125%"
     3023         id="text5874"
     3024         y="167.02792"
     3025         x="75.377419"
     3026         style="font-size:2.66979432px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans"
     3027         xml:space="preserve"><tspan
     3028           style="font-size:5.33958864px"
     3029           y="167.02792"
     3030           x="75.377419"
     3031           id="tspan5876"
     3032           sodipodi:role="line">TI</tspan></text>
     3033      <path
     3034         transform="matrix(0.1257504,0,0,0.1239957,97.088131,124.56835)"
     3035         d="M 55.513859,61.621449 A 51.07275,49.345654 0 1 1 -46.631641,61.621449 A 51.07275,49.345654 0 1 1 55.513859,61.621449 z"
     3036         sodipodi:ry="49.345654"
     3037         sodipodi:rx="51.07275"
     3038         sodipodi:cy="61.621449"
     3039         sodipodi:cx="4.4411087"
     3040         id="path5878"
     3041         style="opacity:0.97000002;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.17;stroke-linecap:round;stroke-linejoin:round;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
     3042         sodipodi:type="arc" />
     3043    </g>
     3044    <g
     3045       id="g3899">
     3046      <path
     3047         sodipodi:nodetypes="ccccsc"
     3048         id="path6459"
     3049         d="M 41.74022,3.9429673 L 41.74022,-1.7315376 L 30.092542,-1.7315376 L 30.092542,3.9429673 C 30.092542,3.9429673 30.146925,7.33039 35.916385,7.2915094 C 41.797878,7.25267 41.74022,3.9429673 41.74022,3.9429673 z"
     3050         style="fill:url(#linearGradient3960);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.289;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
     3051      <rect
     3052         style="fill:url(#linearGradient3962);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.28915101;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
     3053         id="rect6461"
     3054         width="18.006681"
     3055         height="0.92917961"
     3056         x="-44.826057"
     3057         y="-2.6812413"
     3058         ry="0"
     3059         rx="10.473129"
     3060         transform="matrix(-1,-6.3851982e-6,0,1,0,0)" />
     3061    </g>
     3062    <path
     3063       style="fill:#aa0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.287;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
     3064       d="M 60.851323,113.04101 L 71.118877,113.04101 L 71.118877,101.49149 L 60.851323,101.49149 C 60.851323,101.49149 54.722057,101.54542 54.792409,107.26626 C 54.862685,113.09819 60.851323,113.04101 60.851323,113.04101 z"
     3065       id="path6479"
     3066       sodipodi:nodetypes="ccccsc" />
     3067    <rect
     3068       transform="matrix(6.3851982e-6,-1,-1,0,0,0)"
     3069       rx="10.473129"
     3070       ry="0"
     3071       y="-72.118118"
     3072       x="-116.17593"
     3073       height="0.92917961"
     3074       width="18.006681"
     3075       id="rect6481"
     3076       style="fill:#aa0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.28915101;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
     3077    <g
     3078       transform="matrix(-1,0,0,-1,71.645434,130.6107)"
     3079       id="g3903">
     3080      <path
     3081         style="fill:url(#linearGradient3964);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.289;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
     3082         d="M 41.74022,3.9429673 L 41.74022,-1.7315376 L 30.092542,-1.7315376 L 30.092542,3.9429673 C 30.092542,3.9429673 30.146925,7.33039 35.916385,7.2915094 C 41.797878,7.25267 41.74022,3.9429673 41.74022,3.9429673 z"
     3083         id="path3905"
     3084         sodipodi:nodetypes="ccccsc" />
     3085      <rect
     3086         transform="matrix(-1,-6.3851982e-6,0,1,0,0)"
     3087         rx="10.473129"
     3088         ry="0"
     3089         y="-2.6812413"
     3090         x="-44.826057"
     3091         height="0.92917961"
     3092         width="18.006681"
     3093         id="rect3907"
     3094         style="fill:url(#linearGradient3966);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.28915101;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
     3095    </g>
    1833096  </g>
    1843097</svg>
  • branches/gui/sample/stage_separators/Sample_flash_PID.mso

    r749 r796  
    2626
    2727        SPECIFY
    28         HeatToFlash.OutletQ = 1026.32 * 'kW';
     28        HeatToFlash.OutletQ = 1027 * 'kW';
    2929
    3030        INITIAL
     
    100100        PID_LC.tauSet = 1 * 's';
    101101        PID_LC.MinInput = 0;
    102         PID_LC.MaxInput = 2;
     102        PID_LC.MaxInput = 1;
    103103        PID_LC.MinOutput = 0;
    104104        PID_LC.MaxOutput = 1;
     
    141141
    142142        DEVICES
     143        LiquidProduct as simple_sink;
     144
     145        SET
     146
     147        SPECIFY
     148
     149        INITIAL
     150
     151        GUESS
     152
     153        DEVICES
    143154        F101_1 as flash;
    144155
    145156        SET
    146         F101_1.VesselVolume = 8 * 'm^3';
    147157        F101_1.Orientation = "vertical";
     158        F101_1.Heads = "flat";
    148159        F101_1.Diameter = 3.1 * 'm';
    149         F101_1.Levelpercent_Initial = 0.70;
    150         F101_1.Temperature_Initial = 383 * 'K';
    151         F101_1.Composition_Initial(1) = 0.3;
    152         F101_1.Composition_Initial(2) = 0.4;
    153         F101_1.Composition_Initial(3) = 0.3;
    154 
    155         SPECIFY
    156 
    157         INITIAL
    158 
    159         GUESS
    160 
    161         DEVICES
    162         LiquidProduct as simple_sink;
    163 
    164         SET
     160        F101_1.Lenght = 6 * 'm';
     161        F101_1.Levelpercent_Initial = 0.80;
     162        F101_1.Temperature_Initial = 373 * 'K';
     163        F101_1.Composition_Initial(1) = 0.30;
     164        F101_1.Composition_Initial(2) = 0.40;
     165        F101_1.Composition_Initial(3) = 0.30;
    165166
    166167        SPECIFY
     
    174175        PID_LC.Output to valve_liquid.FlowFraction;
    175176        PID_PC.Output to valve_Vapour.FlowFraction;
     177        valve_liquid.Outlet to LiquidProduct.Inlet;
     178        Feed.Outlet to F101_1.Inlet;
    176179        F101_1.OutletVapour to valve_Vapour.Inlet;
     180        HeatToFlash.OutletQ to F101_1.InletQ;
    177181        F101_1.OutletLiquid to valve_liquid.Inlet;
    178         Feed.Outlet to F101_1.Inlet;
    179         HeatToFlash.OutletQ to F101_1.InletQ;
    180182        F101_1.LI to PID_LC.Input;
    181183        F101_1.PI to PID_PC.Input;
    182         valve_liquid.Outlet to LiquidProduct.Inlet;
    183184
    184185        OPTIONS
    185186        Dynamic = true;
    186187        TimeStep = 0.2;
    187         TimeEnd = 1;
     188        TimeEnd = 12;
    188189        TimeUnit = 'h';
    189190        Integration = "original";
  • branches/gui/sample/stage_separators/Sample_flash_PID.pfd

    r713 r796  
    1313        <Time_Start>0</Time_Start>
    1414        <Time_Step>0.2</Time_Step>
    15         <Time_End>1</Time_End>
     15        <Time_End>12</Time_End>
    1616        <Time_Unit>h</Time_Unit>
    1717        <Sparse_Algebra>1</Sparse_Algebra>
     
    3434        <Show_Grid>0</Show_Grid>
    3535        <Snap_to_Grid>0</Snap_to_Grid>
    36         <Width>1016</Width>
    37         <Height>612</Height>
     36        <Width>1248</Width>
     37        <Height>511</Height>
    3838        <X>0</X>
    3939        <Y>0</Y>
     
    4343        <Show_Grid>0</Show_Grid>
    4444        <Snap_to_Grid>0</Snap_to_Grid>
    45         <Width>1016</Width>
     45        <Width>1248</Width>
    4646        <Height>0</Height>
    4747        <X>0</X>
     
    5151        <Type>energy_source</Type>
    5252        <Id_String>HeatToFlash</Id_String>
    53         <Image_File_Name>/home/bicca/apps/biblioteca/branches/gui/eml/icon/energy_source.png</Image_File_Name>
    54         <X>229</X>
    55         <Y>381</Y>
     53        <Image_File_Name>/home/gerson/repositorio/alsoc/biblioteca/branches/gui/eml/icon/energy_source.png</Image_File_Name>
     54        <X>478</X>
     55        <Y>329</Y>
    5656        <Z>0</Z>
    5757        <Width>72.5</Width>
     
    6565                        <Desc>OutletQ</Desc>
    6666                        <Index>0</Index>
    67                         <Values>1026.32</Values>
     67                        <Values>1027</Values>
    6868                        <Status>1</Status>
    6969                        <Unit>kW</Unit>
     
    7474        <Type>simple_source</Type>
    7575        <Id_String>Feed</Id_String>
    76         <Image_File_Name>/home/bicca/apps/biblioteca/branches/gui/eml/icon/Source.png</Image_File_Name>
     76        <Image_File_Name>/home/gerson/repositorio/alsoc/biblioteca/branches/gui/eml/icon/Source.png</Image_File_Name>
    7777        <X>80</X>
    7878        <Y>131</Y>
     
    237237        <Type>sink</Type>
    238238        <Id_String>VaporProduct</Id_String>
    239         <Image_File_Name>/home/bicca/apps/biblioteca/branches/gui/eml/icon/Sink.png</Image_File_Name>
    240         <X>1017</X>
    241         <Y>77</Y>
     239        <Image_File_Name>/home/gerson/repositorio/alsoc/biblioteca/branches/gui/eml/icon/Sink.png</Image_File_Name>
     240        <X>880</X>
     241        <Y>102</Y>
    242242        <Z>0</Z>
    243243        <Width>68</Width>
     
    269269                                                        <Desc>F</Desc>
    270270                                                        <Index>0</Index>
    271                                                         <Values>453.506</Values>
     271                                                        <Values>147.944</Values>
    272272                                                        <Status>0</Status>
    273273                                                        <Unit>kmol/h</Unit>
     
    276276                                                        <Desc>T</Desc>
    277277                                                        <Index>0</Index>
    278                                                         <Values>231.817</Values>
     278                                                        <Values>272.072</Values>
    279279                                                        <Status>0</Status>
    280280                                                        <Unit>K</Unit>
     
    283283                                                        <Desc>P</Desc>
    284284                                                        <Index>0</Index>
    285                                                         <Values>0.000131171</Values>
     285                                                        <Values>0.0208251</Values>
    286286                                                        <Status>0</Status>
    287287                                                        <Unit>atm</Unit>
     
    290290                                                        <Desc>h</Desc>
    291291                                                        <Index>0</Index>
    292                                                         <Values>-7420.84</Values>
     292                                                        <Values>-2699.45</Values>
    293293                                                        <Status>0</Status>
    294294                                                        <Unit>kJ/kmol</Unit>
     
    303303                                                        <Desc>z</Desc>
    304304                                                        <Index>0</Index>
    305                                                         <Values>0.33122</Values>
     305                                                        <Values>0.646174</Values>
    306306                                                        <Status>0</Status>
    307307                                                        <Index>1</Index>
    308                                                         <Values>0.360461</Values>
     308                                                        <Values>0.289474</Values>
    309309                                                        <Status>0</Status>
    310310                                                        <Index>2</Index>
    311                                                         <Values>0.30832</Values>
     311                                                        <Values>0.0643512</Values>
    312312                                                        <Status>0</Status>
    313313                                                </Variables>
     
    346346                        <Desc>zmass</Desc>
    347347                        <Index>0</Index>
    348                         <Values>0.232991</Values>
     348                        <Values>0.556241</Values>
    349349                        <Status>0</Status>
    350350                        <Index>1</Index>
    351                         <Values>0.340767</Values>
     351                        <Values>0.334889</Values>
    352352                        <Status>0</Status>
    353353                        <Index>2</Index>
    354                         <Values>0.426242</Values>
     354                        <Values>0.108869</Values>
    355355                        <Status>0</Status>
    356356                </Variables>
     
    358358                        <Desc>Mw</Desc>
    359359                        <Index>0</Index>
    360                         <Values>82.6277</Values>
     360                        <Values>67.5203</Values>
    361361                        <Status>0</Status>
    362362                        <Unit>kg/kmol</Unit>
     
    365365                        <Desc>vm</Desc>
    366366                        <Index>0</Index>
    367                         <Values>145.016</Values>
     367                        <Values>1.06688</Values>
    368368                        <Status>0</Status>
    369369                        <Unit>m^3/mol</Unit>
     
    372372                        <Desc>rho</Desc>
    373373                        <Index>0</Index>
    374                         <Values>0.000569782</Values>
     374                        <Values>0.0632241</Values>
    375375                        <Status>0</Status>
    376376                        <Unit>kg/m^3</Unit>
     
    379379                        <Desc>rhom</Desc>
    380380                        <Index>0</Index>
    381                         <Values>6.89578e-06</Values>
     381                        <Values>0.000936279</Values>
    382382                        <Status>0</Status>
    383383                        <Unit>kmol/m^3</Unit>
     
    386386                        <Desc>Fw</Desc>
    387387                        <Index>0</Index>
    388                         <Values>37472.2</Values>
     388                        <Values>9989.26</Values>
    389389                        <Status>0</Status>
    390390                        <Unit>kg/h</Unit>
     
    393393                        <Desc>Fvol</Desc>
    394394                        <Index>0</Index>
    395                         <Values>6.57658e+07</Values>
     395                        <Values>157977</Values>
    396396                        <Status>0</Status>
    397397                        <Unit>m^3/h</Unit>
     
    400400                        <Desc>T_Cdeg</Desc>
    401401                        <Index>0</Index>
    402                         <Values>-41.333</Values>
     402                        <Values>-1.07808</Values>
    403403                        <Status>0</Status>
    404404                        <Unit>K</Unit>
     
    409409        <Type>valve_flow</Type>
    410410        <Id_String>valve_liquid</Id_String>
    411         <Image_File_Name>/home/bicca/apps/biblioteca/branches/gui/eml/pressure_changers/icon/Valve.png</Image_File_Name>
     411        <Image_File_Name>/home/gerson/repositorio/alsoc/biblioteca/branches/gui/eml/pressure_changers/icon/Valve.png</Image_File_Name>
    412412        <X>498</X>
    413413        <Y>505</Y>
     
    441441                                                        <Desc>F</Desc>
    442442                                                        <Index>0</Index>
    443                                                         <Values>115.156</Values>
     443                                                        <Values>0</Values>
    444444                                                        <Status>0</Status>
    445445                                                        <Unit>kmol/h</Unit>
     
    448448                                                        <Desc>T</Desc>
    449449                                                        <Index>0</Index>
    450                                                         <Values>231.817</Values>
     450                                                        <Values>272.072</Values>
    451451                                                        <Status>0</Status>
    452452                                                        <Unit>K</Unit>
     
    455455                                                        <Desc>P</Desc>
    456456                                                        <Index>0</Index>
    457                                                         <Values>0.000131171</Values>
     457                                                        <Values>0.0208251</Values>
    458458                                                        <Status>0</Status>
    459459                                                        <Unit>atm</Unit>
     
    462462                                                        <Desc>h</Desc>
    463463                                                        <Index>0</Index>
    464                                                         <Values>-52569.6</Values>
     464                                                        <Values>-41518.8</Values>
    465465                                                        <Status>0</Status>
    466466                                                        <Unit>kJ/kmol</Unit>
     
    475475                                                        <Desc>z</Desc>
    476476                                                        <Index>0</Index>
    477                                                         <Values>0.000496898</Values>
     477                                                        <Values>0.0208973</Values>
    478478                                                        <Status>0</Status>
    479479                                                        <Index>1</Index>
    480                                                         <Values>0.0220317</Values>
     480                                                        <Values>0.19209</Values>
    481481                                                        <Status>0</Status>
    482482                                                        <Index>2</Index>
    483                                                         <Values>0.977471</Values>
     483                                                        <Values>0.787012</Values>
    484484                                                        <Status>0</Status>
    485485                                                </Variables>
     
    509509                                                        <Desc>F</Desc>
    510510                                                        <Index>0</Index>
    511                                                         <Values>115.156</Values>
     511                                                        <Values>0</Values>
    512512                                                        <Status>0</Status>
    513513                                                        <Unit>kmol/h</Unit>
     
    516516                                                        <Desc>T</Desc>
    517517                                                        <Index>0</Index>
    518                                                         <Values>231.817</Values>
     518                                                        <Values>272.072</Values>
    519519                                                        <Status>0</Status>
    520520                                                        <Unit>K</Unit>
     
    523523                                                        <Desc>P</Desc>
    524524                                                        <Index>0</Index>
    525                                                         <Values>0.000131171</Values>
     525                                                        <Values>0.0208251</Values>
    526526                                                        <Status>0</Status>
    527527                                                        <Unit>atm</Unit>
     
    530530                                                        <Desc>h</Desc>
    531531                                                        <Index>0</Index>
    532                                                         <Values>-52569.6</Values>
     532                                                        <Values>-41518.8</Values>
    533533                                                        <Status>0</Status>
    534534                                                        <Unit>kJ/kmol</Unit>
     
    543543                                                        <Desc>z</Desc>
    544544                                                        <Index>0</Index>
    545                                                         <Values>0.000496898</Values>
     545                                                        <Values>0.0208973</Values>
    546546                                                        <Status>0</Status>
    547547                                                        <Index>1</Index>
    548                                                         <Values>0.0220317</Values>
     548                                                        <Values>0.19209</Values>
    549549                                                        <Status>0</Status>
    550550                                                        <Index>2</Index>
    551                                                         <Values>0.977471</Values>
     551                                                        <Values>0.787012</Values>
    552552                                                        <Status>0</Status>
    553553                                                </Variables>
     
    585585                        <Desc>FlowFraction</Desc>
    586586                        <Index>0</Index>
    587                         <Values>0.115156</Values>
     587                        <Values>0</Values>
    588588                        <Status>0</Status>
    589589                </Variables>
     
    593593        <Type>valve_flow</Type>
    594594        <Id_String>valve_Vapour</Id_String>
    595         <Image_File_Name>/home/bicca/apps/biblioteca/branches/gui/eml/pressure_changers/icon/Valve.png</Image_File_Name>
     595        <Image_File_Name>/home/gerson/repositorio/alsoc/biblioteca/branches/gui/eml/pressure_changers/icon/Valve.png</Image_File_Name>
    596596        <X>620</X>
    597597        <Y>22</Y>
     
    625625                                                        <Desc>F</Desc>
    626626                                                        <Index>0</Index>
    627                                                         <Values>453.506</Values>
     627                                                        <Values>147.944</Values>
    628628                                                        <Status>0</Status>
    629629                                                        <Unit>kmol/h</Unit>
     
    632632                                                        <Desc>T</Desc>
    633633                                                        <Index>0</Index>
    634                                                         <Values>231.817</Values>
     634                                                        <Values>272.072</Values>
    635635                                                        <Status>0</Status>
    636636                                                        <Unit>K</Unit>
     
    639639                                                        <Desc>P</Desc>
    640640                                                        <Index>0</Index>
    641                                                         <Values>0.000131171</Values>
     641                                                        <Values>0.0208251</Values>
    642642                                                        <Status>0</Status>
    643643                                                        <Unit>atm</Unit>
     
    646646                                                        <Desc>h</Desc>
    647647                                                        <Index>0</Index>
    648                                                         <Values>-7420.84</Values>
     648                                                        <Values>-2699.45</Values>
    649649                                                        <Status>0</Status>
    650650                                                        <Unit>kJ/kmol</Unit>
     
    659659                                                        <Desc>z</Desc>
    660660                                                        <Index>0</Index>
    661                                                         <Values>0.33122</Values>
     661                                                        <Values>0.646174</Values>
    662662                                                        <Status>0</Status>
    663663                                                        <Index>1</Index>
    664                                                         <Values>0.360461</Values>
     664                                                        <Values>0.289474</Values>
    665665                                                        <Status>0</Status>
    666666                                                        <Index>2</Index>
    667                                                         <Values>0.30832</Values>
     667                                                        <Values>0.0643512</Values>
    668668                                                        <Status>0</Status>
    669669                                                </Variables>
     
    693693                                                        <Desc>F</Desc>
    694694                                                        <Index>0</Index>
    695                                                         <Values>453.506</Values>
     695                                                        <Values>147.944</Values>
    696696                                                        <Status>0</Status>
    697697                                                        <Unit>kmol/h</Unit>
     
    700700                                                        <Desc>T</Desc>
    701701                                                        <Index>0</Index>
    702                                                         <Values>231.817</Values>
     702                                                        <Values>272.072</Values>
    703703                                                        <Status>0</Status>
    704704                                                        <Unit>K</Unit>
     
    707707                                                        <Desc>P</Desc>
    708708                                                        <Index>0</Index>
    709                                                         <Values>0.000131171</Values>
     709                                                        <Values>0.0208251</Values>
    710710                                                        <Status>0</Status>
    711711                                                        <Unit>atm</Unit>
     
    714714                                                        <Desc>h</Desc>
    715715                                                        <Index>0</Index>
    716                                                         <Values>-7420.84</Values>
     716                                                        <Values>-2699.45</Values>
    717717                                                        <Status>0</Status>
    718718                                                        <Unit>kJ/kmol</Unit>
     
    727727                                                        <Desc>z</Desc>
    728728                                                        <Index>0</Index>
    729                                                         <Values>0.33122</Values>
     729                                                        <Values>0.646174</Values>
    730730                                                        <Status>0</Status>
    731731                                                        <Index>1</Index>
    732                                                         <Values>0.360461</Values>
     732                                                        <Values>0.289474</Values>
    733733                                                        <Status>0</Status>
    734734                                                        <Index>2</Index>
    735                                                         <Values>0.30832</Values>
     735                                                        <Values>0.0643512</Values>
    736736                                                        <Status>0</Status>
    737737                                                </Variables>
     
    769769                        <Desc>FlowFraction</Desc>
    770770                        <Index>0</Index>
    771                         <Values>0.453506</Values>
     771                        <Values>0.147944</Values>
    772772                        <Status>0</Status>
    773773                </Variables>
     
    777777        <Type>PID</Type>
    778778        <Id_String>PID_LC</Id_String>
    779         <Image_File_Name>/home/bicca/apps/biblioteca/branches/gui/eml/controllers/icon/PID.png</Image_File_Name>
    780         <X>633</X>
    781         <Y>295</Y>
     779        <Image_File_Name>/home/gerson/repositorio/alsoc/biblioteca/branches/gui/eml/controllers/icon/PID.png</Image_File_Name>
     780        <X>670</X>
     781        <Y>282</Y>
    782782        <Z>0</Z>
    783         <Width>113</Width>
    784         <Height>121</Height>
     783        <Width>81</Width>
     784        <Height>76</Height>
    785785        <Block_Properties>
    786786                <Model_File_Path>controllers/PIDs</Model_File_Path>
     
    879879                        <Desc>MaxInput</Desc>
    880880                        <Index>0</Index>
    881                         <Values>2</Values>
     881                        <Values>1</Values>
    882882                        <Status>4</Status>
    883883                </Parameters>
     
    897897                        <Desc>Input</Desc>
    898898                        <Index>0</Index>
    899                         <Values>0.186538</Values>
     899                        <Values>0.605662</Values>
    900900                        <Status>0</Status>
    901901                </Variables>
     
    903903                        <Desc>Output</Desc>
    904904                        <Index>0</Index>
    905                         <Values>0.115156</Values>
     905                        <Values>0</Values>
    906906                        <Status>0</Status>
    907907                </Variables>
     
    917917        <Type>PID</Type>
    918918        <Id_String>PID_PC</Id_String>
    919         <Image_File_Name>/home/bicca/apps/biblioteca/branches/gui/eml/controllers/icon/PID.png</Image_File_Name>
    920         <X>846</X>
    921         <Y>154</Y>
     919        <Image_File_Name>/home/gerson/repositorio/alsoc/biblioteca/branches/gui/eml/controllers/icon/PID.png</Image_File_Name>
     920        <X>891</X>
     921        <Y>199</Y>
    922922        <Z>0</Z>
    923         <Width>113</Width>
    924         <Height>121</Height>
     923        <Width>67</Width>
     924        <Height>75</Height>
    925925        <Block_Properties>
    926926                <Model_File_Path>controllers/PIDs</Model_File_Path>
     
    10371037                        <Desc>Input</Desc>
    10381038                        <Index>0</Index>
    1039                         <Values>0.000131171</Values>
     1039                        <Values>0.0208251</Values>
    10401040                        <Status>0</Status>
    10411041                </Variables>
     
    10431043                        <Desc>Output</Desc>
    10441044                        <Index>0</Index>
    1045                         <Values>0.453506</Values>
     1045                        <Values>0.147944</Values>
    10461046                        <Status>0</Status>
    10471047                </Variables>
     
    10521052                        <Status>1</Status>
    10531053                </Variables>
     1054        </Block_Properties>
     1055</Block>
     1056<Block>
     1057        <Type>simple_sink</Type>
     1058        <Id_String>LiquidProduct</Id_String>
     1059        <Image_File_Name>/home/gerson/repositorio/alsoc/biblioteca/branches/gui/eml/icon/Sink.png</Image_File_Name>
     1060        <X>877</X>
     1061        <Y>523</Y>
     1062        <Z>0</Z>
     1063        <Width>68</Width>
     1064        <Height>30</Height>
     1065        <Block_Properties>
     1066                <Model_File_Path>streams</Model_File_Path>
     1067                <Instance_Id>LiquidProduct</Instance_Id>
     1068                <Model_Name>simple_sink</Model_Name>
     1069                <T_Connection>0</T_Connection>
     1070                <Sub_Models>
     1071                        <Block_Properties>
     1072                                <Model_File_Path>streams</Model_File_Path>
     1073                                <Instance_Id>Inlet</Instance_Id>
     1074                                <Model_Name>Inlet</Model_Name>
     1075                                <T_Connection>1</T_Connection>
     1076                                <Base_Models>
     1077                                        <Block_Properties>
     1078                                                <Model_File_Path>streams</Model_File_Path>
     1079                                                <Instance_Id>Inlet</Instance_Id>
     1080                                                <Model_Name>stream</Model_Name>
     1081                                                <T_Connection>1</T_Connection>
     1082                                                <Parameters>
     1083                                                        <Desc>NComp</Desc>
     1084                                                        <Index>0</Index>
     1085                                                        <Values>3</Values>
     1086                                                        <Status>0</Status>
     1087                                                </Parameters>
     1088                                                <Variables>
     1089                                                        <Desc>F</Desc>
     1090                                                        <Index>0</Index>
     1091                                                        <Values>0</Values>
     1092                                                        <Status>0</Status>
     1093                                                        <Unit>kmol/h</Unit>
     1094                                                </Variables>
     1095                                                <Variables>
     1096                                                        <Desc>T</Desc>
     1097                                                        <Index>0</Index>
     1098                                                        <Values>272.072</Values>
     1099                                                        <Status>0</Status>
     1100                                                        <Unit>K</Unit>
     1101                                                </Variables>
     1102                                                <Variables>
     1103                                                        <Desc>P</Desc>
     1104                                                        <Index>0</Index>
     1105                                                        <Values>0.0208251</Values>
     1106                                                        <Status>0</Status>
     1107                                                        <Unit>atm</Unit>
     1108                                                </Variables>
     1109                                                <Variables>
     1110                                                        <Desc>h</Desc>
     1111                                                        <Index>0</Index>
     1112                                                        <Values>-41518.8</Values>
     1113                                                        <Status>0</Status>
     1114                                                        <Unit>kJ/kmol</Unit>
     1115                                                </Variables>
     1116                                                <Variables>
     1117                                                        <Desc>v</Desc>
     1118                                                        <Index>0</Index>
     1119                                                        <Values>0</Values>
     1120                                                        <Status>0</Status>
     1121                                                </Variables>
     1122                                                <Variables>
     1123                                                        <Desc>z</Desc>
     1124                                                        <Index>0</Index>
     1125                                                        <Values>0.0208973</Values>
     1126                                                        <Status>0</Status>
     1127                                                        <Index>1</Index>
     1128                                                        <Values>0.19209</Values>
     1129                                                        <Status>0</Status>
     1130                                                        <Index>2</Index>
     1131                                                        <Values>0.787012</Values>
     1132                                                        <Status>0</Status>
     1133                                                </Variables>
     1134                                        </Block_Properties>
     1135                                </Base_Models>
     1136                        </Block_Properties>
     1137                </Sub_Models>
    10541138        </Block_Properties>
    10551139</Block>
     
    10571141        <Type>flash</Type>
    10581142        <Id_String>F101_1</Id_String>
    1059         <Image_File_Name>/home/bicca/apps/biblioteca/branches/gui/eml/stage_separators/icon/Flash.png</Image_File_Name>
    1060         <X>360</X>
    1061         <Y>134</Y>
     1143        <Image_File_Name>/home/gerson/repositorio/alsoc/biblioteca/branches/gui/eml/stage_separators/icon/Flash.png</Image_File_Name>
     1144        <X>311</X>
     1145        <Y>212</Y>
    10621146        <Z>0</Z>
    1063         <Width>140</Width>
    1064         <Height>225</Height>
     1147        <Width>97</Width>
     1148        <Height>157.5</Height>
    10651149        <Block_Properties>
    10661150                <Model_File_Path>stage_separators/flash</Model_File_Path>
     
    11631247                                                                        <Desc>F</Desc>
    11641248                                                                        <Index>0</Index>
    1165                                                                         <Values>115.156</Values>
     1249                                                                        <Values>0</Values>
    11661250                                                                        <Status>0</Status>
    11671251                                                                        <Unit>kmol/h</Unit>
     
    11701254                                                                        <Desc>T</Desc>
    11711255                                                                        <Index>0</Index>
    1172                                                                         <Values>231.817</Values>
     1256                                                                        <Values>272.072</Values>
    11731257                                                                        <Status>0</Status>
    11741258                                                                        <Unit>K</Unit>
     
    11771261                                                                        <Desc>P</Desc>
    11781262                                                                        <Index>0</Index>
    1179                                                                         <Values>0.000131171</Values>
     1263                                                                        <Values>0.0208251</Values>
    11801264                                                                        <Status>0</Status>
    11811265                                                                        <Unit>atm</Unit>
     
    11841268                                                                        <Desc>h</Desc>
    11851269                                                                        <Index>0</Index>
    1186                                                                         <Values>-52569.6</Values>
     1270                                                                        <Values>-41518.8</Values>
    11871271                                                                        <Status>0</Status>
    11881272                                                                        <Unit>kJ/kmol</Unit>
     
    11971281                                                                        <Desc>z</Desc>
    11981282                                                                        <Index>0</Index>
    1199                                                                         <Values>0.000496898</Values>
     1283                                                                        <Values>0.0208973</Values>
    12001284                                                                        <Status>0</Status>
    12011285                                                                        <Index>1</Index>
    1202                                                                         <Values>0.0220317</Values>
     1286                                                                        <Values>0.19209</Values>
    12031287                                                                        <Status>0</Status>
    12041288                                                                        <Index>2</Index>
    1205                                                                         <Values>0.977471</Values>
     1289                                                                        <Values>0.787012</Values>
    12061290                                                                        <Status>0</Status>
    12071291                                                                </Variables>
     
    12451329                                                                        <Desc>F</Desc>
    12461330                                                                        <Index>0</Index>
    1247                                                                         <Values>453.506</Values>
     1331                                                                        <Values>147.944</Values>
    12481332                                                                        <Status>0</Status>
    12491333                                                                        <Unit>kmol/h</Unit>
     
    12521336                                                                        <Desc>T</Desc>
    12531337                                                                        <Index>0</Index>
    1254                                                                         <Values>231.817</Values>
     1338                                                                        <Values>272.072</Values>
    12551339                                                                        <Status>0</Status>
    12561340                                                                        <Unit>K</Unit>
     
    12591343                                                                        <Desc>P</Desc>
    12601344                                                                        <Index>0</Index>
    1261                                                                         <Values>0.000131171</Values>
     1345                                                                        <Values>0.0208251</Values>
    12621346                                                                        <Status>0</Status>
    12631347                                                                        <Unit>atm</Unit>
     
    12661350                                                                        <Desc>h</Desc>
    12671351                                                                        <Index>0</Index>
    1268                                                                         <Values>-7420.84</Values>
     1352                                                                        <Values>-2699.45</Values>
    12691353                                                                        <Status>0</Status>
    12701354                                                                        <Unit>kJ/kmol</Unit>
     
    12791363                                                                        <Desc>z</Desc>
    12801364                                                                        <Index>0</Index>
    1281                                                                         <Values>0.33122</Values>
     1365                                                                        <Values>0.646174</Values>
    12821366                                                                        <Status>0</Status>
    12831367                                                                        <Index>1</Index>
    1284                                                                         <Values>0.360461</Values>
     1368                                                                        <Values>0.289474</Values>
    12851369                                                                        <Status>0</Status>
    12861370                                                                        <Index>2</Index>
    1287                                                                         <Values>0.30832</Values>
     1371                                                                        <Values>0.0643512</Values>
    12881372                                                                        <Status>0</Status>
    12891373                                                                </Variables>
     
    13131397                </Parameters>
    13141398                <Parameters>
    1315                         <Desc>VesselVolume</Desc>
    1316                         <Index>0</Index>
    1317                         <Values>8</Values>
    1318                         <Status>4</Status>
     1399                        <Desc>Orientation</Desc>
     1400                        <Index>0</Index>
     1401                        <Values>vertical</Values>
     1402                        <Status>4</Status>
     1403                </Parameters>
     1404                <Parameters>
     1405                        <Desc>Heads</Desc>
     1406                        <Index>0</Index>
     1407                        <Values>flat</Values>
     1408                        <Status>4</Status>
     1409                </Parameters>
     1410                <Parameters>
     1411                        <Desc>Diameter</Desc>
     1412                        <Index>0</Index>
     1413                        <Values>3.1</Values>
     1414                        <Status>4</Status>
     1415                        <Unit>m</Unit>
     1416                </Parameters>
     1417                <Parameters>
     1418                        <Desc>Lenght</Desc>
     1419                        <Index>0</Index>
     1420                        <Values>6</Values>
     1421                        <Status>4</Status>
     1422                        <Unit>m</Unit>
     1423                </Parameters>
     1424                <Parameters>
     1425                        <Desc>Levelpercent_Initial</Desc>
     1426                        <Index>0</Index>
     1427                        <Values>0.80</Values>
     1428                        <Status>4</Status>
     1429                </Parameters>
     1430                <Parameters>
     1431                        <Desc>Temperature_Initial</Desc>
     1432                        <Index>0</Index>
     1433                        <Values>373</Values>
     1434                        <Status>4</Status>
     1435                        <Unit>K</Unit>
     1436                </Parameters>
     1437                <Parameters>
     1438                        <Desc>Composition_Initial</Desc>
     1439                        <Index>0</Index>
     1440                        <Values>0.30</Values>
     1441                        <Status>4</Status>
     1442                        <Index>1</Index>
     1443                        <Values>0.40</Values>
     1444                        <Status>4</Status>
     1445                        <Index>2</Index>
     1446                        <Values>0.30</Values>
     1447                        <Status>4</Status>
     1448                </Parameters>
     1449                <Variables>
     1450                        <Desc>InletQ</Desc>
     1451                        <Index>0</Index>
     1452                        <Values>1027</Values>
     1453                        <Status>0</Status>
     1454                        <Unit>kW</Unit>
     1455                </Variables>
     1456                <Variables>
     1457                        <Desc>Vtotal</Desc>
     1458                        <Index>0</Index>
     1459                        <Values>12.5664</Values>
     1460                        <Status>0</Status>
    13191461                        <Unit>m^3</Unit>
    1320                 </Parameters>
    1321                 <Parameters>
    1322                         <Desc>Orientation</Desc>
    1323                         <Index>0</Index>
    1324                         <Values>vertical</Values>
    1325                         <Status>4</Status>
    1326                 </Parameters>
    1327                 <Parameters>
    1328                         <Desc>Diameter</Desc>
    1329                         <Index>0</Index>
    1330                         <Values>3.1</Values>
    1331                         <Status>4</Status>
    1332                         <Unit>m</Unit>
    1333                 </Parameters>
    1334                 <Parameters>
    1335                         <Desc>Levelpercent_Initial</Desc>
    1336                         <Index>0</Index>
    1337                         <Values>0.70</Values>
    1338                         <Status>4</Status>
    1339                 </Parameters>
    1340                 <Parameters>
    1341                         <Desc>Temperature_Initial</Desc>
    1342                         <Index>0</Index>
    1343                         <Values>383</Values>
    1344                         <Status>4</Status>
    1345                         <Unit>K</Unit>
    1346                 </Parameters>
    1347                 <Parameters>
    1348                         <Desc>Composition_Initial</Desc>
    1349                         <Index>0</Index>
    1350                         <Values>0.3</Values>
    1351                         <Status>4</Status>
    1352                         <Index>1</Index>
    1353                         <Values>0.4</Values>
    1354                         <Status>4</Status>
    1355                         <Index>2</Index>
    1356                         <Values>0.3</Values>
    1357                         <Status>4</Status>
    1358                 </Parameters>
    1359                 <Variables>
    1360                         <Desc>InletQ</Desc>
    1361                         <Index>0</Index>
    1362                         <Values>1026.32</Values>
    1363                         <Status>0</Status>
    1364                         <Unit>kW</Unit>
     1462                </Variables>
     1463                <Variables>
     1464                        <Desc>Vfilled</Desc>
     1465                        <Index>0</Index>
     1466                        <Values>7.61098</Values>
     1467                        <Status>0</Status>
     1468                        <Unit>m^3</Unit>
    13651469                </Variables>
    13661470                <Variables>
    13671471                        <Desc>TotalHoldup</Desc>
    13681472                        <Index>0</Index>
    1369                         <Values>0.00413028</Values>
     1473                        <Values>0.943165</Values>
    13701474                        <Status>0</Status>
    13711475                        <Unit>kmol</Unit>
    13721476                        <Index>1</Index>
    1373                         <Values>0.182487</Values>
     1477                        <Values>8.6448</Values>
    13741478                        <Status>0</Status>
    13751479                        <Unit>kmol</Unit>
    13761480                        <Index>2</Index>
    1377                         <Values>8.09564</Values>
     1481                        <Values>35.414</Values>
    13781482                        <Status>0</Status>
    13791483                        <Unit>kmol</Unit>
     
    13821486                        <Desc>LiquidHoldup</Desc>
    13831487                        <Index>0</Index>
    1384                         <Values>8.28222</Values>
     1488                        <Values>44.9973</Values>
    13851489                        <Status>0</Status>
    13861490                        <Unit>kmol</Unit>
     
    13891493                        <Desc>VapourHoldup</Desc>
    13901494                        <Index>0</Index>
    1391                         <Values>4.48756e-05</Values>
     1495                        <Values>0.00464141</Values>
    13921496                        <Status>0</Status>
    13931497                        <Unit>kmol</Unit>
     
    13961500                        <Desc>E</Desc>
    13971501                        <Index>0</Index>
    1398                         <Values>-435393</Values>
     1502                        <Values>-1.86829e+06</Values>
    13991503                        <Status>0</Status>
    14001504                        <Unit>kJ</Unit>
     
    14031507                        <Desc>vL</Desc>
    14041508                        <Index>0</Index>
    1405                         <Values>0.000180182</Values>
     1509                        <Values>0.000169143</Values>
    14061510                        <Status>0</Status>
    14071511                        <Unit>m^3/mol</Unit>
     
    14101514                        <Desc>vV</Desc>
    14111515                        <Index>0</Index>
    1412                         <Values>145.016</Values>
     1516                        <Values>1.06688</Values>
    14131517                        <Status>0</Status>
    14141518                        <Unit>m^3/mol</Unit>
     
    14171521                        <Desc>Level</Desc>
    14181522                        <Index>0</Index>
    1419                         <Values>0.197717</Values>
     1523                        <Values>2.42265</Values>
    14201524                        <Status>0</Status>
    14211525                        <Unit>m</Unit>
    14221526                </Variables>
    14231527                <Variables>
    1424                         <Desc>Across</Desc>
    1425                         <Index>0</Index>
    1426                         <Values>7.54768</Values>
    1427                         <Status>0</Status>
    1428                         <Unit>m^2</Unit>
    1429                 </Variables>
    1430                 <Variables>
    14311528                        <Desc>vfrac</Desc>
    14321529                        <Index>0</Index>
    1433                         <Values>0.907012</Values>
     1530                        <Values>0.295889</Values>
    14341531                        <Status>0</Status>
    14351532                </Variables>
     
    14371534                        <Desc>Pratio</Desc>
    14381535                        <Index>0</Index>
    1439                         <Values>2.62341e-05</Values>
     1536                        <Values>0.00416502</Values>
    14401537                        <Status>0</Status>
    14411538                </Variables>
     
    14431540                        <Desc>Pdrop</Desc>
    14441541                        <Index>0</Index>
    1445                         <Values>506.612</Values>
     1542                        <Values>504.515</Values>
    14461543                        <Status>0</Status>
    14471544                        <Unit>kPa</Unit>
     
    14501547                        <Desc>TI</Desc>
    14511548                        <Index>0</Index>
    1452                         <Values>-41.333</Values>
     1549                        <Values>272.072</Values>
    14531550                        <Status>0</Status>
    14541551                </Variables>
     
    14561553                        <Desc>PI</Desc>
    14571554                        <Index>0</Index>
    1458                         <Values>0.000131171</Values>
     1555                        <Values>0.0208251</Values>
    14591556                        <Status>0</Status>
    14601557                </Variables>
     
    14621559                        <Desc>LI</Desc>
    14631560                        <Index>0</Index>
    1464                         <Values>0.186538</Values>
    1465                         <Status>0</Status>
    1466                 </Variables>
    1467         </Block_Properties>
    1468 </Block>
    1469 <Block>
    1470         <Type>simple_sink</Type>
    1471         <Id_String>LiquidProduct</Id_String>
    1472         <Image_File_Name>/home/bicca/apps/biblioteca/branches/gui/eml/icon/Sink.png</Image_File_Name>
    1473         <X>877</X>
    1474         <Y>523</Y>
    1475         <Z>0</Z>
    1476         <Width>68</Width>
    1477         <Height>30</Height>
    1478         <Block_Properties>
    1479                 <Model_File_Path>streams</Model_File_Path>
    1480                 <Instance_Id>simple_sink_1</Instance_Id>
    1481                 <Model_Name>simple_sink</Model_Name>
    1482                 <T_Connection>0</T_Connection>
    1483                 <Sub_Models>
    1484                         <Block_Properties>
    1485                                 <Model_File_Path>streams</Model_File_Path>
    1486                                 <Instance_Id>Inlet</Instance_Id>
    1487                                 <Model_Name>Inlet</Model_Name>
    1488                                 <T_Connection>1</T_Connection>
    1489                                 <Base_Models>
    1490                                         <Block_Properties>
    1491                                                 <Model_File_Path>streams</Model_File_Path>
    1492                                                 <Instance_Id>Inlet</Instance_Id>
    1493                                                 <Model_Name>stream</Model_Name>
    1494                                                 <T_Connection>1</T_Connection>
    1495                                                 <Parameters>
    1496                                                         <Desc>NComp</Desc>
    1497                                                         <Index>0</Index>
    1498                                                         <Values>3</Values>
    1499                                                         <Status>0</Status>
    1500                                                 </Parameters>
    1501                                                 <Variables>
    1502                                                         <Desc>F</Desc>
    1503                                                         <Index>0</Index>
    1504                                                         <Values>115.156</Values>
    1505                                                         <Status>0</Status>
    1506                                                         <Unit>kmol/h</Unit>
    1507                                                 </Variables>
    1508                                                 <Variables>
    1509                                                         <Desc>T</Desc>
    1510                                                         <Index>0</Index>
    1511                                                         <Values>231.817</Values>
    1512                                                         <Status>0</Status>
    1513                                                         <Unit>K</Unit>
    1514                                                 </Variables>
    1515                                                 <Variables>
    1516                                                         <Desc>P</Desc>
    1517                                                         <Index>0</Index>
    1518                                                         <Values>0.000131171</Values>
    1519                                                         <Status>0</Status>
    1520                                                         <Unit>atm</Unit>
    1521                                                 </Variables>
    1522                                                 <Variables>
    1523                                                         <Desc>h</Desc>
    1524                                                         <Index>0</Index>
    1525                                                         <Values>-52569.6</Values>
    1526                                                         <Status>0</Status>
    1527                                                         <Unit>kJ/kmol</Unit>
    1528                                                 </Variables>
    1529                                                 <Variables>
    1530                                                         <Desc>v</Desc>
    1531                                                         <Index>0</Index>
    1532                                                         <Values>0</Values>
    1533                                                         <Status>0</Status>
    1534                                                 </Variables>
    1535                                                 <Variables>
    1536                                                         <Desc>z</Desc>
    1537                                                         <Index>0</Index>
    1538                                                         <Values>0.000496898</Values>
    1539                                                         <Status>0</Status>
    1540                                                         <Index>1</Index>
    1541                                                         <Values>0.0220317</Values>
    1542                                                         <Status>0</Status>
    1543                                                         <Index>2</Index>
    1544                                                         <Values>0.977471</Values>
    1545                                                         <Status>0</Status>
    1546                                                 </Variables>
    1547                                         </Block_Properties>
    1548                                 </Base_Models>
    1549                         </Block_Properties>
    1550                 </Sub_Models>
     1561                        <Values>0.605662</Values>
     1562                        <Status>0</Status>
     1563                </Variables>
    15511564        </Block_Properties>
    15521565</Block>
     
    15551568        <X1>696</X1>
    15561569        <Y1>66.9265</Y1>
    1557         <X2>1019</X2>
    1558         <Y2>93</Y2>
     1570        <X2>880</X2>
     1571        <Y2>117.924</Y2>
    15591572        <Block_Source>valve_Vapour</Block_Source>
    15601573        <Port_Source>Outlet</Port_Source>
     
    15641577<Line>
    15651578        <Line_Name>6</Line_Name>
    1566         <X1>694.02</X1>
    1567         <Y1>416</Y1>
     1579        <X1>713.74</X1>
     1580        <Y1>358</Y1>
    15681581        <X2>543.769</X2>
    15691582        <Y2>505</Y2>
     
    15751588<Line>
    15761589        <Line_Name>9</Line_Name>
    1577         <X1>907.02</X1>
    1578         <Y1>275</Y1>
     1590        <X1>927.18</X1>
     1591        <Y1>274</Y1>
    15791592        <X2>659</X2>
    15801593        <Y2>22</Y2>
     
    15831596        <Block_Target>valve_Vapour</Block_Target>
    15841597        <Port_Target>FlowFraction</Port_Target>
    1585 </Line>
    1586 <Line>
    1587         <Line_Name>1</Line_Name>
    1588         <X1>428.278</X1>
    1589         <Y1>134</Y1>
    1590         <X2>621</X2>
    1591         <Y2>68</Y2>
    1592         <Block_Source>F101_1</Block_Source>
    1593         <Port_Source>OutletVapour</Port_Source>
    1594         <Block_Target>valve_Vapour</Block_Target>
    1595         <Port_Target>Inlet</Port_Target>
    1596 </Line>
    1597 <Line>
    1598         <Line_Name>2</Line_Name>
    1599         <X1>427.06</X1>
    1600         <Y1>359</Y1>
    1601         <X2>500</X2>
    1602         <Y2>542</Y2>
    1603         <Block_Source>F101_1</Block_Source>
    1604         <Port_Source>OutletLiquid</Port_Source>
    1605         <Block_Target>valve_liquid</Block_Target>
    1606         <Port_Target>Inlet</Port_Target>
    1607 </Line>
    1608 <Line>
    1609         <Line_Name>3</Line_Name>
    1610         <X1>148</X1>
    1611         <Y1>146.768</Y1>
    1612         <X2>366</X2>
    1613         <Y2>254</Y2>
    1614         <Block_Source>Feed</Block_Source>
    1615         <Port_Source>Outlet</Port_Source>
    1616         <Block_Target>F101_1</Block_Target>
    1617         <Port_Target>Inlet</Port_Target>
    1618 </Line>
    1619 <Line>
    1620         <Line_Name>4</Line_Name>
    1621         <X1>301.5</X1>
    1622         <Y1>398.48</Y1>
    1623         <X2>500</X2>
    1624         <Y2>310</Y2>
    1625         <Block_Source>HeatToFlash</Block_Source>
    1626         <Port_Source>OutletQ</Port_Source>
    1627         <Block_Target>F101_1</Block_Target>
    1628         <Port_Target>InletQ</Port_Target>
    1629 </Line>
    1630 <Line>
    1631         <Line_Name>7</Line_Name>
    1632         <X1>500</X1>
    1633         <Y1>224</Y1>
    1634         <X2>636</X2>
    1635         <Y2>357</Y2>
    1636         <Block_Source>F101_1</Block_Source>
    1637         <Port_Source>LI</Port_Source>
    1638         <Block_Target>PID_LC</Block_Target>
    1639         <Port_Target>Input</Port_Target>
    1640 </Line>
    1641 <Line>
    1642         <Line_Name>8</Line_Name>
    1643         <X1>500</X1>
    1644         <Y1>201.5</Y1>
    1645         <X2>849</X2>
    1646         <Y2>213</Y2>
    1647         <Block_Source>F101_1</Block_Source>
    1648         <Port_Source>PI</Port_Source>
    1649         <Block_Target>PID_PC</Block_Target>
    1650         <Port_Target>Input</Port_Target>
    16511598</Line>
    16521599<Line>
     
    16611608        <Port_Target>Inlet</Port_Target>
    16621609</Line>
     1610<Line>
     1611        <Line_Name>1</Line_Name>
     1612        <X1>148</X1>
     1613        <Y1>146.768</Y1>
     1614        <X2>311</X2>
     1615        <Y2>287.6</Y2>
     1616        <Block_Source>Feed</Block_Source>
     1617        <Port_Source>Outlet</Port_Source>
     1618        <Block_Target>F101_1</Block_Target>
     1619        <Port_Target>Inlet</Port_Target>
     1620</Line>
     1621<Line>
     1622        <Line_Name>2</Line_Name>
     1623        <X1>352.71</X1>
     1624        <Y1>212</Y1>
     1625        <X2>622</X2>
     1626        <Y2>68</Y2>
     1627        <Block_Source>F101_1</Block_Source>
     1628        <Port_Source>OutletVapour</Port_Source>
     1629        <Block_Target>valve_Vapour</Block_Target>
     1630        <Port_Target>Inlet</Port_Target>
     1631</Line>
     1632<Line>
     1633        <Line_Name>3</Line_Name>
     1634        <X1>550.5</X1>
     1635        <Y1>344.2</Y1>
     1636        <X2>407</X2>
     1637        <Y2>337</Y2>
     1638        <Block_Source>HeatToFlash</Block_Source>
     1639        <Port_Source>OutletQ</Port_Source>
     1640        <Block_Target>F101_1</Block_Target>
     1641        <Port_Target>InletQ</Port_Target>
     1642</Line>
     1643<Line>
     1644        <Line_Name>4</Line_Name>
     1645        <X1>352.71</X1>
     1646        <Y1>369.5</Y1>
     1647        <X2>499</X2>
     1648        <Y2>546</Y2>
     1649        <Block_Source>F101_1</Block_Source>
     1650        <Port_Source>OutletLiquid</Port_Source>
     1651        <Block_Target>valve_liquid</Block_Target>
     1652        <Port_Target>Inlet</Port_Target>
     1653</Line>
     1654<Line>
     1655        <Line_Name>7</Line_Name>
     1656        <X1>408</X1>
     1657        <Y1>304.925</Y1>
     1658        <X2>677</X2>
     1659        <Y2>322</Y2>
     1660        <Block_Source>F101_1</Block_Source>
     1661        <Port_Source>LI</Port_Source>
     1662        <Block_Target>PID_LC</Block_Target>
     1663        <Port_Target>Input</Port_Target>
     1664</Line>
     1665<Line>
     1666        <Line_Name>8</Line_Name>
     1667        <X1>408</X1>
     1668        <Y1>245.075</Y1>
     1669        <X2>890</X2>
     1670        <Y2>238</Y2>
     1671        <Block_Source>F101_1</Block_Source>
     1672        <Port_Source>PI</Port_Source>
     1673        <Block_Target>PID_PC</Block_Target>
     1674        <Port_Target>Input</Port_Target>
     1675</Line>
    16631676</Diagram>
  • branches/gui/sample/stage_separators/Sample_flash_PIDincr.mso

    r749 r796  
    3636
    3737        SET
    38         F101.VesselVolume = 8 * 'm^3';
    3938        F101.Orientation = "vertical";
     39        F101.Heads = "flat";
    4040        F101.Diameter = 3.1 * 'm';
     41        F101.Lenght = 6 * 'm';
    4142        F101.Levelpercent_Initial = 0.70;
    4243        F101.Temperature_Initial = 383 * 'K';
     
    137138        PIDIncr_LC.tauSet = 1 * 's';
    138139        PIDIncr_LC.MinInput = 0;
    139         PIDIncr_LC.MaxInput = 2.36;
     140        PIDIncr_LC.MaxInput = 1;
    140141        PIDIncr_LC.MinOutput = 0;
    141142        PIDIncr_LC.MaxOutput = 1;
     
    188189        OPTIONS
    189190        Dynamic = true;
    190         TimeStep = 0.02;
     191        TimeStep = 0.2;
    191192        TimeEnd = 1;
    192193        TimeUnit = 'h';
     
    194195        NLASolver(
    195196                File = "sundials",
    196                 RelativeAccuracy = 1e-3,
     197                RelativeAccuracy = 1e-2,
    197198                AbsoluteAccuracy = 1e-3,
    198199                MaxIterations = 100
     
    200201        DAESolver(
    201202                File = "sundials",
    202                 RelativeAccuracy = 1e-3,
     203                RelativeAccuracy = 1e-2,
    203204                AbsoluteAccuracy = 1e-6,
    204205                EventAccuracy = 1e-2
  • branches/gui/sample/stage_separators/Sample_flash_PIDincr.pfd

    r714 r796  
    1212        <Dynamic>1</Dynamic>
    1313        <Time_Start>0</Time_Start>
    14         <Time_Step>0.02</Time_Step>
     14        <Time_Step>0.2</Time_Step>
    1515        <Time_End>1</Time_End>
    1616        <Time_Unit>h</Time_Unit>
     
    2020        <NLASolver_File_Index>0</NLASolver_File_Index>
    2121        <NLASolver_File_Text>sundials</NLASolver_File_Text>
     22        <NLASolver_Relative_Accuracy>1e-2</NLASolver_Relative_Accuracy>
    2223        <NLASolver_Absolute_Accuracy>1e-3</NLASolver_Absolute_Accuracy>
    2324        <DAESolver_File_Index>0</DAESolver_File_Index>
    2425        <DAESolver_File_Text>sundials</DAESolver_File_Text>
    25         <DAESolver_Relative_Accuracy>1e-3</DAESolver_Relative_Accuracy>
     26        <DAESolver_Relative_Accuracy>1e-2</DAESolver_Relative_Accuracy>
    2627        <DAESolver_Absolute_Accuracy>1e-6</DAESolver_Absolute_Accuracy>
    2728        <DAESolver_Evt_Accuracy>1e-2</DAESolver_Evt_Accuracy>
     
    3435        <Show_Grid>0</Show_Grid>
    3536        <Snap_to_Grid>0</Snap_to_Grid>
    36         <Width>1020</Width>
    37         <Height>541</Height>
     37        <Width>1248</Width>
     38        <Height>511</Height>
    3839        <X>0</X>
    39         <Y>0</Y>
     40        <Y>-100</Y>
    4041</View>
    4142<View>
     
    4344        <Show_Grid>0</Show_Grid>
    4445        <Snap_to_Grid>0</Snap_to_Grid>
    45         <Width>1020</Width>
     46        <Width>1248</Width>
    4647        <Height>0</Height>
    4748        <X>0</X>
     
    5152        <Type>energy_source</Type>
    5253        <Id_String>HeatToFlash</Id_String>
    53         <Image_File_Name>/home/bicca/apps/biblioteca/branches/gui/eml/icon/energy_source.png</Image_File_Name>
    54         <X>141</X>
    55         <Y>401</Y>
     54        <Image_File_Name>/home/gerson/repositorio/alsoc/biblioteca/branches/gui/eml/icon/energy_source.png</Image_File_Name>
     55        <X>131</X>
     56        <Y>391</Y>
    5657        <Z>0</Z>
    5758        <Width>72.5</Width>
     
    7475        <Type>flash</Type>
    7576        <Id_String>F101</Id_String>
    76         <Image_File_Name>/home/bicca/apps/biblioteca/branches/gui/eml/stage_separators/icon/Flash.png</Image_File_Name>
     77        <Image_File_Name>/home/gerson/repositorio/alsoc/biblioteca/branches/gui/eml/stage_separators/icon/Flash.png</Image_File_Name>
    7778        <X>254</X>
    78         <Y>82</Y>
     79        <Y>83</Y>
    7980        <Z>0</Z>
    80         <Width>195</Width>
    81         <Height>256</Height>
     81        <Width>114</Width>
     82        <Height>200</Height>
    8283        <Block_Properties>
    8384                <Model_File_Path>stage_separators/flash</Model_File_Path>
     
    330331                </Parameters>
    331332                <Parameters>
    332                         <Desc>VesselVolume</Desc>
    333                         <Index>0</Index>
    334                         <Values>8</Values>
    335                         <Status>4</Status>
    336                         <Unit>m^3</Unit>
    337                 </Parameters>
    338                 <Parameters>
    339333                        <Desc>Orientation</Desc>
    340334                        <Index>0</Index>
     
    343337                </Parameters>
    344338                <Parameters>
     339                        <Desc>Heads</Desc>
     340                        <Index>0</Index>
     341                        <Values>flat</Values>
     342                        <Status>4</Status>
     343                </Parameters>
     344                <Parameters>
    345345                        <Desc>Diameter</Desc>
    346346                        <Index>0</Index>
    347347                        <Values>3.1</Values>
     348                        <Status>4</Status>
     349                        <Unit>m</Unit>
     350                </Parameters>
     351                <Parameters>
     352                        <Desc>Lenght</Desc>
     353                        <Index>0</Index>
     354                        <Values>6</Values>
    348355                        <Status>4</Status>
    349356                        <Unit>m</Unit>
     
    437444                        <Status>0</Status>
    438445                        <Unit>m</Unit>
    439                 </Variables>
    440                 <Variables>
    441                         <Desc>Across</Desc>
    442                         <Index>0</Index>
    443                         <Values>7.54768</Values>
    444                         <Status>0</Status>
    445                         <Unit>m^2</Unit>
    446446                </Variables>
    447447                <Variables>
     
    487487        <Type>simple_source</Type>
    488488        <Id_String>Feed</Id_String>
    489         <Image_File_Name>/home/bicca/apps/biblioteca/branches/gui/eml/icon/Source.png</Image_File_Name>
     489        <Image_File_Name>/home/gerson/repositorio/alsoc/biblioteca/branches/gui/eml/icon/Source.png</Image_File_Name>
    490490        <X>18</X>
    491491        <Y>242</Y>
     
    650650        <Type>sink</Type>
    651651        <Id_String>VaporProduct</Id_String>
    652         <Image_File_Name>/home/bicca/apps/biblioteca/branches/gui/eml/icon/Sink.png</Image_File_Name>
    653         <X>1017</X>
    654         <Y>77</Y>
     652        <Image_File_Name>/home/gerson/repositorio/alsoc/biblioteca/branches/gui/eml/icon/Sink.png</Image_File_Name>
     653        <X>1000</X>
     654        <Y>224</Y>
    655655        <Z>0</Z>
    656656        <Width>68</Width>
     
    822822        <Type>sink</Type>
    823823        <Id_String>LiquidProduct</Id_String>
    824         <Image_File_Name>/home/bicca/apps/biblioteca/branches/gui/eml/icon/Sink.png</Image_File_Name>
     824        <Image_File_Name>/home/gerson/repositorio/alsoc/biblioteca/branches/gui/eml/icon/Sink.png</Image_File_Name>
    825825        <X>888</X>
    826826        <Y>509</Y>
     
    994994        <Type>PIDIncr</Type>
    995995        <Id_String>PIDIncr_PC</Id_String>
    996         <Image_File_Name>/home/bicca/apps/biblioteca/branches/gui/eml/controllers/icon/PIDincr.png</Image_File_Name>
    997         <X>701</X>
    998         <Y>138</Y>
     996        <Image_File_Name>/home/gerson/repositorio/alsoc/biblioteca/branches/gui/eml/controllers/icon/PIDincr.png</Image_File_Name>
     997        <X>526</X>
     998        <Y>100</Y>
    999999        <Z>0</Z>
    1000         <Width>113</Width>
    1001         <Height>121</Height>
     1000        <Width>56</Width>
     1001        <Height>57</Height>
    10021002        <Block_Properties>
    10031003                <Model_File_Path>controllers/PIDIncr</Model_File_Path>
     
    11341134        <Type>PIDIncr</Type>
    11351135        <Id_String>PIDIncr_LC</Id_String>
    1136         <Image_File_Name>/home/bicca/apps/biblioteca/branches/gui/eml/controllers/icon/PIDincr.png</Image_File_Name>
    1137         <X>642</X>
    1138         <Y>322</Y>
     1136        <Image_File_Name>/home/gerson/repositorio/alsoc/biblioteca/branches/gui/eml/controllers/icon/PIDincr.png</Image_File_Name>
     1137        <X>685</X>
     1138        <Y>386</Y>
    11391139        <Z>0</Z>
    1140         <Width>113</Width>
    1141         <Height>121</Height>
     1140        <Width>56</Width>
     1141        <Height>50</Height>
    11421142        <Block_Properties>
    11431143                <Model_File_Path>controllers/PIDIncr</Model_File_Path>
     
    12361236                        <Desc>MaxInput</Desc>
    12371237                        <Index>0</Index>
    1238                         <Values>2.36</Values>
     1238                        <Values>1</Values>
    12391239                        <Status>4</Status>
    12401240                </Parameters>
     
    12741274        <Type>valve_flow</Type>
    12751275        <Id_String>valve_liquid</Id_String>
    1276         <Image_File_Name>/home/bicca/apps/biblioteca/branches/gui/eml/pressure_changers/icon/Valve.png</Image_File_Name>
     1276        <Image_File_Name>/home/gerson/repositorio/alsoc/biblioteca/branches/gui/eml/pressure_changers/icon/Valve.png</Image_File_Name>
    12771277        <X>573</X>
    12781278        <Y>517</Y>
     
    14581458        <Type>valve_flow</Type>
    14591459        <Id_String>valve_vapour</Id_String>
    1460         <Image_File_Name>/home/bicca/apps/biblioteca/branches/gui/eml/pressure_changers/icon/Valve.png</Image_File_Name>
    1461         <X>563</X>
    1462         <Y>62</Y>
     1460        <Image_File_Name>/home/gerson/repositorio/alsoc/biblioteca/branches/gui/eml/pressure_changers/icon/Valve.png</Image_File_Name>
     1461        <X>712</X>
     1462        <Y>109</Y>
    14631463        <Z>0</Z>
    14641464        <Width>52</Width>
     
    16411641<Line>
    16421642        <Line_Name>2</Line_Name>
    1643         <X1>213.5</X1>
    1644         <Y1>418.48</Y1>
    1645         <X2>449</X2>
    1646         <Y2>275.51</Y2>
     1643        <X1>203.5</X1>
     1644        <Y1>406.2</Y1>
     1645        <X2>368</X2>
     1646        <Y2>245</Y2>
    16471647        <Block_Source>HeatToFlash</Block_Source>
    16481648        <Port_Source>OutletQ</Port_Source>
     
    16551655        <Y1>257.768</Y1>
    16561656        <X2>254</X2>
    1657         <Y2>220.778</Y2>
     1657        <Y2>179</Y2>
    16581658        <Block_Source>Feed</Block_Source>
    16591659        <Port_Source>Outlet</Port_Source>
     
    16631663<Line>
    16641664        <Line_Name>8</Line_Name>
    1665         <X1>449</X1>
    1666         <Y1>158.8</Y1>
    1667         <X2>701</X2>
    1668         <Y2>198.5</Y2>
     1665        <X1>368</X1>
     1666        <Y1>125</Y1>
     1667        <X2>526</X2>
     1668        <Y2>128.5</Y2>
    16691669        <Block_Source>F101</Block_Source>
    16701670        <Port_Source>PI</Port_Source>
     
    16741674<Line>
    16751675        <Line_Name>4</Line_Name>
    1676         <X1>449</X1>
    1677         <Y1>184.4</Y1>
    1678         <X2>646</X2>
    1679         <Y2>388</Y2>
     1676        <X1>368</X1>
     1677        <Y1>201</Y1>
     1678        <X2>685</X2>
     1679        <Y2>411</Y2>
    16801680        <Block_Source>F101</Block_Source>
    16811681        <Port_Source>LI</Port_Source>
     
    16851685<Line>
    16861686        <Line_Name>1</Line_Name>
    1687         <X1>703.02</X1>
    1688         <Y1>443</Y1>
     1687        <X1>715.24</X1>
     1688        <Y1>436</Y1>
    16891689        <X2>596</X2>
    16901690        <Y2>522</Y2>
     
    17071707<Line>
    17081708        <Line_Name>5</Line_Name>
    1709         <X1>615</X1>
    1710         <Y1>95.5108</Y1>
    1711         <X2>1018</X2>
    1712         <Y2>92</Y2>
     1709        <X1>764</X1>
     1710        <Y1>142.511</Y1>
     1711        <X2>1000</X2>
     1712        <Y2>239.924</Y2>
    17131713        <Block_Source>valve_vapour</Block_Source>
    17141714        <Port_Source>Outlet</Port_Source>
     
    17181718<Line>
    17191719        <Line_Name>9</Line_Name>
    1720         <X1>762.02</X1>
    1721         <Y1>259</Y1>
    1722         <X2>589</X2>
    1723         <Y2>62</Y2>
     1720        <X1>556.24</X1>
     1721        <Y1>157</Y1>
     1722        <X2>738</X2>
     1723        <Y2>109</Y2>
    17241724        <Block_Source>PIDIncr_PC</Block_Source>
    17251725        <Port_Source>Output</Port_Source>
     
    17291729<Line>
    17301730        <Line_Name>3</Line_Name>
    1731         <X1>347.405</X1>
    1732         <Y1>338</Y1>
     1731        <X1>303.02</X1>
     1732        <Y1>283</Y1>
    17331733        <X2>576</X2>
    17341734        <Y2>551</Y2>
     
    17401740<Line>
    17411741        <Line_Name>6</Line_Name>
    1742         <X1>349.101</X1>
    1743         <Y1>82</Y1>
    1744         <X2>569</X2>
    1745         <Y2>92</Y2>
     1742        <X1>303.02</X1>
     1743        <Y1>83</Y1>
     1744        <X2>712</X2>
     1745        <Y2>142.511</Y2>
    17461746        <Block_Source>F101</Block_Source>
    17471747        <Port_Source>OutletVapour</Port_Source>
  • branches/gui/sample/stage_separators/sample_flash.mso

    r749 r796  
    33*----------------------------------------------*#
    44
     5using "pressure_changers/valve";
    56using "streams";
     7using "controllers/PIDs";
    68using "stage_separators/flash";
    7 using "pressure_changers/valve";
    8 using "controllers/PIDs";
    99
    1010FlowSheet sample_flash
     
    1919        SET
    2020        NComp = PP.NumberOfComponents;
    21 
    22         DEVICES
    23         Heat as energy_source;
    24 
    25         SET
    26 
    27         SPECIFY
    28         Heat.OutletQ = 1026.32 * 'kW';
    29 
    30         INITIAL
    31 
    32         GUESS
    33 
    34         DEVICES
    35         F101 as flash;
    36 
    37         SET
    38         F101.VesselVolume = 8 * 'm^3';
    39         F101.Orientation = "vertical";
    40         F101.Diameter = 2 * 'm';
    41         F101.Levelpercent_Initial = 0.80;
    42         F101.Temperature_Initial = 373 * 'K';
    43         F101.Composition_Initial(1) = 0.30;
    44         F101.Composition_Initial(2) = 0.40;
    45         F101.Composition_Initial(3) = 0.30;
    46 
    47         SPECIFY
    48 
    49         INITIAL
    50 
    51         GUESS
    5221
    5322        DEVICES
     
    200169        GUESS
    201170
     171        DEVICES
     172        F101 as flash;
     173
     174        SET
     175        F101.Orientation = "vertical";
     176        F101.Heads = "hemispherical";
     177        F101.Diameter = 2 * 'm';
     178        F101.Lenght = 5 * 'm';
     179        F101.Levelpercent_Initial = 0.80;
     180        F101.Temperature_Initial = 373 * 'K';
     181        F101.Composition_Initial(1) = 0.30;
     182        F101.Composition_Initial(2) = 0.40;
     183        F101.Composition_Initial(3) = 0.30;
     184
     185        SPECIFY
     186
     187        INITIAL
     188
     189        GUESS
     190
     191        DEVICES
     192        heat_duty as energy_source2;
     193
     194        SET
     195
     196        SPECIFY
     197        heat_duty.OutletQ = 1026.32 * 'kW';
     198
     199        INITIAL
     200
     201        GUESS
     202
    202203        CONNECTIONS
    203         Heat.OutletQ to F101.InletQ;
    204204        PCV.Outlet to VaporProduct.Inlet;
    205205        LCV.Outlet to LiquidProduct.Inlet;
    206206        Feed.Outlet to FeedValve.Inlet;
    207207        FeedStep.OutSignal to FeedValve.FlowFraction;
     208        PID_LC.Output to LCV.FlowFraction;
     209        PID_PC.Output to PCV.FlowFraction;
    208210        FeedValve.Outlet to F101.Inlet;
    209         F101.LI to PID_LC.Input;
    210         PID_LC.Output to LCV.FlowFraction;
    211         F101.PI to PID_PC.Input;
    212         PID_PC.Output to PCV.FlowFraction;
     211        heat_duty.OutletQ to F101.InletQ;
    213212        F101.OutletLiquid to LCV.Inlet;
    214213        F101.OutletVapour to PCV.Inlet;
     214        F101.LI to PID_LC.Input;
     215        F101.PI to PID_PC.Input;
    215216
    216217        OPTIONS
  • branches/gui/sample/stage_separators/sample_flash.pfd

    r711 r796  
    3232<View>
    3333        <Zoom_Level>1</Zoom_Level>
    34         <Show_Grid>0</Show_Grid>
    35         <Snap_to_Grid>0</Snap_to_Grid>
    36         <Width>1016</Width>
    37         <Height>495</Height>
     34        <Show_Grid>1</Show_Grid>
     35        <Snap_to_Grid>1</Snap_to_Grid>
     36        <Width>1248</Width>
     37        <Height>511</Height>
    3838        <X>0</X>
    39         <Y>-100</Y>
     39        <Y>0</Y>
    4040</View>
    4141<View>
    4242        <Zoom_Level>1</Zoom_Level>
    43         <Show_Grid>0</Show_Grid>
    44         <Snap_to_Grid>0</Snap_to_Grid>
    45         <Width>1016</Width>
     43        <Show_Grid>1</Show_Grid>
     44        <Snap_to_Grid>1</Snap_to_Grid>
     45        <Width>1248</Width>
    4646        <Height>0</Height>
    4747        <X>0</X>
    48         <Y>-241</Y>
     48        <Y>-57</Y>
    4949</View>
    5050<Block>
    51         <Type>energy_source</Type>
    52         <Id_String>Heat</Id_String>
    53         <Image_File_Name>/home/bicca/apps/biblioteca/branches/gui/eml/icon/energy_source.png</Image_File_Name>
    54         <X>39</X>
    55         <Y>343</Y>
     51        <Type>valve_flow</Type>
     52        <Id_String>LCV</Id_String>
     53        <Image_File_Name>/home/gerson/repositorio/alsoc/biblioteca/branches/gui/eml/pressure_changers/icon/Valve.png</Image_File_Name>
     54        <X>504</X>
     55        <Y>423</Y>
    5656        <Z>0</Z>
    57         <Width>72.5</Width>
    58         <Height>38</Height>
     57        <Width>64</Width>
     58        <Height>43</Height>
     59        <Block_Properties>
     60                <Model_File_Path>pressure_changers/valve</Model_File_Path>
     61                <Instance_Id>LCV</Instance_Id>
     62                <Model_Name>valve_flow</Model_Name>
     63                <T_Connection>0</T_Connection>
     64                <Sub_Models>
     65                        <Block_Properties>
     66                                <Model_File_Path>pressure_changers/valve</Model_File_Path>
     67                                <Instance_Id>Inlet</Instance_Id>
     68                                <Model_Name>Inlet</Model_Name>
     69                                <T_Connection>1</T_Connection>
     70                                <Base_Models>
     71                                        <Block_Properties>
     72                                                <Model_File_Path>streams</Model_File_Path>
     73                                                <Instance_Id>Inlet</Instance_Id>
     74                                                <Model_Name>stream</Model_Name>
     75                                                <T_Connection>1</T_Connection>
     76                                                <Parameters>
     77                                                        <Desc>NComp</Desc>
     78                                                        <Index>0</Index>
     79                                                        <Values>3</Values>
     80                                                        <Status>0</Status>
     81                                                </Parameters>
     82                                                <Variables>
     83                                                        <Desc>F</Desc>
     84                                                        <Index>0</Index>
     85                                                        <Values>390.714</Values>
     86                                                        <Status>0</Status>
     87                                                        <Unit>kmol/h</Unit>
     88                                                </Variables>
     89                                                <Variables>
     90                                                        <Desc>T</Desc>
     91                                                        <Index>0</Index>
     92                                                        <Values>368.654</Values>
     93                                                        <Status>0</Status>
     94                                                        <Unit>K</Unit>
     95                                                </Variables>
     96                                                <Variables>
     97                                                        <Desc>P</Desc>
     98                                                        <Index>0</Index>