CalculateMetricTerms_Geometry1D Subroutine

public subroutine CalculateMetricTerms_Geometry1D(myGeom)

Arguments

TypeIntentOptionalAttributesName
class(Geometry1D), intent(inout) :: myGeom

Contents


Source Code

  subroutine CalculateMetricTerms_Geometry1D(myGeom)
    implicit none
    class(Geometry1D),intent(inout) :: myGeom

    call myGeom%x%Derivative(myGeom%dxds%interior)
    call myGeom%dxds%UpdateDevice()
    call myGeom%dxds%BoundaryInterp()

  endsubroutine CalculateMetricTerms_Geometry1D