temperature_ev_from_species Function

public function temperature_ev_from_species(spec) result(temp_ev)

Arguments

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

Return Value real(kind=dp)


Called by

proc~~temperature_ev_from_species~~CalledByGraph proc~temperature_ev_from_species temperature_ev_from_species proc~solve_no_photo_floating_potential solve_no_photo_floating_potential proc~solve_no_photo_floating_potential->proc~temperature_ev_from_species proc~resolve_sheath_injection_context resolve_sheath_injection_context proc~resolve_sheath_injection_context->proc~solve_no_photo_floating_potential proc~init_particle_batch_from_config init_particle_batch_from_config proc~init_particle_batch_from_config->proc~resolve_sheath_injection_context

Source Code

  real(dp) function temperature_ev_from_species(spec) result(temp_ev)
    type(sheath_model_species), intent(in) :: spec

    temp_ev = spec%temperature_k*k_boltzmann/qe
  end function temperature_ev_from_species