#include "implicit_f.inc"
Go to the source code of this file.
|
| subroutine | viscsinh (nel, tbnorm, a1, b0, expn, dgamma) |
◆ viscsinh()
| subroutine viscsinh |
( |
integer, intent(in) | nel, |
|
|
intent(in) | tbnorm, |
|
|
intent(in) | a1, |
|
|
intent(in) | b0, |
|
|
intent(in) | expn, |
|
|
intent(out) | dgamma ) |
Definition at line 31 of file viscsinh.F.
32
33
34
35#include "implicit_f.inc"
36
37
38
39 INTEGER, INTENT(IN) :: NEL
40C
41 my_real,
INTENT(IN) :: a1, expn ,b0
42
43 my_real,
DIMENSION(NEL),
INTENT(IN) :: tbnorm
44
45
46
47 my_real,
DIMENSION(NEL),
INTENT(OUT) :: dgamma
48
49
50
51
52
53
54 INTEGER I
55
57 . temp, ip1(nel)
58
59
60
61 DO i=1,nel
62
63 temp =( sinh(b0 * tbnorm(i) ) )**expn
64 dgamma(i) = a1* temp
65 ENDDO
66 RETURN