Toggle navigation
plantFEM
Contents
Source Files
Modules
Procedures
Derived Types
Programs
Source Files
Modules
Procedures
Derived Types
Programs
SDE_
Derived Type
MIT
9 statements
Source File
SDEClass.f90
SDEClass
SDE_
Contents
Variables
process
c
sigma
SDEType
Type-Bound Procedures
init
solve
type, public :: SDE_
Contents
Variables
process
c
sigma
SDEType
Type-Bound Procedures
init
solve
Components
Type
Visibility
Attributes
Name
Initial
real(kind=real64),
public,
allocatable
::
process
(:)
real(kind=real64),
public
::
c
=
0.0d0
real(kind=real64),
public
::
sigma
=
0.0d0
integer(kind=int32),
public
::
SDEType
=
0
Type-Bound Procedures
procedure, public ::
init
=>
initSDE
public subroutine
initSDE
(obj, SDEType, c, sigma)
Arguments
Type
Intent
Optional
Attributes
Name
class(
SDE_
),
intent(inout)
::
obj
integer(kind=int32),
intent(in)
::
SDEType
real(kind=real64),
intent(in),
optional
::
c
real(kind=real64),
intent(in),
optional
::
sigma
procedure, public ::
solve
=>
solveSDE
public function
solveSDE
(obj, X0, dt, step) result(ret)
Arguments
Type
Intent
Optional
Attributes
Name
class(
SDE_
),
intent(inout)
::
obj
real(kind=real64),
intent(in)
::
X0
real(kind=real64),
intent(in)
::
dt
integer(kind=int32),
intent(in)
::
step
Return Value
real(kind=real64), allocatable, (:)