!! Copyright (C) Stichting Deltares, 2012-2017. !! !! This program is free software: you can redistribute it and/or modify !! it under the terms of the GNU General Public License version 3, !! as published by the Free Software Foundation. !! !! This program is distributed in the hope that it will be useful, !! but WITHOUT ANY WARRANTY; without even the implied warranty of !! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the !! GNU General Public License for more details. !! !! You should have received a copy of the GNU General Public License !! along with this program. If not, see . !! !! contact: delft3d.support@deltares.nl !! Stichting Deltares !! P.O. Box 177 !! 2600 MH Delft, The Netherlands !! !! All indications and logos of, and references to registered trademarks !! of Stichting Deltares remain the property of Stichting Deltares. All !! rights reserved. subroutine calwav ( pmsa , fl , ipoint , increm , noseg , & noflux , iexpnt , iknmrk , noq1 , noq2 , & noq3 , noq4 ) !>\file !> Wave characteristics ! ! Description of the module : ! ! General water quality module for DELWAQ: ! CALCULATE WAVE CHARACTERISTICS FROM EMIPRICAL FORMULAES ! MODEL IS VERTICALLY AVERAGED. ! ! AVERAGED MODELS ! ! Name T L I/O Description Units ! ---- --- - - ------------------- ---- ! DEPTH R 1 I Water depth [m] ! DS R 1 L Standaard deptch [-] ! FETCH R 1 I Fetch [m] ! FS R 1 L Standaard fetch [-] ! G R 1 I Acceleration of gravity [m/s2] ! RHOW R 1 I Density of water [kg/m3] ! VWIND R 1 I Wind velocity at 10 m [m/s] ! Logical Units : - ! Modules called : - ! Name Type Library ! ------ ----- ------------ IMPLICIT REAL (A-H,J-Z) REAL PMSA ( * ) , FL (*) INTEGER IPOINT( * ) , INCREM(*) , NOSEG , NOFLUX, + IEXPNT(4,*) , IKNMRK(*) , NOQ1, NOQ2, NOQ3, NOQ4 ! ! Local declarations, constants in source ! PARAMETER ( G = 9.8 , + RHOW = 1000.0 , + PI = 3.14159265 ) REAL INIDEP ! IP1 = IPOINT( 1) IP2 = IPOINT( 2) IP3 = IPOINT( 3) IP4 = IPOINT( 4) IP5 = IPOINT( 5) IP6 = IPOINT( 6) IP7 = IPOINT( 7) ! IFLUX = 0 DO 9000 ISEG = 1 , NOSEG !! CALL DHKMRK(1,IKNMRK(ISEG),IKMRK1) !! IF (IKMRK1.EQ.1) THEN IF (BTEST(IKNMRK(ISEG),0)) THEN CALL DHKMRK(2,IKNMRK(ISEG),IKMRK2) ! IF (IKMRK2.EQ.0) THEN IF (IKMRK2.EQ.0 .OR. IKMRK2.EQ.3) THEN ! VWIND = PMSA(IP1 ) FETCH = PMSA(IP2 ) DEPTH = PMSA(IP3 ) INIDEP = PMSA(IP4 ) IF (FETCH .LT. 1E-20 ) CALL ERRSYS ('FETCH in CALWAVE zero', 1) ! IF (VWIND .LT. 1E-20 ) CALL ERRSYS ('VWIND in CALTAU zero', 1 ) ! Initialisation H = 0.0 RL = 0.0 T = 0.0 ! Check if user wants to use value of inidepth (pos values only) IF (INIDEP .LT. 0.0) INIDEP = DEPTH ! Shear stress by wind IF (VWIND .LT. 0.0001) GOTO 150 ! dimensieloze strijklengte FS = G * FETCH / VWIND**2 ! write(*,*) 'FS:', FS ! dimensieloze diepte DS = G * INIDEP / VWIND**2 ! write(*,*) 'DS:', DS ! bepaal golfhoogte H A1 = 0.710 *( DS**0.763 ) A2 = 0.855 *( DS**0.365 ) A3 = 0.0150*( FS**0.450 ) / TANH(A1) A4 = 0.0345*( FS**0.370 ) / TANH(A2) HS = 0.240 * TANH( A1) * TANH( A3) ! write(*,*) 'HS:', HS TS = 2.0*PI* TANH( A2) * TANH( A4) ! write(*,*) 'TS:', TS H = HS * ( VWIND * VWIND) / G ! write(*,*) 'H:', H ! bepaal golfperiode T T = TS * VWIND /G ! write(*,*) 'T:', T ! bepaling golflengte (iteratief hier niet opgenomen) RL0 = G * T * T / ( 2.0 * PI) ! write(*,*) 'L0:', RL0 A5 = 2.0 * PI * INIDEP / RL0 ! afscherming voor te groot argument functie tanh ! voor diepe systemen tov golflengte ! A5 groot, tanh=1, rl=rl0, a5=a6,sinh(>9)->0,ubg->fwg->0 if (A5 .gt. 9.) then RL = RL0 else ! let op sommige documentatie stelt: RL = RL0*SQRT (TANH (A5)) RL = RL0 * TANH(A5) endif ! write(*,*) 'L:', RL 150 CONTINUE ! PMSA (IP5) = H PMSA (IP6) = RL PMSA (IP7) = T ! ENDIF ENDIF ! IFLUX = IFLUX + NOFLUX IP1 = IP1 + INCREM ( 1 ) IP2 = IP2 + INCREM ( 2 ) IP3 = IP3 + INCREM ( 3 ) IP4 = IP4 + INCREM ( 4 ) IP5 = IP5 + INCREM ( 5 ) IP6 = IP6 + INCREM ( 6 ) IP7 = IP7 + INCREM ( 7 ) ! 9000 CONTINUE ! RETURN END