SUEWS API Site
Documentation of SUEWS source code
Public Member Functions | List of all members
strings::writeq Interface Reference

Public Member Functions

subroutine writeq_dr (unit, namestr, value, fmt)
 
subroutine writeq_sr (unit, namestr, value, fmt)
 
subroutine writeq_di (unit, namestr, ivalue, fmt)
 
subroutine writeq_si (unit, namestr, ivalue, fmt)
 

Detailed Description

Definition at line 52 of file suews_util_stringmod.f95.

Member Function/Subroutine Documentation

◆ writeq_di()

subroutine strings::writeq::writeq_di ( integer  unit,
character(len=*)  namestr,
integer(ki8)  ivalue,
character(len=*)  fmt 
)

Definition at line 629 of file suews_util_stringmod.f95.

629 
630 ! Writes a string of the form <name> = ivalue to unit
631 
632  integer(ki8) :: ivalue
633  integer :: unit
634  character(len=*) :: namestr, fmt
635  character(len=32) :: tempstr
636  call writenum(ivalue, tempstr, fmt)
637  call trimzero(tempstr)
638  write (unit, *) trim(namestr)//' = '//trim(tempstr)
639 

◆ writeq_dr()

subroutine strings::writeq::writeq_dr ( integer  unit,
character(len=*)  namestr,
real(kr8)  value,
character(len=*)  fmt 
)

Definition at line 595 of file suews_util_stringmod.f95.

595 
596 ! Writes a string of the form <name> = value to unit
597 
598  real(kr8) :: value
599  integer :: unit
600  character(len=*) :: namestr, fmt
601  character(len=32) :: tempstr
602 
603  call writenum(value, tempstr, fmt)
604  call trimzero(tempstr)
605  write (unit, *) trim(namestr)//' = '//trim(tempstr)
606 

◆ writeq_si()

subroutine strings::writeq::writeq_si ( integer  unit,
character(len=*)  namestr,
integer(ki4)  ivalue,
character(len=*)  fmt 
)

Definition at line 645 of file suews_util_stringmod.f95.

645 
646 ! Writes a string of the form <name> = ivalue to unit
647 
648  integer(ki4) :: ivalue
649  integer :: unit
650  character(len=*) :: namestr, fmt
651  character(len=32) :: tempstr
652  call writenum(ivalue, tempstr, fmt)
653  call trimzero(tempstr)
654  write (unit, *) trim(namestr)//' = '//trim(tempstr)
655 

◆ writeq_sr()

subroutine strings::writeq::writeq_sr ( integer  unit,
character(len=*)  namestr,
real(kr4)  value,
character(len=*)  fmt 
)

Definition at line 612 of file suews_util_stringmod.f95.

612 
613 ! Writes a string of the form <name> = value to unit
614 
615  real(kr4) :: value
616  integer :: unit
617  character(len=*) :: namestr, fmt
618  character(len=32) :: tempstr
619 
620  call writenum(value, tempstr, fmt)
621  call trimzero(tempstr)
622  write (unit, *) trim(namestr)//' = '//trim(tempstr)
623 

The documentation for this interface was generated from the following file: