-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding hermite prolate spheroid mechanics example
- Loading branch information
1 parent
80f0771
commit 168b574
Showing
7 changed files
with
2,076 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Linux temporary files | ||
*~ | ||
# Text files | ||
stdout.txt | ||
# Python files | ||
*.pyc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
================================== | ||
hermite_prolate_spheroid_mechanics | ||
================================== | ||
|
||
Hermite prolate spheroid | ||
|
||
Building the example | ||
==================== | ||
|
||
Instructions on how to configure and build with CMake:: | ||
|
||
git clone https://github.com/OpenCMISS-Examples/hermite_prolate_spheroid_mechanics.git | ||
mkdir build | ||
cmake -DOpenCMISSLibs_DIR=/path/to/opencmisslib/install ../hermite_prolate_spheroid_mechanics | ||
make # cmake --build . will also work here and is much more platform agnostic. | ||
|
||
Running the example | ||
=================== | ||
|
||
Explain how the example is run:: | ||
|
||
cd build | ||
./src/fortran/hermite_prolate_spheroid_mechanics.F90 | ||
|
||
or maybe it is a Python only example:: | ||
|
||
source /path/to/opencmisslibs/install/virtaul_environments/oclibs_venv_pyXY_release/bin/activate | ||
python src/python/hermite_prolate_spheroid_mechanics.py | ||
|
||
where the XY in the path are the Python major and minor versions respectively. | ||
|
||
Prerequisites | ||
============= | ||
|
||
None | ||
|
||
License | ||
======= | ||
|
||
Apache 2.0 License |
Oops, something went wrong.