diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..85db609f9d1995e571f71baafb760624f8954c6a --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +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. diff --git a/README.md b/README.md index 0ba6d3f1a4aa066ff8abee95c536a7c9a6773988..aabfc4af5e504828505a342f576e51d242f16b5b 100755 --- a/README.md +++ b/README.md @@ -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 diff --git a/job.py b/job.py index bb6d62f3a3e3df85c36895566c21f364158baa4c..67f6dc307155d309e4044e206135d951b7a82551 100755 --- a/job.py +++ b/job.py @@ -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)