Skip to content
Snippets Groups Projects
Commit 15d24424 authored by whimsial's avatar whimsial
Browse files

Added license and corrected readme

parent a0fd7d5c
No related branches found
No related tags found
No related merge requests found
LICENSE 0 → 100644
MIT License
Copyright (c) 2018 ai1v14
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
......@@ -9,9 +9,9 @@
## Running the analysis
1. The interactive documentation on the application with the step-by-step guide on how to run the application are located in ```/docs/build/html/index.html``` in this repository.
2. To run the somplest test you need to navigate to the root of this directory and execute ```Abaqus cae noGUI=job.py``` in the command line.
3. After the analysis has finished you will be able to open the ```Job-1.odb``` file in the Abaqus CAE graphical user interface. The detailed information about the analysis you can also find in ```Job-1.dat``` file.
1. The interactive documentation to this application with the step-by-step guide on how to run the application is located in ```/docs/build/html/index.html```.
2. To run the simplest test you need to navigate to the root of this directory and execute ```Abaqus cae noGUI=job.py``` in the command line or, alternatively, run ``job.py`` as a script in Abaqus GUI.
3. After the solver finishes the task you will be able to open the ```Job-1.odb``` file in the Abaqus CAE graphical user interface. The detailed information about the analysis you can also find in ```Job-1.dat``` file.
4. For more advanced control of the application refer to the documentation.
## License
......
......@@ -17,7 +17,7 @@ from SpindleMesh import generate_mesh
kwargs = {'x' : 0,
'y' : 0,
'index' : 0,
'modelname' : 'spring200Pa-3',
'modelname' : 'test',
'assembly' : 0,
'CentrosomeRadius': 0.12,
'CentrosomeLength': 0.24,
......@@ -38,12 +38,12 @@ kwargs = {'x' : 0,
'connectorNu' : 0.3,
'aMTnumber' : 20,
'aMTlength' : 2,
'aMTsSpring' : 200,
'groundSpring' : 200,
'aMTsSpring' : 10,
'groundSpring' : 10,
'StepName' : 'Standard_Buckling',
'NumberOfEigs' : 5,
'CompressiveLoad' : 1,
'JobName' : 'spring200Pa-3'}
'JobName' : 'Job-1'}
''' Call model functions '''
kwargs, data = Interaction.create_interactions(**kwargs)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment