Quick-Start Guide
Simcoon has been developed as a API platform to help engineers and researchers in mechanics to develop constitutive models and numerical simulations. You could go the the Gallery page to see some examples of how Simcoon is utilized.
Simcoon first steps
We first import simmit (the python simulation module of simcoon) and numpy
Then, suppose we would like to compute the stiffness tensor (in the form of a 6x6 matrix) of a linear elastic material, providing the Young’s modulus \(E\) and the Poisson’s ratio \(\nu\):
Conversely, one can ask Simcoon to output he material properties, providing s stiffness tensor:
Simcoon can also check the symetries of a provided stiffness tensor and ouput the set of material parameter, if a specific symmetry has been found:
Simcoon tutorial
Probably the first thing you would like to do with Simcoon is to simulate the mechanical response corresponding of a simple tension test, considering an elastic isotropic material:
We first import simmit (the python simulation module of simcoon) and numpy
Next we shall define the material constitutive law to be utilized and the associated material properties. We will pass them as a numpy array:
The last part of the script is to define, if wanted, the location of the data input files (i.e., to define the loading path), and the results outut file and location:
The last part is to define the loading path. Further details about this file is given in the Simcoon documentation, but for instance you could just create a folder ‘data’ and create a text file named ‘path.txt’ with the following inside:
The latter correspond to a pure strain-controlled tension test in the direction 1 up to 1% strain, at the temperature 293.5K.
You can now run your just created python file (you could also create a jupyter notebook, or run the notebook ELISO.ipynb that you can find in the examples). You will now find in the ‘results’ folder a file named results_ELISO.txt. Have a look at the existing notebook or in the documentation to know how to analyse the result file. The documentation of the latest version of simcoon can be found here: Simcoon documentation.