• Stars
    star
    191
  • Rank 202,877 (Top 4 %)
  • Language
    Fortran
  • License
    Other
  • Created over 9 years ago
  • Updated 8 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

For generating plots from Fortran using Python's matplotlib.pyplot 📈

Pyplot-Fortran

A simple module for generating plots from Fortran using Python's matplotlib.pyplot.

Status

GitHub release Build Status codecov

Overview

Currently, this module can be used to generate simple plots from Fortran. Eventually, it may be expanded to provide additional features and other types of plots.

The way it works is simply to generate a Python script with the plotting code, which is then executed from the command line using the Fortran execute_command_line function.

Compiling

The module requires a modern Fortran compiler (it uses various Fortran 2003/2008 features such as deferred-length strings). It should work fine with the latest gfortran or ifort compilers.

A fmp.toml file is provided for compiling pyplot-fortran with the Fortran Package Manager. For example, to build:

fpm build --profile release

By default, the library is built with double precision (real64) real values. Explicitly specifying the real kind can be done using the following processor flags:

Preprocessor flag Kind Number of bytes
REAL32 real(kind=real32) 4
REAL64 real(kind=real64) 8
REAL128 real(kind=real128) 16

For example, to build a single precision version of the library, use:

fpm build --profile release --flag "-DREAL32"

To run the unit tests:

fpm test

To use pyplot-fortran within your fpm project, add the following to your fpm.toml file:

[dependencies]
pyplot-fortran = { git="https://github.com/jacobwilliams/pyplot-fortran.git" }

or, to use a specific version:

[dependencies]
pyplot-fortran = { git="https://github.com/jacobwilliams/pyplot-fortran.git", tag = "3.3.0" }

To generate the documentation using ford, run: ford pyplot-fortran.md

Supported plot types

  • matplotlib.pyplot.plot -- 2D/3D plot of lines and/or markers
  • matplotlib.pyplot.bar -- bar plot
  • matplotlib.pyplot.contour -- contour plot
  • matplotlib.pyplot.contourf -- filled contour plot
  • matplotlib.pyplot.imshow -- image plot
  • matplotlib.pyplot.hist -- histogram plot
  • matplotlib.pyplot.errorbar -- errorbar plot
  • mpl_toolkits.mplot3d.axes3d.Axes3D.plot_surface -- surface plot
  • mpl_toolkits.mplot3d.axes3d.Axes3D.plot_wireframe -- 3D wireframe

Example

The following example generates a plot of the sine function:

 program test

 use,intrinsic :: iso_fortran_env, only: wp => real64
 use pyplot_module

 implicit none

 real(wp),dimension(100) :: x,sx
 type(pyplot) :: plt
 integer :: i

 !generate some data:
 x = [(real(i,wp), i=0,size(x)-1)]/5.0_wp
 sx = sin(x)

 !plot it:
 call plt%initialize(grid=.true.,xlabel='angle (rad)',&
                     title='Plot of $\sin(x)$',legend=.true.)
 call plt%add_plot(x,sx,label='$\sin(x)$',linestyle='b-o',markersize=5,linewidth=2)
 call plt%savefig('sinx.png', pyfile='sinx.py')

 end program test

Documentation

  • The API documentation for the current master branch can be found here. This is generated by processing the source files with FORD.

See also

More Repositories

1

json-fortran

A Modern Fortran JSON API
Fortran
331
star
2

Fortran-Astrodynamics-Toolkit

A Modern Fortran Library for Astrodynamics 🚀
Fortran
170
star
3

bspline-fortran

Multidimensional B-Spline Interpolation of Data on a Regular Grid
Fortran
165
star
4

csv-fortran

Read and Write CSV Files Using Modern Fortran
Fortran
94
star
5

slsqp

Modern Fortran Edition of the SLSQP Optimizer
Fortran
87
star
6

rklib

Fixed and variable-step Runge-Kutta solvers in Modern Fortran
Fortran
71
star
7

NumDiff

Modern Fortran Numerical Differentiation Library
Fortran
65
star
8

quadpack

Modern Fortran QUADPACK Library for 1D numerical quadrature
Fortran
61
star
9

finterp

Multidimensional (1D-6D) Linear and Nearest-Neighbor Interpolation with Modern Fortran
Fortran
54
star
10

dop853

Modern Fortran Edition of Hairer's DOP853 ODE Solver. An explicit Runge-Kutta method of order 8(5,3) for problems y'=f(x,y); with dense output of order 7
Fortran
47
star
11

odepack

Work in Progress to refactor and modernize the ODEPACK Library
Fortran
44
star
12

nlesolver-fortran

Nonlinear Equation Solver with Modern Fortran
Fortran
37
star
13

pikaia

Modern Fortran Edition of the Pikaia Genetic Algorithm
Fortran
35
star
14

PowellOpt

Optimization algorithms by M.J.D. Powell
Fortran
35
star
15

roots-fortran

A modern Fortran library for finding the roots of continuous scalar functions of a single real variable, using derivative-free methods.
Fortran
34
star
16

quadrature-fortran

1D-6D Adaptive Gaussian Quadrature with Modern Fortran
Fortran
34
star
17

ddeabm

Modern Fortran implementation of the DDEABM Adams-Bashforth algorithm
Fortran
33
star
18

fortran_function_parser

Modern Fortran function parser. An update of "fparser" by Roland Schmehl
Fortran
32
star
19

flist

Modern Fortran Linked List
Fortran
31
star
20

PCHIP

Modern Fortran Piecewise Cubic Hermite Interpolation Package
Fortran
25
star
21

nswc

NSWC Mathematics Subroutine Library
Fortran
24
star
22

daglib

Directed Acyclic Graphs With Modern Fortran
Fortran
24
star
23

fortran-search-and-sort

Searching and sorting with modern Fortran
C++
24
star
24

LSQR

Modern Fortran sparse linear systems solver
Fortran
23
star
25

stl-fortran

Fortran STL File I/O
Fortran
22
star
26

simulated-annealing

Simulated Annealing with Modern Fortran
Fortran
22
star
27

polyroots-fortran

Modern Fortran library for finding the roots of real and complex polynomial equations
Fortran
22
star
28

matlab

Fortran
20
star
29

stringsort

Modern Fortran sorting routines for strings
Fortran
18
star
30

FGIF

Create Animated GIFs with Fortran
Fortran
16
star
31

astro-fortran

Modern Fortran implementations of standard models used in fundamental astronomy
Fortran
16
star
32

carlson-elliptic-integrals

Carlson symmetric forms of elliptic integrals
Fortran
14
star
33

regridpack

Modern Fortran Edition of REGRIDPACK
Fortran
13
star
34

CMLIB

NBS Core Math Library (CMLIB) Unofficial Mirror
Fortran
13
star
35

namelist2json

Converting a Fortran namelist to JSON
Fortran
12
star
36

halo

Halo orbit solver with modern Fortran
Fortran
10
star
37

uuid-fortran

Fortran module for generating UUIDs
Fortran
9
star
38

splpak

Modernized SPLPAK library for multidimensional least-squares cubic spline fitting
Fortran
8
star
39

fortran-json-python

Interfacing Fortran and Python via JSON
Fortran
8
star
40

math77

Unofficial Mirror of the JPL MATH77 Library
Fortran
8
star
41

LOM

Low Lunar Orbit Maintenance
Fortran
7
star
42

lbfgsb

Modern Fortran Refactoring of L-BFGS-B Nonlinear Optimization Code
Fortran
7
star
43

specfun

Special functions with Modern Fortran
Fortran
7
star
44

HOMPACK90

Unofficial mirror of HOMPACK90 from http://people.cs.vt.edu/~ltw/hompack/hompack90.html
Fortran
7
star
45

geodesic-fortran

Geodesic routines for Modern Fortran
Fortran
6
star
46

argv-fortran

A better get_command_argument for Fortran
Fortran
6
star
47

fastnml

Python module for reading and writing Fortran namelists
Python
6
star
48

mersenne-twister-fortran

Mersenne Twister pseudorandom number generator for Fortran
Fortran
5
star
49

fmin

Derivative free 1D function minimizer in modern Fortran
Fortran
5
star
50

LSMR

Fortran Package Manager version of LSMR: Sparse Equations and Least Squares
Fortran
5
star
51

kronrod

Program for generating Gauss-Kronrod Coefficients
Fortran
5
star
52

INPE-atmosphere-models

Fortran code for various atmosphere modes from http://www.dem.inpe.br/~val/atmod/default.html
Fortran
5
star
53

rksuite

Unofficial mirror of RKSUITE http://www.netlib.org/ode/rksuite/
Fortran
5
star
54

dvode

Modern Fortran Edition of the DVODE ODE Solver
Fortran
4
star
55

AoC-2023

Advent of Code 2023 with Modern Fortran
Fortran
4
star
56

FMLIB

Unofficial mirror of FMLIB for Multiple Precision Computations
Fortran
4
star
57

FilterSD

Unofficial mirror of FilterSD https://github.com/coin-or/filterSD
Fortran
3
star
58

conmax

Modern Fortran CONMAX Optimization Method for general nonlinearly constrained function minimization
Fortran
3
star
59

radbelt

AE-8/AP-8 Van Allen belt model in modern Fortran
Fortran
3
star
60

1976-standard-atmosphere

1976 Standard Atmosphere in Modern Fortran
Fortran
3
star
61

AoC-2021

Advent of Code 2021 with Fortran.
Fortran
3
star
62

MPFUN2015

Unofficial Mirror of MPFUN2015 from https://www.davidhbailey.com/dhbsoftware/
Fortran
3
star
63

popen-fortran

Simple Fortran module for popen
Fortran
3
star
64

IAU_SOFA

Unofficial Mirror of the IAU SOFA Fortran Library
Fortran
2
star
65

divalib

DIVA integrator from MATH77
Fortran
2
star
66

diff

Numerical Differentiation of a User Defined Function
Fortran
2
star
67

StatLib

Unofficial mirror of StatLib http://lib.stat.cmu.edu/apstat/
Fortran
2
star
68

dfo

Unofficial mirror of DFO: https://projects.coin-or.org/Dfo
Fortran
2
star
69

mpfun2020-var1

FPM Package for MPFUN2020 (var1) https://www.davidhbailey.com/dhbsoftware/
Fortran
2
star
70

fortran-mach

Modern Fortran Machine Constants Module (r1mach, d1mach, i1mach)
Fortran
1
star
71

MPFUN2020

Unofficial Mirror of MPFUN2020 from https://www.davidhbailey.com/dhbsoftware/
Fortran
1
star
72

NOVAS

Refactoring of NOVAS: Naval Observatory Vector Astrometry Subroutines
Fortran
1
star
73

SofaMerge

A simple script to make one module from all the SOFA files
Python
1
star
74

AoC-2022

Advent of Code 2022 in Fortran
Fortran
1
star
75

ffp

Unofficial mirror of Fortran Function Parser from http://www.labfit.net/functionparser.htm
Fortran
1
star
76

NRLMSIS2.1

Unofficial Mirror of NRLMSIS2.1 https://map.nrl.navy.mil/map/pub/nrl/NRLMSIS/NRLMSIS2.1/
Fortran
1
star