From a5cfe7c6e48ba25f7b1decf82860ed6d4358ade2 Mon Sep 17 00:00:00 2001 From: Karl-Hermann Wieners <karl-hermann.wieners@mpimet.mpg.de> Date: Thu, 10 Dec 2015 22:50:26 +0000 Subject: [PATCH] Added new features (expr-only-file, quiet options) * Added -q (quiet) option to mkexp to suppress info messages * Fixed diffpath to also compare two files (used to expect directories) * Incremented version info in setup, changes and documentation --- CHANGES.txt | 9 + diffpath | 23 +- doc/mkexp.fodt | 1093 ++++++++++++++++++++++++------------------------ doc/mkexp.pdf | Bin 387806 -> 387869 bytes mkexp | 6 + setup.py | 2 +- 6 files changed, 584 insertions(+), 549 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index e42f98c..a98585d 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -6,6 +6,15 @@ Make Experiments! Release Changes --------------- +Release 0.3.5 +============= + +Global +------ + +* Added -q (quiet) option to mkexp to suppress info messages +* Fixed diffpath to also compare two files (used to expect directories) + Release 0.3.4 ============= diff --git a/diffpath b/diffpath index c88b40d..e16ddb8 100755 --- a/diffpath +++ b/diffpath @@ -49,10 +49,27 @@ PATH_B=${4:-`echo "$PATH_A" | sed "s,$EXP_A,$EXP_B,g"`} trap 'rm -r $DIFF_FILE' 0 DIFF_FILE=`mktemp` +if [ -d "$PATH_A" ] +then : +else + FIND_A="-name $(basename $PATH_A)" + PATH_A=$(dirname $PATH_A) +fi + +if [ -d "$PATH_B" ] +then : +else + FIND_B="-name $(basename $PATH_B)" + PATH_B=$(dirname $PATH_B) +fi + for FILE_A in $( - { - (cd "$PATH_A" && find . ! -type d ! -name '*.log' ! -path '*/backup/*' ) - (cd "$PATH_B" && find . ! -type d ! -name '*.log' ! -path '*/backup/*' | sed "s,$EXP_B,$EXP_A,g") + { + ( cd "$PATH_A" && + find . ! -type d ! -name '*.log' ! -path '*/backup/*' $FIND_A ) + ( cd "$PATH_B" && + find . ! -type d ! -name '*.log' ! -path '*/backup/*' $FIND_B | + sed "s,$EXP_B,$EXP_A,g" ) } | sed 's,^\./,,' | sort -u ) do diff --git a/doc/mkexp.fodt b/doc/mkexp.fodt index 8c094dc..be0f2ca 100644 --- a/doc/mkexp.fodt +++ b/doc/mkexp.fodt @@ -1,24 +1,24 @@ <?xml version="1.0" encoding="UTF-8"?> <office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" office:version="1.2" office:mimetype="application/vnd.oasis.opendocument.text"> - <office:meta><meta:creation-date>2015-01-05T17:44:27.618344249</meta:creation-date><dc:title>Make Experiments!</dc:title><meta:editing-duration>P11DT23H4M5S</meta:editing-duration><meta:editing-cycles>99</meta:editing-cycles><meta:generator>LibreOffice/4.2.8.2$Linux_X86_64 LibreOffice_project/420m0$Build-2</meta:generator><meta:initial-creator>Karl-Hermann Wieners</meta:initial-creator><dc:date>2015-11-05T23:10:43.863488180</dc:date><dc:creator>Karl-Hermann Wieners</dc:creator><meta:printed-by>Karl-Hermann Wieners</meta:printed-by><meta:print-date>2015-01-20T10:55:48.576690105</meta:print-date><dc:subject>Run-script generation for earth system models</dc:subject><meta:document-statistic meta:table-count="0" meta:image-count="0" meta:object-count="0" meta:page-count="26" meta:paragraph-count="523" meta:word-count="7155" meta:character-count="45703" meta:non-whitespace-character-count="38695"/><meta:template xlink:type="simple" xlink:actuate="onRequest" xlink:title="A4" xlink:href="../../../../../../../../../../home/m221078/.config/libreoffice/4/user/template/A4.ott" meta:date="2015-01-05T17:44:27.463210655"/></office:meta> + <office:meta><meta:creation-date>2015-01-05T17:44:27.618344249</meta:creation-date><dc:title>Make Experiments!</dc:title><meta:editing-duration>P11DT23H4M5S</meta:editing-duration><meta:editing-cycles>100</meta:editing-cycles><meta:generator>LibreOffice/4.2.8.2$Linux_X86_64 LibreOffice_project/420m0$Build-2</meta:generator><meta:initial-creator>Karl-Hermann Wieners</meta:initial-creator><dc:date>2015-12-10T23:45:42.562162112</dc:date><dc:creator>Karl-Hermann Wieners</dc:creator><meta:printed-by>Karl-Hermann Wieners</meta:printed-by><meta:print-date>2015-01-20T10:55:48.576690105</meta:print-date><dc:subject>Run-script generation for earth system models</dc:subject><meta:document-statistic meta:table-count="0" meta:image-count="0" meta:object-count="0" meta:page-count="26" meta:paragraph-count="523" meta:word-count="7155" meta:character-count="45706" meta:non-whitespace-character-count="38698"/><meta:template xlink:type="simple" xlink:actuate="onRequest" xlink:title="A4" xlink:href="../../../../../../../../../../home/m221078/.config/libreoffice/4/user/template/A4.ott" meta:date="2015-01-05T17:44:27.463210655"/></office:meta> <office:settings> <config:config-item-set config:name="ooo:view-settings"> - <config:config-item config:name="ViewAreaTop" config:type="long">267626</config:config-item> + <config:config-item config:name="ViewAreaTop" config:type="long">6703</config:config-item> <config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item> - <config:config-item config:name="ViewAreaWidth" config:type="long">32731</config:config-item> - <config:config-item config:name="ViewAreaHeight" config:type="long">21407</config:config-item> + <config:config-item config:name="ViewAreaWidth" config:type="long">24608</config:config-item> + <config:config-item config:name="ViewAreaHeight" config:type="long">22438</config:config-item> <config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item> <config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item> <config:config-item-map-indexed config:name="Views"> <config:config-item-map-entry> <config:config-item config:name="ViewId" config:type="string">view2</config:config-item> - <config:config-item config:name="ViewLeft" config:type="long">16540</config:config-item> - <config:config-item config:name="ViewTop" config:type="long">279996</config:config-item> + <config:config-item config:name="ViewLeft" config:type="long">11164</config:config-item> + <config:config-item config:name="ViewTop" config:type="long">15314</config:config-item> <config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item> - <config:config-item config:name="VisibleTop" config:type="long">267626</config:config-item> - <config:config-item config:name="VisibleRight" config:type="long">32729</config:config-item> - <config:config-item config:name="VisibleBottom" config:type="long">289031</config:config-item> + <config:config-item config:name="VisibleTop" config:type="long">6703</config:config-item> + <config:config-item config:name="VisibleRight" config:type="long">24606</config:config-item> + <config:config-item config:name="VisibleBottom" config:type="long">29139</config:config-item> <config:config-item config:name="ZoomType" config:type="short">0</config:config-item> <config:config-item config:name="ViewLayoutColumns" config:type="short">0</config:config-item> <config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item> @@ -81,9 +81,9 @@ <config:config-item config:name="ConsiderTextWrapOnObjPos" config:type="boolean">false</config:config-item> <config:config-item config:name="CurrentDatabaseCommandType" config:type="int">0</config:config-item> <config:config-item config:name="RedlineProtectionKey" config:type="base64Binary"/> - <config:config-item config:name="Rsid" config:type="int">13178698</config:config-item> + <config:config-item config:name="Rsid" config:type="int">13248803</config:config-item> <config:config-item config:name="PrintProspectRTL" config:type="boolean">false</config:config-item> - <config:config-item config:name="PrinterSetup" config:type="base64Binary">pwH+/09mZmljZWpldC00NjIwLXNlcmllcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ1VQUzpPZmZpY2VqZXQtNDYyMC1zZXJpZXMAAAAAAAAWAAMAyQAAAAAAAAAEAAhSAAAEdAAASm9iRGF0YSAxCnByaW50ZXI9T2ZmaWNlamV0LTQ2MjAtc2VyaWVzCm9yaWVudGF0aW9uPVBvcnRyYWl0CmNvcGllcz0xCmNvbGxhdGU9ZmFsc2UKbWFyZ2luZGFqdXN0bWVudD0wLDAsMCwwCmNvbG9yZGVwdGg9MjQKcHNsZXZlbD0wCnBkZmRldmljZT0xCmNvbG9yZGV2aWNlPTAKUFBEQ29udGV4RGF0YQpQYWdlU2l6ZTpBNABJbnB1dFNsb3Q6QXV0bwAAEgBDT01QQVRfRFVQTEVYX01PREUOAERVUExFWF9VTktOT1dO</config:config-item> + <config:config-item config:name="PrinterSetup" config:type="base64Binary">pwH+/09mZmljZWpldC00NjIwLXNlcmllcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ1VQUzpPZmZpY2VqZXQtNDYyMC1zZXJpZXMAAAAAAAAWAAMAyQAAAAAAAAAEAAhSAAAEdAAASm9iRGF0YSAxCnByaW50ZXI9T2ZmaWNlamV0LTQ2MjAtc2VyaWVzCm9yaWVudGF0aW9uPVBvcnRyYWl0CmNvcGllcz0xCmNvbGxhdGU9ZmFsc2UKbWFyZ2luZGFqdXN0bWVudD0wLDAsMCwwCmNvbG9yZGVwdGg9MjQKcHNsZXZlbD0wCnBkZmRldmljZT0xCmNvbG9yZGV2aWNlPTAKUFBEQ29udGV4RGF0YQpJbnB1dFNsb3Q6QXV0bwBQYWdlU2l6ZTpBNAAAEgBDT01QQVRfRFVQTEVYX01PREUOAERVUExFWF9VTktOT1dO</config:config-item> <config:config-item config:name="AlignTabStopPosition" config:type="boolean">true</config:config-item> <config:config-item config:name="ProtectForm" config:type="boolean">false</config:config-item> <config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item> @@ -546,548 +546,548 @@ <style:text-properties fo:font-style="normal" officeooo:rsid="00931d47" officeooo:paragraph-rsid="00931d47" style:font-style-asian="normal" style:font-style-complex="normal"/> </style:style> <style:style style:name="P57" style:family="paragraph" style:parent-style-name="Text_20_body"> - <style:text-properties officeooo:rsid="005a5c62" officeooo:paragraph-rsid="005a5c62"/> + <style:text-properties fo:font-style="normal" officeooo:rsid="00c85300" officeooo:paragraph-rsid="00c85300" style:font-style-asian="normal" style:font-style-complex="normal"/> </style:style> <style:style style:name="P58" style:family="paragraph" style:parent-style-name="Text_20_body"> - <style:text-properties officeooo:rsid="005b6c85" officeooo:paragraph-rsid="005b6c85"/> + <style:text-properties officeooo:rsid="005a5c62" officeooo:paragraph-rsid="005a5c62"/> </style:style> <style:style style:name="P59" style:family="paragraph" style:parent-style-name="Text_20_body"> - <style:text-properties officeooo:rsid="00617108" officeooo:paragraph-rsid="00617108"/> + <style:text-properties officeooo:rsid="005b6c85" officeooo:paragraph-rsid="005b6c85"/> </style:style> <style:style style:name="P60" style:family="paragraph" style:parent-style-name="Text_20_body"> - <style:text-properties officeooo:rsid="0063d022" officeooo:paragraph-rsid="006727cc"/> + <style:text-properties officeooo:rsid="00617108" officeooo:paragraph-rsid="00617108"/> </style:style> <style:style style:name="P61" style:family="paragraph" style:parent-style-name="Text_20_body"> - <style:text-properties officeooo:rsid="00657146" officeooo:paragraph-rsid="00657146"/> + <style:text-properties officeooo:rsid="0063d022" officeooo:paragraph-rsid="006727cc"/> </style:style> <style:style style:name="P62" style:family="paragraph" style:parent-style-name="Text_20_body"> - <style:text-properties officeooo:rsid="006727cc" officeooo:paragraph-rsid="006727cc"/> + <style:text-properties officeooo:rsid="00657146" officeooo:paragraph-rsid="00657146"/> </style:style> <style:style style:name="P63" style:family="paragraph" style:parent-style-name="Text_20_body"> - <style:text-properties officeooo:rsid="006e58f1" officeooo:paragraph-rsid="006e58f1"/> + <style:text-properties officeooo:rsid="006727cc" officeooo:paragraph-rsid="006727cc"/> </style:style> <style:style style:name="P64" style:family="paragraph" style:parent-style-name="Text_20_body"> - <style:text-properties officeooo:rsid="006e58f1" officeooo:paragraph-rsid="0086f697"/> + <style:text-properties officeooo:rsid="006e58f1" officeooo:paragraph-rsid="006e58f1"/> </style:style> <style:style style:name="P65" style:family="paragraph" style:parent-style-name="Text_20_body"> - <style:text-properties officeooo:rsid="006e58f1" officeooo:paragraph-rsid="00881a06"/> + <style:text-properties officeooo:rsid="006e58f1" officeooo:paragraph-rsid="0086f697"/> </style:style> <style:style style:name="P66" style:family="paragraph" style:parent-style-name="Text_20_body"> - <style:text-properties officeooo:rsid="00823929" officeooo:paragraph-rsid="00823929"/> + <style:text-properties officeooo:rsid="006e58f1" officeooo:paragraph-rsid="00881a06"/> </style:style> <style:style style:name="P67" style:family="paragraph" style:parent-style-name="Text_20_body"> - <style:text-properties officeooo:paragraph-rsid="0086f697"/> + <style:text-properties officeooo:rsid="00823929" officeooo:paragraph-rsid="00823929"/> </style:style> <style:style style:name="P68" style:family="paragraph" style:parent-style-name="Text_20_body"> - <style:text-properties officeooo:rsid="0081efeb" officeooo:paragraph-rsid="00881a06"/> + <style:text-properties officeooo:paragraph-rsid="0086f697"/> </style:style> <style:style style:name="P69" style:family="paragraph" style:parent-style-name="Text_20_body"> - <style:text-properties officeooo:paragraph-rsid="00881a06"/> + <style:text-properties officeooo:rsid="0081efeb" officeooo:paragraph-rsid="00881a06"/> </style:style> <style:style style:name="P70" style:family="paragraph" style:parent-style-name="Text_20_body"> - <style:text-properties officeooo:rsid="00895410" officeooo:paragraph-rsid="0089d9b6"/> + <style:text-properties officeooo:paragraph-rsid="00881a06"/> </style:style> <style:style style:name="P71" style:family="paragraph" style:parent-style-name="Text_20_body"> - <style:text-properties officeooo:rsid="0089d9b6" officeooo:paragraph-rsid="0089d9b6"/> + <style:text-properties officeooo:rsid="00895410" officeooo:paragraph-rsid="0089d9b6"/> </style:style> <style:style style:name="P72" style:family="paragraph" style:parent-style-name="Text_20_body"> - <style:text-properties officeooo:rsid="0089d9b6" officeooo:paragraph-rsid="008a0101"/> + <style:text-properties officeooo:rsid="0089d9b6" officeooo:paragraph-rsid="0089d9b6"/> </style:style> <style:style style:name="P73" style:family="paragraph" style:parent-style-name="Text_20_body"> - <style:text-properties officeooo:rsid="008a0101" officeooo:paragraph-rsid="008a0101"/> + <style:text-properties officeooo:rsid="0089d9b6" officeooo:paragraph-rsid="008a0101"/> </style:style> <style:style style:name="P74" style:family="paragraph" style:parent-style-name="Text_20_body"> - <style:text-properties officeooo:rsid="008b134d" officeooo:paragraph-rsid="008b134d"/> + <style:text-properties officeooo:rsid="008a0101" officeooo:paragraph-rsid="008a0101"/> </style:style> <style:style style:name="P75" style:family="paragraph" style:parent-style-name="Text_20_body"> - <style:text-properties officeooo:rsid="008c2cba" officeooo:paragraph-rsid="008c2cba"/> + <style:text-properties officeooo:rsid="008b134d" officeooo:paragraph-rsid="008b134d"/> </style:style> <style:style style:name="P76" style:family="paragraph" style:parent-style-name="Text_20_body"> - <style:text-properties officeooo:rsid="008e158e" officeooo:paragraph-rsid="008e158e"/> + <style:text-properties officeooo:rsid="008c2cba" officeooo:paragraph-rsid="008c2cba"/> </style:style> <style:style style:name="P77" style:family="paragraph" style:parent-style-name="Text_20_body"> - <style:text-properties officeooo:rsid="008e53fe" officeooo:paragraph-rsid="008e53fe"/> + <style:text-properties officeooo:rsid="008e158e" officeooo:paragraph-rsid="008e158e"/> </style:style> <style:style style:name="P78" style:family="paragraph" style:parent-style-name="Text_20_body"> - <style:text-properties officeooo:rsid="00931d47" officeooo:paragraph-rsid="009475bb"/> + <style:text-properties officeooo:rsid="008e53fe" officeooo:paragraph-rsid="008e53fe"/> </style:style> <style:style style:name="P79" style:family="paragraph" style:parent-style-name="Text_20_body"> + <style:text-properties officeooo:rsid="00931d47" officeooo:paragraph-rsid="009475bb"/> + </style:style> + <style:style style:name="P80" style:family="paragraph" style:parent-style-name="Text_20_body"> <style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/> <style:text-properties officeooo:rsid="00973c25" officeooo:paragraph-rsid="009acc7d"/> </style:style> - <style:style style:name="P80" style:family="paragraph" style:parent-style-name="Text_20_body"> + <style:style style:name="P81" style:family="paragraph" style:parent-style-name="Text_20_body"> <style:text-properties officeooo:paragraph-rsid="000a3505"/> </style:style> - <style:style style:name="P81" style:family="paragraph" style:parent-style-name="Text_20_body"> + <style:style style:name="P82" style:family="paragraph" style:parent-style-name="Text_20_body"> <style:text-properties officeooo:paragraph-rsid="00423119"/> </style:style> - <style:style style:name="P82" style:family="paragraph" style:parent-style-name="Text_20_body"> + <style:style style:name="P83" style:family="paragraph" style:parent-style-name="Text_20_body"> <style:text-properties officeooo:rsid="00c20e43" officeooo:paragraph-rsid="00c20e43"/> </style:style> - <style:style style:name="P83" style:family="paragraph" style:parent-style-name="Text_20_body"> + <style:style style:name="P84" style:family="paragraph" style:parent-style-name="Text_20_body"> <style:text-properties officeooo:rsid="00c2926f" officeooo:paragraph-rsid="00c2926f"/> </style:style> - <style:style style:name="P84" style:family="paragraph" style:parent-style-name="Text_20_body"> + <style:style style:name="P85" style:family="paragraph" style:parent-style-name="Text_20_body"> <style:text-properties officeooo:rsid="00c4ca99" officeooo:paragraph-rsid="00c4ca99"/> </style:style> - <style:style style:name="P85" style:family="paragraph" style:parent-style-name="Text_20_body"> + <style:style style:name="P86" style:family="paragraph" style:parent-style-name="Text_20_body"> <style:text-properties officeooo:rsid="00c6886f" officeooo:paragraph-rsid="00c6886f"/> </style:style> - <style:style style:name="P86" style:family="paragraph" style:parent-style-name="Text_20_body"> + <style:style style:name="P87" style:family="paragraph" style:parent-style-name="Text_20_body"> <style:text-properties officeooo:rsid="00c85300" officeooo:paragraph-rsid="00c85300"/> </style:style> - <style:style style:name="P87" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P88" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:paragraph-rsid="000ef722"/> </style:style> - <style:style style:name="P88" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P89" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:rsid="000ef722" officeooo:paragraph-rsid="000ef722"/> </style:style> - <style:style style:name="P89" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P90" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:rsid="0010c1fe" officeooo:paragraph-rsid="0010c1fe"/> </style:style> - <style:style style:name="P90" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P91" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:rsid="00120dec" officeooo:paragraph-rsid="00120dec"/> </style:style> - <style:style style:name="P91" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P92" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:rsid="00120dec" officeooo:paragraph-rsid="0056317a"/> </style:style> - <style:style style:name="P92" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P93" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:rsid="00120dec" officeooo:paragraph-rsid="00c2926f"/> </style:style> - <style:style style:name="P93" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P94" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:rsid="00120dec" officeooo:paragraph-rsid="00c2ee8b"/> </style:style> - <style:style style:name="P94" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P95" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:rsid="00136724" officeooo:paragraph-rsid="00136724"/> </style:style> - <style:style style:name="P95" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P96" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:rsid="00136724" officeooo:paragraph-rsid="00145993"/> </style:style> - <style:style style:name="P96" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P97" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:rsid="00136724" officeooo:paragraph-rsid="00823929"/> </style:style> - <style:style style:name="P97" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P98" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:rsid="00136724" officeooo:paragraph-rsid="00c6886f"/> </style:style> - <style:style style:name="P98" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P99" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:rsid="00145993" officeooo:paragraph-rsid="00145993"/> </style:style> - <style:style style:name="P99" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P100" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/> </style:style> - <style:style style:name="P100" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P101" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties fo:font-weight="bold" officeooo:paragraph-rsid="00145993" style:font-weight-asian="bold" style:font-weight-complex="bold"/> </style:style> - <style:style style:name="P101" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P102" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties fo:font-weight="bold" officeooo:rsid="00120dec" officeooo:paragraph-rsid="00145993" style:font-weight-asian="bold" style:font-weight-complex="bold"/> </style:style> - <style:style style:name="P102" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P103" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties fo:font-weight="bold" officeooo:paragraph-rsid="0040993d" style:font-weight-asian="bold" style:font-weight-complex="bold"/> </style:style> - <style:style style:name="P103" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P104" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties fo:font-weight="bold" officeooo:rsid="00136724" officeooo:paragraph-rsid="00823929" style:font-weight-asian="bold" style:font-weight-complex="bold"/> </style:style> - <style:style style:name="P104" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P105" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties fo:font-weight="bold" officeooo:rsid="00136724" officeooo:paragraph-rsid="00c6886f" style:font-weight-asian="bold" style:font-weight-complex="bold"/> </style:style> - <style:style style:name="P105" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P106" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties fo:font-weight="bold" officeooo:rsid="00823929" officeooo:paragraph-rsid="00823929" style:font-weight-asian="bold" style:font-weight-complex="bold"/> </style:style> - <style:style style:name="P106" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P107" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties fo:font-weight="bold" officeooo:paragraph-rsid="00881a06" style:font-weight-asian="bold" style:font-weight-complex="bold"/> </style:style> - <style:style style:name="P107" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P108" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:rsid="002df45a" officeooo:paragraph-rsid="002df45a"/> </style:style> - <style:style style:name="P108" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P109" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:paragraph-rsid="002df45a"/> </style:style> - <style:style style:name="P109" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P110" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:rsid="0031081b" officeooo:paragraph-rsid="003212b8"/> </style:style> - <style:style style:name="P110" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P111" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:paragraph-rsid="003212b8"/> </style:style> - <style:style style:name="P111" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P112" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:paragraph-rsid="003b8120"/> </style:style> - <style:style style:name="P112" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P113" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:rsid="0040993d" officeooo:paragraph-rsid="0040993d"/> </style:style> - <style:style style:name="P113" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P114" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties fo:font-style="normal" style:font-style-asian="normal" style:font-style-complex="normal"/> </style:style> - <style:style style:name="P114" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P115" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties fo:font-style="normal" officeooo:rsid="00c4ca99" officeooo:paragraph-rsid="00c4ca99" style:font-style-asian="normal" style:font-style-complex="normal"/> </style:style> - <style:style style:name="P115" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P116" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties fo:font-style="normal" style:text-underline-style="none" style:font-style-asian="normal" style:font-style-complex="normal"/> </style:style> - <style:style style:name="P116" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P117" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties fo:font-style="normal" style:text-underline-style="none" officeooo:rsid="0056317a" officeooo:paragraph-rsid="00551136" style:font-style-asian="normal" style:font-style-complex="normal"/> </style:style> - <style:style style:name="P117" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P118" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties fo:font-style="normal" style:text-underline-style="none" officeooo:rsid="00584c1a" officeooo:paragraph-rsid="005a5c62" style:font-style-asian="normal" style:font-style-complex="normal"/> </style:style> - <style:style style:name="P118" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P119" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties fo:font-style="normal" style:text-underline-style="none" officeooo:paragraph-rsid="005a5c62" style:font-style-asian="normal" style:font-style-complex="normal"/> </style:style> - <style:style style:name="P119" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P120" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties fo:font-style="normal" style:text-underline-style="none" officeooo:rsid="005ac4c7" officeooo:paragraph-rsid="005ac4c7" style:font-style-asian="normal" style:font-style-complex="normal"/> </style:style> - <style:style style:name="P120" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P121" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties fo:font-style="normal" style:text-underline-style="none" officeooo:paragraph-rsid="005ac4c7" style:font-style-asian="normal" style:font-style-complex="normal"/> </style:style> - <style:style style:name="P121" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P122" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties fo:font-style="normal" style:text-underline-style="none" officeooo:rsid="005b6c85" officeooo:paragraph-rsid="005b6c85" style:font-style-asian="normal" style:font-style-complex="normal"/> </style:style> - <style:style style:name="P122" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P123" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties fo:font-style="normal" style:text-underline-style="none" officeooo:paragraph-rsid="00657146" style:font-style-asian="normal" style:font-style-complex="normal"/> </style:style> - <style:style style:name="P123" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P124" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties fo:font-style="normal" style:text-underline-style="none" officeooo:rsid="00657146" officeooo:paragraph-rsid="00657146" style:font-style-asian="normal" style:font-style-complex="normal"/> </style:style> - <style:style style:name="P124" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P125" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties fo:font-style="normal" fo:font-weight="bold" officeooo:rsid="00881a06" officeooo:paragraph-rsid="00881a06" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-style-complex="normal" style:font-weight-complex="bold"/> </style:style> - <style:style style:name="P125" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P126" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties fo:font-style="normal" fo:font-weight="normal" officeooo:rsid="00c6886f" officeooo:paragraph-rsid="00c6886f" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-style-complex="normal" style:font-weight-complex="normal"/> </style:style> - <style:style style:name="P126" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P127" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties fo:font-style="normal" fo:font-weight="normal" officeooo:rsid="00136724" officeooo:paragraph-rsid="00c6886f" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-style-complex="normal" style:font-weight-complex="normal"/> </style:style> - <style:style style:name="P127" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P128" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:rsid="00405b5f"/> </style:style> - <style:style style:name="P128" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P129" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:rsid="0051a8b5" officeooo:paragraph-rsid="0051a8b5"/> </style:style> - <style:style style:name="P129" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P130" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:paragraph-rsid="00551136"/> </style:style> - <style:style style:name="P130" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P131" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:rsid="0056317a" officeooo:paragraph-rsid="0056317a"/> </style:style> - <style:style style:name="P131" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P132" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:rsid="0056317a" officeooo:paragraph-rsid="00c2926f"/> </style:style> - <style:style style:name="P132" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P133" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:paragraph-rsid="005ac4c7"/> </style:style> - <style:style style:name="P133" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P134" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:paragraph-rsid="005b6c85"/> </style:style> - <style:style style:name="P134" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P135" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:rsid="005b6c85" officeooo:paragraph-rsid="005b6c85"/> </style:style> - <style:style style:name="P135" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P136" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:paragraph-rsid="00657146"/> </style:style> - <style:style style:name="P136" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P137" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:paragraph-rsid="006e58f1"/> </style:style> - <style:style style:name="P137" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P138" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:rsid="00823929" officeooo:paragraph-rsid="00823929"/> </style:style> - <style:style style:name="P138" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P139" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:rsid="00840f80" officeooo:paragraph-rsid="00840f80"/> </style:style> - <style:style style:name="P139" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P140" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:rsid="00840f80" officeooo:paragraph-rsid="00881a06"/> </style:style> - <style:style style:name="P140" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P141" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:paragraph-rsid="00881a06"/> </style:style> - <style:style style:name="P141" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P142" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:rsid="008a0101" officeooo:paragraph-rsid="008a0101"/> </style:style> - <style:style style:name="P142" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P143" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:paragraph-rsid="008a0101"/> </style:style> - <style:style style:name="P143" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P144" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:rsid="008b134d" officeooo:paragraph-rsid="008b134d"/> </style:style> - <style:style style:name="P144" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P145" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:rsid="008ba54a" officeooo:paragraph-rsid="008c2cba"/> </style:style> - <style:style style:name="P145" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P146" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:rsid="008c2cba" officeooo:paragraph-rsid="008c2cba"/> </style:style> - <style:style style:name="P146" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P147" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:rsid="00931d47" officeooo:paragraph-rsid="00931d47"/> </style:style> - <style:style style:name="P147" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P148" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:rsid="0089d9b6"/> </style:style> - <style:style style:name="P148" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P149" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:rsid="00c4ca99" officeooo:paragraph-rsid="00c4ca99"/> </style:style> - <style:style style:name="P149" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P150" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:paragraph-rsid="00c6886f"/> </style:style> - <style:style style:name="P150" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> + <style:style style:name="P151" style:family="paragraph" style:parent-style-name="Preformatted_20_Text"> <style:text-properties officeooo:paragraph-rsid="00c85300"/> </style:style> - <style:style style:name="P151" style:family="paragraph" style:parent-style-name="List_20_Heading"> + <style:style style:name="P152" style:family="paragraph" style:parent-style-name="List_20_Heading"> <style:text-properties officeooo:rsid="00469c32" officeooo:paragraph-rsid="00469c32"/> </style:style> - <style:style style:name="P152" style:family="paragraph" style:parent-style-name="List_20_Heading"> + <style:style style:name="P153" style:family="paragraph" style:parent-style-name="List_20_Heading"> <style:text-properties officeooo:rsid="00469c32" officeooo:paragraph-rsid="004e33b4"/> </style:style> - <style:style style:name="P153" style:family="paragraph" style:parent-style-name="List_20_Heading"> + <style:style style:name="P154" style:family="paragraph" style:parent-style-name="List_20_Heading"> <style:text-properties fo:font-style="normal" style:font-style-asian="normal" style:font-style-complex="normal"/> </style:style> - <style:style style:name="P154" style:family="paragraph" style:parent-style-name="List_20_Heading"> + <style:style style:name="P155" style:family="paragraph" style:parent-style-name="List_20_Heading"> <style:text-properties fo:font-style="normal" officeooo:rsid="004584b6" officeooo:paragraph-rsid="004584b6" style:font-style-asian="normal" style:font-style-complex="normal"/> </style:style> - <style:style style:name="P155" style:family="paragraph" style:parent-style-name="List_20_Heading"> + <style:style style:name="P156" style:family="paragraph" style:parent-style-name="List_20_Heading"> <style:text-properties fo:font-style="normal" officeooo:rsid="0045d600" officeooo:paragraph-rsid="0045d600" style:font-style-asian="normal" style:font-style-complex="normal"/> </style:style> - <style:style style:name="P156" style:family="paragraph" style:parent-style-name="List_20_Heading"> + <style:style style:name="P157" style:family="paragraph" style:parent-style-name="List_20_Heading"> <style:text-properties fo:font-style="normal" officeooo:rsid="00469c32" officeooo:paragraph-rsid="00469c32" style:font-style-asian="normal" style:font-style-complex="normal"/> </style:style> - <style:style style:name="P157" style:family="paragraph" style:parent-style-name="List_20_Heading"> + <style:style style:name="P158" style:family="paragraph" style:parent-style-name="List_20_Heading"> <style:text-properties fo:font-style="normal" officeooo:rsid="00493380" officeooo:paragraph-rsid="00493380" style:font-style-asian="normal" style:font-style-complex="normal"/> </style:style> - <style:style style:name="P158" style:family="paragraph" style:parent-style-name="List_20_Heading"> + <style:style style:name="P159" style:family="paragraph" style:parent-style-name="List_20_Heading"> <style:text-properties fo:font-style="normal" officeooo:paragraph-rsid="00493380" style:font-style-asian="normal" style:font-style-complex="normal"/> </style:style> - <style:style style:name="P159" style:family="paragraph" style:parent-style-name="List_20_Heading"> + <style:style style:name="P160" style:family="paragraph" style:parent-style-name="List_20_Heading"> <style:text-properties fo:font-style="normal" officeooo:rsid="009d837c" officeooo:paragraph-rsid="009d837c" style:font-style-asian="normal" style:font-style-complex="normal"/> </style:style> - <style:style style:name="P160" style:family="paragraph" style:parent-style-name="List_20_Heading"> + <style:style style:name="P161" style:family="paragraph" style:parent-style-name="List_20_Heading"> <style:text-properties fo:font-style="normal" style:text-underline-style="none" style:font-style-asian="normal" style:font-style-complex="normal"/> </style:style> - <style:style style:name="P161" style:family="paragraph" style:parent-style-name="List_20_Heading"> + <style:style style:name="P162" style:family="paragraph" style:parent-style-name="List_20_Heading"> <style:text-properties fo:font-style="normal" style:text-underline-style="none" officeooo:rsid="009beecc" officeooo:paragraph-rsid="009beecc" style:font-style-asian="normal" style:font-style-complex="normal"/> </style:style> - <style:style style:name="P162" style:family="paragraph" style:parent-style-name="List_20_Heading"> + <style:style style:name="P163" style:family="paragraph" style:parent-style-name="List_20_Heading"> <style:text-properties officeooo:rsid="00493380" officeooo:paragraph-rsid="004e33b4"/> </style:style> - <style:style style:name="P163" style:family="paragraph" style:parent-style-name="List_20_Heading"> + <style:style style:name="P164" style:family="paragraph" style:parent-style-name="List_20_Heading"> <style:text-properties officeooo:rsid="00484f3f" officeooo:paragraph-rsid="004e33b4"/> </style:style> - <style:style style:name="P164" style:family="paragraph" style:parent-style-name="List_20_Heading"> + <style:style style:name="P165" style:family="paragraph" style:parent-style-name="List_20_Heading"> <style:text-properties officeooo:rsid="00719334" officeooo:paragraph-rsid="00719334"/> </style:style> - <style:style style:name="P165" style:family="paragraph" style:parent-style-name="List_20_Heading"> + <style:style style:name="P166" style:family="paragraph" style:parent-style-name="List_20_Heading"> <style:text-properties officeooo:rsid="00c20e43" officeooo:paragraph-rsid="00c20e43"/> </style:style> - <style:style style:name="P166" style:family="paragraph" style:parent-style-name="List_20_Contents"> + <style:style style:name="P167" style:family="paragraph" style:parent-style-name="List_20_Contents"> <style:text-properties officeooo:rsid="004584b6" officeooo:paragraph-rsid="004584b6"/> </style:style> - <style:style style:name="P167" style:family="paragraph" style:parent-style-name="List_20_Contents"> + <style:style style:name="P168" style:family="paragraph" style:parent-style-name="List_20_Contents"> <style:text-properties officeooo:rsid="00469c32" officeooo:paragraph-rsid="00469c32"/> </style:style> - <style:style style:name="P168" style:family="paragraph" style:parent-style-name="List_20_Contents"> + <style:style style:name="P169" style:family="paragraph" style:parent-style-name="List_20_Contents"> <style:text-properties officeooo:rsid="00493380" officeooo:paragraph-rsid="00493380"/> </style:style> - <style:style style:name="P169" style:family="paragraph" style:parent-style-name="List_20_Contents"> + <style:style style:name="P170" style:family="paragraph" style:parent-style-name="List_20_Contents"> <style:text-properties fo:font-style="normal" officeooo:rsid="0045d600" officeooo:paragraph-rsid="0045d600" style:font-style-asian="normal" style:font-style-complex="normal"/> </style:style> - <style:style style:name="P170" style:family="paragraph" style:parent-style-name="List_20_Contents"> + <style:style style:name="P171" style:family="paragraph" style:parent-style-name="List_20_Contents"> <style:text-properties fo:font-style="normal" officeooo:rsid="00484f3f" officeooo:paragraph-rsid="004e33b4" style:font-style-asian="normal" style:font-style-complex="normal"/> </style:style> - <style:style style:name="P171" style:family="paragraph" style:parent-style-name="List_20_Contents"> + <style:style style:name="P172" style:family="paragraph" style:parent-style-name="List_20_Contents"> <style:text-properties fo:font-style="normal" officeooo:rsid="00493380" officeooo:paragraph-rsid="00493380" style:font-style-asian="normal" style:font-style-complex="normal"/> </style:style> - <style:style style:name="P172" style:family="paragraph" style:parent-style-name="List_20_Contents"> + <style:style style:name="P173" style:family="paragraph" style:parent-style-name="List_20_Contents"> <style:text-properties fo:font-style="normal" officeooo:rsid="00493380" officeooo:paragraph-rsid="004e33b4" style:font-style-asian="normal" style:font-style-complex="normal"/> </style:style> - <style:style style:name="P173" style:family="paragraph" style:parent-style-name="List_20_Contents"> + <style:style style:name="P174" style:family="paragraph" style:parent-style-name="List_20_Contents"> <style:text-properties fo:font-style="normal" officeooo:rsid="00469c32" officeooo:paragraph-rsid="00469c32" style:font-style-asian="normal" style:font-style-complex="normal"/> </style:style> - <style:style style:name="P174" style:family="paragraph" style:parent-style-name="List_20_Contents"> + <style:style style:name="P175" style:family="paragraph" style:parent-style-name="List_20_Contents"> <style:text-properties fo:font-style="normal" officeooo:rsid="007ab691" officeooo:paragraph-rsid="007ab691" style:font-style-asian="normal" style:font-style-complex="normal"/> </style:style> - <style:style style:name="P175" style:family="paragraph" style:parent-style-name="List_20_Contents"> + <style:style style:name="P176" style:family="paragraph" style:parent-style-name="List_20_Contents"> <style:text-properties fo:font-style="normal" officeooo:rsid="009d837c" officeooo:paragraph-rsid="009d837c" style:font-style-asian="normal" style:font-style-complex="normal"/> </style:style> - <style:style style:name="P176" style:family="paragraph" style:parent-style-name="List_20_Contents"> + <style:style style:name="P177" style:family="paragraph" style:parent-style-name="List_20_Contents"> <style:text-properties fo:font-style="normal" officeooo:rsid="00719334" officeooo:paragraph-rsid="00719334" style:font-style-asian="normal" style:font-style-complex="normal"/> </style:style> - <style:style style:name="P177" style:family="paragraph" style:parent-style-name="List_20_Contents"> + <style:style style:name="P178" style:family="paragraph" style:parent-style-name="List_20_Contents"> <style:text-properties fo:font-style="normal" fo:font-weight="normal" officeooo:rsid="00925c69" officeooo:paragraph-rsid="00925c69" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-style-complex="normal" style:font-weight-complex="normal"/> </style:style> - <style:style style:name="P178" style:family="paragraph" style:parent-style-name="List_20_Contents"> + <style:style style:name="P179" style:family="paragraph" style:parent-style-name="List_20_Contents"> <style:text-properties fo:font-style="normal" style:text-underline-style="none" officeooo:rsid="009beecc" officeooo:paragraph-rsid="009beecc" style:font-style-asian="normal" style:font-style-complex="normal"/> </style:style> - <style:style style:name="P179" style:family="paragraph" style:parent-style-name="List_20_Contents"> + <style:style style:name="P180" style:family="paragraph" style:parent-style-name="List_20_Contents"> <style:text-properties officeooo:rsid="00484f3f" officeooo:paragraph-rsid="004e33b4"/> </style:style> - <style:style style:name="P180" style:family="paragraph" style:parent-style-name="List_20_Contents"> + <style:style style:name="P181" style:family="paragraph" style:parent-style-name="List_20_Contents"> <style:text-properties officeooo:rsid="006c5326" officeooo:paragraph-rsid="006c5326"/> </style:style> - <style:style style:name="P181" style:family="paragraph" style:parent-style-name="List_20_Contents"> + <style:style style:name="P182" style:family="paragraph" style:parent-style-name="List_20_Contents"> <style:text-properties officeooo:paragraph-rsid="00779a5b"/> </style:style> - <style:style style:name="P182" style:family="paragraph" style:parent-style-name="List_20_Contents"> + <style:style style:name="P183" style:family="paragraph" style:parent-style-name="List_20_Contents"> <style:text-properties fo:font-style="italic" officeooo:rsid="007ab691" officeooo:paragraph-rsid="007ab691" style:font-style-asian="italic" style:font-style-complex="italic"/> </style:style> - <style:style style:name="P183" style:family="paragraph" style:parent-style-name="List_20_Contents"> + <style:style style:name="P184" style:family="paragraph" style:parent-style-name="List_20_Contents"> <style:text-properties fo:font-style="italic" officeooo:rsid="00925c69" officeooo:paragraph-rsid="00925c69" style:font-style-asian="italic" style:font-style-complex="italic"/> </style:style> - <style:style style:name="P184" style:family="paragraph" style:parent-style-name="List_20_Contents"> + <style:style style:name="P185" style:family="paragraph" style:parent-style-name="List_20_Contents"> <style:text-properties fo:font-style="italic" officeooo:rsid="00779a5b" officeooo:paragraph-rsid="00a52bc9" style:font-style-asian="italic" style:font-style-complex="italic"/> </style:style> - <style:style style:name="P185" style:family="paragraph" style:parent-style-name="List_20_Contents"> + <style:style style:name="P186" style:family="paragraph" style:parent-style-name="List_20_Contents"> <style:text-properties officeooo:rsid="007a1e4b" officeooo:paragraph-rsid="007a1e4b"/> </style:style> - <style:style style:name="P186" style:family="paragraph" style:parent-style-name="List_20_Contents"> + <style:style style:name="P187" style:family="paragraph" style:parent-style-name="List_20_Contents"> <style:text-properties officeooo:rsid="007ab691" officeooo:paragraph-rsid="007ab691"/> </style:style> - <style:style style:name="P187" style:family="paragraph" style:parent-style-name="List_20_Contents"> + <style:style style:name="P188" style:family="paragraph" style:parent-style-name="List_20_Contents"> <style:text-properties officeooo:rsid="007bf983" officeooo:paragraph-rsid="007bf983"/> </style:style> - <style:style style:name="P188" style:family="paragraph" style:parent-style-name="List_20_Contents"> + <style:style style:name="P189" style:family="paragraph" style:parent-style-name="List_20_Contents"> <style:text-properties officeooo:rsid="008e53fe" officeooo:paragraph-rsid="008f3b90"/> </style:style> - <style:style style:name="P189" style:family="paragraph" style:parent-style-name="List_20_Contents"> + <style:style style:name="P190" style:family="paragraph" style:parent-style-name="List_20_Contents"> <style:text-properties officeooo:rsid="0090e55e" officeooo:paragraph-rsid="00913e1d"/> </style:style> - <style:style style:name="P190" style:family="paragraph" style:parent-style-name="List_20_Contents"> + <style:style style:name="P191" style:family="paragraph" style:parent-style-name="List_20_Contents"> <style:text-properties officeooo:rsid="00beeeb9" officeooo:paragraph-rsid="00beeeb9"/> </style:style> - <style:style style:name="P191" style:family="paragraph" style:parent-style-name="List_20_Contents"> + <style:style style:name="P192" style:family="paragraph" style:parent-style-name="List_20_Contents"> <style:text-properties officeooo:rsid="00beeeb9" officeooo:paragraph-rsid="00c0dbdb"/> </style:style> - <style:style style:name="P192" style:family="paragraph" style:parent-style-name="List_20_Contents"> + <style:style style:name="P193" style:family="paragraph" style:parent-style-name="List_20_Contents"> <style:text-properties officeooo:rsid="00c20e43" officeooo:paragraph-rsid="00c20e43"/> </style:style> - <style:style style:name="P193" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading"> + <style:style style:name="P194" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading"> <style:text-properties officeooo:paragraph-rsid="007a1e4b"/> </style:style> - <style:style style:name="P194" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading"> + <style:style style:name="P195" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading"> <style:text-properties officeooo:rsid="007ab691" officeooo:paragraph-rsid="007ab691"/> </style:style> - <style:style style:name="P195" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading"> + <style:style style:name="P196" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading"> <style:text-properties officeooo:paragraph-rsid="007bf983"/> </style:style> - <style:style style:name="P196" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading"> + <style:style style:name="P197" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading"> <style:text-properties officeooo:rsid="008e53fe" officeooo:paragraph-rsid="008e53fe"/> </style:style> - <style:style style:name="P197" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading"> + <style:style style:name="P198" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading"> <style:text-properties fo:font-style="italic" officeooo:rsid="00925c69" officeooo:paragraph-rsid="00925c69" style:font-style-asian="italic" style:font-style-complex="italic"/> </style:style> - <style:style style:name="P198" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading"> + <style:style style:name="P199" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading"> <style:text-properties officeooo:paragraph-rsid="0090e55e"/> </style:style> - <style:style style:name="P199" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading"> + <style:style style:name="P200" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading"> <style:text-properties officeooo:rsid="00925c69" officeooo:paragraph-rsid="00925c69"/> </style:style> - <style:style style:name="P200" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading"> + <style:style style:name="P201" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading"> <style:text-properties officeooo:rsid="00beeeb9" officeooo:paragraph-rsid="00beeeb9"/> </style:style> - <style:style style:name="P201" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading"> + <style:style style:name="P202" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading"> <style:text-properties officeooo:rsid="00beeeb9" officeooo:paragraph-rsid="00c0dbdb"/> </style:style> - <style:style style:name="P202" style:family="paragraph" style:parent-style-name="Preformatted_20_Text_20_Interrupt"> + <style:style style:name="P203" style:family="paragraph" style:parent-style-name="Preformatted_20_Text_20_Interrupt"> <style:text-properties officeooo:paragraph-rsid="008c2cba"/> </style:style> - <style:style style:name="P203" style:family="paragraph" style:parent-style-name="Preformatted_20_Text_20_Indented"> + <style:style style:name="P204" style:family="paragraph" style:parent-style-name="Preformatted_20_Text_20_Indented"> <style:text-properties fo:font-style="normal" officeooo:rsid="008f3b90" officeooo:paragraph-rsid="008f3b90" style:font-style-asian="normal" style:font-style-complex="normal"/> </style:style> - <style:style style:name="P204" style:family="paragraph" style:parent-style-name="Caption"> + <style:style style:name="P205" style:family="paragraph" style:parent-style-name="Caption"> <style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/> </style:style> - <style:style style:name="P205" style:family="paragraph" style:parent-style-name="Contents_20_Heading"> + <style:style style:name="P206" style:family="paragraph" style:parent-style-name="Contents_20_Heading"> <style:paragraph-properties fo:break-before="page"/> </style:style> - <style:style style:name="P206" style:family="paragraph" style:parent-style-name="Heading_20_1"> + <style:style style:name="P207" style:family="paragraph" style:parent-style-name="Heading_20_1"> <style:paragraph-properties fo:break-before="page"/> <style:text-properties officeooo:rsid="000a3505" officeooo:paragraph-rsid="000a3505"/> </style:style> - <style:style style:name="P207" style:family="paragraph" style:parent-style-name="Contents_20_1"> + <style:style style:name="P208" style:family="paragraph" style:parent-style-name="Contents_20_1"> <style:paragraph-properties> <style:tab-stops> <style:tab-stop style:position="17cm" style:type="right" style:leader-style="dotted" style:leader-text="."/> </style:tab-stops> </style:paragraph-properties> </style:style> - <style:style style:name="P208" style:family="paragraph" style:parent-style-name="Contents_20_2"> + <style:style style:name="P209" style:family="paragraph" style:parent-style-name="Contents_20_2"> <style:paragraph-properties> <style:tab-stops> <style:tab-stop style:position="16.501cm" style:type="right" style:leader-style="dotted" style:leader-text="."/> </style:tab-stops> </style:paragraph-properties> </style:style> - <style:style style:name="P209" style:family="paragraph" style:parent-style-name="Contents_20_3"> + <style:style style:name="P210" style:family="paragraph" style:parent-style-name="Contents_20_3"> <style:paragraph-properties> <style:tab-stops> <style:tab-stop style:position="16.002cm" style:type="right" style:leader-style="dotted" style:leader-text="."/> </style:tab-stops> </style:paragraph-properties> </style:style> - <style:style style:name="P210" style:family="paragraph" style:parent-style-name="Heading_20_1"> + <style:style style:name="P211" style:family="paragraph" style:parent-style-name="Heading_20_1"> <style:text-properties officeooo:rsid="001888a2" officeooo:paragraph-rsid="009eea28"/> </style:style> - <style:style style:name="P211" style:family="paragraph" style:parent-style-name="Title" style:master-page-name=""> + <style:style style:name="P212" style:family="paragraph" style:parent-style-name="Title" style:master-page-name=""> <style:paragraph-properties style:page-number="auto"/> <style:text-properties officeooo:rsid="000a3505" officeooo:paragraph-rsid="000a3505"/> </style:style> - <style:style style:name="P212" style:family="paragraph" style:parent-style-name="Heading_20_3"> + <style:style style:name="P213" style:family="paragraph" style:parent-style-name="Heading_20_3"> <style:text-properties officeooo:rsid="00750ebf" officeooo:paragraph-rsid="0074d148"/> </style:style> - <style:style style:name="P213" style:family="paragraph" style:parent-style-name="Heading_20_3"> + <style:style style:name="P214" style:family="paragraph" style:parent-style-name="Heading_20_3"> <style:text-properties officeooo:rsid="00750ebf" officeooo:paragraph-rsid="00750ebf"/> </style:style> - <style:style style:name="P214" style:family="paragraph" style:parent-style-name="Heading_20_3"> + <style:style style:name="P215" style:family="paragraph" style:parent-style-name="Heading_20_3"> <style:text-properties fo:font-style="normal" style:text-underline-style="none" style:font-style-asian="normal" style:font-style-complex="normal"/> </style:style> - <style:style style:name="P215" style:family="paragraph" style:parent-style-name="Heading_20_3"> + <style:style style:name="P216" style:family="paragraph" style:parent-style-name="Heading_20_3"> <style:text-properties fo:font-style="normal" style:text-underline-style="none" officeooo:rsid="009beecc" officeooo:paragraph-rsid="009beecc" style:font-style-asian="normal" style:font-style-complex="normal"/> </style:style> - <style:style style:name="P216" style:family="paragraph" style:parent-style-name="Heading_20_3"> + <style:style style:name="P217" style:family="paragraph" style:parent-style-name="Heading_20_3"> <style:text-properties fo:font-style="normal" style:text-underline-style="none" officeooo:paragraph-rsid="00c2926f" style:font-style-asian="normal" style:font-style-complex="normal"/> </style:style> - <style:style style:name="P217" style:family="paragraph" style:parent-style-name="Heading_20_3"> + <style:style style:name="P218" style:family="paragraph" style:parent-style-name="Heading_20_3"> <style:text-properties fo:font-style="normal" style:font-style-asian="normal" style:font-style-complex="normal"/> </style:style> - <style:style style:name="P218" style:family="paragraph" style:parent-style-name="Heading_20_3"> + <style:style style:name="P219" style:family="paragraph" style:parent-style-name="Heading_20_3"> <style:text-properties fo:font-style="normal" officeooo:paragraph-rsid="00931d47" style:font-style-asian="normal" style:font-style-complex="normal"/> </style:style> - <style:style style:name="P219" style:family="paragraph" style:parent-style-name="Heading_20_3"> + <style:style style:name="P220" style:family="paragraph" style:parent-style-name="Heading_20_3"> <style:text-properties fo:font-style="normal" officeooo:rsid="009715be" officeooo:paragraph-rsid="009acc7d" style:font-style-asian="normal" style:font-style-complex="normal"/> </style:style> - <style:style style:name="P220" style:family="paragraph" style:parent-style-name="Heading_20_3"> + <style:style style:name="P221" style:family="paragraph" style:parent-style-name="Heading_20_3"> <style:text-properties fo:font-style="normal" officeooo:rsid="009715be" officeooo:paragraph-rsid="00c6886f" style:font-style-asian="normal" style:font-style-complex="normal"/> </style:style> - <style:style style:name="P221" style:family="paragraph" style:parent-style-name="Heading_20_3"> + <style:style style:name="P222" style:family="paragraph" style:parent-style-name="Heading_20_3"> <style:text-properties officeooo:rsid="0063d022" officeooo:paragraph-rsid="0063d022"/> </style:style> - <style:style style:name="P222" style:family="paragraph" style:parent-style-name="Heading_20_3"> + <style:style style:name="P223" style:family="paragraph" style:parent-style-name="Heading_20_3"> <style:text-properties officeooo:paragraph-rsid="00931d47"/> </style:style> - <style:style style:name="P223" style:family="paragraph" style:parent-style-name="Heading_20_3"> + <style:style style:name="P224" style:family="paragraph" style:parent-style-name="Heading_20_3"> <style:text-properties officeooo:rsid="00c6886f" officeooo:paragraph-rsid="00c6886f"/> </style:style> - <style:style style:name="P224" style:family="paragraph" style:parent-style-name="Subtitle"> + <style:style style:name="P225" style:family="paragraph" style:parent-style-name="Subtitle"> <style:text-properties officeooo:rsid="000a3505" officeooo:paragraph-rsid="000a3505"/> </style:style> - <style:style style:name="P225" style:family="paragraph" style:parent-style-name="Subtitle"> + <style:style style:name="P226" style:family="paragraph" style:parent-style-name="Subtitle"> <style:text-properties officeooo:rsid="000a3505" officeooo:paragraph-rsid="00beeeb9"/> </style:style> - <style:style style:name="P226" style:family="paragraph" style:parent-style-name="Subtitle"> + <style:style style:name="P227" style:family="paragraph" style:parent-style-name="Subtitle"> <style:text-properties officeooo:rsid="00beeeb9" officeooo:paragraph-rsid="00beeeb9"/> </style:style> - <style:style style:name="P227" style:family="paragraph" style:parent-style-name="Heading_20_2"> + <style:style style:name="P228" style:family="paragraph" style:parent-style-name="Heading_20_2"> <style:text-properties officeooo:paragraph-rsid="00b17591"/> </style:style> - <style:style style:name="P228" style:family="paragraph" style:parent-style-name="Heading_20_2"> + <style:style style:name="P229" style:family="paragraph" style:parent-style-name="Heading_20_2"> <style:text-properties officeooo:rsid="00288fc1" officeooo:paragraph-rsid="00423119"/> </style:style> - <style:style style:name="P229" style:family="paragraph" style:parent-style-name="Heading_20_2"> + <style:style style:name="P230" style:family="paragraph" style:parent-style-name="Heading_20_2"> <style:text-properties officeooo:paragraph-rsid="00423119"/> </style:style> - <style:style style:name="P230" style:family="paragraph" style:parent-style-name="Heading_20_2"> + <style:style style:name="P231" style:family="paragraph" style:parent-style-name="Heading_20_2"> <style:text-properties officeooo:paragraph-rsid="0063d022"/> </style:style> - <style:style style:name="P231" style:family="paragraph" style:parent-style-name="Heading_20_2"> + <style:style style:name="P232" style:family="paragraph" style:parent-style-name="Heading_20_2"> <style:text-properties fo:font-style="normal" officeooo:paragraph-rsid="0086f697" style:font-style-asian="normal" style:font-style-complex="normal"/> </style:style> - <style:style style:name="P232" style:family="paragraph" style:parent-style-name="Text_20_body"> - <style:text-properties fo:font-style="normal" officeooo:rsid="00c85300" officeooo:paragraph-rsid="00c85300" style:font-style-asian="normal" style:font-style-complex="normal"/> - </style:style> <style:style style:name="P233" style:family="paragraph" style:parent-style-name="Title" style:master-page-name="First_20_Page"> <style:paragraph-properties style:page-number="auto"/> <style:text-properties officeooo:rsid="000a3505" officeooo:paragraph-rsid="000a3505"/> @@ -1753,6 +1753,9 @@ <style:style style:name="T202" style:family="text"> <style:text-properties officeooo:rsid="00c9174a"/> </style:style> + <style:style style:name="T203" style:family="text"> + <style:text-properties officeooo:rsid="00ca2923"/> + </style:style> <style:style style:name="Sect1" style:family="section"> <style:section-properties fo:background-color="transparent" style:editable="false"> <style:columns fo:column-count="1" fo:column-gap="0cm"/> @@ -1807,7 +1810,7 @@ <office:master-styles> <style:master-page style:name="Standard" style:page-layout-name="pm1"> <style:footer> - <text:p text:style-name="Footer"><text:page-number text:select-page="current">10</text:page-number><text:tab/><text:tab/><text:modification-date style:data-style-name="N84">2015-11-05</text:modification-date>, <text:modification-time style:data-style-name="N41">23:10:44</text:modification-time></text:p> + <text:p text:style-name="Footer"><text:page-number text:select-page="current">2</text:page-number><text:tab/><text:tab/><text:modification-date style:data-style-name="N84">2015-12-10</text:modification-date>, <text:modification-time style:data-style-name="N41">23:45:43</text:modification-time></text:p> </style:footer> </style:master-page> <style:master-page style:name="First_20_Page" style:display-name="First Page" style:page-layout-name="pm2" style:next-style-name="Standard"/> @@ -1822,9 +1825,9 @@ <text:sequence-decl text:display-outline-level="0" text:name="Drawing"/> </text:sequence-decls> <text:p text:style-name="P233">Make Experiments!</text:p> - <text:p text:style-name="P225">Run-script generation for earth system models</text:p> - <text:p text:style-name="P226">Release 0.3.<text:span text:style-name="T202">4</text:span></text:p> - <text:p text:style-name="P204">Karl-Hermann Wieners<text:line-break/><text:span text:style-name="T196">Max-Planck-Institut für Meteorologie<text:line-break/>Hamburg</text:span></text:p> + <text:p text:style-name="P226">Run-script generation for earth system models</text:p> + <text:p text:style-name="P227">Release 0.3.<text:span text:style-name="T203">5dev</text:span></text:p> + <text:p text:style-name="P205">Karl-Hermann Wieners<text:line-break/><text:span text:style-name="T196">Max-Planck-Institut für Meteorologie<text:line-break/>Hamburg</text:span></text:p> <text:table-of-content text:style-name="Sect1" text:protected="true" text:name="Table of Contents1"> <text:table-of-content-source text:outline-level="10"> <text:index-title-template text:style-name="Contents_20_Heading">Table of Contents</text:index-title-template> @@ -1911,172 +1914,172 @@ </text:table-of-content-source> <text:index-body> <text:index-title text:style-name="Sect2" text:name="Table of Contents1_Head"> - <text:p text:style-name="P205">Table of Contents</text:p> + <text:p text:style-name="P206">Table of Contents</text:p> </text:index-title> - <text:p text:style-name="P207"><text:a xlink:type="simple" xlink:href="#__RefHeading__2518_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">1 Introduction<text:tab/>3</text:a></text:p> - <text:p text:style-name="P208"><text:a xlink:type="simple" xlink:href="#__RefHeading__2520_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">1.1 Example: ECHAM experiment setup<text:tab/>3</text:a></text:p> - <text:p text:style-name="P209"><text:a xlink:type="simple" xlink:href="#__RefHeading__2522_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">1.1.1 Experiments are defined by custom and default settings<text:tab/>3</text:a></text:p> - <text:p text:style-name="P209"><text:a xlink:type="simple" xlink:href="#__RefHeading__2524_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">1.1.2 Job templates are completed by settings to create scripts<text:tab/>4</text:a></text:p> - <text:p text:style-name="P209"><text:a xlink:type="simple" xlink:href="#__RefHeading__2526_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">1.1.3 Generating scripts only refers to the custom settings' file<text:tab/>6</text:a></text:p> - <text:p text:style-name="P207"><text:a xlink:type="simple" xlink:href="#__RefHeading__2528_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2 Details on experiment definition<text:tab/>6</text:a></text:p> - <text:p text:style-name="P208"><text:a xlink:type="simple" xlink:href="#__RefHeading__2530_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.1 Design<text:tab/>7</text:a></text:p> - <text:p text:style-name="P208"><text:a xlink:type="simple" xlink:href="#__RefHeading__2532_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.2 Tools<text:tab/>7</text:a></text:p> - <text:p text:style-name="P208"><text:a xlink:type="simple" xlink:href="#__RefHeading__2534_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.3 Format of .config files<text:tab/>8</text:a></text:p> - <text:p text:style-name="P209"><text:a xlink:type="simple" xlink:href="#__RefHeading__1669_1438093122" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.3.1 Variables<text:tab/>8</text:a></text:p> - <text:p text:style-name="P209"><text:a xlink:type="simple" xlink:href="#__RefHeading__2536_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.3.2 Sections<text:tab/>9</text:a></text:p> - <text:p text:style-name="P209"><text:a xlink:type="simple" xlink:href="#__RefHeading__2538_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.3.3 Special variables and sections<text:tab/>9</text:a></text:p> - <text:p text:style-name="P209"><text:a xlink:type="simple" xlink:href="#__RefHeading__2540_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.3.4 Variable interpolation<text:tab/>11</text:a></text:p> - <text:p text:style-name="P209"><text:a xlink:type="simple" xlink:href="#__RefHeading__2542_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.3.5 Evaluation of interpolation<text:tab/>12</text:a></text:p> - <text:p text:style-name="P209"><text:a xlink:type="simple" xlink:href="#__RefHeading__2544_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.3.6 Special expressions<text:tab/>13</text:a></text:p> - <text:p text:style-name="P208"><text:a xlink:type="simple" xlink:href="#__RefHeading__2546_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.4 Format of .tmpl files<text:tab/>14</text:a></text:p> - <text:p text:style-name="P209"><text:a xlink:type="simple" xlink:href="#__RefHeading__2548_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.4.1 Placeholders<text:tab/>14</text:a></text:p> - <text:p text:style-name="P209"><text:a xlink:type="simple" xlink:href="#__RefHeading__2550_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.4.2 Variables in sections<text:tab/>14</text:a></text:p> - <text:p text:style-name="P209"><text:a xlink:type="simple" xlink:href="#__RefHeading__2552_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.4.3 Expressions<text:tab/>15</text:a></text:p> - <text:p text:style-name="P209"><text:a xlink:type="simple" xlink:href="#__RefHeading__2554_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.4.4 Loops<text:tab/>15</text:a></text:p> - <text:p text:style-name="P209"><text:a xlink:type="simple" xlink:href="#__RefHeading__2556_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.4.5 Conditions<text:tab/>16</text:a></text:p> - <text:p text:style-name="P209"><text:a xlink:type="simple" xlink:href="#__RefHeading__2558_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.4.6 Comments<text:tab/>16</text:a></text:p> - <text:p text:style-name="P208"><text:a xlink:type="simple" xlink:href="#__RefHeading__2560_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.5 Standard experiments<text:tab/>17</text:a></text:p> - <text:p text:style-name="P208"><text:a xlink:type="simple" xlink:href="#__RefHeading__2562_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.6 Standard options<text:tab/>17</text:a></text:p> - <text:p text:style-name="P208"><text:a xlink:type="simple" xlink:href="#__RefHeading__2564_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.7 Standard environments<text:tab/>18</text:a></text:p> - <text:p text:style-name="P208"><text:a xlink:type="simple" xlink:href="#__RefHeading__1508_1711940803" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.8 Generating jobs<text:tab/>18</text:a></text:p> - <text:p text:style-name="P209"><text:a xlink:type="simple" xlink:href="#__RefHeading__2566_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.8.1 Changing the model job list<text:tab/>19</text:a></text:p> - <text:p text:style-name="P209"><text:a xlink:type="simple" xlink:href="#__RefHeading__2568_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.8.2 Pre-defined job variables<text:tab/>19</text:a></text:p> - <text:p text:style-name="P209"><text:a xlink:type="simple" xlink:href="#__RefHeading__2570_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.8.3 Overriding namelist settings in derived jobs<text:tab/>20</text:a></text:p> - <text:p text:style-name="P209"><text:a xlink:type="simple" xlink:href="#__RefHeading__2572_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.8.4 Native script variables<text:tab/>20</text:a></text:p> - <text:p text:style-name="P209"><text:a xlink:type="simple" xlink:href="#__RefHeading__2574_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.8.5 Initializing native script variables<text:tab/>21</text:a></text:p> - <text:p text:style-name="P209"><text:a xlink:type="simple" xlink:href="#__RefHeading__2576_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.8.6 Re-generation of scripts and backup<text:tab/>22</text:a></text:p> - <text:p text:style-name="P208"><text:a xlink:type="simple" xlink:href="#__RefHeading__1883_1672291846" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.9 Defining namelists and other configuration files<text:tab/>22</text:a></text:p> - <text:p text:style-name="P209"><text:a xlink:type="simple" xlink:href="#__RefHeading__2578_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.9.1 Formatting the namelist information<text:tab/>23</text:a></text:p> - <text:p text:style-name="P209"><text:a xlink:type="simple" xlink:href="#__RefHeading__2580_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.9.2 Suppressing namelist groups or variables<text:tab/>23</text:a></text:p> - <text:p text:style-name="P209"><text:a xlink:type="simple" xlink:href="#__RefHeading__2714_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.9.3 Using the namelist text<text:tab/>24</text:a></text:p> - <text:p text:style-name="P209"><text:a xlink:type="simple" xlink:href="#__RefHeading__2584_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.9.4 Non-namelist configuration files<text:tab/>24</text:a></text:p> - <text:p text:style-name="P208"><text:a xlink:type="simple" xlink:href="#__RefHeading__2831_1132221942" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.10 Defining input files for an experiment<text:tab/>25</text:a></text:p> - <text:p text:style-name="P209"><text:a xlink:type="simple" xlink:href="#__RefHeading__2833_1132221942" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.10.1 Overriding input files for certain jobs<text:tab/>25</text:a></text:p> + <text:p text:style-name="P208"><text:a xlink:type="simple" xlink:href="#__RefHeading__2518_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">1 Introduction<text:tab/>3</text:a></text:p> + <text:p text:style-name="P209"><text:a xlink:type="simple" xlink:href="#__RefHeading__2520_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">1.1 Example: ECHAM experiment setup<text:tab/>3</text:a></text:p> + <text:p text:style-name="P210"><text:a xlink:type="simple" xlink:href="#__RefHeading__2522_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">1.1.1 Experiments are defined by custom and default settings<text:tab/>3</text:a></text:p> + <text:p text:style-name="P210"><text:a xlink:type="simple" xlink:href="#__RefHeading__2524_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">1.1.2 Job templates are completed by settings to create scripts<text:tab/>4</text:a></text:p> + <text:p text:style-name="P210"><text:a xlink:type="simple" xlink:href="#__RefHeading__2526_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">1.1.3 Generating scripts only refers to the custom settings' file<text:tab/>6</text:a></text:p> + <text:p text:style-name="P208"><text:a xlink:type="simple" xlink:href="#__RefHeading__2528_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2 Details on experiment definition<text:tab/>6</text:a></text:p> + <text:p text:style-name="P209"><text:a xlink:type="simple" xlink:href="#__RefHeading__2530_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.1 Design<text:tab/>7</text:a></text:p> + <text:p text:style-name="P209"><text:a xlink:type="simple" xlink:href="#__RefHeading__2532_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.2 Tools<text:tab/>7</text:a></text:p> + <text:p text:style-name="P209"><text:a xlink:type="simple" xlink:href="#__RefHeading__2534_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.3 Format of .config files<text:tab/>8</text:a></text:p> + <text:p text:style-name="P210"><text:a xlink:type="simple" xlink:href="#__RefHeading__1669_1438093122" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.3.1 Variables<text:tab/>8</text:a></text:p> + <text:p text:style-name="P210"><text:a xlink:type="simple" xlink:href="#__RefHeading__2536_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.3.2 Sections<text:tab/>9</text:a></text:p> + <text:p text:style-name="P210"><text:a xlink:type="simple" xlink:href="#__RefHeading__2538_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.3.3 Special variables and sections<text:tab/>9</text:a></text:p> + <text:p text:style-name="P210"><text:a xlink:type="simple" xlink:href="#__RefHeading__2540_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.3.4 Variable interpolation<text:tab/>11</text:a></text:p> + <text:p text:style-name="P210"><text:a xlink:type="simple" xlink:href="#__RefHeading__2542_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.3.5 Evaluation of interpolation<text:tab/>12</text:a></text:p> + <text:p text:style-name="P210"><text:a xlink:type="simple" xlink:href="#__RefHeading__2544_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.3.6 Special expressions<text:tab/>13</text:a></text:p> + <text:p text:style-name="P209"><text:a xlink:type="simple" xlink:href="#__RefHeading__2546_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.4 Format of .tmpl files<text:tab/>14</text:a></text:p> + <text:p text:style-name="P210"><text:a xlink:type="simple" xlink:href="#__RefHeading__2548_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.4.1 Placeholders<text:tab/>14</text:a></text:p> + <text:p text:style-name="P210"><text:a xlink:type="simple" xlink:href="#__RefHeading__2550_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.4.2 Variables in sections<text:tab/>14</text:a></text:p> + <text:p text:style-name="P210"><text:a xlink:type="simple" xlink:href="#__RefHeading__2552_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.4.3 Expressions<text:tab/>15</text:a></text:p> + <text:p text:style-name="P210"><text:a xlink:type="simple" xlink:href="#__RefHeading__2554_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.4.4 Loops<text:tab/>15</text:a></text:p> + <text:p text:style-name="P210"><text:a xlink:type="simple" xlink:href="#__RefHeading__2556_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.4.5 Conditions<text:tab/>16</text:a></text:p> + <text:p text:style-name="P210"><text:a xlink:type="simple" xlink:href="#__RefHeading__2558_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.4.6 Comments<text:tab/>16</text:a></text:p> + <text:p text:style-name="P209"><text:a xlink:type="simple" xlink:href="#__RefHeading__2560_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.5 Standard experiments<text:tab/>17</text:a></text:p> + <text:p text:style-name="P209"><text:a xlink:type="simple" xlink:href="#__RefHeading__2562_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.6 Standard options<text:tab/>17</text:a></text:p> + <text:p text:style-name="P209"><text:a xlink:type="simple" xlink:href="#__RefHeading__2564_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.7 Standard environments<text:tab/>18</text:a></text:p> + <text:p text:style-name="P209"><text:a xlink:type="simple" xlink:href="#__RefHeading__1508_1711940803" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.8 Generating jobs<text:tab/>18</text:a></text:p> + <text:p text:style-name="P210"><text:a xlink:type="simple" xlink:href="#__RefHeading__2566_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.8.1 Changing the model job list<text:tab/>19</text:a></text:p> + <text:p text:style-name="P210"><text:a xlink:type="simple" xlink:href="#__RefHeading__2568_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.8.2 Pre-defined job variables<text:tab/>19</text:a></text:p> + <text:p text:style-name="P210"><text:a xlink:type="simple" xlink:href="#__RefHeading__2570_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.8.3 Overriding namelist settings in derived jobs<text:tab/>20</text:a></text:p> + <text:p text:style-name="P210"><text:a xlink:type="simple" xlink:href="#__RefHeading__2572_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.8.4 Native script variables<text:tab/>20</text:a></text:p> + <text:p text:style-name="P210"><text:a xlink:type="simple" xlink:href="#__RefHeading__2574_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.8.5 Initializing native script variables<text:tab/>21</text:a></text:p> + <text:p text:style-name="P210"><text:a xlink:type="simple" xlink:href="#__RefHeading__2576_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.8.6 Re-generation of scripts and backup<text:tab/>22</text:a></text:p> + <text:p text:style-name="P209"><text:a xlink:type="simple" xlink:href="#__RefHeading__1883_1672291846" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.9 Defining namelists and other configuration files<text:tab/>22</text:a></text:p> + <text:p text:style-name="P210"><text:a xlink:type="simple" xlink:href="#__RefHeading__2578_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.9.1 Formatting the namelist information<text:tab/>23</text:a></text:p> + <text:p text:style-name="P210"><text:a xlink:type="simple" xlink:href="#__RefHeading__2580_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.9.2 Suppressing namelist groups or variables<text:tab/>23</text:a></text:p> + <text:p text:style-name="P210"><text:a xlink:type="simple" xlink:href="#__RefHeading__2714_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.9.3 Using the namelist text<text:tab/>24</text:a></text:p> + <text:p text:style-name="P210"><text:a xlink:type="simple" xlink:href="#__RefHeading__2584_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.9.4 Non-namelist configuration files<text:tab/>24</text:a></text:p> + <text:p text:style-name="P209"><text:a xlink:type="simple" xlink:href="#__RefHeading__2831_1132221942" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.10 Defining input files for an experiment<text:tab/>25</text:a></text:p> + <text:p text:style-name="P210"><text:a xlink:type="simple" xlink:href="#__RefHeading__2833_1132221942" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.10.1 Overriding input files for certain jobs<text:tab/>25</text:a></text:p> </text:index-body> </text:table-of-content> - <text:p text:style-name="P80"/> - <text:h text:style-name="P206" text:outline-level="1"><text:bookmark-start text:name="__RefHeading__2518_1114405012"/>Introduction<text:bookmark-end text:name="__RefHeading__2518_1114405012"/></text:h> + <text:p text:style-name="P81"/> + <text:h text:style-name="P207" text:outline-level="1"><text:bookmark-start text:name="__RefHeading__2518_1114405012"/>Introduction<text:bookmark-end text:name="__RefHeading__2518_1114405012"/></text:h> <text:p text:style-name="Text_20_body">Running a numerical earth system model experiment requires a number of preparatory and processing steps like staging input data files, providing namelists and other configuration data, housekeeping duties like model-time management, post-processing and storing <text:span text:style-name="T1">of </text:span>output data. These steps are usually put into scripts or another kind of job description that is finally executed on some high-performance computing system.</text:p> <text:p text:style-name="P1">The <text:span text:style-name="T124">Make Experiments! (</text:span>mkexp<text:span text:style-name="T124">)</text:span> toolbox provides a generic interface to setting up such a<text:span text:style-name="T1">n experiment</text:span>. At the heart of this <text:span text:style-name="T1">lies</text:span> the so-called .config file. This is a simple <text:span text:style-name="T1">text </text:span>file that contains the model settings for your experiment in a way that is <text:span text:style-name="T1">largely </text:span>independent of the job description that is later used to run it.</text:p> <text:p text:style-name="P4">To make this an easy task, MPI-M's models are delivered with a number of standard experiment types. Your own .config file will chose one of these, thus inheriting their settings for use in your experiment. Typically, it will also override or amend these settings for the purpose of your experiment.</text:p> <text:p text:style-name="P2">While the .config fil<text:span text:style-name="T2">e contains all necessary settings, there is much more to the actual job description. Therefore, the standard experiment types also provide templates (.tmpl files) for the jobs to run, that are then converted to the final job step descriptions, using the .config file settings. Besides, the .config file contains a 'jobs' section, where the job control flow and parameters of the job description itself may be adjusted, e.g. requiring more resources or disabling certain job steps.</text:span></text:p> <text:h text:style-name="Heading_20_2" text:outline-level="2"><text:bookmark-start text:name="__RefHeading__2520_1114405012"/>Example: <text:span text:style-name="T3">ECHAM experiment setup</text:span><text:bookmark-end text:name="__RefHeading__2520_1114405012"/></text:h> <text:p text:style-name="P32">To illustrate the way <text:span text:style-name="T9">mkexp</text:span> works, let us look at the way that experiments with ECHAM, MPI-M's atmospheric circulation model, are set up.</text:p> - <text:h text:style-name="P212" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2522_1114405012"/>Experiments are defined by custom and default settings<text:bookmark-end text:name="__RefHeading__2522_1114405012"/></text:h> + <text:h text:style-name="P213" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2522_1114405012"/>Experiments are defined by custom and default settings<text:bookmark-end text:name="__RefHeading__2522_1114405012"/></text:h> <text:p text:style-name="P3">ECHAM comes with five <text:span text:style-name="T166">pre-defined </text:span>experiment types, amip-LR, amip-MR, amip-HR, sstClim-LR and sstClim-MR. <text:span text:style-name="T3">To set up an experiment based on one of these, like amip-LR, all you have to do is create your own experiment configuration file within ECHAM's run subdirectory, e.g. 'joe1234.config', setting amip-LR as experiment type and providing an experiment description with the header comment:</text:span></text:p> - <text:p text:style-name="P89"><text:soft-page-break/># Standard AMIP experiment as baseline for further experiments (LR)</text:p> - <text:p text:style-name="P89"/> - <text:p text:style-name="P89">EXP_TYPE = amip-LR</text:p> + <text:p text:style-name="P90"><text:soft-page-break/># Standard AMIP experiment as baseline for further experiments (LR)</text:p> + <text:p text:style-name="P90"/> + <text:p text:style-name="P90">EXP_TYPE = amip-LR</text:p> <text:p text:style-name="P3">For each <text:span text:style-name="T4">experiment type</text:span>, you will find a .config file in the run/standard_experiments subdirectory. For instance, <text:span text:style-name="T165">'</text:span>amip-LR.config<text:span text:style-name="T165">'</text:span> includes these settings</text:p> - <text:p text:style-name="P88"># Default definitions for amip-LR experiments </text:p> - <text:p text:style-name="P87"/> - <text:p text:style-name="P87">RES = 63 </text:p> + <text:p text:style-name="P89"># Default definitions for amip-LR experiments </text:p> + <text:p text:style-name="P88"/> + <text:p text:style-name="P88">RES = 63 </text:p> <text:p text:style-name="Preformatted_20_Text"/> <text:p text:style-name="Preformatted_20_Text">[namelists] </text:p> - <text:p text:style-name="P87"/> - <text:p text:style-name="P87"><text:s text:c="2"/>[[namelist.echam]] </text:p> + <text:p text:style-name="P88"/> + <text:p text:style-name="P88"><text:s text:c="2"/>[[namelist.echam]] </text:p> <text:p text:style-name="Preformatted_20_Text"><text:s text:c="3"/>[[[runctl]]] </text:p> <text:p text:style-name="Preformatted_20_Text"><text:s text:c="6"/>lamip = true</text:p> - <text:p text:style-name="P90"/> - <text:p text:style-name="P90"><text:s text:c="2"/>[[namelist.jsbach]] </text:p> - <text:p text:style-name="P90"><text:s text:c="4"/>[[[jsbach_ctl]]] </text:p> - <text:p text:style-name="P90"><text:s text:c="6"/>use_dynveg <text:s/>= false </text:p> + <text:p text:style-name="P91"/> + <text:p text:style-name="P91"><text:s text:c="2"/>[[namelist.jsbach]] </text:p> + <text:p text:style-name="P91"><text:s text:c="4"/>[[[jsbach_ctl]]] </text:p> + <text:p text:style-name="P91"><text:s text:c="6"/>use_dynveg <text:s/>= false </text:p> <text:p text:style-name="P5">As you can see, settings are simple name = value pairs that may be organized in sections. Sections are defined by a bracketed section name. They may contain subsections, where the number of brackets define<text:span text:style-name="T122">s</text:span> the hierarchy depth. The pre-defined sections [namelists] and [jobs] are used for special purposes within <text:span text:style-name="T9">mkexp</text:span>.</text:p> <text:p text:style-name="P5"><text:span text:style-name="T165">Some s</text:span>ettings apply to all <text:span text:style-name="T165">ECHAM </text:span>experiment types. <text:span text:style-name="T165">They</text:span> go into a file named <text:span text:style-name="T165">'</text:span>DEFAULT.config<text:span text:style-name="T165">'</text:span>. <text:span text:style-name="T9">mkexp</text:span> will <text:span text:style-name="T165">always </text:span>read this file <text:span text:style-name="T165">first, </text:span>before applying <text:span text:style-name="T165">any </text:span>settings from <text:span text:style-name="T165">a specific experiment type like 'amip-LR.config'.</text:span> <text:span text:style-name="T165">Such settings might be default paths for input data, as in</text:span></text:p> - <text:p text:style-name="P94"># <text:span text:style-name="T165">Default definitions for all </text:span>ECHAM experiment<text:span text:style-name="T165">s</text:span></text:p> - <text:p text:style-name="P94"/> - <text:p text:style-name="P94">ATMO_INPUT_ROOT = /pool/data/ECHAM6/input/r0004 </text:p> - <text:p text:style-name="P94">LAND_INPUT_ROOT = /pool/data/JSBACH/input/r0004 </text:p> + <text:p text:style-name="P95"># <text:span text:style-name="T165">Default definitions for all </text:span>ECHAM experiment<text:span text:style-name="T165">s</text:span></text:p> + <text:p text:style-name="P95"/> + <text:p text:style-name="P95">ATMO_INPUT_ROOT = /pool/data/ECHAM6/input/r0004 </text:p> + <text:p text:style-name="P95">LAND_INPUT_ROOT = /pool/data/JSBACH/input/r0004 </text:p> <text:p text:style-name="P6">The final configuration is then merged from all of these three sources, where the experiment configuration may override <text:span text:style-name="T35">or amend </text:span>settings from the experiment type, and the type config may in turn change the model defaults.</text:p> - <text:h text:style-name="P213" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2524_1114405012"/>Job templates are completed by settings to create scripts<text:bookmark-end text:name="__RefHeading__2524_1114405012"/></text:h> + <text:h text:style-name="P214" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2524_1114405012"/>Job templates are completed by settings to create scripts<text:bookmark-end text:name="__RefHeading__2524_1114405012"/></text:h> <text:p text:style-name="P6"><text:span text:style-name="T165">Now the experiment configuration is finalized, the </text:span>settings are used to fill in <text:span text:style-name="T165">a kind of job description forms, so called </text:span><text:span text:style-name="T9">templates</text:span><text:span text:style-name="T165">, </text:span>from which eventually the <text:span text:style-name="T165">actual </text:span>job description files are created. As the structure of<text:span text:style-name="T165"> </text:span>jobs is largely independent of the model resolution, all amip- experiment types share the same set of template files. One of them is <text:span text:style-name="T186">'</text:span>amip.run.tmpl<text:span text:style-name="T186">'</text:span>, also within the run/standard_experiments subdirectory. <text:span text:style-name="T6">The excerpt below shows that t</text:span>his looks mostly like a shell script, but contains <text:span text:style-name="T123">placeholders</text:span> that are filled using the .config file information:</text:p> - <text:p text:style-name="P94"><text:soft-page-break/>#! /bin/bash</text:p> - <text:p text:style-name="P94"/> - <text:p text:style-name="P94"># Job file to run ECHAM 6 </text:p> - <text:p text:style-name="P94"/> - <text:p text:style-name="P98">EXP=<text:span text:style-name="T112">%{EXP_ID}</text:span> # experiment identifier </text:p> - <text:p text:style-name="P94"/> - <text:p text:style-name="P94">RES=<text:span text:style-name="T112">%{RES}</text:span> <text:span text:style-name="T123"># experiment truncation</text:span></text:p> - <text:p text:style-name="P94"/> - <text:p text:style-name="P98"># absolute paths to directories with initial data: </text:p> - <text:p text:style-name="P98">ATMO_DATA=<text:span text:style-name="T112">%{ATMO_INPUT_ROOT}</text:span> </text:p> - <text:p text:style-name="P98">ATMO_MAP_DATA=$ATMO_DATA/T${RES} </text:p> - <text:p text:style-name="P98"/> - <text:p text:style-name="P98"># absolute path to directory with initial data for JSBACH: </text:p> - <text:p text:style-name="P98">LAND_MAP_DATA=<text:span text:style-name="T112">%{LAND_INPUT_ROOT}</text:span>/T${RES} </text:p> - <text:p text:style-name="P95"/> - <text:p text:style-name="P95"># </text:p> - <text:p text:style-name="P94"># ECHAM6 namelist </text:p> - <text:p text:style-name="P94"># </text:p> - <text:p text:style-name="P94">cat > namelist.echam << EOF </text:p> - <text:p text:style-name="P94"><text:span text:style-name="T112">%{NAMELIST_ECHAM}</text:span> </text:p> - <text:p text:style-name="P94">EOF </text:p> - <text:p text:style-name="P94"/> - <text:p text:style-name="P94"># </text:p> - <text:p text:style-name="P94"># JSBACH namelist</text:p> - <text:p text:style-name="P94"># </text:p> - <text:p text:style-name="P94">cat > namelist.jsbach << EOF </text:p> - <text:p text:style-name="P94"><text:span text:style-name="T112">%{NAMELIST_JSBACH}</text:span> </text:p> - <text:p text:style-name="P94">EOF </text:p> - <text:p text:style-name="P7"><text:span text:style-name="T166">T</text:span>h<text:span text:style-name="T166">e</text:span>se <text:span text:style-name="T166">'</text:span>%{...}<text:span text:style-name="T166">'</text:span> construct<text:span text:style-name="T7">s</text:span> correspond to the configuration settings shown in the previous section. The value for <text:span text:style-name="T186">the setting </text:span>given <text:span text:style-name="T166">by the variable name between '%{' and '}'</text:span> is pasted into the template, replacing the placeholder. The special names 'NAMELIST_ECHAM' and 'NAMELIST_JSBACH' contain the contents of the 'namelists' subsections, with each setting taken to be a Fortran namelist setting, and formatted accordingly. 'EXP_ID' is taken to be the base filename of the experiment's .config file. The result of this operation is then written to the final job script, in our case <text:span text:style-name="T166">'</text:span>joe1234.run<text:span text:style-name="T166">'</text:span>:</text:p> <text:p text:style-name="P95"><text:soft-page-break/>#! /bin/bash</text:p> <text:p text:style-name="P95"/> <text:p text:style-name="P95"># Job file to run ECHAM 6 </text:p> <text:p text:style-name="P95"/> - <text:p text:style-name="P98">EXP=<text:span text:style-name="T112">joe1234</text:span> # experiment identifier </text:p> + <text:p text:style-name="P99">EXP=<text:span text:style-name="T112">%{EXP_ID}</text:span> # experiment identifier </text:p> <text:p text:style-name="P95"/> - <text:p text:style-name="P95">RES=<text:span text:style-name="T113">63</text:span><text:span text:style-name="T6"> # experiment truncation</text:span></text:p> + <text:p text:style-name="P95">RES=<text:span text:style-name="T112">%{RES}</text:span> <text:span text:style-name="T123"># experiment truncation</text:span></text:p> <text:p text:style-name="P95"/> - <text:p text:style-name="P95">#<text:span text:style-name="T6"> absolute paths to directories with initial data: </text:span></text:p> - <text:p text:style-name="P98">ATMO_DATA=<text:span text:style-name="T114">/pool/data/ECHAM6/input/r0004</text:span><text:span text:style-name="T5"> </text:span></text:p> - <text:p text:style-name="P98">ATMO_MAP_DATA=$ATMO_DATA/T${RES} </text:p> - <text:p text:style-name="P98"/> - <text:p text:style-name="P98"># absolute path to directory with initial data for JSBACH: </text:p> - <text:p text:style-name="P98">LAND_MAP_DATA=<text:span text:style-name="T114">/pool/data/JSBACH/input/r0004</text:span>/T${RES} </text:p> - <text:p text:style-name="P98"/> - <text:p text:style-name="P98">#</text:p> + <text:p text:style-name="P99"># absolute paths to directories with initial data: </text:p> + <text:p text:style-name="P99">ATMO_DATA=<text:span text:style-name="T112">%{ATMO_INPUT_ROOT}</text:span> </text:p> + <text:p text:style-name="P99">ATMO_MAP_DATA=$ATMO_DATA/T${RES} </text:p> + <text:p text:style-name="P99"/> + <text:p text:style-name="P99"># absolute path to directory with initial data for JSBACH: </text:p> + <text:p text:style-name="P99">LAND_MAP_DATA=<text:span text:style-name="T112">%{LAND_INPUT_ROOT}</text:span>/T${RES} </text:p> + <text:p text:style-name="P96"/> + <text:p text:style-name="P96"># </text:p> <text:p text:style-name="P95"># ECHAM6 namelist </text:p> <text:p text:style-name="P95"># </text:p> <text:p text:style-name="P95">cat > namelist.echam << EOF </text:p> - <text:p text:style-name="P100"><text:span text:style-name="T6">&</text:span>runctl </text:p> - <text:p text:style-name="P100"><text:s text:c="4"/>lamip = .true.</text:p> - <text:p text:style-name="P101">/</text:p> + <text:p text:style-name="P95"><text:span text:style-name="T112">%{NAMELIST_ECHAM}</text:span> </text:p> <text:p text:style-name="P95">EOF </text:p> <text:p text:style-name="P95"/> <text:p text:style-name="P95"># </text:p> <text:p text:style-name="P95"># JSBACH namelist</text:p> <text:p text:style-name="P95"># </text:p> <text:p text:style-name="P95">cat > namelist.jsbach << EOF </text:p> - <text:p text:style-name="P101"><text:span text:style-name="T6">&</text:span>jsbach_ctl </text:p> - <text:p text:style-name="P101"><text:s text:c="4"/>use_dynveg = .false.</text:p> - <text:p text:style-name="P101">/</text:p> + <text:p text:style-name="P95"><text:span text:style-name="T112">%{NAMELIST_JSBACH}</text:span> </text:p> <text:p text:style-name="P95">EOF </text:p> + <text:p text:style-name="P7"><text:span text:style-name="T166">T</text:span>h<text:span text:style-name="T166">e</text:span>se <text:span text:style-name="T166">'</text:span>%{...}<text:span text:style-name="T166">'</text:span> construct<text:span text:style-name="T7">s</text:span> correspond to the configuration settings shown in the previous section. The value for <text:span text:style-name="T186">the setting </text:span>given <text:span text:style-name="T166">by the variable name between '%{' and '}'</text:span> is pasted into the template, replacing the placeholder. The special names 'NAMELIST_ECHAM' and 'NAMELIST_JSBACH' contain the contents of the 'namelists' subsections, with each setting taken to be a Fortran namelist setting, and formatted accordingly. 'EXP_ID' is taken to be the base filename of the experiment's .config file. The result of this operation is then written to the final job script, in our case <text:span text:style-name="T166">'</text:span>joe1234.run<text:span text:style-name="T166">'</text:span>:</text:p> + <text:p text:style-name="P96"><text:soft-page-break/>#! /bin/bash</text:p> + <text:p text:style-name="P96"/> + <text:p text:style-name="P96"># Job file to run ECHAM 6 </text:p> + <text:p text:style-name="P96"/> + <text:p text:style-name="P99">EXP=<text:span text:style-name="T112">joe1234</text:span> # experiment identifier </text:p> + <text:p text:style-name="P96"/> + <text:p text:style-name="P96">RES=<text:span text:style-name="T113">63</text:span><text:span text:style-name="T6"> # experiment truncation</text:span></text:p> + <text:p text:style-name="P96"/> + <text:p text:style-name="P96">#<text:span text:style-name="T6"> absolute paths to directories with initial data: </text:span></text:p> + <text:p text:style-name="P99">ATMO_DATA=<text:span text:style-name="T114">/pool/data/ECHAM6/input/r0004</text:span><text:span text:style-name="T5"> </text:span></text:p> + <text:p text:style-name="P99">ATMO_MAP_DATA=$ATMO_DATA/T${RES} </text:p> + <text:p text:style-name="P99"/> + <text:p text:style-name="P99"># absolute path to directory with initial data for JSBACH: </text:p> + <text:p text:style-name="P99">LAND_MAP_DATA=<text:span text:style-name="T114">/pool/data/JSBACH/input/r0004</text:span>/T${RES} </text:p> + <text:p text:style-name="P99"/> + <text:p text:style-name="P99">#</text:p> + <text:p text:style-name="P96"># ECHAM6 namelist </text:p> + <text:p text:style-name="P96"># </text:p> + <text:p text:style-name="P96">cat > namelist.echam << EOF </text:p> + <text:p text:style-name="P101"><text:span text:style-name="T6">&</text:span>runctl </text:p> + <text:p text:style-name="P101"><text:s text:c="4"/>lamip = .true.</text:p> + <text:p text:style-name="P102">/</text:p> + <text:p text:style-name="P96">EOF </text:p> + <text:p text:style-name="P96"/> + <text:p text:style-name="P96"># </text:p> + <text:p text:style-name="P96"># JSBACH namelist</text:p> + <text:p text:style-name="P96"># </text:p> + <text:p text:style-name="P96">cat > namelist.jsbach << EOF </text:p> + <text:p text:style-name="P102"><text:span text:style-name="T6">&</text:span>jsbach_ctl </text:p> + <text:p text:style-name="P102"><text:s text:c="4"/>use_dynveg = .false.</text:p> + <text:p text:style-name="P102">/</text:p> + <text:p text:style-name="P96">EOF </text:p> <text:h text:style-name="Heading_20_3" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2526_1114405012"/><text:span text:style-name="T166">G</text:span>enerat<text:span text:style-name="T166">ing scripts only refers to the custom settings' file</text:span><text:bookmark-end text:name="__RefHeading__2526_1114405012"/></text:h> <text:p text:style-name="P13"><text:span text:style-name="T165">So, as soon as</text:span> <text:span text:style-name="T165">you have set up '</text:span>joe1234.config<text:span text:style-name="T165">'</text:span>, you may create the job scripts that are needed to run your experiment. Still within ECHAM's <text:span text:style-name="T167">'</text:span>run<text:span text:style-name="T167">'</text:span> subdirectory, type the following into your terminal:</text:p> <text:p text:style-name="Preformatted_20_Text">../util/mkexp/mkexp joe1234.config</text:p> <text:p text:style-name="P14">This will <text:span text:style-name="T124">read all configuration information and </text:span>create all job scripts that are defined within your experiment's setup, <text:span text:style-name="T124">using their respective templates as shown in the previous section</text:span>. <text:span text:style-name="T9">mkexp</text:span> will put these <text:span text:style-name="T124">scripts </text:span>in <text:span text:style-name="T124">a common</text:span> directory defined by the .config variable <text:span text:style-name="T167">'</text:span>SCRIPT_DIR<text:span text:style-name="T167">'</text:span>, and <text:span text:style-name="T167">print</text:span> the name of this directory on your terminal.</text:p> - <text:h text:style-name="P210" text:outline-level="1"><text:bookmark-start text:name="__RefHeading__2528_1114405012"/>Details on <text:span text:style-name="T185">experiment</text:span> <text:span text:style-name="T185">definition</text:span><text:bookmark-end text:name="__RefHeading__2528_1114405012"/></text:h> + <text:h text:style-name="P211" text:outline-level="1"><text:bookmark-start text:name="__RefHeading__2528_1114405012"/>Details on <text:span text:style-name="T185">experiment</text:span> <text:span text:style-name="T185">definition</text:span><text:bookmark-end text:name="__RefHeading__2528_1114405012"/></text:h> <text:p text:style-name="P15">With the introductory example of the previous section in mind, this section will give some more detailed information on specific aspects of <text:span text:style-name="T9">mkexp</text:span><text:span text:style-name="T38">.</text:span></text:p> - <text:h text:style-name="P227" text:outline-level="2"><text:bookmark-start text:name="__RefHeading__2530_1114405012"/><text:soft-page-break/>Design<text:bookmark-end text:name="__RefHeading__2530_1114405012"/></text:h> + <text:h text:style-name="P228" text:outline-level="2"><text:bookmark-start text:name="__RefHeading__2530_1114405012"/><text:soft-page-break/>Design<text:bookmark-end text:name="__RefHeading__2530_1114405012"/></text:h> <text:p text:style-name="P34">Experiment definition with <text:span text:style-name="T9">mkexp</text:span> <text:span text:style-name="T147">is organized</text:span> <text:span text:style-name="T147">in</text:span> three levels.</text:p> <text:p text:style-name="P34">The first level is the <text:span text:style-name="T9">mkexp</text:span> toolbox. It provides the front end to create an executable job description from a generic experiment configuration, <text:span text:style-name="T146">but does not contain any model specific information. Instead a basic set of conventions is defined that should be applicable to a very large range of model systems. When this document uses the term </text:span><text:span text:style-name="T18">mkexp</text:span><text:span text:style-name="T44">, it refers to this system level.</text:span></text:p> <text:p text:style-name="P34"><text:span text:style-name="T146">At a second level, a model needs to provide a number of files containing the information needed by </text:span><text:span text:style-name="T17">mkexp</text:span><text:span text:style-name="T146">: the required job steps and their interaction, the basic contents of job scripts, model specific information, and building blocks that may be combined to define a specific experiment. This is called the </text:span><text:span text:style-name="T17">model setup</text:span><text:span text:style-name="T43">. The files must maintain the naming conventions prescribed by </text:span><text:span text:style-name="T17">mkexp</text:span><text:span text:style-name="T43">.</text:span></text:p> <text:p text:style-name="P35"><text:span text:style-name="T38">Finally, the third level is the actual experiment definition. Here the user decides which of the building blocks from the previous level are needed, and </text:span><text:span text:style-name="T75">defines</text:span><text:span text:style-name="T38"> experiment specific settings that override or amend the information from the model setup. It is also essential to supply an experiment description and a – possibly unique – experiment identifier. All this is called the </text:span><text:span text:style-name="T9">user setup</text:span><text:span text:style-name="T38">.</text:span></text:p> <text:p text:style-name="P36"><text:span text:style-name="T38">All levels should make a clear distinction </text:span><text:span text:style-name="T45">between </text:span><text:span text:style-name="T38">the .config files, containing the experiment's configuration information, </text:span><text:span text:style-name="T45">and </text:span><text:span text:style-name="T38">the .tmpl files, containing the actual job description and job control syntax.</text:span></text:p> - <text:h text:style-name="P228" text:outline-level="2"><text:bookmark-start text:name="__RefHeading__2532_1114405012"/>Tools<text:bookmark-end text:name="__RefHeading__2532_1114405012"/></text:h> - <text:p text:style-name="P81"><text:span text:style-name="T124">The </text:span><text:span text:style-name="T32">mkexp</text:span><text:span text:style-name="T124"> package provides a number of tools for working with script configurations and setups.</text:span></text:p> + <text:h text:style-name="P229" text:outline-level="2"><text:bookmark-start text:name="__RefHeading__2532_1114405012"/>Tools<text:bookmark-end text:name="__RefHeading__2532_1114405012"/></text:h> + <text:p text:style-name="P82"><text:span text:style-name="T124">The </text:span><text:span text:style-name="T32">mkexp</text:span><text:span text:style-name="T124"> package provides a number of tools for working with script configurations and setups.</text:span></text:p> <text:p text:style-name="Preformatted_20_List_20_Heading">mkexp <text:span text:style-name="T23">file</text:span><text:span text:style-name="T56">.</text:span><text:span text:style-name="T38">config</text:span> [<text:span text:style-name="T9">name</text:span>=<text:span text:style-name="T9">value</text:span> ...]</text:p> - <text:p text:style-name="P181"><text:span text:style-name="T124">This is the main tool for generating an experiment setup. It </text:span>takes <text:span text:style-name="T168">the given</text:span> <text:span text:style-name="T168">user setup</text:span> and <text:span text:style-name="T187">the model setup that is referenced by the user setup </text:span>to generate <text:span text:style-name="T168">the</text:span> <text:span text:style-name="T168">job description files or</text:span> scripts that <text:span text:style-name="T187">are required to run a model experiment as specified in </text:span><text:span text:style-name="T21">file.</text:span><text:span text:style-name="T56">config</text:span><text:span text:style-name="T168">.</text:span></text:p> - <text:p text:style-name="P185">When running, <text:span text:style-name="T9">mkexp</text:span><text:span text:style-name="T38"> creates three directories, one each for the job scripts, run-time data, and output data, as defined by the setup. The names of these are printed, plus warnings if they already exist.</text:span></text:p> - <text:p text:style-name="P184">mkexp<text:span text:style-name="T38"> allows to override </text:span><text:span text:style-name="T54">or amend </text:span><text:span text:style-name="T38">the .config file settings on the command line </text:span><text:span text:style-name="T54">by defining or re-defining a variable </text:span><text:span text:style-name="T169">name</text:span><text:span text:style-name="T54"> set to </text:span><text:span text:style-name="T169">value</text:span><text:span text:style-name="T54">. Section variables are referenced as </text:span><text:span text:style-name="T169">sectionname</text:span><text:span text:style-name="T54">.</text:span><text:span text:style-name="T169">variablename</text:span><text:span text:style-name="T54">. Any periods in the variable name have to be duplicated, e.g. to set '.remove' in section 'jobs' to 'post', use 'jobs...remove=post'. Note that three periods will always be read as '.' followed by </text:span><text:soft-page-break/><text:span text:style-name="T54">'..', thus it is not possible to use variable names th</text:span><text:span text:style-name="T76">at</text:span><text:span text:style-name="T54"> </text:span><text:span text:style-name="T169">end</text:span><text:span text:style-name="T54"> </text:span><text:span text:style-name="T76">i</text:span><text:span text:style-name="T54">n a period.</text:span></text:p> - <text:p text:style-name="P194"><text:span text:style-name="T54">g</text:span><text:span text:style-name="T38">etexp [-v] </text:span><text:span text:style-name="T9">file</text:span><text:span text:style-name="T38">.config [</text:span><text:span text:style-name="T9">name</text:span><text:span text:style-name="T38">=</text:span><text:span text:style-name="T9">value ...</text:span><text:span text:style-name="T38">]</text:span></text:p> - <text:p text:style-name="P182">getexp<text:span text:style-name="T38"> reads the experiment setup the same way </text:span><text:span text:style-name="T76">as</text:span><text:span text:style-name="T38"> </text:span>mkexp<text:span text:style-name="T38">, but does not generate job scripts. Instead it prints the experiment name and directories to be generated in a shell-readable form. It is intended for debugging or passing setup information to utility scripts.</text:span></text:p> - <text:p text:style-name="P186"><text:span text:style-name="T38">When given the '-v' (verbose) option, </text:span><text:span text:style-name="T9">all</text:span><text:span text:style-name="T38"> global configuration variables and their values are printed in alphabetical order.</text:span></text:p> - <text:p text:style-name="P193">diffexp <text:span text:style-name="T22">file</text:span><text:span text:style-name="T23">1</text:span><text:span text:style-name="T170">.config </text:span><text:span text:style-name="T22">file2</text:span><text:span text:style-name="T55">.</text:span><text:span text:style-name="T56">config</text:span></text:p> - <text:p text:style-name="P174">For an easy comparison of the whole set of generated scripts for two different experiments, this tool takes the directories defined in each configuration, locates the job scripts corresponding to each other (e.g. exp0001.run and exp0002.run), equalizes all occurrences of the experiment name in the scripts and then uses the diff tool to show differences. The environment variable 'DIFF' may be set to an alternative tool to be called instead.</text:p> - <text:p text:style-name="P195">rmexp <text:span text:style-name="T24">file</text:span><text:span text:style-name="T171">.config</text:span><text:span text:style-name="T57"> [</text:span><text:span text:style-name="T24">name</text:span><text:span text:style-name="T57">=</text:span><text:span text:style-name="T24">value ...</text:span><text:span text:style-name="T57">]</text:span></text:p> - <text:p text:style-name="P187">This allows <text:span text:style-name="T174">interactive </text:span>remov<text:span text:style-name="T174">al for </text:span>all scripting and run-time data of an experiment without having to deal with path names, as these are read from the configuration.</text:p> - <text:h text:style-name="P229" text:outline-level="2"><text:bookmark-start text:name="__RefHeading__2534_1114405012"/><text:span text:style-name="T130">F</text:span>ormat of .config files<text:bookmark-end text:name="__RefHeading__2534_1114405012"/></text:h> + <text:p text:style-name="P182"><text:span text:style-name="T124">This is the main tool for generating an experiment setup. It </text:span>takes <text:span text:style-name="T168">the given</text:span> <text:span text:style-name="T168">user setup</text:span> and <text:span text:style-name="T187">the model setup that is referenced by the user setup </text:span>to generate <text:span text:style-name="T168">the</text:span> <text:span text:style-name="T168">job description files or</text:span> scripts that <text:span text:style-name="T187">are required to run a model experiment as specified in </text:span><text:span text:style-name="T21">file.</text:span><text:span text:style-name="T56">config</text:span><text:span text:style-name="T168">.</text:span></text:p> + <text:p text:style-name="P186">When running, <text:span text:style-name="T9">mkexp</text:span><text:span text:style-name="T38"> creates three directories, one each for the job scripts, run-time data, and output data, as defined by the setup. The names of these are printed, plus warnings if they already exist.</text:span></text:p> + <text:p text:style-name="P185">mkexp<text:span text:style-name="T38"> allows to override </text:span><text:span text:style-name="T54">or amend </text:span><text:span text:style-name="T38">the .config file settings on the command line </text:span><text:span text:style-name="T54">by defining or re-defining a variable </text:span><text:span text:style-name="T169">name</text:span><text:span text:style-name="T54"> set to </text:span><text:span text:style-name="T169">value</text:span><text:span text:style-name="T54">. Section variables are referenced as </text:span><text:span text:style-name="T169">sectionname</text:span><text:span text:style-name="T54">.</text:span><text:span text:style-name="T169">variablename</text:span><text:span text:style-name="T54">. Any periods in the variable name have to be duplicated, e.g. to set '.remove' in section 'jobs' to 'post', use 'jobs...remove=post'. Note that three periods will always be read as '.' followed by </text:span><text:soft-page-break/><text:span text:style-name="T54">'..', thus it is not possible to use variable names th</text:span><text:span text:style-name="T76">at</text:span><text:span text:style-name="T54"> </text:span><text:span text:style-name="T169">end</text:span><text:span text:style-name="T54"> </text:span><text:span text:style-name="T76">i</text:span><text:span text:style-name="T54">n a period.</text:span></text:p> + <text:p text:style-name="P195"><text:span text:style-name="T54">g</text:span><text:span text:style-name="T38">etexp [-v] </text:span><text:span text:style-name="T9">file</text:span><text:span text:style-name="T38">.config [</text:span><text:span text:style-name="T9">name</text:span><text:span text:style-name="T38">=</text:span><text:span text:style-name="T9">value ...</text:span><text:span text:style-name="T38">]</text:span></text:p> + <text:p text:style-name="P183">getexp<text:span text:style-name="T38"> reads the experiment setup the same way </text:span><text:span text:style-name="T76">as</text:span><text:span text:style-name="T38"> </text:span>mkexp<text:span text:style-name="T38">, but does not generate job scripts. Instead it prints the experiment name and directories to be generated in a shell-readable form. It is intended for debugging or passing setup information to utility scripts.</text:span></text:p> + <text:p text:style-name="P187"><text:span text:style-name="T38">When given the '-v' (verbose) option, </text:span><text:span text:style-name="T9">all</text:span><text:span text:style-name="T38"> global configuration variables and their values are printed in alphabetical order.</text:span></text:p> + <text:p text:style-name="P194">diffexp <text:span text:style-name="T22">file</text:span><text:span text:style-name="T23">1</text:span><text:span text:style-name="T170">.config </text:span><text:span text:style-name="T22">file2</text:span><text:span text:style-name="T55">.</text:span><text:span text:style-name="T56">config</text:span></text:p> + <text:p text:style-name="P175">For an easy comparison of the whole set of generated scripts for two different experiments, this tool takes the directories defined in each configuration, locates the job scripts corresponding to each other (e.g. exp0001.run and exp0002.run), equalizes all occurrences of the experiment name in the scripts and then uses the diff tool to show differences. The environment variable 'DIFF' may be set to an alternative tool to be called instead.</text:p> + <text:p text:style-name="P196">rmexp <text:span text:style-name="T24">file</text:span><text:span text:style-name="T171">.config</text:span><text:span text:style-name="T57"> [</text:span><text:span text:style-name="T24">name</text:span><text:span text:style-name="T57">=</text:span><text:span text:style-name="T24">value ...</text:span><text:span text:style-name="T57">]</text:span></text:p> + <text:p text:style-name="P188">This allows <text:span text:style-name="T174">interactive </text:span>remov<text:span text:style-name="T174">al for </text:span>all scripting and run-time data of an experiment without having to deal with path names, as these are read from the configuration.</text:p> + <text:h text:style-name="P230" text:outline-level="2"><text:bookmark-start text:name="__RefHeading__2534_1114405012"/><text:span text:style-name="T130">F</text:span>ormat of .config files<text:bookmark-end text:name="__RefHeading__2534_1114405012"/></text:h> <text:p text:style-name="P15">The .config files are simple text files containing a dictionary of variables with their respective values. They may be structured using sections and comments. <text:span text:style-name="T125">For reading these files, </text:span><text:span text:style-name="T12">mkexp</text:span><text:span text:style-name="T125"> uses the </text:span><text:span text:style-name="T12">configobj</text:span><text:span text:style-name="T125"> Python library. All settings found in the .config files are handled as Python variables internally.</text:span></text:p> <text:h text:style-name="Heading_20_3" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__1669_1438093122"/>Variables<text:bookmark-end text:name="__RefHeading__1669_1438093122"/></text:h> <text:p text:style-name="P18">A <text:span text:style-name="T126">configuration variable is set by simply assigning a text value to a name, as in</text:span></text:p> @@ -2088,112 +2091,112 @@ <text:p text:style-name="P21">will set PATH to ['/bin', '/usr/bin', '/usr/local/bin'].</text:p> <text:h text:style-name="Heading_20_3" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2536_1114405012"/>Sections<text:bookmark-end text:name="__RefHeading__2536_1114405012"/></text:h> <text:p text:style-name="P22">Variable assignments may be contained in <text:span text:style-name="T9">sections</text:span><text:span text:style-name="T38">. They </text:span><text:span text:style-name="T40">group</text:span><text:span text:style-name="T38"> a set of variables that may be treated </text:span><text:span text:style-name="T77">in a way </text:span><text:span text:style-name="T38">different fro</text:span><text:span text:style-name="T77">m</text:span><text:span text:style-name="T38"> the global variables. Sections are created by a section name on a line by itself, enclosed by brackets. Any variables defined later in the .config file belong to this section:</text:span></text:p> - <text:p text:style-name="P113">[section1]</text:p> - <text:p text:style-name="P113"><text:s text:c="4"/>description = This is the first section</text:p> + <text:p text:style-name="P114">[section1]</text:p> + <text:p text:style-name="P114"><text:s text:c="4"/>description = This is the first section</text:p> <text:p text:style-name="P22">will be stored as a dictionary section1 with section1['description'] set to 'This is the first section'.</text:p> <text:p text:style-name="P22">Sections may be nested to arbitrary depth by incrementing the number of bracket pairs <text:span text:style-name="T128">as in</text:span></text:p> <text:p text:style-name="Preformatted_20_Text">[section1]</text:p> <text:p text:style-name="Preformatted_20_Text"><text:s text:c="4"/>description = This is the first section</text:p> <text:p text:style-name="Preformatted_20_Text"><text:s text:c="4"/>[[subsection1a]]</text:p> <text:p text:style-name="Preformatted_20_Text"><text:s text:c="8"/>description = This is the first sub section of the first section</text:p> - <text:p text:style-name="P108"><text:s text:c="4"/>[[subsection1<text:span text:style-name="T128">b</text:span>]]</text:p> - <text:p text:style-name="P108"><text:s text:c="8"/>description = This is the <text:span text:style-name="T128">second</text:span> sub section of the first section</text:p> - <text:p text:style-name="P107">[section2]</text:p> - <text:p text:style-name="P107"><text:s text:c="4"/>description = This is the second section </text:p> + <text:p text:style-name="P109"><text:s text:c="4"/>[[subsection1<text:span text:style-name="T128">b</text:span>]]</text:p> + <text:p text:style-name="P109"><text:s text:c="8"/>description = This is the <text:span text:style-name="T128">second</text:span> sub section of the first section</text:p> + <text:p text:style-name="P108">[section2]</text:p> + <text:p text:style-name="P108"><text:s text:c="4"/>description = This is the second section </text:p> <text:p text:style-name="P23"><text:span text:style-name="T172">A s</text:span>ection <text:span text:style-name="T172">is</text:span> closed by the beginning of a new section of the same level, by a section <text:span text:style-name="T172">of </text:span>l<text:span text:style-name="T172">ower</text:span> <text:span text:style-name="T172">nesting </text:span>depth, <text:span text:style-name="T172">or the end of the .config file</text:span>. Thus, section1 will contain 'description' and two dictionaries 'subsection1' and 'subsection2', each of those containing their own 'description'. 'section2' then is a top-level dictionary, again with its own 'description' variable.</text:p> <text:p text:style-name="P23">Note that indentation may be used to make the file more legible but is completely ignored when the file is loaded. The number of brackets is the only way to define the level of a section. This means that all variables in a section must be defined before any subsections. Otherwise, the variable <text:s/>would be<text:span text:style-name="T129">long</text:span> to the respective subsection.</text:p> <text:p text:style-name="P22">Fortran scholars will also want to note that names are case-sensitive, i.e. the variable 'NAME' is quite different from 'name'. Usually, setups use upper-case names for global variables and lower-case names for sections and their variables.</text:p> <text:h text:style-name="Heading_20_3" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2538_1114405012"/>Special <text:span text:style-name="T164">v</text:span>ariables <text:span text:style-name="T164">and sections</text:span><text:bookmark-end text:name="__RefHeading__2538_1114405012"/></text:h> <text:p text:style-name="P39"><text:span text:style-name="T38">There are a number of special variables that influence the way </text:span>mkexp<text:span text:style-name="T38"> works. They must be present in one of the .config files, unless noted otherwise below. </text:span><text:span text:style-name="T42">They are </text:span><text:soft-page-break/><text:span text:style-name="T42">listed here for a first overview. Their exact meaning is explained in more detail in the upcoming sections.</text:span></text:p> <text:p text:style-name="P40"><text:span text:style-name="T42">T</text:span><text:span text:style-name="T38">he first set of variables is usually defined in the model setup:</text:span></text:p> - <text:p text:style-name="P153">SCRIPT_DIR</text:p> - <text:p text:style-name="P166"><text:span text:style-name="T41">D</text:span><text:span text:style-name="T38">irectory where the generated job descriptions are stored. This directory and its parents are created by </text:span><text:span text:style-name="T9">mkexp</text:span><text:span text:style-name="T38"> if they do not exist.</text:span></text:p> - <text:p text:style-name="P154">WORK_DIR</text:p> - <text:p text:style-name="P169">Directory where the experiment is run. The jobs will use this for providing input data and configuration files needed for model execution. This directory and its parents are created if they do not exist.</text:p> - <text:p text:style-name="P155">DATA_DIR</text:p> - <text:p text:style-name="P169">Directory for storing output data. When a model run finishes, output will be stored there for further processing. Will also be created when non-existent.</text:p> - <text:p text:style-name="P159">VERSION_</text:p> - <text:p text:style-name="P175">Each .config file in the model setup <text:span text:style-name="T202">should</text:span> set this variable to a suitable value, e.g. version control information. The values are collected in a variable 'VERSIONS_' which is usually written to the resulting job descriptions.</text:p> + <text:p text:style-name="P154">SCRIPT_DIR</text:p> + <text:p text:style-name="P167"><text:span text:style-name="T41">D</text:span><text:span text:style-name="T38">irectory where the generated job descriptions are stored. This directory and its parents are created by </text:span><text:span text:style-name="T9">mkexp</text:span><text:span text:style-name="T38"> if they do not exist.</text:span></text:p> + <text:p text:style-name="P155">WORK_DIR</text:p> + <text:p text:style-name="P170">Directory where the experiment is run. The jobs will use this for providing input data and configuration files needed for model execution. This directory and its parents are created if they do not exist.</text:p> + <text:p text:style-name="P156">DATA_DIR</text:p> + <text:p text:style-name="P170">Directory for storing output data. When a model run finishes, output will be stored there for further processing. Will also be created when non-existent.</text:p> + <text:p text:style-name="P160">VERSION_</text:p> + <text:p text:style-name="P176">Each .config file in the model setup <text:span text:style-name="T202">should</text:span> set this variable to a suitable value, e.g. version control information. The values are collected in a variable 'VERSIONS_' which is usually written to the resulting job descriptions.</text:p> <text:p text:style-name="P41">There is a second set of variables that belongs in the user setup:</text:p> - <text:p text:style-name="P157">EXP_TYPE</text:p> - <text:p text:style-name="P171">Selects one of the standard experiments that are pre-defined in the model setup as basis of the current experiment definition.</text:p> - <text:p text:style-name="P158">ENVIRONMENT</text:p> - <text:p text:style-name="P168">Selects one of the standard host environments that are available for the model.</text:p> - <text:p text:style-name="P162"><text:span text:style-name="T38">EXP_OPTIONS (</text:span><text:span text:style-name="T9">optional</text:span><text:span text:style-name="T38">)</text:span></text:p> - <text:p text:style-name="P172">Subset of the model's standard options that should be applied to the current experiment definition.</text:p> - <text:p text:style-name="P163">EXP_ID (<text:span text:style-name="T9">optional</text:span>)</text:p> - <text:p text:style-name="P179">Name of the experiment to be created. If not set, this will be set to the base name of the user's .config file, e.g. 'joe1234' in the introductory example. All job description files will carry this as the first part of their name. For almost all model setups, this will be used in the definitions of SCRIPT_DIR, WORK_DIR, and DATA_DIR.</text:p> - <text:p text:style-name="P152">EXP_DESCRIPTION <text:span text:style-name="T145">(</text:span><text:span text:style-name="T16">optional</text:span><text:span text:style-name="T145">)</text:span></text:p> - <text:p text:style-name="P170">Extensive description of the experiment to be created. If not set, this will contain all text in the header comment of the user's .config file. The leading comment characters and leading and trailing empty lines are removed. Note that <text:span text:style-name="T188">both header comment and </text:span>EXP_DESCRIPTION may reference any other global variable defined in the experiment configuration <text:span text:style-name="T188">(see section </text:span><text:span text:style-name="T188"><text:bookmark-ref text:reference-format="chapter" text:ref-name="__RefHeading__2540_1114405012">2.3.4</text:bookmark-ref></text:span><text:span text:style-name="T188">)</text:span>.</text:p> - <text:p text:style-name="P170">The contents of this variable is written to a 'README' file in SCRIPT_DIR.</text:p> + <text:p text:style-name="P158">EXP_TYPE</text:p> + <text:p text:style-name="P172">Selects one of the standard experiments that are pre-defined in the model setup as basis of the current experiment definition.</text:p> + <text:p text:style-name="P159">ENVIRONMENT</text:p> + <text:p text:style-name="P169">Selects one of the standard host environments that are available for the model.</text:p> + <text:p text:style-name="P163"><text:span text:style-name="T38">EXP_OPTIONS (</text:span><text:span text:style-name="T9">optional</text:span><text:span text:style-name="T38">)</text:span></text:p> + <text:p text:style-name="P173">Subset of the model's standard options that should be applied to the current experiment definition.</text:p> + <text:p text:style-name="P164">EXP_ID (<text:span text:style-name="T9">optional</text:span>)</text:p> + <text:p text:style-name="P180">Name of the experiment to be created. If not set, this will be set to the base name of the user's .config file, e.g. 'joe1234' in the introductory example. All job description files will carry this as the first part of their name. For almost all model setups, this will be used in the definitions of SCRIPT_DIR, WORK_DIR, and DATA_DIR.</text:p> + <text:p text:style-name="P153">EXP_DESCRIPTION <text:span text:style-name="T145">(</text:span><text:span text:style-name="T16">optional</text:span><text:span text:style-name="T145">)</text:span></text:p> + <text:p text:style-name="P171">Extensive description of the experiment to be created. If not set, this will contain all text in the header comment of the user's .config file. The leading comment characters and leading and trailing empty lines are removed. Note that <text:span text:style-name="T188">both header comment and </text:span>EXP_DESCRIPTION may reference any other global variable defined in the experiment configuration <text:span text:style-name="T188">(see section </text:span><text:span text:style-name="T188"><text:bookmark-ref text:reference-format="chapter" text:ref-name="__RefHeading__2540_1114405012">2.3.4</text:bookmark-ref></text:span><text:span text:style-name="T188">)</text:span>.</text:p> + <text:p text:style-name="P171">The contents of this variable is written to a 'README' file in SCRIPT_DIR.</text:p> <text:p text:style-name="P38"><text:span text:style-name="T38">Another set of variables is automatically added to the job specific experiment configuration. </text:span><text:span text:style-name="T53">These are considered read-only</text:span><text:span text:style-name="T38"> </text:span><text:span text:style-name="T46">and may not be altered</text:span><text:span text:style-name="T38">.</text:span></text:p> - <text:p text:style-name="P151"><text:soft-page-break/>JOB</text:p> - <text:p text:style-name="P167">A dictionary of system settings pertaining to the current job.</text:p> - <text:p text:style-name="P156">VARIABLES_</text:p> - <text:p text:style-name="P173">List of all names that were recognized as native variables of the current job. May be used to maintain a variable definition list in the generated script.</text:p> - <text:p text:style-name="P164"><text:span text:style-name="T50">m</text:span><text:span text:style-name="T38">kexp_input</text:span></text:p> - <text:p text:style-name="P176">Descriptive string for script headers. It is set to 'Generated by … mkexp …' where the ellipses are filled with version information.</text:p> - <text:p text:style-name="P159">VERSIONS_</text:p> - <text:p text:style-name="P175">List of all 'VERSION_' strings that were found in the different .config files.</text:p> - <text:p text:style-name="P63">These special sections are usually pre-defined in the model setup, but are commonly altered by the user.</text:p> + <text:p text:style-name="P152"><text:soft-page-break/>JOB</text:p> + <text:p text:style-name="P168">A dictionary of system settings pertaining to the current job.</text:p> + <text:p text:style-name="P157">VARIABLES_</text:p> + <text:p text:style-name="P174">List of all names that were recognized as native variables of the current job. May be used to maintain a variable definition list in the generated script.</text:p> + <text:p text:style-name="P165"><text:span text:style-name="T50">m</text:span><text:span text:style-name="T38">kexp_input</text:span></text:p> + <text:p text:style-name="P177">Descriptive string for script headers. It is set to 'Generated by … mkexp …' where the ellipses are filled with version information.</text:p> + <text:p text:style-name="P160">VERSIONS_</text:p> + <text:p text:style-name="P176">List of all 'VERSION_' strings that were found in the different .config files.</text:p> + <text:p text:style-name="P64">These special sections are usually pre-defined in the model setup, but are commonly altered by the user.</text:p> <text:p text:style-name="List_20_Heading">[jobs]</text:p> - <text:p text:style-name="P180">This section defines the job description set needed for an experiment. It also provides job specific settings. Details are given in section <text:bookmark-ref text:reference-format="chapter" text:ref-name="__RefHeading__1508_1711940803">2.8</text:bookmark-ref>, '<text:bookmark-ref text:reference-format="text" text:ref-name="__RefHeading__1508_1711940803">Generating jobs</text:bookmark-ref>'.</text:p> + <text:p text:style-name="P181">This section defines the job description set needed for an experiment. It also provides job specific settings. Details are given in section <text:bookmark-ref text:reference-format="chapter" text:ref-name="__RefHeading__1508_1711940803">2.8</text:bookmark-ref>, '<text:bookmark-ref text:reference-format="text" text:ref-name="__RefHeading__1508_1711940803">Generating jobs</text:bookmark-ref>'.</text:p> <text:p text:style-name="List_20_Heading">[namelists]</text:p> - <text:p text:style-name="P180">Information that is contained in model configuration or namelist files is set in this section. For further details see section <text:bookmark-ref text:reference-format="chapter" text:ref-name="__RefHeading__1883_1672291846">2.9</text:bookmark-ref>, <text:span text:style-name="T177">'</text:span><text:span text:style-name="T177"><text:bookmark-ref text:reference-format="text" text:ref-name="__RefHeading__1883_1672291846">Defining namelists and other configuration files</text:bookmark-ref></text:span><text:span text:style-name="T177">'.</text:span></text:p> - <text:p text:style-name="P165">[files]</text:p> - <text:p text:style-name="P192">All input files that are needed for an experiment and <text:span text:style-name="T199">information</text:span> to provide them go into this section. <text:span text:style-name="T199">See section </text:span><text:span text:style-name="T199"><text:bookmark-ref text:reference-format="chapter" text:ref-name="__RefHeading__2831_1132221942">2.10</text:bookmark-ref></text:span><text:span text:style-name="T199">, '</text:span><text:span text:style-name="T199"><text:bookmark-ref text:reference-format="text" text:ref-name="__RefHeading__2831_1132221942">Defining input files for an experiment</text:bookmark-ref></text:span><text:span text:style-name="T199">'.</text:span></text:p> + <text:p text:style-name="P181">Information that is contained in model configuration or namelist files is set in this section. For further details see section <text:bookmark-ref text:reference-format="chapter" text:ref-name="__RefHeading__1883_1672291846">2.9</text:bookmark-ref>, <text:span text:style-name="T177">'</text:span><text:span text:style-name="T177"><text:bookmark-ref text:reference-format="text" text:ref-name="__RefHeading__1883_1672291846">Defining namelists and other configuration files</text:bookmark-ref></text:span><text:span text:style-name="T177">'.</text:span></text:p> + <text:p text:style-name="P166">[files]</text:p> + <text:p text:style-name="P193">All input files that are needed for an experiment and <text:span text:style-name="T199">information</text:span> to provide them go into this section. <text:span text:style-name="T199">See section </text:span><text:span text:style-name="T199"><text:bookmark-ref text:reference-format="chapter" text:ref-name="__RefHeading__2831_1132221942">2.10</text:bookmark-ref></text:span><text:span text:style-name="T199">, '</text:span><text:span text:style-name="T199"><text:bookmark-ref text:reference-format="text" text:ref-name="__RefHeading__2831_1132221942">Defining input files for an experiment</text:bookmark-ref></text:span><text:span text:style-name="T199">'.</text:span></text:p> <text:h text:style-name="Heading_20_3" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2540_1114405012"/>Variable interpolation<text:bookmark-end text:name="__RefHeading__2540_1114405012"/></text:h> - <text:p text:style-name="P70">The value of a .config variable may reference the value of another variable by prefixing its name with <text:span text:style-name="T178">a </text:span>dollar sign. <text:span text:style-name="T178">This is called </text:span><text:span text:style-name="T26">interpolation</text:span><text:span text:style-name="T64"> of variables. E.g.</text:span></text:p> - <text:p text:style-name="P141"># joe1234.config</text:p> - <text:p text:style-name="P147">WORK_ROOT = /scratch/joe</text:p> + <text:p text:style-name="P71">The value of a .config variable may reference the value of another variable by prefixing its name with <text:span text:style-name="T178">a </text:span>dollar sign. <text:span text:style-name="T178">This is called </text:span><text:span text:style-name="T26">interpolation</text:span><text:span text:style-name="T64"> of variables. E.g.</text:span></text:p> + <text:p text:style-name="P142"># joe1234.config</text:p> + <text:p text:style-name="P148">WORK_ROOT = /scratch/joe</text:p> <text:p text:style-name="Preformatted_20_Text">WORK_DIR = $WORK_ROOT/experiments/<text:span text:style-name="T179">$EXP_ID</text:span></text:p> - <text:p text:style-name="P72">will set 'WORK_DIR' to '/scratch/joe/experiments/joe1234'.</text:p> - <text:p text:style-name="P71">Interpolation only works for variables of the current section or its ancestor sections.</text:p> + <text:p text:style-name="P73">will set 'WORK_DIR' to '/scratch/joe/experiments/joe1234'.</text:p> + <text:p text:style-name="P72">Interpolation only works for variables of the current section or its ancestor sections.</text:p> <text:p text:style-name="Preformatted_20_Text">[ensembles] </text:p> <text:p text:style-name="Preformatted_20_Text"><text:s text:c="2"/>size = 42 </text:p> <text:p text:style-name="Preformatted_20_Text">[jobs] </text:p> <text:p text:style-name="Preformatted_20_Text"><text:s text:c="2"/>ensemble_size = $size </text:p> - <text:p text:style-name="P71">will fail with</text:p> + <text:p text:style-name="P72">will fail with</text:p> <text:p text:style-name="Preformatted_20_Text">Oops: missing option "size" in interpolation while reading key 'ensemble_size'</text:p> - <text:p text:style-name="P71">because 'size' is not defined in 'jobs', nor on the global level.</text:p> - <text:p text:style-name="P73"><text:soft-page-break/>As in shell scripts, the variable name must be enclosed in braces if the interpolation continues with a word character (alphanumerical or underscore), or if the variable name contains a space (which is perfectly legal):</text:p> + <text:p text:style-name="P72">because 'size' is not defined in 'jobs', nor on the global level.</text:p> + <text:p text:style-name="P74"><text:soft-page-break/>As in shell scripts, the variable name must be enclosed in braces if the interpolation continues with a word character (alphanumerical or underscore), or if the variable name contains a space (which is perfectly legal):</text:p> <text:p text:style-name="Preformatted_20_Text">WORK_DIR = /tmp/$EXP_ID_test <text:s text:c="3"/><text:span text:style-name="T179"># ERROR: missing option "EXP_ID_test"</text:span></text:p> - <text:p text:style-name="P142"><text:span text:style-name="T179">WORK_DIR = /tmp/</text:span><text:span text:style-name="T119">${EXP_ID}_test</text:span><text:span text:style-name="T179"> <text:s/># OK</text:span></text:p> - <text:p text:style-name="P141"/> - <text:p text:style-name="P141">SPACY <text:span text:style-name="T180">VAR</text:span> = Whew! </text:p> - <text:p text:style-name="P141"><text:span text:style-name="T180">MESSAGE</text:span> = He said: $SPACY VAR <text:s text:c="2"/><text:span text:style-name="T180"># ERROR: missing option </text:span>"<text:span text:style-name="T180">SPACY</text:span>"</text:p> - <text:p text:style-name="P143">MESSAGE = <text:span text:style-name="T179">He said: </text:span><text:span text:style-name="T119">$</text:span><text:span text:style-name="T112">{</text:span><text:span text:style-name="T119">SPACY VAR</text:span><text:span text:style-name="T112">}</text:span> # OK</text:p> - <text:p text:style-name="P73">The user<text:span text:style-name="T189">'</text:span>s <text:span text:style-name="T9">environment variables</text:span> may be referenced as global variables in a .config file. Thus a user may write something like</text:p> + <text:p text:style-name="P143"><text:span text:style-name="T179">WORK_DIR = /tmp/</text:span><text:span text:style-name="T119">${EXP_ID}_test</text:span><text:span text:style-name="T179"> <text:s/># OK</text:span></text:p> + <text:p text:style-name="P142"/> + <text:p text:style-name="P142">SPACY <text:span text:style-name="T180">VAR</text:span> = Whew! </text:p> + <text:p text:style-name="P142"><text:span text:style-name="T180">MESSAGE</text:span> = He said: $SPACY VAR <text:s text:c="2"/><text:span text:style-name="T180"># ERROR: missing option </text:span>"<text:span text:style-name="T180">SPACY</text:span>"</text:p> + <text:p text:style-name="P144">MESSAGE = <text:span text:style-name="T179">He said: </text:span><text:span text:style-name="T119">$</text:span><text:span text:style-name="T112">{</text:span><text:span text:style-name="T119">SPACY VAR</text:span><text:span text:style-name="T112">}</text:span> # OK</text:p> + <text:p text:style-name="P74">The user<text:span text:style-name="T189">'</text:span>s <text:span text:style-name="T9">environment variables</text:span> may be referenced as global variables in a .config file. Thus a user may write something like</text:p> <text:p text:style-name="Preformatted_20_Text">SCRIPT_ROOT = $HOME/experiments/$EXP_ID</text:p> - <text:p text:style-name="P73">setting 'SCRIPT_ROOT' to a subdirectory of the user's home directory.</text:p> + <text:p text:style-name="P74">setting 'SCRIPT_ROOT' to a subdirectory of the user's home directory.</text:p> <text:h text:style-name="Heading_20_3" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2542_1114405012"/>Evaluation of interpolation<text:bookmark-end text:name="__RefHeading__2542_1114405012"/></text:h> - <text:p text:style-name="P74">While interpolation looks a lot like in shell scripts, there is a major difference: interpolation is – as in Makefiles – only evaluated when the final value is written or passed on. This has the advantage that the model setup may define settings based on variables that are only defined later in the user setup.</text:p> - <text:p text:style-name="P144"># model setup</text:p> - <text:p text:style-name="P202"><text:span text:style-name="T181">MODEL</text:span>_<text:span text:style-name="T181">DIR</text:span> = $HOME/<text:span text:style-name="T181">$MODEL_SUBDIR</text:span></text:p> - <text:p text:style-name="P145"># user setup</text:p> - <text:p text:style-name="P145">MODEL_SUBDIR = echam</text:p> - <text:p text:style-name="P75">Here, as the model setup is read before the user setup, 'MODEL_SUBDIR' is not set when 'MODEL_ROOT' is defined. <text:span text:style-name="T182">This works, because i</text:span>nterpolation of 'MODEL_ROOT's value is postponed until all levels of setup have been read.</text:p> - <text:p text:style-name="P75">The disadvantage is that there may be no incremental adding of values to a given variable because this would cause circular dependencies. Imagine</text:p> + <text:p text:style-name="P75">While interpolation looks a lot like in shell scripts, there is a major difference: interpolation is – as in Makefiles – only evaluated when the final value is written or passed on. This has the advantage that the model setup may define settings based on variables that are only defined later in the user setup.</text:p> + <text:p text:style-name="P145"># model setup</text:p> + <text:p text:style-name="P203"><text:span text:style-name="T181">MODEL</text:span>_<text:span text:style-name="T181">DIR</text:span> = $HOME/<text:span text:style-name="T181">$MODEL_SUBDIR</text:span></text:p> + <text:p text:style-name="P146"># user setup</text:p> + <text:p text:style-name="P146">MODEL_SUBDIR = echam</text:p> + <text:p text:style-name="P76">Here, as the model setup is read before the user setup, 'MODEL_SUBDIR' is not set when 'MODEL_ROOT' is defined. <text:span text:style-name="T182">This works, because i</text:span>nterpolation of 'MODEL_ROOT's value is postponed until all levels of setup have been read.</text:p> + <text:p text:style-name="P76">The disadvantage is that there may be no incremental adding of values to a given variable because this would cause circular dependencies. Imagine</text:p> <text:p text:style-name="Preformatted_20_Text">SUBMODELS = $SUBMODELS jsbach</text:p> - <text:p text:style-name="P76">When <text:span text:style-name="T9">mkexp</text:span> tries to evaluate 'SUBMODELS', it sees that it needs to do an interpolation; but to do this interpolation, 'SUBMODELS' would need to have been evaluated already! So this results in</text:p> + <text:p text:style-name="P77">When <text:span text:style-name="T9">mkexp</text:span> tries to evaluate 'SUBMODELS', it sees that it needs to do an interpolation; but to do this interpolation, 'SUBMODELS' would need to have been evaluated already! So this results in</text:p> <text:p text:style-name="Preformatted_20_Text"><text:soft-page-break/>Oops: interpolation loop detected in value "SUBMODELS" while reading key 'SUBMODELS'</text:p> <text:h text:style-name="Heading_20_3" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2544_1114405012"/>Special expressions<text:bookmark-end text:name="__RefHeading__2544_1114405012"/></text:h> - <text:p text:style-name="P77">For some applications, simply including some other variable is not enough. You might want to compute a time limit from a given constant divided by the number of computing nodes, or convert a time stamp to a list of values. For these purposes, <text:span text:style-name="T9">mkexp</text:span><text:span text:style-name="T38"> includes some special expressions, that are evaluated when interpolation occurs.</text:span></text:p> - <text:p text:style-name="P196"><text:span text:style-name="T9">variable</text:span><text:span text:style-name="T38"> = </text:span><text:span text:style-name="T108">eval(</text:span><text:span text:style-name="T9">expression</text:span><text:span text:style-name="T108">)</text:span><text:span text:style-name="T38"><text:line-break/></text:span><text:span text:style-name="T9">variable</text:span><text:span text:style-name="T38"> = </text:span><text:span text:style-name="T108">evals(</text:span><text:span text:style-name="T9">expression</text:span><text:span text:style-name="T108">)</text:span></text:p> - <text:p text:style-name="P188"><text:span text:style-name="T68">I</text:span><text:span text:style-name="T38">nterpret </text:span><text:span text:style-name="T9">expression</text:span><text:span text:style-name="T38"> as a valid Python expression and assign the result to </text:span><text:span text:style-name="T9">variable</text:span><text:span text:style-name="T38"> as a string. When the result is a list, </text:span><text:span text:style-name="T9">eval</text:span><text:span text:style-name="T38"> will return a list of strings, while </text:span><text:span text:style-name="T9">evals</text:span><text:span text:style-name="T38"> will return a single string, where elements are joined by a comma and a space.</text:span></text:p> - <text:p text:style-name="P188"><text:span text:style-name="T38">Note that interpolation does not work for list values; if you need this, consider to set the original variable </text:span><text:span text:style-name="T65">to a string containing a Python list expression</text:span><text:span text:style-name="T38">, and </text:span><text:span text:style-name="T65">then </text:span><text:span text:style-name="T38">use </text:span><text:span text:style-name="T9">eval</text:span><text:span text:style-name="T38"> </text:span><text:span text:style-name="T78">a</text:span><text:span text:style-name="T38">round the interpolation expression:</text:span></text:p> - <text:p text:style-name="P203">DATE_<text:span text:style-name="T190">STRING</text:span> = '[2010, 10, 20]' # need quotes here!</text:p> - <text:p text:style-name="P203">DATE_<text:span text:style-name="T190">LIST</text:span> = eval($DATE_<text:span text:style-name="T191">STRING</text:span>) # becomes a 3 element list</text:p> - <text:p text:style-name="P197">variable<text:span text:style-name="T38"> = </text:span><text:span text:style-name="T108">read(</text:span>file_name<text:span text:style-name="T108">)</text:span></text:p> - <text:p text:style-name="P183"><text:span text:style-name="T38">Read the contents of the file </text:span>file_name<text:span text:style-name="T38"> and assign its contents to </text:span>variable<text:span text:style-name="T38"> as a string.</text:span></text:p> - <text:p text:style-name="P198"><text:span text:style-name="T27">variable</text:span><text:span text:style-name="T66"> = </text:span><text:span text:style-name="T110">split_date(</text:span><text:span text:style-name="T27">timestamp</text:span><text:span text:style-name="T110">)</text:span></text:p> - <text:p text:style-name="P189"><text:span text:style-name="T183">T</text:span>ake <text:span text:style-name="T9">timestamp</text:span><text:span text:style-name="T38"> and split it into a list of numerical date/time elements. </text:span><text:span text:style-name="T9">tim</text:span><text:span text:style-name="T28">e</text:span><text:span text:style-name="T9">stamp</text:span><text:span text:style-name="T38"> </text:span><text:span text:style-name="T67">must have </text:span><text:span text:style-name="T38">an ISO-like format (date elements separated by '-'; 'T' or space as date/time separator; time elements separated by ':</text:span><text:span text:style-name="T67">'; </text:span><text:span text:style-name="T38">trailing time elements </text:span><text:span text:style-name="T68">and their separators </text:span><text:span text:style-name="T67">are optional</text:span><text:span text:style-name="T38">; time zone indicator is not supported). </text:span><text:span text:style-name="T80">Unlike ISO, </text:span><text:span text:style-name="T31">split_date</text:span><text:span text:style-name="T80"> also</text:span><text:span text:style-name="T38"> </text:span><text:span text:style-name="T80">allows the date to be in the form YYYYMMDD</text:span><text:span text:style-name="T38">. </text:span><text:span text:style-name="T68">Unset fields default to zero.</text:span></text:p> - <text:p text:style-name="P199"><text:span text:style-name="T9">variable</text:span><text:span text:style-name="T38"> = </text:span><text:span text:style-name="T108">sec2time(</text:span><text:span text:style-name="T9">second_of_day</text:span><text:span text:style-name="T108">)</text:span></text:p> - <text:p text:style-name="P177">Take integer <text:span text:style-name="T9">second_of_day</text:span> (from 0 to 86399) and return the corresponding time stamp as string of the form HH:MM:SS.</text:p> - <text:p text:style-name="P200"><text:span text:style-name="T9">variable</text:span> = '<text:span text:style-name="T112">add_years</text:span>(<text:span text:style-name="T9">datestamp</text:span>, <text:span text:style-name="T9">offset</text:span>)'</text:p> - <text:p text:style-name="P190">Take integer <text:span text:style-name="T9">offset</text:span><text:span text:style-name="T38"> (may be negative), add it to the year portion of </text:span><text:span text:style-name="T9">datestamp</text:span><text:span text:style-name="T38"> and return the resulting date string.</text:span></text:p> - <text:p text:style-name="P201"><text:span text:style-name="T9">variable</text:span> = '<text:span text:style-name="T112">add_</text:span><text:span text:style-name="T120">days</text:span>(<text:span text:style-name="T9">datestamp</text:span>, <text:span text:style-name="T9">offset</text:span>)'</text:p> - <text:p text:style-name="P191"><text:span text:style-name="T38">Take integer </text:span><text:span text:style-name="T9">offset</text:span><text:span text:style-name="T38"> (may be negative), add it to the </text:span><text:span text:style-name="T81">day</text:span><text:span text:style-name="T38"> portion of </text:span><text:span text:style-name="T9">datestamp</text:span><text:span text:style-name="T38"> and return the resulting date string. </text:span><text:span text:style-name="T81">Year and month portions will be set as </text:span><text:soft-page-break/><text:span text:style-name="T81">appropriate, assuming a Proleptic Gregorian calendar with year 0.</text:span></text:p> + <text:p text:style-name="P78">For some applications, simply including some other variable is not enough. You might want to compute a time limit from a given constant divided by the number of computing nodes, or convert a time stamp to a list of values. For these purposes, <text:span text:style-name="T9">mkexp</text:span><text:span text:style-name="T38"> includes some special expressions, that are evaluated when interpolation occurs.</text:span></text:p> + <text:p text:style-name="P197"><text:span text:style-name="T9">variable</text:span><text:span text:style-name="T38"> = </text:span><text:span text:style-name="T108">eval(</text:span><text:span text:style-name="T9">expression</text:span><text:span text:style-name="T108">)</text:span><text:span text:style-name="T38"><text:line-break/></text:span><text:span text:style-name="T9">variable</text:span><text:span text:style-name="T38"> = </text:span><text:span text:style-name="T108">evals(</text:span><text:span text:style-name="T9">expression</text:span><text:span text:style-name="T108">)</text:span></text:p> + <text:p text:style-name="P189"><text:span text:style-name="T68">I</text:span><text:span text:style-name="T38">nterpret </text:span><text:span text:style-name="T9">expression</text:span><text:span text:style-name="T38"> as a valid Python expression and assign the result to </text:span><text:span text:style-name="T9">variable</text:span><text:span text:style-name="T38"> as a string. When the result is a list, </text:span><text:span text:style-name="T9">eval</text:span><text:span text:style-name="T38"> will return a list of strings, while </text:span><text:span text:style-name="T9">evals</text:span><text:span text:style-name="T38"> will return a single string, where elements are joined by a comma and a space.</text:span></text:p> + <text:p text:style-name="P189"><text:span text:style-name="T38">Note that interpolation does not work for list values; if you need this, consider to set the original variable </text:span><text:span text:style-name="T65">to a string containing a Python list expression</text:span><text:span text:style-name="T38">, and </text:span><text:span text:style-name="T65">then </text:span><text:span text:style-name="T38">use </text:span><text:span text:style-name="T9">eval</text:span><text:span text:style-name="T38"> </text:span><text:span text:style-name="T78">a</text:span><text:span text:style-name="T38">round the interpolation expression:</text:span></text:p> + <text:p text:style-name="P204">DATE_<text:span text:style-name="T190">STRING</text:span> = '[2010, 10, 20]' # need quotes here!</text:p> + <text:p text:style-name="P204">DATE_<text:span text:style-name="T190">LIST</text:span> = eval($DATE_<text:span text:style-name="T191">STRING</text:span>) # becomes a 3 element list</text:p> + <text:p text:style-name="P198">variable<text:span text:style-name="T38"> = </text:span><text:span text:style-name="T108">read(</text:span>file_name<text:span text:style-name="T108">)</text:span></text:p> + <text:p text:style-name="P184"><text:span text:style-name="T38">Read the contents of the file </text:span>file_name<text:span text:style-name="T38"> and assign its contents to </text:span>variable<text:span text:style-name="T38"> as a string.</text:span></text:p> + <text:p text:style-name="P199"><text:span text:style-name="T27">variable</text:span><text:span text:style-name="T66"> = </text:span><text:span text:style-name="T110">split_date(</text:span><text:span text:style-name="T27">timestamp</text:span><text:span text:style-name="T110">)</text:span></text:p> + <text:p text:style-name="P190"><text:span text:style-name="T183">T</text:span>ake <text:span text:style-name="T9">timestamp</text:span><text:span text:style-name="T38"> and split it into a list of numerical date/time elements. </text:span><text:span text:style-name="T9">tim</text:span><text:span text:style-name="T28">e</text:span><text:span text:style-name="T9">stamp</text:span><text:span text:style-name="T38"> </text:span><text:span text:style-name="T67">must have </text:span><text:span text:style-name="T38">an ISO-like format (date elements separated by '-'; 'T' or space as date/time separator; time elements separated by ':</text:span><text:span text:style-name="T67">'; </text:span><text:span text:style-name="T38">trailing time elements </text:span><text:span text:style-name="T68">and their separators </text:span><text:span text:style-name="T67">are optional</text:span><text:span text:style-name="T38">; time zone indicator is not supported). </text:span><text:span text:style-name="T80">Unlike ISO, </text:span><text:span text:style-name="T31">split_date</text:span><text:span text:style-name="T80"> also</text:span><text:span text:style-name="T38"> </text:span><text:span text:style-name="T80">allows the date to be in the form YYYYMMDD</text:span><text:span text:style-name="T38">. </text:span><text:span text:style-name="T68">Unset fields default to zero.</text:span></text:p> + <text:p text:style-name="P200"><text:span text:style-name="T9">variable</text:span><text:span text:style-name="T38"> = </text:span><text:span text:style-name="T108">sec2time(</text:span><text:span text:style-name="T9">second_of_day</text:span><text:span text:style-name="T108">)</text:span></text:p> + <text:p text:style-name="P178">Take integer <text:span text:style-name="T9">second_of_day</text:span> (from 0 to 86399) and return the corresponding time stamp as string of the form HH:MM:SS.</text:p> + <text:p text:style-name="P201"><text:span text:style-name="T9">variable</text:span> = '<text:span text:style-name="T112">add_years</text:span>(<text:span text:style-name="T9">datestamp</text:span>, <text:span text:style-name="T9">offset</text:span>)'</text:p> + <text:p text:style-name="P191">Take integer <text:span text:style-name="T9">offset</text:span><text:span text:style-name="T38"> (may be negative), add it to the year portion of </text:span><text:span text:style-name="T9">datestamp</text:span><text:span text:style-name="T38"> and return the resulting date string.</text:span></text:p> + <text:p text:style-name="P202"><text:span text:style-name="T9">variable</text:span> = '<text:span text:style-name="T112">add_</text:span><text:span text:style-name="T120">days</text:span>(<text:span text:style-name="T9">datestamp</text:span>, <text:span text:style-name="T9">offset</text:span>)'</text:p> + <text:p text:style-name="P192"><text:span text:style-name="T38">Take integer </text:span><text:span text:style-name="T9">offset</text:span><text:span text:style-name="T38"> (may be negative), add it to the </text:span><text:span text:style-name="T81">day</text:span><text:span text:style-name="T38"> portion of </text:span><text:span text:style-name="T9">datestamp</text:span><text:span text:style-name="T38"> and return the resulting date string. </text:span><text:span text:style-name="T81">Year and month portions will be set as </text:span><text:soft-page-break/><text:span text:style-name="T81">appropriate, assuming a Proleptic Gregorian calendar with year 0.</text:span></text:p> <text:h text:style-name="Heading_20_2" text:outline-level="2"><text:bookmark-start text:name="__RefHeading__2546_1114405012"/>Format of .tmpl files<text:bookmark-end text:name="__RefHeading__2546_1114405012"/></text:h> <text:p text:style-name="P24">The .tmpl files are also text files mostly written in the syntax of the job description that <text:span text:style-name="T9">mkexp</text:span> is meant to create. Currently this is usually the ksh or bash shell script syntax, but may also be any other interpreted language, like Perl or Python, or even a configuration or namelist file. The main difference are placeholders and structured comments that are embedded in the program text. These are evaluated or expanded using the information that comes with the .config files, to create the final text files, defining the jobs to be run on the target system.</text:p> <text:p text:style-name="P24">The expansion of .tmpl files into the job description uses the <text:span text:style-name="T9">Jinja</text:span> Python library. It provides a default set of facilities that can be used to expand any textual template. The proposed default syntax was slightly customized to fit the needs of <text:span text:style-name="T9">mkexp</text:span>.</text:p> @@ -2202,8 +2205,8 @@ <text:p text:style-name="Preformatted_20_Text">#! /bin/ksh</text:p> <text:p text:style-name="Preformatted_20_Text"><text:span text:style-name="T132">#</text:span> This script was <text:span text:style-name="T132">crea</text:span>ted by %{NAME}</text:p> <text:p text:style-name="P33">Here, the placehol<text:span text:style-name="T173">d</text:span>er requests the 'NAME' variable which was set to 'Joe User' in the example .config file <text:span text:style-name="T173">of section </text:span><text:span text:style-name="T173"><text:bookmark-ref text:reference-format="chapter" text:ref-name="__RefHeading__1669_1438093122">2.3.1</text:bookmark-ref></text:span>. This value is now looked up in the <text:span text:style-name="T173">configuration</text:span> and used to textually replace the placeholder expression, yield<text:span text:style-name="T173">ing</text:span> the final text:</text:p> - <text:p text:style-name="P110">#! /bin/ksh</text:p> - <text:p text:style-name="P109"><text:span text:style-name="T133"># </text:span>This script was <text:span text:style-name="T133">crea</text:span>ted by <text:span text:style-name="T131">Joe User</text:span></text:p> + <text:p text:style-name="P111">#! /bin/ksh</text:p> + <text:p text:style-name="P110"><text:span text:style-name="T133"># </text:span>This script was <text:span text:style-name="T133">crea</text:span>ted by <text:span text:style-name="T131">Joe User</text:span></text:p> <text:h text:style-name="Heading_20_3" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2550_1114405012"/><text:span text:style-name="T135">V</text:span>ariables in sections<text:bookmark-end text:name="__RefHeading__2550_1114405012"/></text:h> <text:p text:style-name="P26">To request a variable within a section, simply prepend the section name to the variable name, using '.' as separator, as in</text:p> <text:p text:style-name="Preformatted_20_Text"># %{section1.description}</text:p> @@ -2220,8 +2223,8 @@ <text:p text:style-name="Preformatted_20_Text">LITERAL_BOOLEANS=%{false} <text:s/># Always lower-case!</text:p> <text:p text:style-name="Preformatted_20_Text">ARITHMETIC=%{2 + 2 * 2 – 2 / 2} <text:s/># is 5</text:p> <text:p text:style-name="Preformatted_20_Text">STRING_TOGETHER=%{NAME ~ ', employee number ' ~ 42} <text:s/># Converts <text:span text:style-name="T135">42</text:span> to string</text:p> - <text:p text:style-name="P112">LIST_ELEMENT=%{PATH[0]} <text:s/># indices start with 0</text:p> - <text:p text:style-name="P112">LIST_SUBLIST=%{PATH[1:3]}</text:p> + <text:p text:style-name="P113">LIST_ELEMENT=%{PATH[0]} <text:s/># indices start with 0</text:p> + <text:p text:style-name="P113">LIST_SUBLIST=%{PATH[1:3]}</text:p> <text:p text:style-name="Preformatted_20_Text">FILTERED_STRING=%{NAME | <text:span text:style-name="T135">lower()} <text:s/># is 'joe user'</text:span></text:p> <text:p text:style-name="Text_20_body">The last example allows for <text:span text:style-name="T144">a </text:span>number of predefined filters instead of 'lower'. These are described in the <text:span text:style-name="T9">Jinja</text:span> documentation (List of Builtin Filters). <text:span text:style-name="T9">mkexp</text:span> defines two additional filters, 'split' for cutting a string into a list of substrings, and 'filter' for removing (empty) ele<text:span text:style-name="T200">s</text:span>ments from a list:</text:p> <text:p text:style-name="Preformatted_20_Text">SPLIT_EXAMPLE=%{'A B C' | split(' ')} <text:s/># is ['A', 'B', 'C']</text:p> @@ -2230,14 +2233,14 @@ <text:p text:style-name="P28">Text in a template may be used repeatedly, like a classical 'for' loop. Loops are defined by structured comments <text:span text:style-name="T192">i.e. lines </text:span>beginning with '#%'. <text:span text:style-name="T192">They </text:span>start with '#% for … <text:span text:style-name="T138">in …:</text:span>' and end in '#% endfor':</text:p> <text:p text:style-name="Preformatted_20_Text"><text:span text:style-name="T112">#% for</text:span> countdown <text:span text:style-name="T112">in</text:span> [3, 2, 1, '<text:span text:style-name="T192">liftoff</text:span>']<text:span text:style-name="T112">:</text:span></text:p> <text:p text:style-name="Preformatted_20_Text">echo %{countdown}</text:p> - <text:p text:style-name="P99">#% endfor</text:p> + <text:p text:style-name="P100">#% endfor</text:p> <text:p text:style-name="P28">will <text:span text:style-name="T136">be expanded by </text:span><text:span text:style-name="T30">mkexp</text:span><text:span text:style-name="T136"> to </text:span>yield</text:p> <text:p text:style-name="Preformatted_20_Text">echo 3</text:p> <text:p text:style-name="Preformatted_20_Text">echo 2</text:p> <text:p text:style-name="Preformatted_20_Text">echo 1</text:p> <text:p text:style-name="Preformatted_20_Text">echo <text:span text:style-name="T192">liftoff</text:span></text:p> <text:p text:style-name="P31"><text:span text:style-name="T138">You may of course use expressions in the loop definition. </text:span>For classical, index based loops, there is a 'range' function as in Python, <text:span text:style-name="T138">and the size of a list is queried with the 'length' filter</text:span>.</text:p> - <text:p text:style-name="P111"><text:soft-page-break/>#% for index in <text:span text:style-name="T112">range(1, </text:span><text:span text:style-name="T115">PATH|length()</text:span><text:span text:style-name="T112">)</text:span> <text:s/><text:span text:style-name="T138"># PATH was defined in </text:span><text:span text:style-name="T138"><text:bookmark-ref text:reference-format="chapter" text:ref-name="__RefHeading__1669_1438093122">2.3.1</text:bookmark-ref></text:span></text:p> + <text:p text:style-name="P112"><text:soft-page-break/>#% for index in <text:span text:style-name="T112">range(1, </text:span><text:span text:style-name="T115">PATH|length()</text:span><text:span text:style-name="T112">)</text:span> <text:s/><text:span text:style-name="T138"># PATH was defined in </text:span><text:span text:style-name="T138"><text:bookmark-ref text:reference-format="chapter" text:ref-name="__RefHeading__1669_1438093122">2.3.1</text:bookmark-ref></text:span></text:p> <text:p text:style-name="Preformatted_20_Text"><text:span text:style-name="T138">echo</text:span> %<text:span text:style-name="T139">{index}: </text:span>%{<text:span text:style-name="T138">PATH[</text:span>index<text:span text:style-name="T138">]</text:span>} <text:s/></text:p> <text:p text:style-name="Preformatted_20_Text">#% endfor</text:p> <text:p text:style-name="Text_20_body">Note that <text:span text:style-name="T137">indexing of lists starts at 0,</text:span> <text:span text:style-name="T137">i.e. the first element of the PATH list is skipped. Besides, </text:span>the stop index <text:span text:style-name="T139">is</text:span> not included, i.e. <text:span text:style-name="T138">as PATH has a length of 3, </text:span>the last looping has index <text:span text:style-name="T137">2</text:span>:</text:p> @@ -2247,17 +2250,17 @@ <text:p text:style-name="P29">A template may contain alternative parts <text:span text:style-name="T139">that are selected depending on the .config data</text:span>, <text:span text:style-name="T139">similar to an 'if' statement. This is useful for e.g. skipping certain parts of the script template that are not applicable to runs of a given resolution but required for others. They are also implemented as structured comments, starting with '#% if …:' and ending in '#% endif', with optional '#% elif …:' and '#% else:' parts.</text:span></text:p> <text:p text:style-name="P30"><text:span text:style-name="T139">For testing, you may use expressions with comparisons (==, !=, >, >=, <, <=), querying a certain list element (… in …), and logical operators (and, or, not). Sub-expressions may be parenthesized to change the order of evaluation. Besides, </text:span><text:span text:style-name="T14">Jinja</text:span><text:span text:style-name="T139"> provides a number of named tests that use the '… is …' Syntax.</text:span></text:p> <text:p text:style-name="Preformatted_20_Text"><text:span text:style-name="T112">#% if </text:span><text:span text:style-name="T141">PATH|length()</text:span><text:span text:style-name="T140"> </text:span><text:span text:style-name="T116">is divisibleby 3:</text:span></text:p> - <text:p text:style-name="P127">diff3 %{PATH[:3]|join(' ')}</text:p> - <text:p text:style-name="P102">#% elif <text:span text:style-name="T141">PATH|length()</text:span> is even:</text:p> - <text:p text:style-name="P112">diff %{PATH[:2]|join(' ')}</text:p> - <text:p text:style-name="P99">#% else:</text:p> + <text:p text:style-name="P128">diff3 %{PATH[:3]|join(' ')}</text:p> + <text:p text:style-name="P103">#% elif <text:span text:style-name="T141">PATH|length()</text:span> is even:</text:p> + <text:p text:style-name="P113">diff %{PATH[:2]|join(' ')}</text:p> + <text:p text:style-name="P100">#% else:</text:p> <text:p text:style-name="Preformatted_20_Text">echo <text:span text:style-name="T142">cannot handle PATH</text:span></text:p> - <text:p text:style-name="P99">#% endif</text:p> + <text:p text:style-name="P100">#% endif</text:p> <text:p text:style-name="P37">If PATH is defined as in the examples above, this will result in</text:p> <text:p text:style-name="Preformatted_20_Text">diff3 /bin /usr/bin /usr/local/bin</text:p> <text:p text:style-name="P30"><text:span text:style-name="T139"><text:s/>For a list of available tests, see the </text:span><text:span text:style-name="T15">Jinja</text:span><text:span text:style-name="T143"> documentation.</text:span></text:p> <text:h text:style-name="Heading_20_3" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2558_1114405012"/>Comments<text:bookmark-end text:name="__RefHeading__2558_1114405012"/></text:h> - <text:p text:style-name="P57"><text:span text:style-name="T9">Jinj</text:span>a also allows template comments that are removed when the template is expanded. This is implemented as another kind of structured comment starting with <text:span text:style-name="T193">'#%</text:span>#':</text:p> + <text:p text:style-name="P58"><text:span text:style-name="T9">Jinj</text:span>a also allows template comments that are removed when the template is expanded. This is implemented as another kind of structured comment starting with <text:span text:style-name="T193">'#%</text:span>#':</text:p> <text:p text:style-name="Preformatted_20_Text"><text:soft-page-break/># This comment will make it to the expanded script</text:p> <text:p text:style-name="Preformatted_20_Text">#%# This one will not make it <text:span text:style-name="T152">and is for template documentation only</text:span></text:p> <text:h text:style-name="Heading_20_2" text:outline-level="2"><text:bookmark-start text:name="__RefHeading__2560_1114405012"/>Standard experiment<text:span text:style-name="T36">s</text:span><text:bookmark-end text:name="__RefHeading__2560_1114405012"/></text:h> @@ -2274,186 +2277,186 @@ <text:p text:style-name="P13">For this, a standard environment, like a standard experiment, consists of a .config file and a corresponding template. The <text:span text:style-name="T9">environmentname</text:span>.config file contains settings like directory paths or a description of machine capacities for job control</text:p> <text:p text:style-name="P13">The actual job control headers needed to run a certain job step are saved as <text:span text:style-name="T9">environmentname</text:span>.tmpl. This template will be filled using configuration information from both experiment, options, and environment. <text:span text:style-name="T124">The resulting job header</text:span> is usually included at the beginning of the experiment's job script templates.</text:p> <text:p text:style-name="P9">An experiment configuration <text:span text:style-name="T163">may</text:span> <text:span text:style-name="T163">set</text:span> the special variable E<text:span text:style-name="T163">NVIRONMENT</text:span> to the name of <text:span text:style-name="T163">the host </text:span>e<text:span text:style-name="T163">nvironment</text:span> to use. <text:span text:style-name="T163">If it is not set, the 'DEFAULT' environment settings will be used.</text:span></text:p> - <text:h text:style-name="P230" text:outline-level="2"><text:bookmark-start text:name="__RefHeading__1508_1711940803"/>Generating <text:span text:style-name="T160">j</text:span>obs<text:bookmark-end text:name="__RefHeading__1508_1711940803"/></text:h> + <text:h text:style-name="P231" text:outline-level="2"><text:bookmark-start text:name="__RefHeading__1508_1711940803"/>Generating <text:span text:style-name="T160">j</text:span>obs<text:bookmark-end text:name="__RefHeading__1508_1711940803"/></text:h> <text:p text:style-name="P42">When<text:span text:style-name="T148"> </text:span>running <text:span text:style-name="T9">mkexp</text:span><text:span text:style-name="T86">, </text:span><text:span text:style-name="T87">the special configuration section [jobs]</text:span><text:span text:style-name="T34"> </text:span><text:span text:style-name="T87">is read and evaluated. Each of its subsections, e.g. [[run]], defines a job definition file or job script to be created.</text:span></text:p> - <text:p text:style-name="P128"># <text:span text:style-name="T149">model setup: experiment type 'control'</text:span></text:p> - <text:p text:style-name="P115">[jobs]</text:p> - <text:p text:style-name="P115"><text:s text:c="2"/>[[pre]]</text:p> - <text:p text:style-name="P115"><text:s text:c="2"/>[[run]]</text:p> - <text:p text:style-name="P115"><text:s text:c="2"/>[[post]]</text:p> + <text:p text:style-name="P129"># <text:span text:style-name="T149">model setup: experiment type 'control'</text:span></text:p> + <text:p text:style-name="P116">[jobs]</text:p> + <text:p text:style-name="P116"><text:s text:c="2"/>[[pre]]</text:p> + <text:p text:style-name="P116"><text:s text:c="2"/>[[run]]</text:p> + <text:p text:style-name="P116"><text:s text:c="2"/>[[post]]</text:p> <text:p text:style-name="P43"><text:span text:style-name="T87">For each of </text:span><text:span text:style-name="T89">the jobs defined in the model setup above</text:span><text:span text:style-name="T87">, there </text:span><text:span text:style-name="T89">must</text:span><text:span text:style-name="T87"> be a template file in the model setup, </text:span><text:span text:style-name="T89">e.g. for [[run]] </text:span><text:span text:style-name="T87">either as 'control.run.tmpl' or 'DEFAULT.run.tmpl'. </text:span><text:span text:style-name="T88">The corresponding</text:span><text:span text:style-name="T87"> file is expanded to its final form using the </text:span><text:span text:style-name="T88">full</text:span><text:span text:style-name="T87"> experiment configuration, </text:span><text:span text:style-name="T88">as described before</text:span><text:span text:style-name="T87">. Besides, the </text:span><text:span text:style-name="T88">job specific </text:span><text:span text:style-name="T87">variable</text:span><text:span text:style-name="T88">s</text:span><text:span text:style-name="T87"> </text:span><text:span text:style-name="T88">are set and passed according to their respective template</text:span><text:span text:style-name="T87">.</text:span></text:p> <text:p text:style-name="P43"><text:span text:style-name="T90">The resulting job scripts are </text:span><text:span text:style-name="T89">written to the directory defined by SCRIPT_DIR, </text:span><text:span text:style-name="T90">e.g. </text:span><text:span text:style-name="T89">as 'joe1234.run', </text:span><text:span text:style-name="T90">and marked as being executable. </text:span><text:span text:style-name="T96">Besides, as mentioned before, the contents of the special variable EXP_DESCRIPTION is written to a README file in that same directory. </text:span><text:span text:style-name="T99">Also, an update script is created that allows to re-generate all output files with identical environment and command line settings by simply running './update' from the script directory.</text:span></text:p> <text:h text:style-name="Heading_20_3" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2566_1114405012"/><text:soft-page-break/><text:span text:style-name="T90">C</text:span><text:span text:style-name="T86">hanging the model job list</text:span><text:bookmark-end text:name="__RefHeading__2566_1114405012"/></text:h> <text:p text:style-name="P44"><text:span text:style-name="T87">U</text:span><text:span text:style-name="T86">sually, the job list is defined in the model setup. The user may chose to add </text:span><text:span text:style-name="T92">jobs </text:span><text:span text:style-name="T86">and delete jobs from this list as appropriate. While adding a job is straightforward, removing a job uses a special section variable '.remove' (note the leading period). It </text:span><text:span text:style-name="T92">is</text:span><text:span text:style-name="T86"> defined in the [jobs] section and contains a list of the jobs to be suppressed.</text:span></text:p> - <text:p text:style-name="P115"># joe1234.config</text:p> - <text:p text:style-name="P115">EXP_TYPE = control</text:p> - <text:p text:style-name="P115">[jobs]</text:p> - <text:p text:style-name="P115"><text:s text:c="2"/>.remove = post, pre</text:p> - <text:p text:style-name="P115"><text:s text:c="2"/>[[my_pre]]</text:p> - <text:p text:style-name="P115"><text:s text:c="2"/>[[my_post]]</text:p> + <text:p text:style-name="P116"># joe1234.config</text:p> + <text:p text:style-name="P116">EXP_TYPE = control</text:p> + <text:p text:style-name="P116">[jobs]</text:p> + <text:p text:style-name="P116"><text:s text:c="2"/>.remove = post, pre</text:p> + <text:p text:style-name="P116"><text:s text:c="2"/>[[my_pre]]</text:p> + <text:p text:style-name="P116"><text:s text:c="2"/>[[my_post]]</text:p> <text:p text:style-name="P49">This way, the 'pre' and 'post' jobs will not be created in favor of two new jobs, 'my_pre' and 'my_post'. In this case, the user setup must provide two templates 'joe1234.my_pre.tmpl' and 'joe1234.my_post.tmpl', together with the .config file.</text:p> <text:p text:style-name="P45">Alternatively, you may want to introduce a new 'my_p<text:span text:style-name="T150">ost</text:span>' job, that is basically the same as the old 'p<text:span text:style-name="T150">ost</text:span>' job but uses a slightly different configuration. This may be done using the special section variable '.extends'.</text:p> - <text:p text:style-name="P115">[jobs]</text:p> - <text:p text:style-name="P129"><text:span text:style-name="T86"><text:s text:c="2"/>[[my_p</text:span><text:span text:style-name="T91">ost</text:span><text:span text:style-name="T86">]]</text:span></text:p> - <text:p text:style-name="P129"><text:span text:style-name="T86"><text:s text:c="4"/>.</text:span><text:span text:style-name="T90">extends</text:span><text:span text:style-name="T86"> = p</text:span><text:span text:style-name="T91">ost</text:span></text:p> - <text:p text:style-name="P116"><text:s text:c="4"/>command = $HOME/bin/my_special_command</text:p> + <text:p text:style-name="P116">[jobs]</text:p> + <text:p text:style-name="P130"><text:span text:style-name="T86"><text:s text:c="2"/>[[my_p</text:span><text:span text:style-name="T91">ost</text:span><text:span text:style-name="T86">]]</text:span></text:p> + <text:p text:style-name="P130"><text:span text:style-name="T86"><text:s text:c="4"/>.</text:span><text:span text:style-name="T90">extends</text:span><text:span text:style-name="T86"> = p</text:span><text:span text:style-name="T91">ost</text:span></text:p> + <text:p text:style-name="P117"><text:s text:c="4"/>command = $HOME/bin/my_special_command</text:p> <text:p text:style-name="P50">With this configuration, an additional 'joe1234.my_post' is created based on the existing 'post' template. A dedicated 'joe1234.my_post.tmpl' file is not needed here. The 'command' setting is <text:span text:style-name="T151">made available </text:span>to <text:span text:style-name="T151">the template via the</text:span> 'JOB' dictionary.</text:p> - <text:h text:style-name="P215" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2568_1114405012"/>Pre-defined job variables<text:bookmark-end text:name="__RefHeading__2568_1114405012"/></text:h> + <text:h text:style-name="P216" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2568_1114405012"/>Pre-defined job variables<text:bookmark-end text:name="__RefHeading__2568_1114405012"/></text:h> <text:p text:style-name="P55">While <text:span text:style-name="T9">mkexp</text:span> in general does not impose any naming convention on the variable names used in the job sections and leaves the details to the respective model setup, there are a few exceptions.</text:p> - <text:p text:style-name="P160">tasks</text:p> - <text:p text:style-name="P178">The total number of parallel (MPI) tasks that will be started when running the model. If a job section does not define 'tasks', its value defaults to 'nodes' times 'tasks_per_node'. Some models require that 'tasks' may explicitly be set to some artificial value to trigger the testing mode.</text:p> - <text:p text:style-name="P161">nodes</text:p> - <text:p text:style-name="P178">Number of computing nodes required on the computing system. Needed if 'tasks' is not set.</text:p> - <text:p text:style-name="P161">tasks_per_node</text:p> - <text:p text:style-name="P178">Number of parallel (MPI) tasks on a single node. Needed if 'tasks' is not set.</text:p> - <text:h text:style-name="P214" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2570_1114405012"/><text:soft-page-break/>Overriding namelist settings in derived jobs<text:bookmark-end text:name="__RefHeading__2570_1114405012"/></text:h> + <text:p text:style-name="P161">tasks</text:p> + <text:p text:style-name="P179">The total number of parallel (MPI) tasks that will be started when running the model. If a job section does not define 'tasks', its value defaults to 'nodes' times 'tasks_per_node'. Some models require that 'tasks' may explicitly be set to some artificial value to trigger the testing mode.</text:p> + <text:p text:style-name="P162">nodes</text:p> + <text:p text:style-name="P179">Number of computing nodes required on the computing system. Needed if 'tasks' is not set.</text:p> + <text:p text:style-name="P162">tasks_per_node</text:p> + <text:p text:style-name="P179">Number of parallel (MPI) tasks on a single node. Needed if 'tasks' is not set.</text:p> + <text:h text:style-name="P215" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2570_1114405012"/><text:soft-page-break/>Overriding namelist settings in derived jobs<text:bookmark-end text:name="__RefHeading__2570_1114405012"/></text:h> <text:p text:style-name="P50">There is special provision to change namelist files settings for a specific job. Consider this setting from the introductory example.</text:p> - <text:p text:style-name="P130">[namelists]</text:p> - <text:p text:style-name="P91"><text:s text:c="2"/>[[namelist.jsbach]]</text:p> - <text:p text:style-name="P91"><text:s text:c="4"/>[[[jsbach_ctl]]]</text:p> - <text:p text:style-name="P91"><text:s text:c="6"/>use_dynveg = false</text:p> + <text:p text:style-name="P131">[namelists]</text:p> + <text:p text:style-name="P92"><text:s text:c="2"/>[[namelist.jsbach]]</text:p> + <text:p text:style-name="P92"><text:s text:c="4"/>[[[jsbach_ctl]]]</text:p> + <text:p text:style-name="P92"><text:s text:c="6"/>use_dynveg = false</text:p> <text:p text:style-name="P46"><text:span text:style-name="T86">If – for some reason – your experiments needs 'use_dynveg' set to 'true' for the first year only, you may create an additional 'run_first' job, </text:span><text:span text:style-name="T92">with a job specific namelists subsection that – apart from the addition</text:span><text:span text:style-name="T94">al</text:span><text:span text:style-name="T92"> brackets – has the same structure as</text:span><text:span text:style-name="T86"> </text:span><text:span text:style-name="T92">the global namelists section.</text:span></text:p> - <text:p text:style-name="P130">[jobs]</text:p> - <text:p text:style-name="P130"><text:s text:c="2"/>[[run_first]]</text:p> - <text:p text:style-name="P130"><text:s text:c="4"/>.extends = run</text:p> - <text:p text:style-name="P130"><text:s text:c="4"/><text:span text:style-name="T112">[[[namelists]]</text:span><text:span text:style-name="T121">]</text:span></text:p> - <text:p text:style-name="P91"><text:s text:c="6"/><text:span text:style-name="T150">[[</text:span>[[namelist.jsbach]]<text:span text:style-name="T150">]]</text:span></text:p> - <text:p text:style-name="P91"><text:s text:c="8"/><text:span text:style-name="T150">[[</text:span>[[[jsbach_ctl]]]<text:span text:style-name="T150">]]</text:span></text:p> - <text:p text:style-name="P91"><text:span text:style-name="T86"><text:s text:c="10"/>use_dynveg = </text:span><text:span text:style-name="T91">true</text:span></text:p> + <text:p text:style-name="P131">[jobs]</text:p> + <text:p text:style-name="P131"><text:s text:c="2"/>[[run_first]]</text:p> + <text:p text:style-name="P131"><text:s text:c="4"/>.extends = run</text:p> + <text:p text:style-name="P131"><text:s text:c="4"/><text:span text:style-name="T112">[[[namelists]]</text:span><text:span text:style-name="T121">]</text:span></text:p> + <text:p text:style-name="P92"><text:s text:c="6"/><text:span text:style-name="T150">[[</text:span>[[namelist.jsbach]]<text:span text:style-name="T150">]]</text:span></text:p> + <text:p text:style-name="P92"><text:s text:c="8"/><text:span text:style-name="T150">[[</text:span>[[[jsbach_ctl]]]<text:span text:style-name="T150">]]</text:span></text:p> + <text:p text:style-name="P92"><text:span text:style-name="T86"><text:s text:c="10"/>use_dynveg = </text:span><text:span text:style-name="T91">true</text:span></text:p> <text:p text:style-name="P46"><text:span text:style-name="T92">This</text:span><text:span text:style-name="T86"> will result in a 'joe1234.run_first' file that is identical to 'joe1234.run' except for the 'use_dynveg' setting.</text:span></text:p> - <text:h text:style-name="P214" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2572_1114405012"/>Native script variables<text:bookmark-end text:name="__RefHeading__2572_1114405012"/></text:h> + <text:h text:style-name="P215" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2572_1114405012"/>Native script variables<text:bookmark-end text:name="__RefHeading__2572_1114405012"/></text:h> <text:p text:style-name="P48"><text:span text:style-name="T86">While the definition of .config variables may use</text:span><text:span text:style-name="T93"> variable references like</text:span><text:span text:style-name="T86"> $NAME or ${NAME} to include the </text:span><text:span text:style-name="T93">verbatim </text:span><text:span text:style-name="T86">value of other .config variables, this may not always be what you want. If you want to create a job </text:span><text:span text:style-name="T93">script</text:span><text:span text:style-name="T86"> that is supposed to be 'user-serviceable' for certain applications, the users will not appreciate having to change the same value several times in the same script. </text:span><text:span text:style-name="T93">Instead they will want to have a single, native script variable that is used throughout the job script, and that may be re-defined on a single line.</text:span></text:p> <text:p text:style-name="P52">To allow this, <text:span text:style-name="T9">mkexp</text:span> locates all expressions like $${NAME} in the configuration values, and re-formats them to the syntax of the current job script:</text:p> - <text:p text:style-name="P115"># joe1234.config</text:p> - <text:p text:style-name="P115">NAME = Joe User</text:p> + <text:p text:style-name="P116"># joe1234.config</text:p> + <text:p text:style-name="P116">NAME = Joe User</text:p> <text:p text:style-name="Preformatted_20_Text_20_Interrupt">MESSAGE = This experiment was generated by $${NAME}</text:p> - <text:p text:style-name="P121">#%# joe1234.job.tmpl</text:p> - <text:p text:style-name="P115">#! /bin/sh</text:p> - <text:p text:style-name="P119">NAME='%{NAME}'</text:p> - <text:p text:style-name="P115">echo %{MESSAGE}</text:p> + <text:p text:style-name="P122">#%# joe1234.job.tmpl</text:p> + <text:p text:style-name="P116">#! /bin/sh</text:p> + <text:p text:style-name="P120">NAME='%{NAME}'</text:p> + <text:p text:style-name="P116">echo %{MESSAGE}</text:p> <text:p text:style-name="P52">By default, <text:span text:style-name="T152">native variables are formatted as </text:span>shell script, namely ${NAME}:</text:p> - <text:p text:style-name="P118"><text:soft-page-break/>#! /bin/sh</text:p> - <text:p text:style-name="P121">NAME='Joe User'</text:p> - <text:p text:style-name="P117">echo This experiment was generated by ${NAME}</text:p> + <text:p text:style-name="P119"><text:soft-page-break/>#! /bin/sh</text:p> + <text:p text:style-name="P122">NAME='Joe User'</text:p> + <text:p text:style-name="P118">echo This experiment was generated by ${NAME}</text:p> <text:p text:style-name="P53"><text:span text:style-name="T159">T</text:span>o support variable reference<text:span text:style-name="T158">s for other script languages, a</text:span> job specific variable '.var_format' may be defined. <text:span text:style-name="T158">It defines an output format string where any occurrence of '%s' will be replaced by the respective variable name. </text:span>For a Python based script, <text:span text:style-name="T152">this may look like:</text:span></text:p> - <text:p text:style-name="P120"># joe1234.config</text:p> - <text:p text:style-name="P120">NAME = Joe User</text:p> - <text:p text:style-name="P120">MESSAGE = This experiment was generated by $${NAME}</text:p> - <text:p text:style-name="P132">[jobs]</text:p> + <text:p text:style-name="P121"># joe1234.config</text:p> + <text:p text:style-name="P121">NAME = Joe User</text:p> + <text:p text:style-name="P121">MESSAGE = This experiment was generated by $${NAME}</text:p> + <text:p text:style-name="P133">[jobs]</text:p> <text:p text:style-name="Preformatted_20_Text"><text:s text:c="2"/>[[job]]</text:p> <text:p text:style-name="Preformatted_20_Text_20_Interrupt"><text:s text:c="4"/>.var_format = <text:span text:style-name="T155">"</text:span><text:span text:style-name="T153">' + str(</text:span>%s<text:span text:style-name="T157">)</text:span> <text:span text:style-name="T153">+ '</text:span><text:span text:style-name="T155">"</text:span></text:p> - <text:p text:style-name="P121">#%# joe1234.job.tmpl</text:p> - <text:p text:style-name="P133">#! /usr/bin/env python </text:p> + <text:p text:style-name="P122">#%# joe1234.job.tmpl</text:p> + <text:p text:style-name="P134">#! /usr/bin/env python </text:p> <text:p text:style-name="Preformatted_20_Text">NAME = '%{NAME}' </text:p> <text:p text:style-name="Preformatted_20_Text">print<text:span text:style-name="T194">(</text:span>'%{MESSAGE}'<text:span text:style-name="T194">)</text:span> </text:p> - <text:p text:style-name="P58">This setup will expand to</text:p> - <text:p text:style-name="P133">#! /usr/bin/env python </text:p> - <text:p text:style-name="P133">NAME = '<text:span text:style-name="T157">Joe User</text:span>' </text:p> - <text:p text:style-name="P134">print<text:span text:style-name="T194">(</text:span>'<text:span text:style-name="T86">This experiment was generated by </text:span><text:span text:style-name="T95">' + str(</text:span><text:span text:style-name="T86">NAME) </text:span><text:span text:style-name="T95">+ '</text:span>'<text:span text:style-name="T194">)</text:span></text:p> - <text:h text:style-name="P221" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2574_1114405012"/>Initializing native script variables<text:bookmark-end text:name="__RefHeading__2574_1114405012"/></text:h> - <text:p text:style-name="P60">In the previous section, the native variables were initialized by an addition<text:span text:style-name="T161">al script line. While this is sufficient for a small number of variables, it may be difficult to maintain these initialization lines for a more complex setup with changing requirements.</text:span></text:p> - <text:p text:style-name="P60"><text:span text:style-name="T162">To allow a self-maintaining variable list based on the current configuration, </text:span><text:span text:style-name="T20">mkexp</text:span><text:span text:style-name="T162"> maintains the special variable VARIABLES_. When generating output for</text:span></text:p> - <text:p text:style-name="P122">NAME = Joe User</text:p> - <text:p text:style-name="P123">EMAIL = joe@domain.tld</text:p> - <text:p text:style-name="P135"><text:span text:style-name="T86">MESSAGE = This experiment was generated by $${NAME} </text:span><text:span text:style-name="T97"><$${EMAIL}></text:span></text:p> - <text:p text:style-name="P61"><text:span text:style-name="T33">mkexp</text:span><text:span text:style-name="T86"> will parse all values, recognize 'NAME' and 'EMAIL' as native variables, and </text:span><text:span text:style-name="T98">will </text:span><text:span text:style-name="T86">put their names in the VARIABLES_ list. Now we may use the 'for' template directive to generate an additional line for each member of VARIABLES_. To query the value for a given variable name, </text:span><text:span text:style-name="T33">mkexp</text:span><text:span text:style-name="T86"> provides the 'context' function, such that the template</text:span></text:p> - <text:p text:style-name="P122"><text:soft-page-break/>#! /bin/sh</text:p> - <text:p text:style-name="P123">#%# for <text:span text:style-name="T112">variable</text:span> in <text:span text:style-name="T112">VARIABLES_</text:span>:</text:p> - <text:p text:style-name="P123">%{<text:span text:style-name="T112">variable</text:span>}='%{<text:span text:style-name="T112">context(variable)</text:span>}'</text:p> - <text:p text:style-name="P123">#%# endfor</text:p> - <text:p text:style-name="P123">echo <text:span text:style-name="T154">"</text:span>%{MESSAGE}<text:span text:style-name="T154">"</text:span></text:p> + <text:p text:style-name="P59">This setup will expand to</text:p> + <text:p text:style-name="P134">#! /usr/bin/env python </text:p> + <text:p text:style-name="P134">NAME = '<text:span text:style-name="T157">Joe User</text:span>' </text:p> + <text:p text:style-name="P135">print<text:span text:style-name="T194">(</text:span>'<text:span text:style-name="T86">This experiment was generated by </text:span><text:span text:style-name="T95">' + str(</text:span><text:span text:style-name="T86">NAME) </text:span><text:span text:style-name="T95">+ '</text:span>'<text:span text:style-name="T194">)</text:span></text:p> + <text:h text:style-name="P222" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2574_1114405012"/>Initializing native script variables<text:bookmark-end text:name="__RefHeading__2574_1114405012"/></text:h> + <text:p text:style-name="P61">In the previous section, the native variables were initialized by an addition<text:span text:style-name="T161">al script line. While this is sufficient for a small number of variables, it may be difficult to maintain these initialization lines for a more complex setup with changing requirements.</text:span></text:p> + <text:p text:style-name="P61"><text:span text:style-name="T162">To allow a self-maintaining variable list based on the current configuration, </text:span><text:span text:style-name="T20">mkexp</text:span><text:span text:style-name="T162"> maintains the special variable VARIABLES_. When generating output for</text:span></text:p> + <text:p text:style-name="P123">NAME = Joe User</text:p> + <text:p text:style-name="P124">EMAIL = joe@domain.tld</text:p> + <text:p text:style-name="P136"><text:span text:style-name="T86">MESSAGE = This experiment was generated by $${NAME} </text:span><text:span text:style-name="T97"><$${EMAIL}></text:span></text:p> + <text:p text:style-name="P62"><text:span text:style-name="T33">mkexp</text:span><text:span text:style-name="T86"> will parse all values, recognize 'NAME' and 'EMAIL' as native variables, and </text:span><text:span text:style-name="T98">will </text:span><text:span text:style-name="T86">put their names in the VARIABLES_ list. Now we may use the 'for' template directive to generate an additional line for each member of VARIABLES_. To query the value for a given variable name, </text:span><text:span text:style-name="T33">mkexp</text:span><text:span text:style-name="T86"> provides the 'context' function, such that the template</text:span></text:p> + <text:p text:style-name="P123"><text:soft-page-break/>#! /bin/sh</text:p> + <text:p text:style-name="P124">#%# for <text:span text:style-name="T112">variable</text:span> in <text:span text:style-name="T112">VARIABLES_</text:span>:</text:p> + <text:p text:style-name="P124">%{<text:span text:style-name="T112">variable</text:span>}='%{<text:span text:style-name="T112">context(variable)</text:span>}'</text:p> + <text:p text:style-name="P124">#%# endfor</text:p> + <text:p text:style-name="P124">echo <text:span text:style-name="T154">"</text:span>%{MESSAGE}<text:span text:style-name="T154">"</text:span></text:p> <text:p text:style-name="P54">eventually yields</text:p> - <text:p text:style-name="P122">#! /bin/sh</text:p> - <text:p text:style-name="P135"><text:span text:style-name="T103">EMAIL</text:span><text:span text:style-name="T107">='</text:span><text:span text:style-name="T103">joe@domain.tld</text:span><text:span text:style-name="T107">'</text:span></text:p> - <text:p text:style-name="P135"><text:span text:style-name="T102">NAME</text:span><text:span text:style-name="T106">=</text:span><text:span text:style-name="T107">'</text:span><text:span text:style-name="T102">Joe User</text:span><text:span text:style-name="T107">'</text:span></text:p> - <text:p text:style-name="P135"><text:span text:style-name="T97">echo </text:span><text:span text:style-name="T156">"This experiment was generated by ${NAME} <${EMAIL}>"</text:span></text:p> - <text:p text:style-name="P62">Note that the order of variable names is not necessarily the order in which they were defined in the .config file.</text:p> + <text:p text:style-name="P123">#! /bin/sh</text:p> + <text:p text:style-name="P136"><text:span text:style-name="T103">EMAIL</text:span><text:span text:style-name="T107">='</text:span><text:span text:style-name="T103">joe@domain.tld</text:span><text:span text:style-name="T107">'</text:span></text:p> + <text:p text:style-name="P136"><text:span text:style-name="T102">NAME</text:span><text:span text:style-name="T106">=</text:span><text:span text:style-name="T107">'</text:span><text:span text:style-name="T102">Joe User</text:span><text:span text:style-name="T107">'</text:span></text:p> + <text:p text:style-name="P136"><text:span text:style-name="T97">echo </text:span><text:span text:style-name="T156">"This experiment was generated by ${NAME} <${EMAIL}>"</text:span></text:p> + <text:p text:style-name="P63">Note that the order of variable names is not necessarily the order in which they were defined in the .config file.</text:p> <text:h text:style-name="Heading_20_3" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2576_1114405012"/>Re-generation of <text:span text:style-name="T160">s</text:span>cripts and <text:span text:style-name="T160">b</text:span>ackup<text:bookmark-end text:name="__RefHeading__2576_1114405012"/></text:h> - <text:p text:style-name="P59">Even the simplest user setup may contain an error. In this case, it is considered good practice to fix this error in the user setup, and to rerun <text:span text:style-name="T9">mkexp.</text:span><text:span text:style-name="T38"> If you want to be really good, you might even start a new experiment from the previous one's restart data.</text:span></text:p> - <text:p text:style-name="P84"><text:span text:style-name="T48">A</text:span><text:span text:style-name="T38">s a convenient short-cut, </text:span><text:span text:style-name="T9">mkexp</text:span><text:span text:style-name="T38"> provides the script 'update' in the script directory. It may be called instead of going back to the 'run' and re-running </text:span><text:span text:style-name="T9">mkexp </text:span><text:span text:style-name="T38">directly. The update script records all command line settings and environment settings that were used for running </text:span><text:span text:style-name="T9">mkexp</text:span><text:span text:style-name="T38"> so that './update' reg</text:span><text:span text:style-name="T83">e</text:span><text:span text:style-name="T38">nerates the scripts exactly as they were created, without having to re-construct the exact settings. Like mkexp, update allows to set or change variables on the command line, e.g.</text:span></text:p> - <text:p text:style-name="P114">./update FINAL_DATE=2015-12-31</text:p> - <text:p text:style-name="P84">may be used to regenerate scripts with a new final date. Note that these settings are also recorded, i.e. running just './update' the next time will again set FINAL_DATE.</text:p> - <text:p text:style-name="P59"><text:span text:style-name="T38">Of course, there is also the possibility to </text:span><text:span text:style-name="T48">change</text:span><text:span text:style-name="T38"> the </text:span><text:span text:style-name="T19">generated</text:span><text:span text:style-name="T47"> </text:span><text:span text:style-name="T38">job scripts directly, and then go on. This is fine as long as the required setting is using a native variable or is otherwise easily editable. On the other hand, </text:span><text:span text:style-name="T49">facing</text:span><text:span text:style-name="T38"> the next </text:span><text:span text:style-name="T49">change,</text:span><text:span text:style-name="T38"> this might not be the case, so eventually you </text:span><text:span text:style-name="T47">may</text:span><text:span text:style-name="T38"> need to re-generate the whole thing. What now about those manual changes to the job scripts?</text:span></text:p> - <text:p text:style-name="P59"><text:span text:style-name="T38">Whenever </text:span><text:span text:style-name="T9">mkexp</text:span><text:span text:style-name="T38"> sees existing job scripts while trying to generate the new description, it will automatically create backup files. They are placed in a subdirectory of SCRIPT_DIR, named 'backup'. </text:span><text:span text:style-name="T47">Also, the scripts for each regeneration are bundled in their own subdirectory, named after the current date-time stamp. </text:span><text:span text:style-name="T48">This way you may easily compare old and new scripts to evaluate and possibly transfer any manual changes </text:span><text:span text:style-name="T83">after a necessary regeneration</text:span><text:span text:style-name="T48">.</text:span></text:p> - <text:h text:style-name="P231" text:outline-level="2"><text:bookmark-start text:name="__RefHeading__1883_1672291846"/><text:soft-page-break/>Defining namelists and other configuration files<text:bookmark-end text:name="__RefHeading__1883_1672291846"/></text:h> - <text:p text:style-name="P67"><text:span text:style-name="T60">Most models need at least one Fortran namelist file or another form of configuration file to run. </text:span><text:span text:style-name="T61">The special section [namelists] </text:span><text:span text:style-name="T60">is designed to </text:span><text:span text:style-name="T61">contain all information that goes into </text:span><text:span text:style-name="T60">these</text:span><text:span text:style-name="T61"> files. Each </text:span><text:span text:style-name="T58">immediate </text:span><text:span text:style-name="T61">subsection defines settings for a single file that will </text:span><text:span text:style-name="T60">by default be </text:span><text:span text:style-name="T61">formatted as a Fortran namelist. </text:span><text:span text:style-name="T60">For </text:span><text:span text:style-name="T61">example,</text:span></text:p> - <text:p text:style-name="P136">[namelists]</text:p> - <text:p text:style-name="P146"/> - <text:p text:style-name="P136"><text:s text:c="2"/>[[<text:span text:style-name="T175">namelist.echam</text:span>]] </text:p> - <text:p text:style-name="P136"><text:s text:c="4"/>[[[runctl]]] </text:p> - <text:p text:style-name="P136"><text:s text:c="6"/>lamip = true</text:p> - <text:p text:style-name="P136"><text:s text:c="6"/><text:span text:style-name="T184">nproma = 48</text:span></text:p> - <text:p text:style-name="P138"><text:s text:c="6"/>earth_angular_velocity = 7.3e-5</text:p> - <text:p text:style-name="P138"><text:s text:c="6"/>out_expname = joe1234</text:p> - <text:p text:style-name="P138"><text:s text:c="6"/><text:span text:style-name="T176">dt_stop = 2009, 1, 1, 0, 0, 0</text:span></text:p> - <text:p text:style-name="P64"><text:span text:style-name="T38">defines </text:span><text:span text:style-name="T59">a single </text:span><text:span text:style-name="T38">namelist file, </text:span><text:span text:style-name="T62">'namelist.echam'</text:span><text:span text:style-name="T38">, </text:span><text:span text:style-name="T60">containing a single namelist group with four variables of different types. Note </text:span><text:span text:style-name="T79">that you do not </text:span><text:span text:style-name="T60">need to use quotes for strings nor periods for logical values.</text:span></text:p> - <text:h text:style-name="P217" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2578_1114405012"/>Formatting the namelist information<text:bookmark-end text:name="__RefHeading__2578_1114405012"/></text:h> - <text:p text:style-name="P69"><text:span text:style-name="T58">The </text:span><text:span text:style-name="T59">names of the </text:span><text:span text:style-name="T58">subsections of each namelist file entry, i.e. the second level subsections under the immediate subsections of [namelists], are taken as namelist group </text:span><text:span text:style-name="T59">name</text:span><text:span text:style-name="T58">s, and their variables are formatted as fields of this namelist </text:span><text:span text:style-name="T59">group</text:span><text:span text:style-name="T58">. </text:span><text:span text:style-name="T59">In the example above, there is a single namelist group 'runctl', which will be converted to the Fortran namelist convention. </text:span><text:span text:style-name="T175">The values of the group's fields are checked to determine whether they are numerical, logical, or string values. Logical and string values will then be formatted using periods or quotes, respectively.</text:span></text:p> - <text:p text:style-name="P69"><text:span text:style-name="T195">In the example above, the first four fields are single values of logical, integer, floating point, and string type.</text:span><text:span text:style-name="T62"> The fifth is a list of integer values, that will be passed as such to the namelist file:</text:span></text:p> - <text:p text:style-name="P106"><text:soft-page-break/>&runctl</text:p> - <text:p text:style-name="P140"><text:s text:c="4"/>lamip = <text:span text:style-name="T112">.true.</text:span></text:p> - <text:p text:style-name="P140"><text:s text:c="4"/><text:span text:style-name="T175">nproma = </text:span><text:span text:style-name="T117">48</text:span></text:p> - <text:p text:style-name="P139"><text:s text:c="4"/>earth_angular_velocity = <text:span text:style-name="T112">7.3e-5</text:span></text:p> - <text:p text:style-name="P139"><text:s text:c="4"/>out_expname = <text:span text:style-name="T118">'</text:span><text:span text:style-name="T112">joe1234</text:span><text:span text:style-name="T118">'</text:span></text:p> - <text:p text:style-name="P139"><text:span text:style-name="T62"><text:s text:c="4"/>dt_stop = </text:span><text:span text:style-name="T109">2009, 1, 1, 0, 0, 0</text:span></text:p> - <text:p text:style-name="P124">/</text:p> - <text:h text:style-name="P222" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2580_1114405012"/><text:span text:style-name="T60">S</text:span><text:span text:style-name="T38">uppressing namelist groups or variables</text:span><text:bookmark-end text:name="__RefHeading__2580_1114405012"/></text:h> + <text:p text:style-name="P60">Even the simplest user setup may contain an error. In this case, it is considered good practice to fix this error in the user setup, and to rerun <text:span text:style-name="T9">mkexp.</text:span><text:span text:style-name="T38"> If you want to be really good, you might even start a new experiment from the previous one's restart data.</text:span></text:p> + <text:p text:style-name="P85"><text:span text:style-name="T48">A</text:span><text:span text:style-name="T38">s a convenient short-cut, </text:span><text:span text:style-name="T9">mkexp</text:span><text:span text:style-name="T38"> provides the script 'update' in the script directory. It may be called instead of going back to the 'run' and re-running </text:span><text:span text:style-name="T9">mkexp </text:span><text:span text:style-name="T38">directly. The update script records all command line settings and environment settings that were used for running </text:span><text:span text:style-name="T9">mkexp</text:span><text:span text:style-name="T38"> so that './update' reg</text:span><text:span text:style-name="T83">e</text:span><text:span text:style-name="T38">nerates the scripts exactly as they were created, without having to re-construct the exact settings. Like mkexp, update allows to set or change variables on the command line, e.g.</text:span></text:p> + <text:p text:style-name="P115">./update FINAL_DATE=2015-12-31</text:p> + <text:p text:style-name="P85">may be used to regenerate scripts with a new final date. Note that these settings are also recorded, i.e. running just './update' the next time will again set FINAL_DATE.</text:p> + <text:p text:style-name="P60"><text:span text:style-name="T38">Of course, there is also the possibility to </text:span><text:span text:style-name="T48">change</text:span><text:span text:style-name="T38"> the </text:span><text:span text:style-name="T19">generated</text:span><text:span text:style-name="T47"> </text:span><text:span text:style-name="T38">job scripts directly, and then go on. This is fine as long as the required setting is using a native variable or is otherwise easily editable. On the other hand, </text:span><text:span text:style-name="T49">facing</text:span><text:span text:style-name="T38"> the next </text:span><text:span text:style-name="T49">change,</text:span><text:span text:style-name="T38"> this might not be the case, so eventually you </text:span><text:span text:style-name="T47">may</text:span><text:span text:style-name="T38"> need to re-generate the whole thing. What now about those manual changes to the job scripts?</text:span></text:p> + <text:p text:style-name="P60"><text:span text:style-name="T38">Whenever </text:span><text:span text:style-name="T9">mkexp</text:span><text:span text:style-name="T38"> sees existing job scripts while trying to generate the new description, it will automatically create backup files. They are placed in a subdirectory of SCRIPT_DIR, named 'backup'. </text:span><text:span text:style-name="T47">Also, the scripts for each regeneration are bundled in their own subdirectory, named after the current date-time stamp. </text:span><text:span text:style-name="T48">This way you may easily compare old and new scripts to evaluate and possibly transfer any manual changes </text:span><text:span text:style-name="T83">after a necessary regeneration</text:span><text:span text:style-name="T48">.</text:span></text:p> + <text:h text:style-name="P232" text:outline-level="2"><text:bookmark-start text:name="__RefHeading__1883_1672291846"/><text:soft-page-break/>Defining namelists and other configuration files<text:bookmark-end text:name="__RefHeading__1883_1672291846"/></text:h> + <text:p text:style-name="P68"><text:span text:style-name="T60">Most models need at least one Fortran namelist file or another form of configuration file to run. </text:span><text:span text:style-name="T61">The special section [namelists] </text:span><text:span text:style-name="T60">is designed to </text:span><text:span text:style-name="T61">contain all information that goes into </text:span><text:span text:style-name="T60">these</text:span><text:span text:style-name="T61"> files. Each </text:span><text:span text:style-name="T58">immediate </text:span><text:span text:style-name="T61">subsection defines settings for a single file that will </text:span><text:span text:style-name="T60">by default be </text:span><text:span text:style-name="T61">formatted as a Fortran namelist. </text:span><text:span text:style-name="T60">For </text:span><text:span text:style-name="T61">example,</text:span></text:p> + <text:p text:style-name="P137">[namelists]</text:p> + <text:p text:style-name="P147"/> + <text:p text:style-name="P137"><text:s text:c="2"/>[[<text:span text:style-name="T175">namelist.echam</text:span>]] </text:p> + <text:p text:style-name="P137"><text:s text:c="4"/>[[[runctl]]] </text:p> + <text:p text:style-name="P137"><text:s text:c="6"/>lamip = true</text:p> + <text:p text:style-name="P137"><text:s text:c="6"/><text:span text:style-name="T184">nproma = 48</text:span></text:p> + <text:p text:style-name="P139"><text:s text:c="6"/>earth_angular_velocity = 7.3e-5</text:p> + <text:p text:style-name="P139"><text:s text:c="6"/>out_expname = joe1234</text:p> + <text:p text:style-name="P139"><text:s text:c="6"/><text:span text:style-name="T176">dt_stop = 2009, 1, 1, 0, 0, 0</text:span></text:p> + <text:p text:style-name="P65"><text:span text:style-name="T38">defines </text:span><text:span text:style-name="T59">a single </text:span><text:span text:style-name="T38">namelist file, </text:span><text:span text:style-name="T62">'namelist.echam'</text:span><text:span text:style-name="T38">, </text:span><text:span text:style-name="T60">containing a single namelist group with four variables of different types. Note </text:span><text:span text:style-name="T79">that you do not </text:span><text:span text:style-name="T60">need to use quotes for strings nor periods for logical values.</text:span></text:p> + <text:h text:style-name="P218" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2578_1114405012"/>Formatting the namelist information<text:bookmark-end text:name="__RefHeading__2578_1114405012"/></text:h> + <text:p text:style-name="P70"><text:span text:style-name="T58">The </text:span><text:span text:style-name="T59">names of the </text:span><text:span text:style-name="T58">subsections of each namelist file entry, i.e. the second level subsections under the immediate subsections of [namelists], are taken as namelist group </text:span><text:span text:style-name="T59">name</text:span><text:span text:style-name="T58">s, and their variables are formatted as fields of this namelist </text:span><text:span text:style-name="T59">group</text:span><text:span text:style-name="T58">. </text:span><text:span text:style-name="T59">In the example above, there is a single namelist group 'runctl', which will be converted to the Fortran namelist convention. </text:span><text:span text:style-name="T175">The values of the group's fields are checked to determine whether they are numerical, logical, or string values. Logical and string values will then be formatted using periods or quotes, respectively.</text:span></text:p> + <text:p text:style-name="P70"><text:span text:style-name="T195">In the example above, the first four fields are single values of logical, integer, floating point, and string type.</text:span><text:span text:style-name="T62"> The fifth is a list of integer values, that will be passed as such to the namelist file:</text:span></text:p> + <text:p text:style-name="P107"><text:soft-page-break/>&runctl</text:p> + <text:p text:style-name="P141"><text:s text:c="4"/>lamip = <text:span text:style-name="T112">.true.</text:span></text:p> + <text:p text:style-name="P141"><text:s text:c="4"/><text:span text:style-name="T175">nproma = </text:span><text:span text:style-name="T117">48</text:span></text:p> + <text:p text:style-name="P140"><text:s text:c="4"/>earth_angular_velocity = <text:span text:style-name="T112">7.3e-5</text:span></text:p> + <text:p text:style-name="P140"><text:s text:c="4"/>out_expname = <text:span text:style-name="T118">'</text:span><text:span text:style-name="T112">joe1234</text:span><text:span text:style-name="T118">'</text:span></text:p> + <text:p text:style-name="P140"><text:span text:style-name="T62"><text:s text:c="4"/>dt_stop = </text:span><text:span text:style-name="T109">2009, 1, 1, 0, 0, 0</text:span></text:p> + <text:p text:style-name="P125">/</text:p> + <text:h text:style-name="P223" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2580_1114405012"/><text:span text:style-name="T60">S</text:span><text:span text:style-name="T38">uppressing namelist groups or variables</text:span><text:bookmark-end text:name="__RefHeading__2580_1114405012"/></text:h> <text:p text:style-name="P56">Both the namelist file sections and the namelist group section honor the special variable '.remove' which may be set to a list of names. Any namelist groups listed in the file's '.remove' variable, and any variables listed in the group's '.remove' variable will be deleted from the namelist definition.</text:p> <text:p text:style-name="P56">The names may contain the usual file wildcards, '*' and '?' to remove a whole range of groups or variables.</text:p> - <text:p text:style-name="P78"><text:span text:style-name="T38">While '.remove' is useful to </text:span><text:span text:style-name="T69">suppress</text:span><text:span text:style-name="T38"> default settings that must not be present for the experiment setup, currently there is no way to resurrect a removed setting in a later setup level. </text:span><text:span text:style-name="T70">Therefore, its use in model setups is strongly discouraged.</text:span></text:p> - <text:h text:style-name="P218" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2714_1114405012"/>Using the namelist text<text:bookmark-end text:name="__RefHeading__2714_1114405012"/></text:h> - <text:p text:style-name="P65"><text:span text:style-name="T60">T</text:span><text:span text:style-name="T62">he </text:span><text:span text:style-name="T51">formatted namelist text </text:span><text:span text:style-name="T38">is </text:span><text:span text:style-name="T62">stor</text:span><text:span text:style-name="T38">ed </text:span><text:span text:style-name="T62">in</text:span><text:span text:style-name="T38"> a global variable </text:span><text:span text:style-name="T62">that may be used by a template placeholder</text:span><text:span text:style-name="T38">. </text:span><text:span text:style-name="T60">This way, </text:span><text:span text:style-name="T38">all job information </text:span><text:span text:style-name="T62">available </text:span><text:span text:style-name="T60">is written to</text:span><text:span text:style-name="T38"> a single script or description file, </text:span><text:span text:style-name="T60">and </text:span><text:span text:style-name="T38">native script variables </text:span><text:span text:style-name="T60">may be used</text:span><text:span text:style-name="T38"> in the namelist definitions.</text:span></text:p> - <text:p text:style-name="P67"><text:span text:style-name="T51">The name of </text:span><text:span text:style-name="T62">this </text:span><text:span text:style-name="T51">variable</text:span><text:span text:style-name="T52"> </text:span><text:span text:style-name="T62">is</text:span><text:span text:style-name="T51"> generated from </text:span><text:span text:style-name="T62">its</text:span><text:span text:style-name="T51"> </text:span><text:span text:style-name="T52">respective</text:span><text:span text:style-name="T51"> file name, </text:span><text:span text:style-name="T62">like</text:span><text:span text:style-name="T51"> 'namelist.echam', by </text:span><text:span text:style-name="T61">converting all letters to upper case </text:span><text:span text:style-name="T51">(</text:span><text:span text:style-name="T61">namelist.echam →</text:span><text:span text:style-name="T51"> </text:span><text:span text:style-name="T61">NAMELIST.ECHAM</text:span><text:span text:style-name="T51">) </text:span><text:span text:style-name="T52">and </text:span><text:span text:style-name="T51">replacing non-word characters by an underscore (NAMELIST.ECHAM → NAMELIST_ECHAM).</text:span></text:p> + <text:p text:style-name="P79"><text:span text:style-name="T38">While '.remove' is useful to </text:span><text:span text:style-name="T69">suppress</text:span><text:span text:style-name="T38"> default settings that must not be present for the experiment setup, currently there is no way to resurrect a removed setting in a later setup level. </text:span><text:span text:style-name="T70">Therefore, its use in model setups is strongly discouraged.</text:span></text:p> + <text:h text:style-name="P219" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2714_1114405012"/>Using the namelist text<text:bookmark-end text:name="__RefHeading__2714_1114405012"/></text:h> + <text:p text:style-name="P66"><text:span text:style-name="T60">T</text:span><text:span text:style-name="T62">he </text:span><text:span text:style-name="T51">formatted namelist text </text:span><text:span text:style-name="T38">is </text:span><text:span text:style-name="T62">stor</text:span><text:span text:style-name="T38">ed </text:span><text:span text:style-name="T62">in</text:span><text:span text:style-name="T38"> a global variable </text:span><text:span text:style-name="T62">that may be used by a template placeholder</text:span><text:span text:style-name="T38">. </text:span><text:span text:style-name="T60">This way, </text:span><text:span text:style-name="T38">all job information </text:span><text:span text:style-name="T62">available </text:span><text:span text:style-name="T60">is written to</text:span><text:span text:style-name="T38"> a single script or description file, </text:span><text:span text:style-name="T60">and </text:span><text:span text:style-name="T38">native script variables </text:span><text:span text:style-name="T60">may be used</text:span><text:span text:style-name="T38"> in the namelist definitions.</text:span></text:p> + <text:p text:style-name="P68"><text:span text:style-name="T51">The name of </text:span><text:span text:style-name="T62">this </text:span><text:span text:style-name="T51">variable</text:span><text:span text:style-name="T52"> </text:span><text:span text:style-name="T62">is</text:span><text:span text:style-name="T51"> generated from </text:span><text:span text:style-name="T62">its</text:span><text:span text:style-name="T51"> </text:span><text:span text:style-name="T52">respective</text:span><text:span text:style-name="T51"> file name, </text:span><text:span text:style-name="T62">like</text:span><text:span text:style-name="T51"> 'namelist.echam', by </text:span><text:span text:style-name="T61">converting all letters to upper case </text:span><text:span text:style-name="T51">(</text:span><text:span text:style-name="T61">namelist.echam →</text:span><text:span text:style-name="T51"> </text:span><text:span text:style-name="T61">NAMELIST.ECHAM</text:span><text:span text:style-name="T51">) </text:span><text:span text:style-name="T52">and </text:span><text:span text:style-name="T51">replacing non-word characters by an underscore (NAMELIST.ECHAM → NAMELIST_ECHAM).</text:span></text:p> <text:p text:style-name="Preformatted_20_Text"># joe1234.config</text:p> <text:p text:style-name="Preformatted_20_Text">[namelists]</text:p> <text:p text:style-name="Preformatted_20_Text"><text:s text:c="2"/><text:span text:style-name="T112">[[namelist.echam]]</text:span></text:p> <text:p text:style-name="Preformatted_20_Text"><text:s text:c="4"/>[[[runctl]]]</text:p> <text:p text:style-name="Preformatted_20_Text_20_Interrupt"><text:s text:c="6"/>out_expname = $${EXP_ID}</text:p> - <text:p text:style-name="P137">#! /bin/sh</text:p> + <text:p text:style-name="P138">#! /bin/sh</text:p> <text:p text:style-name="Preformatted_20_Text">EXP_ID=%{EXP_ID}</text:p> - <text:p text:style-name="P96">cat > namelist.echam << EOF</text:p> - <text:p text:style-name="P103">%{NAMELIST_ECHAM}</text:p> - <text:p text:style-name="P96">EOF</text:p> - <text:p text:style-name="P66">which expand to</text:p> - <text:p text:style-name="P137"><text:soft-page-break/>#! /bin/sh</text:p> - <text:p text:style-name="Preformatted_20_Text">EXP_ID=joe1234</text:p> - <text:p text:style-name="P96">cat > namelist.echam << EOF</text:p> - <text:p text:style-name="P105">&runctl</text:p> - <text:p text:style-name="P99"><text:s text:c="4"/>out_expname = '${EXP_ID}'</text:p> - <text:p text:style-name="P105">/</text:p> - <text:p text:style-name="P96">EOF</text:p> - <text:p text:style-name="P68"><text:span text:style-name="T62">Note how this setup uses the native script variable 'EXP_ID' to set the </text:span><text:span text:style-name="T58">namelist contents.</text:span></text:p> - <text:p text:style-name="P68"><text:span text:style-name="T63">As in the example above, the script template is responsible for writing the namelist text to an actual file. </text:span><text:span text:style-name="T62">While in general the namelist file takes the same name as the .config subsection defining it, </text:span><text:span text:style-name="T25">mkexp</text:span><text:span text:style-name="T62"> </text:span><text:span text:style-name="T63">ha</text:span><text:span text:style-name="T62">s currently no way to enforce this. The template needs to be set up accordingly.</text:span></text:p> - <text:h text:style-name="P223" text:outline-level="3">Using native script variables in namelists</text:h> - <text:p text:style-name="P85">When using native script variables in a namelist, it may be necessary to suppress the conversion of values to namelist conventions. Consider</text:p> - <text:p text:style-name="P149">[namelists]</text:p> - <text:p text:style-name="P149"><text:s text:c="2"/><text:span text:style-name="T200">[[namelist.echam]]</text:span></text:p> - <text:p text:style-name="P149"><text:s text:c="4"/><text:span text:style-name="T200">[[[runctl]]]</text:span></text:p> - <text:p text:style-name="Preformatted_20_Text_20_Interrupt"><text:s text:c="6"/><text:span text:style-name="T200">dt_stop = $$final_date</text:span></text:p> - <text:p text:style-name="P125">final_date='2015, 12, 31, 23, 52, 30'</text:p> <text:p text:style-name="P97">cat > namelist.echam << EOF</text:p> <text:p text:style-name="P104">%{NAMELIST_ECHAM}</text:p> - <text:p text:style-name="P126">EOF</text:p> - <text:p text:style-name="P85">When the text for NAMELIST_ECHAM is generated, <text:span text:style-name="T9">mkexp</text:span><text:span text:style-name="T38"> converts the value of 'dt_stop' to a string surrounded by single quotes (see 'EXP_ID' in the previous example), as '$$final_date' cannot be </text:span><text:span text:style-name="T85">recognized</text:span><text:span text:style-name="T38"> as a numer</text:span><text:span text:style-name="T85">ic</text:span><text:span text:style-name="T38"> or logical value. In the namelist context however it is </text:span><text:span text:style-name="T85">needed</text:span><text:span text:style-name="T38"> as a</text:span><text:span text:style-name="T85">n unquoted</text:span><text:span text:style-name="T38"> list of integers. </text:span><text:span text:style-name="T84">To fix this, simply use the special syntax 'raw(…)' </text:span><text:span text:style-name="T85">around the value:</text:span></text:p> + <text:p text:style-name="P97">EOF</text:p> + <text:p text:style-name="P67">which expand to</text:p> + <text:p text:style-name="P138"><text:soft-page-break/>#! /bin/sh</text:p> + <text:p text:style-name="Preformatted_20_Text">EXP_ID=joe1234</text:p> + <text:p text:style-name="P97">cat > namelist.echam << EOF</text:p> + <text:p text:style-name="P106">&runctl</text:p> + <text:p text:style-name="P100"><text:s text:c="4"/>out_expname = '${EXP_ID}'</text:p> + <text:p text:style-name="P106">/</text:p> + <text:p text:style-name="P97">EOF</text:p> + <text:p text:style-name="P69"><text:span text:style-name="T62">Note how this setup uses the native script variable 'EXP_ID' to set the </text:span><text:span text:style-name="T58">namelist contents.</text:span></text:p> + <text:p text:style-name="P69"><text:span text:style-name="T63">As in the example above, the script template is responsible for writing the namelist text to an actual file. </text:span><text:span text:style-name="T62">While in general the namelist file takes the same name as the .config subsection defining it, </text:span><text:span text:style-name="T25">mkexp</text:span><text:span text:style-name="T62"> </text:span><text:span text:style-name="T63">ha</text:span><text:span text:style-name="T62">s currently no way to enforce this. The template needs to be set up accordingly.</text:span></text:p> + <text:h text:style-name="P224" text:outline-level="3">Using native script variables in namelists</text:h> + <text:p text:style-name="P86">When using native script variables in a namelist, it may be necessary to suppress the conversion of values to namelist conventions. Consider</text:p> + <text:p text:style-name="P150">[namelists]</text:p> + <text:p text:style-name="P150"><text:s text:c="2"/><text:span text:style-name="T200">[[namelist.echam]]</text:span></text:p> + <text:p text:style-name="P150"><text:s text:c="4"/><text:span text:style-name="T200">[[[runctl]]]</text:span></text:p> + <text:p text:style-name="Preformatted_20_Text_20_Interrupt"><text:s text:c="6"/><text:span text:style-name="T200">dt_stop = $$final_date</text:span></text:p> + <text:p text:style-name="P126">final_date='2015, 12, 31, 23, 52, 30'</text:p> + <text:p text:style-name="P98">cat > namelist.echam << EOF</text:p> + <text:p text:style-name="P105">%{NAMELIST_ECHAM}</text:p> + <text:p text:style-name="P127">EOF</text:p> + <text:p text:style-name="P86">When the text for NAMELIST_ECHAM is generated, <text:span text:style-name="T9">mkexp</text:span><text:span text:style-name="T38"> converts the value of 'dt_stop' to a string surrounded by single quotes (see 'EXP_ID' in the previous example), as '$$final_date' cannot be </text:span><text:span text:style-name="T85">recognized</text:span><text:span text:style-name="T38"> as a numer</text:span><text:span text:style-name="T85">ic</text:span><text:span text:style-name="T38"> or logical value. In the namelist context however it is </text:span><text:span text:style-name="T85">needed</text:span><text:span text:style-name="T38"> as a</text:span><text:span text:style-name="T85">n unquoted</text:span><text:span text:style-name="T38"> list of integers. </text:span><text:span text:style-name="T84">To fix this, simply use the special syntax 'raw(…)' </text:span><text:span text:style-name="T85">around the value:</text:span></text:p> <text:p text:style-name="Preformatted_20_Text"><text:span text:style-name="T85"><text:s text:c="6"/></text:span><text:span text:style-name="T83">dt_stop = </text:span><text:span text:style-name="T85">raw(</text:span><text:span text:style-name="T83">$$final_date</text:span><text:span text:style-name="T85">)</text:span></text:p> - <text:p text:style-name="P232">which disables the conversion to a valid namelist value, leaving the correct formatting of the native variable to the script.</text:p> - <text:h text:style-name="P220" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2584_1114405012"/><text:soft-page-break/>Non-namelist configuration files<text:bookmark-end text:name="__RefHeading__2584_1114405012"/></text:h> - <text:p text:style-name="P79"><text:span text:style-name="T73">A [namelists] subsection may not only define a Fortran namelist file but also a custom format configuration file. </text:span><text:span text:style-name="T71">F</text:span><text:span text:style-name="T38">or any </text:span><text:span text:style-name="T73">of these</text:span><text:span text:style-name="T72"> files, the special section variable '.use_template' must be set to 'true', </text:span><text:span text:style-name="T73">and the model setup must provide a template '</text:span><text:span text:style-name="T29">subsection</text:span><text:span text:style-name="T73">.tmpl'. This template is expanded using the subsection's variables to create a suitably formatted text. </text:span><text:span text:style-name="T74">As for genuine namelists, the result is stored in a global variable.</text:span></text:p> + <text:p text:style-name="P57">which disables the conversion to a valid namelist value, leaving the correct formatting of the native variable to the script.</text:p> + <text:h text:style-name="P221" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2584_1114405012"/><text:soft-page-break/>Non-namelist configuration files<text:bookmark-end text:name="__RefHeading__2584_1114405012"/></text:h> + <text:p text:style-name="P80"><text:span text:style-name="T73">A [namelists] subsection may not only define a Fortran namelist file but also a custom format configuration file. </text:span><text:span text:style-name="T71">F</text:span><text:span text:style-name="T38">or any </text:span><text:span text:style-name="T73">of these</text:span><text:span text:style-name="T72"> files, the special section variable '.use_template' must be set to 'true', </text:span><text:span text:style-name="T73">and the model setup must provide a template '</text:span><text:span text:style-name="T29">subsection</text:span><text:span text:style-name="T73">.tmpl'. This template is expanded using the subsection's variables to create a suitably formatted text. </text:span><text:span text:style-name="T74">As for genuine namelists, the result is stored in a global variable.</text:span></text:p> <text:h text:style-name="Heading_20_2" text:outline-level="2"><text:bookmark-start text:name="__RefHeading__2831_1132221942"/><text:span text:style-name="T74">D</text:span><text:span text:style-name="T38">efining input files for an experiment</text:span><text:bookmark-end text:name="__RefHeading__2831_1132221942"/></text:h> - <text:p text:style-name="P82"><text:span text:style-name="T38">While the namelist files determine the model properties, the model state </text:span><text:span text:style-name="T82">also </text:span><text:span text:style-name="T38">depends on input files for initial and boundary conditions or assimilation data. These files are defined in the [files] special section. </text:span><text:span text:style-name="T82">There are no restrictions on the content structure of this section, and the job script templates are responsible for converting this content into a suitable script text.</text:span></text:p> - <text:h text:style-name="P216" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2833_1132221942"/>Overriding <text:span text:style-name="T198">input file</text:span>s <text:span text:style-name="T198">for certain</text:span> jobs<text:bookmark-end text:name="__RefHeading__2833_1132221942"/></text:h> + <text:p text:style-name="P83"><text:span text:style-name="T38">While the namelist files determine the model properties, the model state </text:span><text:span text:style-name="T82">also </text:span><text:span text:style-name="T38">depends on input files for initial and boundary conditions or assimilation data. These files are defined in the [files] special section. </text:span><text:span text:style-name="T82">There are no restrictions on the content structure of this section, and the job script templates are responsible for converting this content into a suitable script text.</text:span></text:p> + <text:h text:style-name="P217" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2833_1132221942"/>Overriding <text:span text:style-name="T198">input file</text:span>s <text:span text:style-name="T198">for certain</text:span> jobs<text:bookmark-end text:name="__RefHeading__2833_1132221942"/></text:h> <text:p text:style-name="P51"><text:span text:style-name="T199">As for namelists, t</text:span>here is special provision to change <text:span text:style-name="T198">the [</text:span>files<text:span text:style-name="T198">]</text:span> settings for a specific job. <text:span text:style-name="T198">Let us assume</text:span> <text:span text:style-name="T198">that a model run continues a previous run and reads that run's state from a restart file that may be defined like this:</text:span></text:p> - <text:p text:style-name="P131">[<text:span text:style-name="T198">files</text:span>]</text:p> - <text:p text:style-name="P92"><text:s text:c="2"/>[[<text:span text:style-name="T198">echam</text:span>]]</text:p> - <text:p text:style-name="P92"><text:s text:c="4"/>[[[<text:span text:style-name="T198">restart</text:span>]]]</text:p> - <text:p text:style-name="P92"><text:s text:c="6"/><text:span text:style-name="T198">restart_myexp_echam.nc = restart_myexp_echam_18491231.nc</text:span></text:p> - <text:p text:style-name="P83">The first run <text:span text:style-name="T199">will instead pick up its state from another experiment. This is done with </text:span><text:span text:style-name="T92"><text:s/>a job specific </text:span><text:span text:style-name="T101">'file</text:span><text:span text:style-name="T92">s</text:span><text:span text:style-name="T101">'</text:span><text:span text:style-name="T92"> subsection that – apart from the addition</text:span><text:span text:style-name="T94">al</text:span><text:span text:style-name="T92"> brackets – has the same structure as</text:span><text:span text:style-name="T91"> </text:span><text:span text:style-name="T92">the global </text:span><text:span text:style-name="T101">'files'</text:span><text:span text:style-name="T92"> section.</text:span></text:p> - <text:p text:style-name="P131">[jobs]</text:p> - <text:p text:style-name="P131"><text:s text:c="2"/>[[run_first]]</text:p> - <text:p text:style-name="P131"><text:s text:c="4"/><text:span text:style-name="T112">[[[</text:span><text:span text:style-name="T121">file</text:span><text:span text:style-name="T112">s]</text:span><text:span text:style-name="T121">]</text:span><text:span text:style-name="T112">]</text:span></text:p> - <text:p text:style-name="P92"><text:s text:c="6"/><text:span text:style-name="T150">[[</text:span>[[<text:span text:style-name="T199">echam</text:span>]]<text:span text:style-name="T150">]]</text:span></text:p> - <text:p text:style-name="P92"><text:s text:c="8"/><text:span text:style-name="T150">[[</text:span>[[[<text:span text:style-name="T199">restart</text:span>]]]<text:span text:style-name="T150">]]</text:span></text:p> - <text:p text:style-name="P93"><text:span text:style-name="T86"><text:s text:c="10"/></text:span><text:span text:style-name="T100">restart_myexp_echam.nc = restart_</text:span><text:span text:style-name="T104">another</text:span><text:span text:style-name="T105">exp</text:span><text:span text:style-name="T100">_echam_18491231.nc</text:span></text:p> + <text:p text:style-name="P132">[<text:span text:style-name="T198">files</text:span>]</text:p> + <text:p text:style-name="P93"><text:s text:c="2"/>[[<text:span text:style-name="T198">echam</text:span>]]</text:p> + <text:p text:style-name="P93"><text:s text:c="4"/>[[[<text:span text:style-name="T198">restart</text:span>]]]</text:p> + <text:p text:style-name="P93"><text:s text:c="6"/><text:span text:style-name="T198">restart_myexp_echam.nc = restart_myexp_echam_18491231.nc</text:span></text:p> + <text:p text:style-name="P84">The first run <text:span text:style-name="T199">will instead pick up its state from another experiment. This is done with </text:span><text:span text:style-name="T92"><text:s/>a job specific </text:span><text:span text:style-name="T101">'file</text:span><text:span text:style-name="T92">s</text:span><text:span text:style-name="T101">'</text:span><text:span text:style-name="T92"> subsection that – apart from the addition</text:span><text:span text:style-name="T94">al</text:span><text:span text:style-name="T92"> brackets – has the same structure as</text:span><text:span text:style-name="T91"> </text:span><text:span text:style-name="T92">the global </text:span><text:span text:style-name="T101">'files'</text:span><text:span text:style-name="T92"> section.</text:span></text:p> + <text:p text:style-name="P132">[jobs]</text:p> + <text:p text:style-name="P132"><text:s text:c="2"/>[[run_first]]</text:p> + <text:p text:style-name="P132"><text:s text:c="4"/><text:span text:style-name="T112">[[[</text:span><text:span text:style-name="T121">file</text:span><text:span text:style-name="T112">s]</text:span><text:span text:style-name="T121">]</text:span><text:span text:style-name="T112">]</text:span></text:p> + <text:p text:style-name="P93"><text:s text:c="6"/><text:span text:style-name="T150">[[</text:span>[[<text:span text:style-name="T199">echam</text:span>]]<text:span text:style-name="T150">]]</text:span></text:p> + <text:p text:style-name="P93"><text:s text:c="8"/><text:span text:style-name="T150">[[</text:span>[[[<text:span text:style-name="T199">restart</text:span>]]]<text:span text:style-name="T150">]]</text:span></text:p> + <text:p text:style-name="P94"><text:span text:style-name="T86"><text:s text:c="10"/></text:span><text:span text:style-name="T100">restart_myexp_echam.nc = restart_</text:span><text:span text:style-name="T104">another</text:span><text:span text:style-name="T105">exp</text:span><text:span text:style-name="T100">_echam_18491231.nc</text:span></text:p> <text:p text:style-name="P47"><text:span text:style-name="T92">This</text:span><text:span text:style-name="T100"> will result in a '.run_first' </text:span><text:span text:style-name="T101">script</text:span><text:span text:style-name="T100"> tha</text:span><text:span text:style-name="T101">t gets the model state from 'anotherexp', while the '.run' script</text:span><text:span text:style-name="T100"> </text:span><text:span text:style-name="T101">uses 'myexp'.</text:span></text:p> </office:text> </office:body> diff --git a/doc/mkexp.pdf b/doc/mkexp.pdf index ca0cb5611dca116218ac7eae2ae243d9f555a957..9ea0e17115eeeb2655e412a90f1eb714b912c7a2 100644 GIT binary patch delta 34799 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 delta 34742 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 diff --git a/mkexp b/mkexp index 2d512e1..aef02fa 100755 --- a/mkexp +++ b/mkexp @@ -259,9 +259,15 @@ command_line.add_argument('--path', '-p', command_line.add_argument('--no-make-dirs', '-m', action='store_false', dest='make_dirs', help='do not create work and data directories') +command_line.add_argument('--quiet', '-q', + action='store_true', dest='quiet', + help='suppress informative messages') args = command_line.parse_args() +if args.quiet: + feedback.setLevel(feedback.WARNING) + # Experiment configuration if args.path: config_roots = args.path.split(':') diff --git a/setup.py b/setup.py index f88fe0c..fe6fcb4 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from distutils.core import setup name = 'mkexp' -version = '0.3.4' +version = '0.3.5dev' setup( name = name, -- GitLab