print_help_page Subroutine

private subroutine print_help_page()

Prints a help message to the terminal console

Arguments

None

Called by

proc~~print_help_page~~CalledByGraph proc~print_help_page print_help_page proc~check_command_line check_command_line proc~check_command_line->proc~print_help_page program~uemep uEMEP program~uemep->proc~check_command_line

Source Code

    subroutine print_help_page()
        !! Prints a help message to the terminal console
        write(*,"(a)") " uEMEP: Air quality dispersion model for high resolution downscaling of EMEP MSC-W"
        write(*,"(a)") " "
        write(*,"(a)") " To run the uEMEP model:"
        write(*,"(a)") " "
        write(*,"(a)") " ./uemep config_file_1 config_file_2 ... config_file_10 date_string"
        write(*,"(a)") " "
        write(*,"(a)") " Where config_file_n is the name of the configuration file(s) which specify"
        write(*,"(a)") " the model calculations and with a maximum number of 10 config files, and"
        write(*,"(a)") " the date_string, required, takes the form 'yyyymmdd'."
        write(*,"(a)") " "
        write(*,"(a)") " Please read the manual on how to configure uEMEP at: <URL>."
        write(*,"(a)") " "
        write(*,"(a)") " --help                     displays this help message and exits"
        write(*,"(a)") " --version                  outputs the uEMEP version and exits"
    end subroutine print_help_page