Difference between revisions of "Config:InitialDesign"

From SUMOwiki
Jump to navigationJump to search
(Config:InitialDesign moved to Config:InitialDesign backup: initialdesign is out of sumo tag, so scripts generate a page for it)
 
Line 1: Line 1:
#REDIRECT [[Config:InitialDesign backup]]
+
'''Generated for SUMO toolbox version 6'''.
 +
''We are well aware that the list below is incomplete and possibly even out of date in some cases.  We try to document everything as best we can but much is limited by available time and manpower.  The most up to date documentation can always be found (if not here) in the default.xml configuration file and, of course, in the source files.''
 +
== InitialDesign ==
 +
 
 +
=== lhd ===
 +
Specifies a Latin HyperCube
 +
<source xmlns:saxon="http://icl.com/saxon" lang="xml">
 +
<[[Config:InitialDesign|InitialDesign]] type="[[InitialDesign#LatinHyperCubeDesign|LatinHyperCubeDesign]]">
 +
  <!-- how many points to generate -->
 +
  <Option key="points" value="20"/>
 +
  <!--<Option key="weight" value="0.5"/>-->
 +
  <!--<Option key="coolingFactor" value="0.9"/>-->
 +
  <!--<Option key="p" value="5.0"/>-->
 +
</[[Config:InitialDesign|InitialDesign]]>
 +
</source>
 +
=== factorial ===
 +
Specifies a simple Factorial Design (uniform grid)
 +
<source xmlns:saxon="http://icl.com/saxon" lang="xml">
 +
<[[Config:InitialDesign|InitialDesign]] type="[[InitialDesign#FactorialDesign|FactorialDesign]]">
 +
  <!-- how many points to generate for each dimension as a vector -->
 +
  <!-- a scalar value (l) is the same as [l l ... l] (length of input dimension) -->
 +
  <Option key="levels" value="10"/>
 +
</[[Config:InitialDesign|InitialDesign]]>
 +
</source>
 +
=== lhdWithCornerPoints ===
 +
Specifies a combined Latin HyperCube and FactorialDesign
 +
<source xmlns:saxon="http://icl.com/saxon" lang="xml">
 +
<[[Config:InitialDesign|InitialDesign]] type="[[InitialDesign#CombinedDesign|CombinedDesign]]">
 +
  <!-- Select samples in a Latin Hypercube Design -->
 +
  <[[Config:InitialDesign|InitialDesign]] type="[[InitialDesign#LatinHyperCubeDesign|LatinHyperCubeDesign]]">
 +
      <!-- how many points to generate -->
 +
      <Option key="points" value="20"/>
 +
      <!--<Option key="weight" value="0.5"/>-->
 +
      <!--<Option key="coolingFactor" value="0.9"/>-->
 +
      <!--<Option key="p" value="5.0"/>-->
 +
  </[[Config:InitialDesign|InitialDesign]]>
 +
 
 +
  <[[Config:InitialDesign|InitialDesign]] type="[[InitialDesign#FactorialDesign|FactorialDesign]]">
 +
      <!-- how many points to generate for each dimension as a vector -->
 +
      <!-- a scalar value (l) is the same as [l l ... l] (length of input dimension) -->
 +
      <Option key="levels" value="2"/>
 +
  </[[Config:InitialDesign|InitialDesign]]>
 +
</[[Config:InitialDesign|InitialDesign]]>
 +
</source>

Revision as of 14:31, 17 July 2008

Generated for SUMO toolbox version 6. We are well aware that the list below is incomplete and possibly even out of date in some cases. We try to document everything as best we can but much is limited by available time and manpower. The most up to date documentation can always be found (if not here) in the default.xml configuration file and, of course, in the source files.

InitialDesign

lhd

Specifies a Latin HyperCube

<[[Config:InitialDesign|InitialDesign]] type="[[InitialDesign#LatinHyperCubeDesign|LatinHyperCubeDesign]]">
   <!-- how many points to generate -->
   <Option key="points" value="20"/>
   <!--<Option key="weight" value="0.5"/>-->
   <!--<Option key="coolingFactor" value="0.9"/>-->
   <!--<Option key="p" value="5.0"/>-->
</[[Config:InitialDesign|InitialDesign]]>

factorial

Specifies a simple Factorial Design (uniform grid)

<[[Config:InitialDesign|InitialDesign]] type="[[InitialDesign#FactorialDesign|FactorialDesign]]">
   <!-- how many points to generate for each dimension as a vector -->
   <!-- a scalar value (l) is the same as [l l ... l] (length of input dimension) -->
   <Option key="levels" value="10"/>
</[[Config:InitialDesign|InitialDesign]]>

lhdWithCornerPoints

Specifies a combined Latin HyperCube and FactorialDesign

<[[Config:InitialDesign|InitialDesign]] type="[[InitialDesign#CombinedDesign|CombinedDesign]]">
   <!-- Select samples in a Latin Hypercube Design -->
   <[[Config:InitialDesign|InitialDesign]] type="[[InitialDesign#LatinHyperCubeDesign|LatinHyperCubeDesign]]">
      <!-- how many points to generate -->
      <Option key="points" value="20"/>
      <!--<Option key="weight" value="0.5"/>-->
      <!--<Option key="coolingFactor" value="0.9"/>-->
      <!--<Option key="p" value="5.0"/>-->
   </[[Config:InitialDesign|InitialDesign]]>

   <[[Config:InitialDesign|InitialDesign]] type="[[InitialDesign#FactorialDesign|FactorialDesign]]">
      <!-- how many points to generate for each dimension as a vector -->
      <!-- a scalar value (l) is the same as [l l ... l] (length of input dimension) -->
      <Option key="levels" value="2"/>
   </[[Config:InitialDesign|InitialDesign]]>
</[[Config:InitialDesign|InitialDesign]]>