Input Data
From KratosWiki
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
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
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