julian_date Interface

public interface julian_date

calendar date to julian date

Calls

interface~~julian_date~~CallsGraph interface~julian_date time_module::julian_date proc~julian_date_intsec time_module::julian_date_intsec interface~julian_date->proc~julian_date_intsec proc~julian_date_realsec time_module::julian_date_realsec interface~julian_date->proc~julian_date_realsec proc~julian_date_intsec->proc~julian_date_realsec proc~julian_day time_module::julian_day proc~julian_date_realsec->proc~julian_day

Called by

interface~~julian_date~~CalledByGraph interface~julian_date time_module::julian_date proc~time_module_test time_module::time_module_test proc~time_module_test->interface~julian_date

Module Procedures

private pure function julian_date_realsec(y, m, d, hour, minute, second) result(julian_date)

Author
Jacob Williams
Date
1/21/2015

Returns the Julian date for the specified YEAR, MONTH, DAY, HR, MIN, SEC.

Read more…

Arguments

Type IntentOptional Attributes Name
integer, intent(in) :: y
integer, intent(in) :: m
integer, intent(in) :: d
integer, intent(in) :: hour
integer, intent(in) :: minute
real(kind=wp), intent(in) :: second

Return Value real(kind=wp)

private pure function julian_date_intsec(y, m, d, hour, minute, second) result(julian_date)

Author
Jacob Williams
Date
1/21/2015

Returns the Julian date for the specified YEAR, MONTH, DAY, HR, MIN, SEC.

Read more…

Arguments

Type IntentOptional Attributes Name
integer, intent(in) :: y
integer, intent(in) :: m
integer, intent(in) :: d
integer, intent(in) :: hour
integer, intent(in) :: minute
integer, intent(in) :: second

Return Value real(kind=wp)