<?xml 
version="1.0" encoding="utf-8"?>
<rss version="2.0" 
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
>

<channel xml:lang="en">
	<title>SIC^2: Simulation and Integration of Control for Canals</title>
	<link>http://sic.g-eau.fr/</link>
	
	<language>en</language>
	<generator>SPIP - www.spip.net (Sarka-SPIP)</generator>

	<image>
		<title>SIC^2: Simulation and Integration of Control for Canals</title>
		<url>https://sic.g-eau.fr/local/cache-vignettes/L32xH32/siteon0-e5814.png?1519033774</url>
		<link>http://sic.g-eau.fr/</link>
		<height>32</height>
		<width>32</width>
	</image>



 
	<item xml:lang="en">
		<title>Format of the .par file</title>
		<link>https://sic.g-eau.fr/Format-of-the-par-file</link>
		<guid isPermaLink="true">https://sic.g-eau.fr/Format-of-the-par-file</guid>
		<dc:date>2017-02-17T17:39:29Z</dc:date>
		<dc:format>text/html</dc:format>
		<dc:language>en</dc:language>
		<dc:creator>Pierre-Olivier Malaterre</dc:creator>



		<description>
&lt;p&gt;A file of parameterized variables is created per scenario and is automatically updated when the scenario is saved in EdiSic. The file is named [XML Project Name] _ [Scenario #].par . &lt;br class='autobr' /&gt;
In the above file name, we have chosen to keep the name of the initial project [XML Project Name] in the name, even if the name of the project is then changed, either by the command &#034;Save as&#034; from EdiSic, or by hand under Windows or under Dos. If you have a routine generating this file for automatic (...)&lt;/p&gt;


-
&lt;a href="https://sic.g-eau.fr/-Les-variables-parametrees-" rel="directory"&gt; Parametrized variables&lt;/a&gt;


		</description>


 <content:encoded>&lt;div class='rss_texte'&gt;&lt;p&gt;A file of parameterized variables is created per scenario and is automatically updated when the scenario is saved in EdiSic. The file is named &lt;code class='spip_code' dir='ltr'&gt; [XML Project Name] _ [Scenario #].par &lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;In the above file name, we have chosen to keep the name of the initial project [XML Project Name] in the name, even if the name of the project is then changed, either by the command &#034;Save as&#034; from EdiSic, or by hand under Windows or under Dos. If you have a routine generating this file for automatic executions, you will not have to modify it even if the name of the project file is then modified.&lt;/p&gt;
&lt;p&gt;It is a text file containing rows and columns. The accepted separators for columns are spaces, tab, semicolon, and comma. The format is as follows:&lt;/p&gt;
&lt;ul class=&#034;spip&#034;&gt;&lt;li&gt; Lines not starting with &#034;L&#034; or &#034;X&#034; are ignored. By convention, the comment lines begin with the double symbol &#034;//&#034;.&lt;/li&gt;&lt;li&gt; The lines beginning with X1, X2, X3, ... Xn are used to define the value of the parameterized variable,&lt;/li&gt;&lt;li&gt; Lines beginning with L1, L2, L3, ... Ln are used to define the location of a parameterized variable in the network.&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;EdiSic is used to define the location of the variables parameterized from the input interfaces of the hydraulic mode (&lt;a href='https://sic.g-eau.fr/gestion-des-variables-parametrees' class='spip_in' hreflang='fr'&gt;see the management of parameterized variables&lt;/a&gt;). But it is also possible to define new variables parameterized directly in the .par file by defining their location in the network using lines starting with L.&lt;/p&gt; &lt;h3 class=&#034;spip&#034;&gt;&lt;a id=&#034;syntax-for-lines-starting-with&#034; name=&#034;syntax-for-lines-starting-with&#034;&gt;&lt;/a&gt;&lt;a id=&#034;a1&#034; name=&#034;a1&#034;&gt;&lt;/a&gt;Syntax for lines starting with X&lt;/h3&gt; &lt;p&gt;For a fixed value, the syntax will be:&lt;br class='autobr' /&gt;
&lt;code class='spip_code' dir='ltr'&gt; X[n] [Value] &lt;/code&gt;&lt;br class='autobr' /&gt;
Example:&lt;br class='autobr' /&gt;
&lt;code class='spip_code' dir='ltr'&gt; X1 0.25 &lt;/code&gt;&lt;/p&gt;
&lt;p&gt;This means that when running the simulation of the corresponding scenario and/or variant, either in Steady (Fluvia) or Unsteady (Sirene) flow, the parameter or variable named X1 will be given the value 0.25 instead of the value indicated in the EdiSic interface and stored in the xml file.&lt;/p&gt;
&lt;p&gt;For a time-varying value (time-dependent law), the syntax will be:&lt;/p&gt;
&lt;div style='text-align: left;' class='spip_code' dir='ltr'&gt;&lt;code&gt;X[n] LOI [E or R]&lt;br /&gt;
X[n] [Time in seconds] [Value]&lt;br /&gt;
X[n] [Time in seconds] [Value]&lt;br /&gt;
...&lt;/code&gt;&lt;/div&gt;
&lt;p&gt;The [E or R] parameter allows you to choose between step mode [E] or ramp mode [R].&lt;/p&gt;
&lt;p&gt;Example for a water rotation schedule evolving at 0, 1 and 2 hours:&lt;/p&gt;
&lt;div style='text-align: left;' class='spip_code' dir='ltr'&gt;&lt;code&gt;// Function law of time in &#034;E&#034; mode (E stands for Echelon meaning step in French)&lt;br /&gt;
X1 LOI E&lt;br /&gt;
X1 0 -0.1&lt;br /&gt;
X1 3600 -0.2&lt;br /&gt;
X1 7200 -0.1&lt;/code&gt;&lt;/div&gt;
&lt;h3 class=&#034;spip&#034;&gt;&lt;a id=&#034;syntax-for-lines-starting-with-1&#034; name=&#034;syntax-for-lines-starting-with-1&#034;&gt;&lt;/a&gt;&lt;a id=&#034;a2&#034; name=&#034;a2&#034;&gt;&lt;/a&gt;Syntax for lines starting with L&lt;/h3&gt; &lt;p&gt;Lines beginning with L contain a set of columns with pairs [Object Type] = [Value]. The meaning of the object types is as follows:&lt;/p&gt;
&lt;ul class=&#034;spip&#034;&gt;&lt;li&gt; BF: n&#176; of the Reach&lt;/li&gt;&lt;li&gt; ND: n&#176; of the Node&lt;/li&gt;&lt;li&gt; PR: n&#176; of the Offtake&lt;/li&gt;&lt;li&gt; ST: n&#176; of the Structure&lt;/li&gt;&lt;li&gt; OUV: n&#176; of the Device&lt;/li&gt;&lt;li&gt; SN: n&#176; of the Section&lt;/li&gt;&lt;li&gt; PBF: n&#176; of the Reach zone (for Manning-Strickler and Infiltration)&lt;/li&gt;&lt;li&gt; CAR: Variable to be parameterized on the object (see list of variables below)&lt;/li&gt;&lt;/ul&gt;&lt;table class=&#034;spip&#034;&gt;
&lt;tbody&gt;
&lt;tr class='row_odd odd'&gt;
&lt;td&gt;&lt;span class='spip_document_61 spip_documents'&gt;
&lt;img src='https://sic.g-eau.fr/local/cache-vignettes/L62xH100/idea-267d1.png?1519033992' width='62' height='100' alt=&#034;&#034; /&gt;&lt;/span&gt;&lt;/td&gt;
&lt;td&gt;The number of Reaches, Nodes and Sections is visible in the tooltip that appears when you mouse over the various network objects in the EdiSic tree view. The .par file written by EdiSic has the comment line &#034;L&#034; for each variable defined as an example of syntax&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;It is possible to define several locations for a single variable. A no-consequence warning will be displayed during the simulation and the same value will be applied to the different locations requested.&lt;/p&gt;
&lt;p&gt;Here are different localization examples for different network objects:&lt;/p&gt;
&lt;table class=&#034;spip&#034;&gt;
&lt;tbody&gt;
&lt;tr class='row_odd odd'&gt;
&lt;td&gt;Type of object&lt;/td&gt;
&lt;td&gt;Syntax of the line&lt;/td&gt;&lt;/tr&gt;
&lt;tr class='row_even even'&gt;
&lt;td&gt;Discharge of offtake n&#176;1 of node n&#176;1&lt;/td&gt;
&lt;td&gt;&lt;code class='spip_code' dir='ltr'&gt;L1 ND=1 PR=1 CAR=Q&lt;/code&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr class='row_odd odd'&gt;
&lt;td&gt;Opening of the gate of the first structure level of offtake n&#176;1 of node n&#176;2&lt;/td&gt;
&lt;td&gt;&lt;code class='spip_code' dir='ltr'&gt;L2 ND=2 PR=1 ST=1 OUV=1 CAR=W&lt;/code&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr class='row_even even'&gt;
&lt;td&gt;Discharge coefficient of the gate of structure n&#176;1 of the cross-structure located in section n&#176;4 of reach n&#176;1&lt;/td&gt;
&lt;td&gt;&lt;code class='spip_code' dir='ltr'&gt;L3 BF=1 SN=4 OUV=1 CAR=CoefQR&lt;/code&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr class='row_odd odd'&gt;
&lt;td&gt;Strickler of the first zone of Strickler of reach n&#176;1&lt;/td&gt;
&lt;td&gt;&lt;code class='spip_code' dir='ltr'&gt;L4 BF=1 PBF=1 CAR=KMin&lt;/code&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;At the EdiSic interfaces the frictions are indicated in Strickler in French and Manning in English and Spanish. But internally, these frictions are written in the .xml files as well as in the .par files in Strickler. If you are Anglo-Saxon and used to manipulating Manning, you will have to think of converting them (Ks = 1/n) into Strickler if you write them in a .par file.&lt;/p&gt;
&lt;p&gt;The list of variables available by the CAR parameter is as follows (note that the upper and lower case are important):&lt;/p&gt;
&lt;table class=&#034;spip&#034;&gt;
&lt;thead&gt;&lt;tr class='row_first'&gt;&lt;th id='id6f2c_c0'&gt; Variable &lt;/th&gt;&lt;th id='id6f2c_c1'&gt; Signification &lt;/th&gt;&lt;th id='id6f2c_c2'&gt; Possible Localization &lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr class='row_odd odd'&gt;
&lt;td headers='id6f2c_c0'&gt;Q&lt;/td&gt;
&lt;td headers='id6f2c_c1'&gt;Discharge or Targeted discharge&lt;/td&gt;
&lt;td headers='id6f2c_c2'&gt;Offtake with a boundary condition in discharge or with a targeted discharge controlling a device (&lt;code class='spip_code' dir='ltr'&gt;ND=... PR=... CAR=Q&lt;/code&gt;)&lt;/td&gt;&lt;/tr&gt;
&lt;tr class='row_even even'&gt;
&lt;td headers='id6f2c_c0'&gt;Z&lt;/td&gt;
&lt;td headers='id6f2c_c1'&gt;Water elevation&lt;/td&gt;
&lt;td headers='id6f2c_c2'&gt;Offtake with a boundary condition in elevation (&lt;code class='spip_code' dir='ltr'&gt;ND=... PR=... CAR=Z1&lt;/code&gt;)&lt;/td&gt;&lt;/tr&gt;
&lt;tr class='row_odd odd'&gt;
&lt;td headers='id6f2c_c0'&gt;KMin&lt;/td&gt;
&lt;td headers='id6f2c_c1'&gt;Strickler of the minor bed&lt;/td&gt;
&lt;td headers='id6f2c_c2'&gt;Zone of a reach (&lt;code class='spip_code' dir='ltr'&gt;BF=... PBF=... CAR=KMin&lt;/code&gt;)&lt;/td&gt;&lt;/tr&gt;
&lt;tr class='row_even even'&gt;
&lt;td headers='id6f2c_c0'&gt;KMoy&lt;/td&gt;
&lt;td headers='id6f2c_c1'&gt;Strickler of the medium bed&lt;/td&gt;
&lt;td headers='id6f2c_c2'&gt;Zone of a reach (&lt;code class='spip_code' dir='ltr'&gt;BF=... PBF=... CAR=KMoy&lt;/code&gt;)&lt;/td&gt;&lt;/tr&gt;
&lt;tr class='row_odd odd'&gt;
&lt;td headers='id6f2c_c0'&gt;Inf&lt;/td&gt;
&lt;td headers='id6f2c_c1'&gt;Seepage&lt;/td&gt;
&lt;td headers='id6f2c_c2'&gt;Zone of a reach (&lt;code class='spip_code' dir='ltr'&gt;BF=... PBF=... CAR=Inf&lt;/code&gt;)&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;It will also be possible to control parameters of cross-devices (&lt;code class='spip_code' dir='ltr'&gt;BF=... SN=... OUV=...&lt;/code&gt;) and offtake devices (&lt;code class='spip_code' dir='ltr'&gt;ND=... PR=... ST=... OUV=...&lt;/code&gt;).&lt;/p&gt;
&lt;p&gt;The available variables are:&lt;/p&gt;
&lt;table class=&#034;spip&#034;&gt;
&lt;thead&gt;&lt;tr class='row_first'&gt;&lt;th id='idab34_c0'&gt; Variable &lt;/th&gt;&lt;th id='idab34_c1'&gt; Signification &lt;/th&gt;&lt;th id='idab34_c2'&gt; Possible type of device &lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr class='row_odd odd'&gt;
&lt;td headers='idab34_c0'&gt;CoteRadier&lt;/td&gt;
&lt;td headers='idab34_c1'&gt;Sill elevation&lt;/td&gt;
&lt;td headers='idab34_c2'&gt;All devices&lt;/td&gt;&lt;/tr&gt;
&lt;tr class='row_even even'&gt;
&lt;td headers='idab34_c0'&gt;Largeur&lt;/td&gt;
&lt;td headers='idab34_c1'&gt;Width&lt;/td&gt;
&lt;td headers='idab34_c2'&gt;All gates and weirs except circular gates and tubes&lt;/td&gt;&lt;/tr&gt;
&lt;tr class='row_odd odd'&gt;
&lt;td headers='idab34_c0'&gt;Ouverture&lt;/td&gt;
&lt;td headers='idab34_c1'&gt;Gate opening&lt;/td&gt;
&lt;td headers='idab34_c2'&gt;All gates except GEC-Alsthom&lt;/td&gt;&lt;/tr&gt;
&lt;tr class='row_even even'&gt;
&lt;td headers='idab34_c0'&gt;CoefQR&lt;/td&gt;
&lt;td headers='idab34_c1'&gt;Discharge coefficient for rectangular device&lt;/td&gt;
&lt;td headers='idab34_c2'&gt;All gates and weir equations except Goussard equation for GEC-Alsthom gates&lt;/td&gt;&lt;/tr&gt;
&lt;tr class='row_odd odd'&gt;
&lt;td headers='idab34_c0'&gt;SurverseHauteur&lt;/td&gt;
&lt;td headers='idab34_c1'&gt;Height of the gate&lt;/td&gt;
&lt;td headers='idab34_c2'&gt;All gates&lt;/td&gt;&lt;/tr&gt;
&lt;tr class='row_even even'&gt;
&lt;td headers='idab34_c0'&gt;CoefQSurverse&lt;/td&gt;
&lt;td headers='idab34_c1'&gt;Discharge coefficient for overtopping flow&lt;/td&gt;
&lt;td headers='idab34_c2'&gt;All gates with a possible overtopping over the gate&lt;/td&gt;&lt;/tr&gt;
&lt;tr class='row_odd odd'&gt;
&lt;td headers='idab34_c0'&gt;TanAl&lt;/td&gt;
&lt;td headers='idab34_c1'&gt;Side slope&lt;/td&gt;
&lt;td headers='idab34_c2'&gt;Trapezoidal gates and weirs, GEC-Alsthom gates&lt;/td&gt;&lt;/tr&gt;
&lt;tr class='row_even even'&gt;
&lt;td headers='idab34_c0'&gt;CoefQT&lt;/td&gt;
&lt;td headers='idab34_c1'&gt;Discharge coefficient for trapezium device&lt;/td&gt;
&lt;td headers='idab34_c2'&gt;Trapezoidal gates and weirs and GEC-Alsthom gates using CEM02 equation&lt;/td&gt;&lt;/tr&gt;
&lt;tr class='row_odd odd'&gt;
&lt;td headers='idab34_c0'&gt;CoteAxe&lt;/td&gt;
&lt;td headers='idab34_c1'&gt;Axis elevation&lt;/td&gt;
&lt;td headers='idab34_c2'&gt;GEC-Alsthom gates&lt;/td&gt;&lt;/tr&gt;
&lt;tr class='row_even even'&gt;
&lt;td headers='idab34_c0'&gt;Rayon&lt;/td&gt;
&lt;td headers='idab34_c1'&gt;Radius of the gate&lt;/td&gt;
&lt;td headers='idab34_c2'&gt;GEC-Alsthom gates&lt;/td&gt;&lt;/tr&gt;
&lt;tr class='row_odd odd'&gt;
&lt;td headers='idab34_c0'&gt;D&lt;/td&gt;
&lt;td headers='idab34_c1'&gt;Caracteristic &#034;D&#034; of the Goussard equations&lt;/td&gt;
&lt;td headers='idab34_c2'&gt;AMIL gates&lt;/td&gt;&lt;/tr&gt;
&lt;tr class='row_even even'&gt;
&lt;td headers='idab34_c0'&gt;JMax&lt;/td&gt;
&lt;td headers='idab34_c1'&gt;Maximum head-loss&lt;/td&gt;
&lt;td headers='idab34_c2'&gt;GEC-Alsthom gates&lt;/td&gt;&lt;/tr&gt;
&lt;tr class='row_odd odd'&gt;
&lt;td headers='idab34_c0'&gt;S1S2&lt;/td&gt;
&lt;td headers='idab34_c1'&gt;Ratio of the tank surfaces for filtering&lt;/td&gt;
&lt;td headers='idab34_c2'&gt;AVIS, AVIO, Mixtes gates&lt;/td&gt;&lt;/tr&gt;
&lt;tr class='row_even even'&gt;
&lt;td headers='idab34_c0'&gt;Decal&lt;/td&gt;
&lt;td headers='idab34_c1'&gt;Shift of the tank inlet location&lt;/td&gt;
&lt;td headers='idab34_c2'&gt;AVIS, AVIO, Mixtes gates&lt;/td&gt;&lt;/tr&gt;
&lt;tr class='row_odd odd'&gt;
&lt;td headers='idab34_c0'&gt;Decrement&lt;/td&gt;
&lt;td headers='idab34_c1'&gt;Decrement&lt;/td&gt;
&lt;td headers='idab34_c2'&gt;AMIL, AVIS, AVIO gates&lt;/td&gt;&lt;/tr&gt;
&lt;tr class='row_even even'&gt;
&lt;td headers='idab34_c0'&gt;CoteAmont&lt;/td&gt;
&lt;td headers='idab34_c1'&gt;Maximum upstream elevation&lt;/td&gt;
&lt;td headers='idab34_c2'&gt;AMIL gates&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3 class=&#034;spip&#034;&gt;&lt;a id=&#034;example-par-file-2&#034; name=&#034;example-par-file-2&#034;&gt;&lt;/a&gt;&lt;a id=&#034;a3&#034; name=&#034;a3&#034;&gt;&lt;/a&gt;Example of .par file&lt;/h3&gt;
&lt;div style='text-align: left;' class='spip_code' dir='ltr'&gt;&lt;code&gt;// Localization defined by EdiSic&lt;br /&gt;
//Nd : OFF 3 &gt; Pr : Prise1 &gt; CL D&#233;bit &lt;br /&gt;
// L1 Nd=3 Pr=1 Car=Q&lt;br /&gt;
// Law function of time in mode &#034;E&#034; Echelon (Step)&lt;br /&gt;
X1 LOI E&lt;br /&gt;
X1 0 -0.1&lt;br /&gt;
X1 3600 -0.2&lt;br /&gt;
X1 7200 -0.1&lt;br /&gt;
// Added by the user of Nd : DAM &gt; Pr : Offtake 1 &gt; Discharge boundary condition&lt;br /&gt;
L2 Nd=1 pr=1 car=Q&lt;br /&gt;
// Law function of time in mode &#034;R&#034; Rampe (Ramp)&lt;br /&gt;
X2 LOI R&lt;br /&gt;
X2 0 2.5&lt;br /&gt;
X2 3600 3&lt;br /&gt;
X2 7200 2.5 &lt;br /&gt;
// Added by the user of Nd 3 and 5 Offtake 1 with a constant discharge of 0.4 m3/s&lt;br /&gt;
L3 Nd=3 Pr=1 Car=Q&lt;br /&gt;
L3 Nd=5 Pr=1 Car=Q&lt;br /&gt;
X3 -0.4&lt;/code&gt;&lt;/div&gt;&lt;/div&gt;
		
		</content:encoded>


		

	</item>
	<item xml:lang="en">
		<title>Management of parameterized variables</title>
		<link>https://sic.g-eau.fr/Management-of-parameterized</link>
		<guid isPermaLink="true">https://sic.g-eau.fr/Management-of-parameterized</guid>
		<dc:date>2015-07-31T17:57:38Z</dc:date>
		<dc:format>text/html</dc:format>
		<dc:language>en</dc:language>
		<dc:creator>David Dorchies</dc:creator>



		<description>
&lt;p&gt;Some variables can be &#034;parameterized&#034;. This means that instead of assigning them a fixed value, they are assigned a variable name (ex .: X1, X2, etc.), and the value taken by this variable will be read in a .par file containing these variables and their values. The generation of names of variables (X1, X2, etc.) takes place automatically, with the letter X, and a number which is incremented automatically. &lt;br class='autobr' /&gt;
This file has a format similar to: &lt;br class='autobr' /&gt;
//Nd : Lezlir &gt; Pr : Prise1 &gt; CL D&#233;bit X1	4.12 (...)&lt;/p&gt;


-
&lt;a href="https://sic.g-eau.fr/-Les-variables-parametrees-" rel="directory"&gt; Parametrized variables&lt;/a&gt;


		</description>


 <content:encoded>&lt;div class='rss_texte'&gt;&lt;p&gt;Some variables can be &#034;parameterized&#034;. This means that instead of assigning them a fixed value, they are assigned a variable name (ex .: X1, X2, etc.), and the value taken by this variable will be read in a .par file containing these variables and their values. The generation of names of variables (X1, X2, etc.) takes place automatically, with the letter X, and a number which is incremented automatically.&lt;/p&gt;
&lt;p&gt;This file has a format similar to:&lt;/p&gt;
&lt;div style='text-align: left;' class='spip_code' dir='ltr'&gt;&lt;code&gt;//Nd : Lezlir &gt; Pr : Prise1 &gt; CL D&#233;bit &lt;br /&gt;
X1 4.12&lt;br /&gt;
//Nd : Deversoir Lat&#233;ral &gt; Pr : Structure1 &gt; Ouv : Seuil &#233;vacuateur de crues Cote de seuil (m) Variante : 1&lt;br /&gt;
X2 8.8&lt;/code&gt;&lt;/div&gt;
&lt;p&gt;This file is created and saved automatically when saving the xml file. But it is also possible not to rewrite this file at each record by unchecking the appropriate box (bottom left on the screen below).&lt;/p&gt;
&lt;p&gt;The advantage of this option is to generate or modify this .par file manually or by an external program (Notepad, Matlab, Scilab, R, etc.) and thus to control simulations with easily modified variables. Possible uses are for example for automatic calculation sequences for sensitivity analysis, optimization, calibration, etc.&lt;/p&gt;
&lt;p&gt;The &#034;Parameterized Variable&#034; menu in the Hydraulic mode allows a synthetic view of these variables and their default values. At the time of execution of the hydraulic calculation of the scenario (and possibly the corresponding variant), if the .par file is found and if the value of the variable is found, then that value will be used. Otherwise it will be the default.&lt;/p&gt;
&lt;p&gt;&lt;img src='https://sic.g-eau.fr/squelettes/screenshots/variableparametrees_en.jpg?1519034265' width='500' height='373' /&gt;&lt;/p&gt;
&lt;p&gt;On the same window you can see the name of the .par file in which these variables will be written and required. This name is automatically created from the name of the xml data file (file name when first creating the file) to which is added the code &#034;_&#034; followed by the scenario number. This file management is indeed made at the scenario. In the current version of SIC that name can not be changed (unless you go edit it directly in the xml file) and is stored in the xml file and kept in memory, even if all the variables are parameterized rebates normal variables. Thus, if the variables are switched again in parameterized variables the same name will be used again. It is therefore possible to rename the xml file, without having to change the .par file used.&lt;/p&gt;
&lt;p&gt;Warning, if .par file is created or modified from an external program, it is important to maintain its format. Especially in the current version of Edisic, the separator between the variable (ex .: X1) and its value is a tab. However, comment lines (beginning with //) are optional.&lt;/p&gt;&lt;/div&gt;
		
		</content:encoded>


		

	</item>


 
	


 
	

</channel>
</rss>
