Skip to content

Namespace seasaltprocesscreator_mod

Namespace List > seasaltprocesscreator_mod

Public Functions

Type Name
subroutine, public create_seasalt_process (class(processinterface), intent(out), allocatable process, integer, intent(out) rc)
Create a new seasalt process instance.
subroutine, public get_seasalt_default_config (character(len=*), intent(out) config_data)
Get default configuration for seasalt process.
subroutine, public register_seasalt_process (type(processmanagertype), intent(inout) process_mgr, integer, intent(out) rc)
Register the seasalt process with a ProcessManager.

Public Functions Documentation

function create_seasalt_process

Create a new seasalt process instance.

subroutine, public seasaltprocesscreator_mod::create_seasalt_process (
    class( processinterface ), intent(out), allocatable process,
    integer, intent(out) rc
) 

This factory function creates and returns a new instance of the seasalt process. The process is not initialized - the caller must call the init() method with appropriate configuration.

Parameters:

  • process Allocated process instance
  • rc Return code

function get_seasalt_default_config

Get default configuration for seasalt process.

subroutine, public seasaltprocesscreator_mod::get_seasalt_default_config (
    character(len=*), intent(out) config_data
) 

This function returns a default configuration string that can be used to initialize the seasalt process with reasonable defaults.

Parameters:

  • config_data Default configuration string

function register_seasalt_process

Register the seasalt process with a ProcessManager.

subroutine, public seasaltprocesscreator_mod::register_seasalt_process (
    type( processmanagertype ), intent(inout) process_mgr,
    integer, intent(out) rc
) 

This subroutine registers the seasalt process with a ProcessManager's factory. This is the correct way to register processes for use in applications and integration tests.

Parameters:

  • process_mgr The ProcessManager to register with
  • rc Return code


The documentation for this class was generated from the following file src/process/seasalt/SeaSaltProcessCreator_Mod.F90