material_strain Function

public function material_strain(me, B, I)

Type Bound

material_t

Arguments

Type IntentOptional Attributes Name
class(material_t), intent(inout) :: me
real(kind=dp), intent(in) :: B
real(kind=dp), intent(in) :: I

Return Value real(kind=dp)


Called by

proc~~material_strain~~CalledByGraph proc~material_strain material_t%material_strain proc~compute_effective_field compute_effective_field proc~compute_effective_field->proc~material_strain proc~explicit_scheme_for_fluxes_strand explicit_scheme_for_fluxes_strand proc~explicit_scheme_for_fluxes_strand->proc~material_strain proc~from_sol_to_temp_strand from_sol_to_temp_strand proc~from_sol_to_temp_strand->proc~material_strain proc~full_physics_definition_strand full_physics_definition_strand proc~full_physics_definition_strand->proc~material_strain proc~source_term_definition_strand source_term_definition_strand proc~full_physics_definition_strand->proc~source_term_definition_strand proc~solid_source_terms solid_source_terms proc~solid_source_terms->proc~material_strain proc~strands_ss_flux_port_comm strands_SS_flux_port_comm proc~strands_ss_flux_port_comm->proc~material_strain proc~main_loop main_loop proc~main_loop->proc~explicit_scheme_for_fluxes_strand proc~main_loop->proc~from_sol_to_temp_strand proc~main_loop->proc~full_physics_definition_strand proc~main_loop->proc~strands_ss_flux_port_comm proc~scenario_update scenario_update proc~main_loop->proc~scenario_update proc~main_loop->proc~source_term_definition_strand proc~scenario_update->proc~compute_effective_field proc~source_term_definition_strand->proc~solid_source_terms program~reims_p reims_p program~reims_p->proc~main_loop

Source Code

    function material_strain(me,B,I)
        class(material_t),  intent(inout) :: me
        real(dp), intent(in) :: B,I
        real(dp) :: material_strain
    
        material_strain=me%stra(me%stra_cfg,B,I)
    end function material_strain