Input Data

From KratosWiki
(Difference between revisions)
Jump to: navigation, search
m (Added Flag format)
Line 171: Line 171:
 
  974 0 1.000000
 
  974 0 1.000000
 
  End NodalData
 
  End NodalData
   
+
 
 +
If the varibale we want to set is a flag, just have to skip the fixicity column and set the values to 0(False) or 1 (True)
 +
 
 +
  Begin NodalData INLET // Now we are setting a flag
 +
1 0 // Pay attention that now we just have 2 columns. Id and True/False. There is no fixicity
 +
2 1
 +
End NodalData
 +
 
 
  Begin Mesh 2
 
  Begin Mesh 2
 
   
 
   

Revision as of 14:37, 26 November 2015

The current input data consist of one archive with .mdpa extension. The input file is free format and the reading is not depend to the spaces, tabs, endlines etc.

This format contains all ModelPart's data in a minimalistic block form and consists of 8 blocks of data in following form:

 Begin ModelPartData
 //  VARIABLE_NAME value
 End ModelPartData

 Begin Table table_id variable1 variable2 
 // table_x table_y
 End Table
 
 Begin Properties  properties_id 
 //  VARIABLE_NAME value
 End Properties
 
 Begin Nodes
 // id	  X	Y	Z
 End Nodes
 
 Begin Elements element_name
 // id prop_id	 n1	n2	n3	...
 End Elements
 
 Begin Conditions condition_name 
 // id prop_id	 n1	n2	n3	...
 End Conditions
 
 Begin NodalData VARIABLE_NAME
 //  id is_fixed value
 End NodalData
 
 Begin ElementalData VARIABLE_NAME
 //  id value
 End ElementalData
 
 Begin ConditionalData VARIABLE_NAME
 //  id value
 End ConditionalData 
 
 Begin Mesh mesh_id   // mesh_id cannot be zero!
 
     Begin MeshNodes
     // node_id
     End MeshNodes
 
     Begin MeshElements
     // element_id
     End MeshElements
 
     Begin MeshConditions
     // condition_id
     End MeshConditions
 
 End Mesh

Each block starts with a Begin statement following by the block name and ends with the End statement again following by the block name. Some block may have some additional parameter like id or variable in their definitions.

An example is presented in the following lines:

Begin ModelPartData
//  VARIABLE_NAME value
End ModelPartData

Begin Table 1 TEMPERATURE VISCOSITY
200. 2e-6
300. 3e-6
400. 4e-6
End Table

Begin Properties 1
DENSITY 3.4E-5  //scalar
THICKNESS 19.5
ORTHOTROPIC_YOUNG_MODULUS [3] (20000,10000,8000) //vector
ORTHOTROPIC_POISSON_RATIO [3,3] ((0, 0.27,0.27),(0.087,0,0.27),(0.075,0.23,0)) // matrix
ORTHOTROPIC_SHEAR_MODULUS [3] (4225.23,4225.23,4225.23)
End Properties

Begin Nodes
1                  16                   0                   0
2                  16                 0.4                   0
3                15.6                   0                   0
...
972                   0                 7.2                   0
973                   0                 7.6                   0
974                   0                   8                   0
End Nodes

Begin Elements ASGS2D
1 0        649        661        641
2 0        765        771        785
3 0        710        700        704
...
1796 0        535        563        549
1797 0        877        857        891
1798 0        612        646        628
End Elements


Begin Conditions Condition2D
1799 0        644        650
1800 0        650        663
1801 0        663        673
...
1947 0        972        973
1948 0        973        974
End Conditions


Begin NodalData DISPLACEMENT_X
1 1 0.000000
2 1 0.000000
...
973 1 0.000000
974 1 0.000000
End NodalData

Begin NodalData DISPLACEMENT_Y
1 1 0.000000
2 1 0.000000
...
973 1 0.000000
974 1 0.000000
End NodalData

Begin NodalData DISPLACEMENT_Z
1 1 0.000000
2 1 0.000000
...
973 1 0.000000
974 1 0.000000
End NodalData

Begin NodalData VELOCITY_X
637 1 0.000000
639 1 0.000000
...
973 1 1.000000
974 1 1.000000
End NodalData

Begin NodalData VELOCITY_Y
1 1 0.000000
3 1 0.000000
...
973 1 0.000000
974 1 0.000000
End NodalData

Begin NodalData VELOCITY_Z
1 1 0.000000
3 1 0.000000
...
973 1 0.000000
974 1 0.000000
End NodalData

Begin NodalData VISCOSITY
1 0 0.010000
2 0 0.010000
...
973 0 0.010000
974 0 0.010000
End NodalData

Begin NodalData DENSITY
1 0 1.000000
2 0 1.000000
...
973 0 1.000000
974 0 1.000000
End NodalData

If the varibale we want to set is a flag, just have to skip the fixicity column and set the values to 0(False) or 1 (True)

Begin NodalData INLET // Now we are setting a flag
1 0 // Pay attention that now we just have 2 columns. Id and True/False. There is no fixicity
2 1
End NodalData 
Begin Mesh 2

    Begin MeshNodes
    1
    3
    End MeshNodes

    Begin MeshElements
    1
    2
    End MeshElements

    Begin MeshConditions
    1
    End MeshConditions

End Mesh

The old format for data file is still supported due to the backward compatibility but without further improvement. The old format description can be found here

Personal tools
Categories