Changeset 480 for palm/trunk
- Timestamp:
- Feb 5, 2010 1:14:39 AM (15 years ago)
- Location:
- palm/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/CURRENT_MODIFICATIONS
r475 r480 1 1 New: 2 2 --- 3 compare_palm_logs is additionally compiled with mbuild -u (Makefile in trunk/UTIL) 4 3 5 make options (mopts) to be set by configuration file implemented (mrun, mbuild) 4 6 -
palm/trunk/UTIL/Makefile
r27 r480 3 3 # Actual revisions: 4 4 # ----------------- 5 # Initial revision5 # compare_palm_logs added 6 6 # 7 7 # 8 8 # Former revisions: 9 9 # ----------------- 10 # $Id $ 10 # $Id$ 11 # 12 # Initial revision somewhere in 2003/04 11 13 # 12 14 # Description: … … 16 18 17 19 PROG1 = ../SCRIPTS/combine_plot_fields.x 18 PROG2 = ../SCRIPTS/interpret_config.x 20 PROG2 = ../SCRIPTS/compare_palm_logs.x 21 PROG3 = ../SCRIPTS/interpret_config.x 19 22 20 23 OBJS1 = combine_plot_fields.o 21 OBJS2 = interpret_config.o 24 OBJS2 = compare_palm_logs.o 25 OBJS3 = interpret_config.o 22 26 23 27 CC = cc … … 41 45 $(F90_SER) -o $(PROG2) $(OBJS2) $(LDFLAGS) 42 46 47 $(PROG3): $(OBJS3) 48 $(F90_SER) -o $(PROG3) $(OBJS3) $(LDFLAGS) 49 43 50 .f90.o: 44 51 $(F90_SER) $(F90FLAGS) $(COPT) -c $< -
palm/trunk/UTIL/compare_palm_logs.f90
r1 r480 4 4 ! Actual revisions: 5 5 ! ----------------- 6 ! 6 ! name of data-directories are read from input 7 7 ! 8 8 ! Former revisions: … … 46 46 REAL, DIMENSION(:,:,:), ALLOCATABLE :: array_1, array_2 47 47 48 directory(1) = 'const_log/' 49 directory(2) = 'const_log.1/' 48 49 ! 50 !-- Read the two data-directories to be compared 51 PRINT*, '*** please enter name of first data-directory:' 52 READ ( *, * ) directory(1) 53 directory(1) = TRIM( directory(1) ) // '/' 54 55 PRINT*, '*** please enter name of second data-directory:' 56 READ ( *, * ) directory(2) 57 directory(2) = TRIM( directory(2) ) // '/' 50 58 51 59 !
Note: See TracChangeset
for help on using the changeset viewer.