Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 20 additions & 20 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,42 +1,42 @@
=============
Stokes ALE
=============

Stokes equation is a linearised form of the Navier-Stokes equations in the limit of small Reynolds number.
This equation, also named creeping flow, is a type of fluid flow where advective inertial forces are small compared with viscous forces.
The ALE form of the Stokes equation is implemented in this example.

=================
Example Name Here
=================

Short synopsis of the example.

Building the example
====================

If this not a pure Python example place the instructions here on how to configure and build with CMake::
The fortran version of the example can be configured and built with CMake::

git clone https://github.com/OpenCMISS-Examples/stokes_ale.git
mkdir stokes_ale-build
cd stokes_ale-build
cmake -DOpenCMISSLibs_DIR=~/opencmiss/install/ ../stokes_ale/
make

git clone https://github.com/you/your-example.git # maybe your example is somewhere else like: OpenCMISS-Examples
mkdir build
cmake -DOpenCMISSLibs_DIR=/path/to/opencmisslib/install ../your-example
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/XXXXXXXX
To run the Fortran executable built in the previous section do the following (where the current directory is assumed to be `stokes_ale-build`)::

or maybe it is a Python only example::
cd ./src/fortran/
./stokes_ale_fortran

source /path/to/opencmisslibs/install/virtaul_environments/oclibs_venv_pyXY_release/bin/activate
python src/python/XXXXXXXX.py
The results can be visualised by running `visualiseStokesALE.cmgui <./src/fortran/visualiseStokesALE.cmgui>`_ with the `Cmgui visualiser <http://physiomeproject.org/software/opencmiss/cmgui/download>`_.

where the XY in the path are the Python major and minor versions respectively.

Prerequisites
=============

Are there any external sources that are required over and above CMake, OpenCMISS libraries. Sources like meshes which might be stored outside of the example itself.
There are no additional input files required for this example as it is self-contained.


License
=======

A line on the license applicable to this example.
License applicable to this example is described in `LICENSE <./LICENSE>`_.
192 changes: 0 additions & 192 deletions docs/Makefile

This file was deleted.

Loading