文字列

リスト 26 文字列の条件の定義例
1
2
3
<Item name="sampleitem" caption="Sample Item">
  <Definition valueType="string" />
</Item>
../_images/widget_example_string.png

図 49 文字列の条件の表示例

リスト 27 文字列の条件を読み込むための処理の記述例 (計算条件・格子生成条件)
1
2
3
4
integer:: ier
character(200):: sampleitem

call cg_iric_read_string_f("sampleitem", sampleitem, ier)
リスト 28 文字列の条件を読み込むための処理の記述例 (境界条件)
1
2
3
4
integer:: ier
character(200):: sampleitem

call cg_iric_read_bc_string_f("inflow", 1, "sampleitem", sampleitem, ier)