NLSL
pidef.f90
Go to the documentation of this file.
1 c NLSL Version 1.9.0 beta 2/13/15
2 c***********************************************************************
3 c =========================
4 c module PIDEF
5 c =========================
6 c
7 c Define the constant pi and conversion factor
8 c for degrees-to-radians
9 c
10 c***********************************************************************
11 c
12  module pidef
13  implicit none
14 c
15  double precision , parameter ::
16  # pi=3.1415926535897932384d0, radian=pi/180.0d0
17 c
18  end module pidef
double precision, parameter radian
Definition: pidef.f90:15
double precision, parameter pi
Definition: pidef.f90:15
Definition: pidef.f90:12