Skip to content

Commit

Permalink
Doc:added documentation for CalculiX
Browse files Browse the repository at this point in the history
  • Loading branch information
JuanHerrera8 committed Sep 5, 2023
1 parent 0a2d378 commit 9d17dd8
Show file tree
Hide file tree
Showing 3 changed files with 78 additions and 0 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
61 changes: 61 additions & 0 deletions docs/source/software/applications/Calculix/2.21/index.rst
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
17 changes: 17 additions & 0 deletions docs/source/software/applications/Calculix/index.rst
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

0 comments on commit 9d17dd8

Please sign in to comment.