Constructor for a iau_moon_rotating_frame
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(celestial_body), | intent(in) | :: | b |
the central body |
||
real(kind=wp), | intent(in) | :: | et |
epoch at which the frame is defined [sec] |
pure function iau_moon_rotating_frame_constructor(b,et) result(f) implicit none type(iau_earth_rotating_frame) :: f type(celestial_body),intent(in) :: b !! the central body real(wp),intent(in) :: et !! epoch at which the !! frame is defined [sec] f%primary_body = b f%et = et end function iau_moon_rotating_frame_constructor