species_temperature_k Function

public pure function species_temperature_k(spec) result(temperature_k)

粒子種設定から有効温度 [K] を計算する。

Arguments

Type IntentOptional Attributes Name
type(particle_species_spec), intent(in) :: spec

Return Value real(kind=dp)


Called by

proc~~species_temperature_k~~CalledByGraph proc~species_temperature_k species_temperature_k proc~to_sheath_model_species to_sheath_model_species proc~to_sheath_model_species->proc~species_temperature_k proc~resolve_sheath_injection_context resolve_sheath_injection_context proc~resolve_sheath_injection_context->proc~to_sheath_model_species proc~init_particle_batch_from_config init_particle_batch_from_config proc~init_particle_batch_from_config->proc~resolve_sheath_injection_context

Source Code

  pure function species_temperature_k(spec) result(temperature_k)
    type(particle_species_spec), intent(in) :: spec
    real(dp) :: temperature_k

    temperature_k = spec%temperature_k
    if (spec%has_temperature_ev) temperature_k = spec%temperature_ev*1.160451812d4
  end function species_temperature_k