Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(DGModel2D_t), | intent(inout) | :: | this | |||
character, | intent(in) | :: | eqnChar(1:this%solution%nVar) |
subroutine SetSolutionFromChar_DGModel2D_t(this,eqnChar)
implicit none
class(DGModel2D_t),intent(inout) :: this
character(*),intent(in) :: eqnChar(1:this%solution%nVar)
! Local
integer :: iVar
do iVar = 1,this%solution%nVar
call this%solution%SetEquation(ivar,trim(eqnChar(iVar)))
enddo
call this%solution%SetInteriorFromEquation(this%geometry,this%t)
call this%solution%BoundaryInterp()
endsubroutine SetSolutionFromChar_DGModel2D_t