Soil Water Balance (SWB2)
Loading...
Searching...
No Matches
disclaimers.F90
Go to the documentation of this file.
2
4 use logfiles, only : logs, log_all
5 implicit none
6
7contains
8
10
11 write(*,"(/,a)") ' Disclaimer'
12 write(*,"(a,/)") '============'
13 write(*,"(a)") 'This software is preliminary or provisional and is subject to revision. It is'
14 write(*,"(a)") 'being provided to meet the need for timely best science. The software has not'
15 write(*,"(a)") 'received final approval by the U.S. Geological Survey (USGS). No warranty,'
16 write(*,"(a)") 'expressed or implied, is made by the USGS or the U.S. Government as to the'
17 write(*,"(a)") 'functionality of the software and related material nor shall the fact of release'
18 write(*,"(a)") 'constitute any such warranty. The software is provided on the condition that'
19 write(*,"(a)") 'neither the USGS nor the U.S. Government shall be held liable for any damages'
20 write(*,"(a,/)") 'resulting from the authorized or unauthorized use of the software.'
21
22 end subroutine write_provisional_disclaimer
23
24!--------------------------------------------------------------------------------------------------
25
27
28 call logs%write( smessage=' Disclaimer', lecho=true)
29 call logs%write( smessage='============', lecho=true,ilinesafter=1)
30
31 call logs%write( smessage='This software is preliminary or provisional and is subject to revision. It is', lecho=true)
32 call logs%write( smessage='being provided to meet the need for timely best science. The software has not', lecho=true)
33 call logs%write( smessage='received final approval by the U.S. Geological Survey (USGS). No warranty,', lecho=true)
34 call logs%write( smessage='expressed or implied, is made by the USGS or the U.S. Government as to the', lecho=true)
35 call logs%write( smessage='functionality of the software and related material nor shall the fact of release', lecho=true)
36 call logs%write( smessage='constitute any such warranty. The software is provided on the condition that', lecho=true)
37 call logs%write( smessage='neither the USGS nor the U.S. Government shall be held liable for any damages', lecho=true)
38 call logs%write( smessage='resulting from the authorized or unauthorized use of the software.', lecho=true, ilinesafter=1)
39
40 end subroutine log_provisional_disclaimer
41
42end module disclaimers
This module contains physical constants and convenience functions aimed at performing unit conversion...
logical(c_bool), parameter, public true
subroutine log_provisional_disclaimer()
subroutine write_provisional_disclaimer()
type(logfile_t), public logs
Definition logfiles.F90:62