#include "implicit_f.inc"
Go to the source code of this file.
|
| subroutine | func_maxy (idn, fac, npc, pld, maxy) |
◆ func_maxy()
| subroutine func_maxy |
( |
integer, intent(in) | idn, |
|
|
| fac, |
|
|
integer, dimension(*), intent(in) | npc, |
|
|
intent(in) | pld, |
|
|
intent(out) | maxy ) |
Definition at line 31 of file func_maxy.F.
32
33
34
37
38
39
40#include "implicit_f.inc"
41
42
43
44 INTEGER IDN,NPC(*)
46
47 INTENT(IN) :: npc,pld,idn
48 INTENT(OUT) :: maxy
49
50
51
52 INTEGER I,J,K,ID,NP1,NP2,K1,PN1,PN2
54
55
56
57 pn1 = npc(idn)
58 pn2 = npc(idn+1)
59 maxy = zero
60 DO j = pn1+1,pn2-1,2
61 yy = pld(j)
63 ENDDO
64 maxy = fac* maxy
65
66 RETURN