-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
second batch of documentation (#297)
- Loading branch information
Showing
6 changed files
with
222 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,30 @@ | ||
|
||
!> Module containing esigma and esigmatrial | ||
module const | ||
use precision_kinds, only: dp | ||
implicit none | ||
|
||
!> esigma | ||
real(dp) :: etrial | ||
|
||
!> esigmatrial | ||
real(dp) :: esigmatrial | ||
|
||
save | ||
end module const | ||
|
||
!> Module containing physical constants | ||
module constants | ||
use precision_kinds, only: dp | ||
implicit none | ||
|
||
!> Plank's constant | ||
real(dp), parameter :: hb = 0.5 | ||
|
||
!> Value of Pi | ||
real(dp), parameter :: pi = 4.0d0*datan(1.0d0) | ||
|
||
!> Value of 2*Pi | ||
real(dp), parameter :: twopi = 8.d0*datan(1.0d0) | ||
|
||
end module |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.