Initialize an empty boundary condition
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(tem_BC_prop_type), | intent(out) | :: | me |
Boundary condition construct to load the data into |
subroutine tem_empty_BC_prop( me ) ! --------------------------------------------------------------------------- !> Boundary condition construct to load the data into type(tem_BC_prop_type), intent(out) :: me ! --------------------------------------------------------------------------- me%nSides = 0 me%nBCtypes = 0 allocate(me%BC_label(0)) allocate(me%boundary_ID(0,0)) allocate(me%hasQVal(0)) allocate(me%qVal(0,0)) write(logUnit(5), *) 'Cleaned boundary property type.' end subroutine tem_empty_BC_prop