-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Doc:added documentation for CalculiX
- Loading branch information
1 parent
0a2d378
commit 9d17dd8
Showing
3 changed files
with
78 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,61 @@ | ||
.. _ Calculix-2.21-index: | ||
|
||
.. contents:: Table of Contents | ||
|
||
************ | ||
Calculix 2.21 | ||
************ | ||
|
||
- **Installation date:** 01/09/2023 | ||
- **URL:** http://www.dhondt.de | ||
- **Apolo version:** Apolo II | ||
- **License:** ACADEMIC LICENSE | ||
|
||
Dependencies | ||
------------ | ||
- GCC = 9.3.0 | ||
|
||
Installation | ||
------------ | ||
|
||
We load the necessary module: | ||
|
||
.. code-block:: bash | ||
module load gcc/9.3.0 | ||
we download and unzip the source code from this repository, this file will help us to compile Calculix easier | ||
|
||
.. code-block:: bash | ||
mkdir calculix | ||
cd calculix | ||
wget https://codeload.github.com/calculix/ccx_prool/zip/refs/heads/master | ||
unzip master | ||
We enter the folder and edit the makefile | ||
|
||
.. code-block:: bash | ||
cd ccx_prool-master | ||
vim Makefile | ||
It should look like this, remember that in line 7 and 9 there must be version 2.21 | ||
|
||
.. image:: images/Makefile.png | ||
:align: center | ||
:alt: Makefile | ||
|
||
We can enter the Calculix folder and delete versions that we don't need, so that only 2.21 remains. | ||
|
||
.. code-block:: bash | ||
cd CalculiX | ||
rm -r ccx_2.1* ccx_2.20 ccx_2.8p2 ccx_2.9 | ||
cd .. | ||
Now we compile | ||
|
||
.. code-block:: bash | ||
make |
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,17 @@ | ||
.. _ Calculix-index: | ||
|
||
|
||
Calculix | ||
===== | ||
|
||
A Free Software Three-Dimensional Structural Finite Element Program [1]_ | ||
|
||
|
||
.. toctree:: | ||
:caption: Versions | ||
:maxdepth: 1 | ||
|
||
2.21/index | ||
|
||
|
||
.. [1] http://www.dhondt.de |