/[lmdze]/trunk/Sources/misc/getfieldindex.f
ViewVC logotype

Annotation of /trunk/Sources/misc/getfieldindex.f

Parent Directory Parent Directory | Revision Log Revision Log


Revision 145 - (hide annotations)
Tue Jun 16 15:23:29 2015 UTC (9 years ago) by guez
File size: 704 byte(s)
Renamed bibio to misc.

In procedure fxhyp, use the fact that xf is an odd function of xtild.

In procedure invert_zoom_x, replace linear search in xf by
bisection. Also, use result from previous loop iteration as initial
guess. Variable "it" cannot be equal to 2 * nmax after search.

Unused arguments: hm of cv3_feed; ph, qnk, tv,tvp of cv3_mixing; ppsol
of lw; rconst, temp of vdif_kcay; rconst, plev, temp, ustar, l_mix of
yamada.

1 guez 108 module getfieldindex_m
2    
3     implicit none
4    
5     contains
6    
7     integer function GetFieldIndex(name)
8    
9 guez 110 USE createnewfield_m, ONLY: fieldname, nbfield
10 guez 108
11     character(len=*), intent(in):: name
12    
13     ! Local:
14 guez 110 character(len(name)) TrueName
15 guez 108
16     !--------------------------------------------------
17    
18 guez 110 TrueName = ADJUSTL(name)
19 guez 108
20 guez 110 if (NbField >= 1) then
21     GetFieldIndex = 1
22 guez 108
23 guez 110 do while (TrueName /= FieldName(getfieldindex) &
24     .and. GetFieldIndex < NbField)
25     GetFieldIndex = GetFieldIndex + 1
26     end do
27 guez 108
28 guez 110 if (TrueName /= FieldName(getfieldindex)) GetFieldIndex = - 1
29     else
30     GetFieldIndex = - 1
31     end if
32    
33 guez 108 end function GetFieldIndex
34    
35     end module getfieldindex_m

  ViewVC Help
Powered by ViewVC 1.1.21