Performs assignment for Eulerian_obj.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(eulerian_obj_base), | intent(inout) | :: | this |
An Eulerian object |
||
| real(kind=wp), | intent(in) | :: | in |
Object to assign |
impure subroutine eulerian_obj_AssignReal0D(this,in) !> Performs assignment for Eulerian_obj. implicit none class(eulerian_obj_base), intent(inout) :: this !! An Eulerian object real(wp), intent(in) :: in !! Object to assign select type (this) type is (eulerian_obj_r) this%cell = in class default call this%parallel%Stop("Error assigning Eulerian object") end select return end subroutine eulerian_obj_AssignReal0D