项目作者: jonaslindemann

项目描述 :
Modern Fortran in Science and Technology
高级语言: Fortran
项目地址: git://github.com/jonaslindemann/modern_fortran_book.git
创建时间: 2020-09-06T20:02:50Z
项目社区:https://github.com/jonaslindemann/modern_fortran_book

开源协议:GNU General Public License v3.0

下载


Modern Fortran in Science and Technology

Authors: Jonas Lindemann and Ola Dahlblom

This book is an introduction in programming with Fortran 95/2003/2008 in science and technology. The book also covers methods for integrating Fortran code with other programming languages both dynamic (Python) and compiled languages (C++). An introduction in using modern development enrvironments such as QtCreator/Eclipse/Photran, for debugging and development is also given.

You can find the book in a more readable form at Read The Docs at the following link:

https://modern-fortran-in-science-and-technology.readthedocs.io/en/latest/

You can also find all the examples in the book in the source directory of this repo. All examples can be built using CMake as shown below:

  1. $ git clone https://github.com/jonaslindemann/modern_fortran_book.git
  2. $ cd modern_fortran_book/source
  3. $ mkdir build
  4. $ cd build
  5. $ cmake ..
  6. $ make

It will require a fortran compiler installed in the search path.