Definition at line 13 of file MathUtil.f90.
◆ mod_offset_dbl()
pure real(dp) function mathutilmodule::mod_offset::mod_offset_dbl |
( |
real(dp), intent(in) |
a, |
|
|
real(dp), intent(in) |
n, |
|
|
real(dp), intent(in), optional |
d |
|
) |
| |
|
private |
- Parameters
-
[in] | a | dividend |
[in] | n | divisor |
[in] | d | offset |
Definition at line 107 of file MathUtil.f90.
109 real(DP),
intent(in) :: a
110 real(DP),
intent(in) :: n
111 real(DP),
intent(in),
optional :: d
121 mo = a - n * floor((a - ld) / n)
◆ mod_offset_int()
pure integer(i4b) function mathutilmodule::mod_offset::mod_offset_int |
( |
integer(i4b), intent(in) |
a, |
|
|
integer(i4b), intent(in) |
n, |
|
|
integer(i4b), intent(in), optional |
d |
|
) |
| |
|
private |
- Parameters
-
[in] | a | dividend |
[in] | n | divisor |
[in] | d | offset |
Definition at line 89 of file MathUtil.f90.
91 integer(I4B),
intent(in) :: a
92 integer(I4B),
intent(in) :: n
93 integer(I4B),
intent(in),
optional :: d
103 mo = a - n * floor(real(a - ld) / n)
The documentation for this interface was generated from the following file:
- /home/runner/work/modflow6/modflow6/src/Utilities/MathUtil.f90