Namespace dustprocesscreator_mod¶
Namespace List > dustprocesscreator_mod
Public Functions¶
| Type | Name |
|---|---|
| subroutine, public | create_dust_process (class(processinterface), intent(out), allocatable process, integer, intent(out) rc) Create a new dust process instance. |
| subroutine, public | get_dust_default_config (character(len=*), intent(out) config_data) Get default configuration for dust process. |
| subroutine, public | register_dust_process (type(processmanagertype), intent(inout) process_mgr, integer, intent(out) rc) Register the dust process with a ProcessManager. |
Public Functions Documentation¶
function create_dust_process¶
Create a new dust process instance.
subroutine, public dustprocesscreator_mod::create_dust_process (
class( processinterface ), intent(out), allocatable process,
integer, intent(out) rc
)
This factory function creates and returns a new instance of the dust process. The process is not initialized - the caller must call the init() method with appropriate configuration.
Parameters:
processAllocated process instancercReturn code
function get_dust_default_config¶
Get default configuration for dust process.
subroutine, public dustprocesscreator_mod::get_dust_default_config (
character(len=*), intent(out) config_data
)
This function returns a default configuration string that can be used to initialize the dust process with reasonable defaults.
Parameters:
config_dataDefault configuration string
function register_dust_process¶
Register the dust process with a ProcessManager.
subroutine, public dustprocesscreator_mod::register_dust_process (
type( processmanagertype ), intent(inout) process_mgr,
integer, intent(out) rc
)
This subroutine registers the dust process with a ProcessManager's factory. This is the correct way to register processes for use in applications and integration tests.
Parameters:
process_mgrThe ProcessManager to register withrcReturn code
The documentation for this class was generated from the following file src/process/dust/DustProcessCreator_Mod.F90