Path

Type:file
Range:[]
Default:-/-
Appearance:simple

Path is used to reference an entry within the .jcm input tree. It is constructed by concatenation of the section tags followed by the final entry tag.

Matrix entries are reference by parentheses enclosing row and column indices, e.g. Points(2,1) to select the x coordinate of the second point in a point list or polygon.

If a section or an entry tag occurs multiple times within the input tree, braces can be used to select a specific entry, e.g. Layout3D/Extrusion/MultiLayer/Layer{2}/Thickness to select the second Layer. The section name (e.g. Name=”CylinderLayer” in the example below) can be used alternatively.

Layout3D {
 Extrusion {
  ...
  MultiLayer {
   Layer {
     Thickness = 1.0
     DomainId = 1
   }
   LayerInterface {
    ...
   }
   Layer {
     Name = "CylinderLayer"
     Thickness = 1.5
     ...
   }
   ...
  }
 }
}