Once a geometry is created and properties from the tree assigned, it is time to write the input file for the cmas2d solver.
For this example we will need to write the following information in the file:
...
Let's open the cmas2d_customlib.tcl file and see how are we processing the event of GiD that is called when the user wants to calculate: GiD_Event_AfterWriteCalculationFile. After a few check of the environment, 'Cmas2d::WriteCalculationFile AfterWriteCalculationFile $filename ' is called (It is defined in scripts/writing.tcl).
First we need to do in this function is to call some initialization procedures:
To open the file for writtingwriting: customlib::InitWriteFile
Code Block |
---|
GiD_WriteCalculationFile init $filename |
To initialize the material's database, indicating wich which 'conditions' have materials assigned.
Code Block |
---|
customlib::InitMaterials [list "Shells"] active |
Then we write some headers and to write the number of elements and nodes, we call some GiD_Info Functions:
customlib::WriteString
Code Block |
---|
GiD_WriteCalculationFile puts "[GiD_Info Mesh NumElements] [GiD_Info Mesh NumNodes]" |
To write the nodes and their coordinates we need to prepare the format and call WriteCoordinates:
customlib::WriteCoordinates "%5d %14.5e for an integer node id and two reals x, y (z is omitted)
Code Block |
---|
GiD_WriteCalculationFile coordinates -factor $mesh_factor "%5d %14.5e %14.5e%.0s\n" |
As we can see, the format is prepared to write 2D coordinates (X & Y).
Next we need to write are the connectivities of the elements. For each element, we want to write it's id, it's nodes, and the material id that we assigned. In order to do this, again we prepare the parameters for the function WriteConnectivities:
Code Block |
---|
set elements_conditions [list "Shells"] |
...
set element_formats [list {"%10d" "element" "id"} {"%10d" "element" "connectivities"} {"%10d" "material" "MID"}] |
...
customlib::WriteConnectivities $elements_conditions $element_formats active |
Then, the material's block. To get and write the number of materials, there is a function, GetNumberOfMaterials:
Code Block |
---|
set num_materials [customlib::GetNumberOfMaterials used] |
...
GiD_WriteCalculationFile puts "Materials:" GiD_WriteCalculationFile puts $num_materials |
...
And, to write the material information, again, we need to prepare the parameters to print the material's id and it's density, and call the function WriteMaterials
Code Block |
---|
customlib::WriteMaterials [list {"%4d" "material" "MID"} {"%13.5e" "material" "Density"}] used |
It is time to write the point weights. To get the number of nodes where we are applying the weights, we need to specify which is the condition we are writtingwriting, and call GetNumberOfNodes:
Code Block |
---|
set condition_list [list "Point_Weight"] |
...
set number_of_conditions [customlib::GetNumberOfNodes $condition_list] |
And foreach node with a Point_Weight condition asignedassigned, we need to print the node id and the asigned assigned weight.
Code Block |
---|
set condition_list [list "Point_Weight"] |
...
set condition_formats [list {"%1d" "node" "id"} {"%13.5e" "property" "Weight"}] |
...
customlib:: |
...
WriteNodesByGroup $condition_list $condition_formats "" active |
Finally, all we need to do is to close the writting writing file customlib::EndWriteFile
Code Block |
---|
GiD_WriteCalculationFile end ; |