33 lines
706 B
HTML
33 lines
706 B
HTML
|
|
c===============================================================================
|
|
c MAP_DEF_SP_2.INC
|
|
c===============================================================================
|
|
|
|
real Beschl_Faktor
|
|
COMMON /Beschl_Faktor_SP/ Beschl_Faktor
|
|
|
|
character*40 MappenName
|
|
real dl_max ! naeherungsweise Obergrenze fuer die einzelnen
|
|
! Schrittlaengen:
|
|
COMMON /integration_SP/ MappenName,dl_max
|
|
|
|
|
|
c the grid characteristics:
|
|
|
|
real Dx,Dy
|
|
integer imax,jmax
|
|
real xmin,xmax,ymax
|
|
|
|
COMMON /integration_SP_2/ xmin,xmax,ymax,Dx,Dy,imax,jmax
|
|
|
|
|
|
c the map:
|
|
|
|
integer maxmem
|
|
parameter (maxmem = 8420)
|
|
real map(0:maxmem)
|
|
|
|
COMMON /integration_SP_2/ map
|
|
|
|
|