File indexing completed on 2018-03-02 18:42:58 UTC
view on githubraw file Latest commit add29e06 on 2018-01-31 20:35:05 UTC
24462d2fa8 Patr*0001 #include "PROFILES_OPTIONS.h"
6e4c90fea3 Patr*0002
0003 subroutine profiles_init_varia( mythid )
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021 implicit none
0022
0023
0024
0025 #include "EEPARAMS.h"
0026 #include "SIZE.h"
0027 #include "GRID.h"
0028
24462d2fa8 Patr*0029 #ifdef ALLOW_PROFILES
6328b73337 Gael*0030 # include "PROFILES_SIZE.h"
0031 # include "profiles.h"
6e4c90fea3 Patr*0032 #endif
0033
0034
0035
0036 integer mythid
0037
0038
0039
0040 integer bi,bj
0041 integer itlo,ithi
0042 integer jtlo,jthi
0043 integer num_file,num_var
0044
0045
0046
0047
0048 jtlo = mybylo(mythid)
0049 jthi = mybyhi(mythid)
0050 itlo = mybxlo(mythid)
0051 ithi = mybxhi(mythid)
0052
0053
0054 do bj = jtlo,jthi
0055 do bi = itlo,ithi
0056 do num_file=1,NFILESPROFMAX
ea4d09597a Gael*0057 do num_var=1,NVARMAX
6e4c90fea3 Patr*0058 objf_profiles(num_file,num_var,bi,bj)= 0. _d 0
0059 num_profiles(num_file,num_var,bi,bj) = 0. _d 0
fefc3c6333 Gael*0060 profiles_dummy(num_file,num_var,bi,bj)=0. _d 0
6e4c90fea3 Patr*0061 enddo
0062 enddo
6b2230d510 Ou W*0063 do num_var=1,NVARMAX
0064 objf_profiles_mean(num_var,bi,bj)= 0. _d 0
0065 num_profiles_mean(num_var,bi,bj) = 0. _d 0
0066 enddo
6e4c90fea3 Patr*0067 enddo
0068 enddo
0069
0070 _BARRIER
0071
0072 return
0073 end
0074