Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Where possible, edges connecting nodes are
given different colours to make them easier to distinguish in
large graphs.
Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Where possible, edges connecting nodes are
given different colours to make them easier to distinguish in
large graphs.
Source Code
type(sheath_model_species)function to_sheath_model_species(spec_cfg)result(spec)type(particle_species_spec),intent(in)::spec_cfgspec%q_particle=spec_cfg%q_particlespec%m_particle=spec_cfg%m_particleif(spec_cfg%has_number_density_m3.or.spec_cfg%has_number_density_cm3)thenspec%number_density_m3=species_number_density_m3(spec_cfg)end ifspec%temperature_k=species_temperature_k(spec_cfg)spec%drift_velocity=spec_cfg%drift_velocityend function to_sheath_model_species