Folder name

List 35 Example of a folder name type condition definition
1
2
3
<Item name="flowdatafolder" caption="Flow data folder">
  <Definition valueType="foldername" />
</Item>
../_images/widget_example_folder.png

Figure 52 Widget example of a folder name type condition

List 36 Code example to load a folder name type condition (for calculation conditions and grid generating conditions)
1
2
3
4
integer:: ier
character(200):: flowdatafolder

call cg_iric_read_string_f("flowdatafolder", flowdatafolder, ier)
List 37 Code example to load a folder name type condition (for boundary conditions)
1
2
3
4
integer:: ier
character(200):: flowdatafolder

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