#include "implicit_f.inc"
#include "com04_c.inc"
#include "param_c.inc"
#include "vect01_c.inc"
Go to the source code of this file.
◆ m115_perturb()
| subroutine m115_perturb |
( |
| pm, |
|
|
integer, dimension(*) | mat, |
|
|
| rho, |
|
|
integer, dimension(nperturb) | perturb, |
|
|
| rnoise ) |
Definition at line 29 of file m115_perturb.F.
30
31
32
33#include "implicit_f.inc"
34
35
36
37#include "com04_c.inc"
38#include "param_c.inc"
39#include "vect01_c.inc"
40
41
42
43 INTEGER PERTURB(NPERTURB),MAT(*)
45 . rho(2*llt),rnoise(nperturb
46
47
48
49 INTEGER I,J
51 . rho0
52
53
54 DO i = lft,llt
55
56 rho0 = pm(1,mat(i))
57 rho(i) = rho0
58
59 IF (nperturb /= 0) THEN
60 DO j=1,nperturb
61 IF (perturb(j) == 3 .AND. rnoise(j,numelc+numeltg+i+nft) /= zero) THEN
62 rho(i) = rho(i) * rnoise(j,numelc+numeltg+i
63 ENDIF
64 ENDDO
65 ENDIF
66
67 rho(i+llt) = rho(i)
68 ENDDO
69