From 15d24424b81028608cb7ae48c60c62c933545c92 Mon Sep 17 00:00:00 2001 From: whimsial <ai1v14@soton.ac.uk> Date: Sun, 26 Aug 2018 15:36:20 +0100 Subject: [PATCH] Added license and corrected readme --- LICENSE | 21 +++++++++++++++++++++ README.md | 6 +++--- job.py | 8 ++++---- 3 files changed, 28 insertions(+), 7 deletions(-) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..85db609 --- /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 0ba6d3f..aabfc4a 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 bb6d62f..67f6dc3 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) -- GitLab