In this series of new Code_Aster tutorials, I decided to go in the development aspect of Code_Aster! This is the video number 2, make sure you watch the tutorial 1 before this one (You will NOT be able to compile Code_Aster if you didn’t follow the previous tutorial) Here’s what you’ll learn from this […]
[Code Aster Dev Tuto 1] How to install Aster Full 14.2 and run it from terminal
In this series of new Code_Aster tutorials, I decided to go in the development aspect of Code_Aster! I will teach how to download, install and use Code_Aster from terminal and in a 2nd tutorial, I will show you how to download the source code and compile it :) Side Note: Those tutorials are for Advanced […]
[Fortran Tuto 11] Subroutines
In this tutorial, I will teach you how to use subroutines to do repetitive operations. I will talk about: – How to declare a subroutine – How to define the input variables – How to get the output of the subroutine inside your program Subroutines are almost like functions in fortran, except that they can […]
[Fortran Tuto 10] Formatting the print
In this tutorial, I will teach you how to format the text given by the print function I will talk about: – How to offset the data printed – How to arrange the data in several columns – How to display only a certain number of digits after the comma Enjoy ;-) -Cyprien
[Fortran Tuto 9] Dimension Arrays
In this tutorial, I will teach you how to work with arrays of several dimensions I will talk about: – How to declare an array – How to assign variables to the components of the array – How to write arrays which can be expended to register more data – How to print out arrays […]
[Fortran Tuto 8] Handling Precision
In this tutorial, I will teach you how to use handle precision in your fortran programs. I will talk about: – What happens when you use a simple “real” variable – How to set up the precision of a variable —————————————————————————————–