mirror of
https://git.gfz-potsdam.de/naaice/iphreeqc.git
synced 2025-12-16 16:44:49 +01:00
after Valgrind fixes
git-svn-id: svn://136.177.114.72/svn_GW/phreeqc3/trunk@8848 1feff8c3-07ed-0310-ac33-dd36852eb9cd
This commit is contained in:
parent
9caa25da62
commit
d5ef6baea5
68
Makefile.old
68
Makefile.old
@ -10,6 +10,9 @@ PHREEQC=../src/Class_release_64/phreeqc
|
|||||||
#PHREEQC=../../optimize_model/src/Class_release_64/phreeqc
|
#PHREEQC=../../optimize_model/src/Class_release_64/phreeqc
|
||||||
#PHREEQC=../src/Class_debug_64/phreeqcpp
|
#PHREEQC=../src/Class_debug_64/phreeqcpp
|
||||||
|
|
||||||
|
#VALGRIND=valgrind --leak-check=full
|
||||||
|
VALGRIND=
|
||||||
|
|
||||||
ifeq ($(CFG), CYGWIN)
|
ifeq ($(CFG), CYGWIN)
|
||||||
PHREEQC=/cygdrive/c/Programs/phreeqc3-trunk/Class_release/phreeqcpp.exe
|
PHREEQC=/cygdrive/c/Programs/phreeqc3-trunk/Class_release/phreeqcpp.exe
|
||||||
#PHREEQC=/cygdrive/c/Programs/phreeqc3-trunk/Class_debug/phreeqcpp.exe
|
#PHREEQC=/cygdrive/c/Programs/phreeqc3-trunk/Class_debug/phreeqcpp.exe
|
||||||
@ -21,100 +24,101 @@ all: ex1.out ex2.out ex2b.out ex3.out ex4.out ex5.out ex6.out ex7.out ex8.out ex
|
|||||||
ex19.out ex19b.out ex20a.out ex20b.out ex21.out ex22.out
|
ex19.out ex19b.out ex20a.out ex20b.out ex21.out ex22.out
|
||||||
|
|
||||||
ex1.out: $(INPUT)/ex1 $(PHREEQC) $(PHREEQCDAT)
|
ex1.out: $(INPUT)/ex1 $(PHREEQC) $(PHREEQCDAT)
|
||||||
$(PHREEQC) $(INPUT)/ex1 ex1.out $(PHREEQCDAT) ex1.log
|
$(VALGRIND) $(PHREEQC) $(INPUT)/ex1 ex1.out $(PHREEQCDAT) ex1.log
|
||||||
|
|
||||||
ex2.out: $(INPUT)/ex2 $(PHREEQC) $(PHREEQCDAT)
|
ex2.out: $(INPUT)/ex2 $(PHREEQC) $(PHREEQCDAT)
|
||||||
$(PHREEQC) $(INPUT)/ex2 ex2.out $(PHREEQCDAT) ex2.log
|
$(VALGRIND) $(PHREEQC) $(INPUT)/ex2 ex2.out $(PHREEQCDAT) ex2.log
|
||||||
|
|
||||||
ex2b.out: $(INPUT)/ex2b $(PHREEQC) $(PHREEQCDAT)
|
ex2b.out: $(INPUT)/ex2b $(PHREEQC) $(PHREEQCDAT)
|
||||||
$(PHREEQC) $(INPUT)/ex2b ex2b.out $(PHREEQCDAT) ex2b.log
|
$(VALGRIND) $(PHREEQC) $(INPUT)/ex2b ex2b.out $(PHREEQCDAT) ex2b.log
|
||||||
|
|
||||||
ex3.out: $(INPUT)/ex3 $(PHREEQC) $(PHREEQCDAT)
|
ex3.out: $(INPUT)/ex3 $(PHREEQC) $(PHREEQCDAT)
|
||||||
$(PHREEQC) $(INPUT)/ex3 ex3.out $(PHREEQCDAT) ex3.log
|
$(VALGRIND) $(PHREEQC) $(INPUT)/ex3 ex3.out $(PHREEQCDAT) ex3.log
|
||||||
|
|
||||||
ex4.out: $(INPUT)/ex4 $(PHREEQC) $(PHREEQCDAT)
|
ex4.out: $(INPUT)/ex4 $(PHREEQC) $(PHREEQCDAT)
|
||||||
$(PHREEQC) $(INPUT)/ex4 ex4.out $(PHREEQCDAT) ex4.log
|
$(VALGRIND) $(PHREEQC) $(INPUT)/ex4 ex4.out $(PHREEQCDAT) ex4.log
|
||||||
|
|
||||||
ex5.out: $(INPUT)/ex5 $(PHREEQC) $(PHREEQCDAT)
|
ex5.out: $(INPUT)/ex5 $(PHREEQC) $(PHREEQCDAT)
|
||||||
$(PHREEQC) $(INPUT)/ex5 ex5.out $(PHREEQCDAT) ex5.log
|
$(VALGRIND) $(PHREEQC) $(INPUT)/ex5 ex5.out $(PHREEQCDAT) ex5.log
|
||||||
|
|
||||||
ex6.out: $(INPUT)/ex6 $(PHREEQC) $(PHREEQCDAT)
|
ex6.out: $(INPUT)/ex6 $(PHREEQC) $(PHREEQCDAT)
|
||||||
$(PHREEQC) $(INPUT)/ex6 ex6.out $(PHREEQCDAT) ex6.log
|
$(VALGRIND) $(PHREEQC) $(INPUT)/ex6 ex6.out $(PHREEQCDAT) ex6.log
|
||||||
|
|
||||||
ex7.out: $(INPUT)/ex7 $(PHREEQC) $(PHREEQCDAT)
|
ex7.out: $(INPUT)/ex7 $(PHREEQC) $(PHREEQCDAT)
|
||||||
$(PHREEQC) $(INPUT)/ex7 ex7.out $(PHREEQCDAT) ex7.log
|
$(VALGRIND) $(PHREEQC) $(INPUT)/ex7 ex7.out $(PHREEQCDAT) ex7.log
|
||||||
|
|
||||||
ex8.out: $(INPUT)/ex8 $(PHREEQC) $(PHREEQCDAT)
|
ex8.out: $(INPUT)/ex8 $(PHREEQC) $(PHREEQCDAT)
|
||||||
$(PHREEQC) $(INPUT)/ex8 ex8.out $(PHREEQCDAT) ex8.log
|
$(VALGRIND) $(PHREEQC) $(INPUT)/ex8 ex8.out $(PHREEQCDAT) ex8.log
|
||||||
|
|
||||||
ex9.out: $(INPUT)/ex9 $(PHREEQC) $(PHREEQCDAT)
|
ex9.out: $(INPUT)/ex9 $(PHREEQC) $(PHREEQCDAT)
|
||||||
$(PHREEQC) $(INPUT)/ex9 ex9.out $(PHREEQCDAT) ex9.log
|
$(VALGRIND) $(PHREEQC) $(INPUT)/ex9 ex9.out $(PHREEQCDAT) ex9.log
|
||||||
|
|
||||||
ex10.out: $(INPUT)/ex10 $(PHREEQC) $(PHREEQCDAT)
|
ex10.out: $(INPUT)/ex10 $(PHREEQC) $(PHREEQCDAT)
|
||||||
$(PHREEQC) $(INPUT)/ex10 ex10.out $(PHREEQCDAT) ex10.log
|
$(VALGRIND) $(PHREEQC) $(INPUT)/ex10 ex10.out $(PHREEQCDAT) ex10.log
|
||||||
|
|
||||||
ex11.out: $(INPUT)/ex11 $(PHREEQC) $(PHREEQCDAT)
|
ex11.out: $(INPUT)/ex11 $(PHREEQC) $(PHREEQCDAT)
|
||||||
$(PHREEQC) $(INPUT)/ex11 ex11.out $(PHREEQCDAT) ex11.log
|
$(VALGRIND) $(PHREEQC) $(INPUT)/ex11 ex11.out $(PHREEQCDAT) ex11.log
|
||||||
|
|
||||||
ex12.out: $(INPUT)/ex12 $(PHREEQC) $(PHREEQCDAT)
|
ex12.out: $(INPUT)/ex12 $(PHREEQC) $(PHREEQCDAT)
|
||||||
$(PHREEQC) $(INPUT)/ex12 ex12.out $(PHREEQCDAT) ex12.log
|
$(VALGRIND) $(PHREEQC) $(INPUT)/ex12 ex12.out $(PHREEQCDAT) ex12.log
|
||||||
|
|
||||||
ex12a.out: $(INPUT)/ex12a $(PHREEQC) $(PHREEQCDAT)
|
ex12a.out: $(INPUT)/ex12a $(PHREEQC) $(PHREEQCDAT)
|
||||||
$(PHREEQC) $(INPUT)/ex12a ex12a.out $(PHREEQCDAT) ex12a.log
|
$(VALGRIND) $(PHREEQC) $(INPUT)/ex12a ex12a.out $(PHREEQCDAT) ex12a.log
|
||||||
|
|
||||||
ex13a.out: $(INPUT)/ex13a $(PHREEQC) $(PHREEQCDAT)
|
ex13a.out: $(INPUT)/ex13a $(PHREEQC) $(PHREEQCDAT)
|
||||||
$(PHREEQC) $(INPUT)/ex13a ex13a.out $(PHREEQCDAT) ex13a.log
|
$(VALGRIND) $(PHREEQC) $(INPUT)/ex13a ex13a.out $(PHREEQCDAT) ex13a.log
|
||||||
|
|
||||||
ex13b.out: $(INPUT)/ex13b $(PHREEQC) $(PHREEQCDAT)
|
ex13b.out: $(INPUT)/ex13b $(PHREEQC) $(PHREEQCDAT)
|
||||||
$(PHREEQC) $(INPUT)/ex13b ex13b.out $(PHREEQCDAT) ex13b.log
|
$(VALGRIND) $(PHREEQC) $(INPUT)/ex13b ex13b.out $(PHREEQCDAT) ex13b.log
|
||||||
|
|
||||||
ex13c.out: $(INPUT)/ex13c $(PHREEQC) $(PHREEQCDAT)
|
ex13c.out: $(INPUT)/ex13c $(PHREEQC) $(PHREEQCDAT)
|
||||||
$(PHREEQC) $(INPUT)/ex13c ex13c.out $(PHREEQCDAT) ex13c.log
|
$(VALGRIND) $(PHREEQC) $(INPUT)/ex13c ex13c.out $(PHREEQCDAT) ex13c.log
|
||||||
|
|
||||||
ex13ac.out: $(INPUT)/ex13ac $(PHREEQC) $(PHREEQCDAT)
|
ex13ac.out: $(INPUT)/ex13ac $(PHREEQC) $(PHREEQCDAT)
|
||||||
$(PHREEQC) $(INPUT)/ex13ac ex13ac.out $(PHREEQCDAT) ex13ac.log
|
$(VALGRIND) $(PHREEQC) $(INPUT)/ex13ac ex13ac.out $(PHREEQCDAT) ex13ac.log
|
||||||
|
|
||||||
ex14.out: $(INPUT)/ex14 $(PHREEQC) $(WATEQ4FDAT)
|
ex14.out: $(INPUT)/ex14 $(PHREEQC) $(WATEQ4FDAT)
|
||||||
$(PHREEQC) $(INPUT)/ex14 ex14.out $(PHREEQCDAT) ex14.log
|
$(VALGRIND) $(PHREEQC) $(INPUT)/ex14 ex14.out $(PHREEQCDAT) ex14.log
|
||||||
|
|
||||||
ex15.out: $(INPUT)/ex15 $(PHREEQC) $(INPUT)/ex15.dat
|
ex15.out: $(INPUT)/ex15 $(PHREEQC) $(INPUT)/ex15.dat
|
||||||
$(PHREEQC) $(INPUT)/ex15 ex15.out $(INPUT)/ex15.dat ex15.log
|
$(VALGRIND) $(PHREEQC) $(INPUT)/ex15 ex15.out $(INPUT)/ex15.dat ex15.log
|
||||||
|
|
||||||
ex15a.out: $(INPUT)/ex15 $(PHREEQC) $(INPUT)/ex15.dat
|
ex15a.out: $(INPUT)/ex15 $(PHREEQC) $(INPUT)/ex15.dat
|
||||||
$(PHREEQC) $(INPUT)/ex15a ex15a.out $(INPUT)/ex15.dat ex15a.log
|
$(VALGRIND) $(PHREEQC) $(INPUT)/ex15a ex15a.out $(INPUT)/ex15.dat ex15a.log
|
||||||
|
|
||||||
ex15b.out: $(INPUT)/ex15b $(PHREEQC) $(INPUT)/ex15.dat
|
ex15b.out: $(INPUT)/ex15b $(PHREEQC) $(INPUT)/ex15.dat
|
||||||
$(PHREEQC) $(INPUT)/ex15b ex15b.out $(INPUT)/ex15.dat ex15b.log
|
$(VALGRIND) $(PHREEQC) $(INPUT)/ex15b ex15b.out $(INPUT)/ex15.dat ex15b.log
|
||||||
|
|
||||||
ex16.out: $(INPUT)/ex16 $(PHREEQC) $(PHREEQCDAT)
|
ex16.out: $(INPUT)/ex16 $(PHREEQC) $(PHREEQCDAT)
|
||||||
$(PHREEQC) $(INPUT)/ex16 ex16.out $(PHREEQCDAT) ex16.log
|
$(VALGRIND) $(PHREEQC) $(INPUT)/ex16 ex16.out $(PHREEQCDAT) ex16.log
|
||||||
|
|
||||||
ex17.out: $(INPUT)/ex17 $(PHREEQC) $(PITZERDAT)
|
ex17.out: $(INPUT)/ex17 $(PHREEQC) $(PITZERDAT)
|
||||||
$(PHREEQC) $(INPUT)/ex17 ex17.out $(PITZERDAT) ex17.log
|
$(VALGRIND) $(PHREEQC) $(INPUT)/ex17 ex17.out $(PITZERDAT) ex17.log
|
||||||
|
|
||||||
ex17b.out: $(INPUT)/ex17b $(PHREEQC) $(PITZERDAT)
|
ex17b.out: $(INPUT)/ex17b $(PHREEQC) $(PITZERDAT)
|
||||||
$(PHREEQC) $(INPUT)/ex17b ex17b.out $(PITZERDAT) ex17b.log
|
$(VALGRIND) $(PHREEQC) $(INPUT)/ex17b ex17b.out $(PITZERDAT) ex17b.log
|
||||||
|
|
||||||
ex18.out: $(INPUT)/ex18 $(PHREEQC) $(PHREEQCDAT)
|
ex18.out: $(INPUT)/ex18 $(PHREEQC) $(PHREEQCDAT)
|
||||||
$(PHREEQC) $(INPUT)/ex18 ex18.out $(PHREEQCDAT) ex18.log
|
$(VALGRIND) $(PHREEQC) $(INPUT)/ex18 ex18.out $(PHREEQCDAT) ex18.log
|
||||||
|
|
||||||
ex19.out: $(INPUT)/ex19 $(PHREEQC) $(PHREEQCDAT)
|
ex19.out: $(INPUT)/ex19 $(PHREEQC) $(PHREEQCDAT)
|
||||||
$(PHREEQC) $(INPUT)/ex19 ex19.out $(PHREEQCDAT) ex19.log
|
$(VALGRIND) $(PHREEQC) $(INPUT)/ex19 ex19.out $(PHREEQCDAT) ex19.log
|
||||||
|
|
||||||
ex19b.out: $(INPUT)/ex19b $(PHREEQC) $(PHREEQCDAT)
|
ex19b.out: $(INPUT)/ex19b $(PHREEQC) $(PHREEQCDAT)
|
||||||
$(PHREEQC) $(INPUT)/ex19b ex19b.out $(PHREEQCDAT) ex19b.log
|
$(VALGRIND) $(PHREEQC) $(INPUT)/ex19b ex19b.out $(PHREEQCDAT) ex19b.log
|
||||||
|
|
||||||
ex20a.out: $(INPUT)/ex20a $(PHREEQC) $(ISODAT)
|
ex20a.out: $(INPUT)/ex20a $(PHREEQC) $(ISODAT)
|
||||||
$(PHREEQC) $(INPUT)/ex20a ex20a.out $(ISODAT) ex20a.log
|
$(VALGRIND) $(PHREEQC) $(INPUT)/ex20a ex20a.out $(ISODAT) ex20a.log
|
||||||
|
|
||||||
ex20b.out: $(INPUT)/ex20b $(PHREEQC) $(ISODAT)
|
ex20b.out: $(INPUT)/ex20b $(PHREEQC) $(ISODAT)
|
||||||
$(PHREEQC) $(INPUT)/ex20b ex20b.out $(ISODAT) ex20b.log
|
$(VALGRIND) $(PHREEQC) $(INPUT)/ex20b ex20b.out $(ISODAT) ex20b.log
|
||||||
|
|
||||||
ex21.out: $(INPUT)/ex21 $(PHREEQC) $(PHREEQCDAT)
|
ex21.out: $(INPUT)/ex21 $(PHREEQC) $(PHREEQCDAT)
|
||||||
$(PHREEQC) $(INPUT)/ex21 ex21.out $(PHREEQCDAT) ex21.log
|
$(VALGRIND) $(PHREEQC) $(INPUT)/ex21 ex21.out $(PHREEQCDAT) ex21.log
|
||||||
|
|
||||||
ex22.out: $(INPUT)/ex22 $(PHREEQC) $(PHREEQCDAT)
|
ex22.out: $(INPUT)/ex22 $(PHREEQC) $(PHREEQCDAT)
|
||||||
$(PHREEQC) $(INPUT)/ex22 ex22.out $(PHREEQCDAT) ex22.log
|
$(VALGRIND) $(PHREEQC) $(INPUT)/ex22 ex22.out $(PHREEQCDAT) ex22.log
|
||||||
|
|
||||||
diff:
|
diff:
|
||||||
svn diff --diff-cmd diff -x -bw
|
svn diff --diff-cmd diff -x -bw
|
||||||
|
|
||||||
|
|||||||
2
ex10.out
2
ex10.out
@ -8417,6 +8417,6 @@ Misc 1: 4.8032e-03
|
|||||||
Misc 2: 8.5786e-01
|
Misc 2: 8.5786e-01
|
||||||
|
|
||||||
------------------------------
|
------------------------------
|
||||||
End of Run after 0.39 Seconds.
|
End of Run after 0.38 Seconds.
|
||||||
------------------------------
|
------------------------------
|
||||||
|
|
||||||
|
|||||||
6
ex11.out
6
ex11.out
@ -211,7 +211,7 @@ Reading input data for simulation 3.
|
|||||||
reset false
|
reset false
|
||||||
WARNING: Cell-lengths were read for 1 cells. Last value is used till cell 40.
|
WARNING: Cell-lengths were read for 1 cells. Last value is used till cell 40.
|
||||||
WARNING: Dispersivities were read for 1 cells. Last value is used till cell 40.
|
WARNING: Dispersivities were read for 1 cells. Last value is used till cell 40.
|
||||||
------------------------------
|
-----------------------------
|
||||||
End of Run after 4.16 Seconds.
|
End of Run after 4.1 Seconds.
|
||||||
------------------------------
|
-----------------------------
|
||||||
|
|
||||||
|
|||||||
6
ex12.out
6
ex12.out
@ -52,7 +52,7 @@ Reading input data for simulation 1.
|
|||||||
reset false
|
reset false
|
||||||
WARNING: Cell-lengths were read for 1 cells. Last value is used till cell 60.
|
WARNING: Cell-lengths were read for 1 cells. Last value is used till cell 60.
|
||||||
WARNING: Dispersivities were read for 1 cells. Last value is used till cell 60.
|
WARNING: Dispersivities were read for 1 cells. Last value is used till cell 60.
|
||||||
------------------------------
|
-----------------------------
|
||||||
End of Run after 1.52 Seconds.
|
End of Run after 1.5 Seconds.
|
||||||
------------------------------
|
-----------------------------
|
||||||
|
|
||||||
|
|||||||
@ -164,7 +164,7 @@ WARNING: No dispersivities were read; disp = 0 assumed.
|
|||||||
7.5000e+00 1.0547e-05 1.2626e-06 -3.9008e-08 -2.6645e-09
|
7.5000e+00 1.0547e-05 1.2626e-06 -3.9008e-08 -2.6645e-09
|
||||||
8.5000e+00 3.8231e-06 2.9867e-07 -2.2212e-09 -8.8983e-11
|
8.5000e+00 3.8231e-06 2.9867e-07 -2.2212e-09 -8.8983e-11
|
||||||
|
|
||||||
------------------------------
|
-----------------------------
|
||||||
End of Run after 1.34 Seconds.
|
End of Run after 1.3 Seconds.
|
||||||
------------------------------
|
-----------------------------
|
||||||
|
|
||||||
|
|||||||
@ -847,7 +847,7 @@ WARNING: Dispersivities were read for 1 cells. Last value is used till cell 20.
|
|||||||
30 plot_xy dist, TOT("Cl")*1000, color = Green, symbol = Plus
|
30 plot_xy dist, TOT("Cl")*1000, color = Green, symbol = Plus
|
||||||
-end
|
-end
|
||||||
END
|
END
|
||||||
------------------------------
|
-----------------------------
|
||||||
End of Run after 0.61 Seconds.
|
End of Run after 0.6 Seconds.
|
||||||
------------------------------
|
-----------------------------
|
||||||
|
|
||||||
|
|||||||
@ -776,7 +776,7 @@ WARNING: Dispersivities were read for 1 cells. Last value is used till cell 20.
|
|||||||
20 GRAPH_Y TOT("Na")*1000 TOT("Cl")*1000
|
20 GRAPH_Y TOT("Na")*1000 TOT("Cl")*1000
|
||||||
-end
|
-end
|
||||||
END
|
END
|
||||||
------------------------------
|
-----------------------------
|
||||||
End of Run after 0.41 Seconds.
|
End of Run after 0.4 Seconds.
|
||||||
------------------------------
|
-----------------------------
|
||||||
|
|
||||||
|
|||||||
2
ex15.out
2
ex15.out
@ -213,6 +213,6 @@ WARNING: USER_PUNCH: Headings count does not match number of calls to PUNCH.
|
|||||||
shifts 110
|
shifts 110
|
||||||
END
|
END
|
||||||
-------------------------------
|
-------------------------------
|
||||||
End of Run after 11.93 Seconds.
|
End of Run after 11.74 Seconds.
|
||||||
-------------------------------
|
-------------------------------
|
||||||
|
|
||||||
|
|||||||
@ -190,6 +190,6 @@ WARNING: USER_PUNCH: Headings count does not match number of calls to PUNCH.
|
|||||||
shifts 110
|
shifts 110
|
||||||
END
|
END
|
||||||
-------------------------------
|
-------------------------------
|
||||||
End of Run after 11.94 Seconds.
|
End of Run after 11.73 Seconds.
|
||||||
-------------------------------
|
-------------------------------
|
||||||
|
|
||||||
|
|||||||
@ -187,6 +187,6 @@ WARNING: Dispersivities were read for 1 cells. Last value is used till cell 20.
|
|||||||
shifts 110
|
shifts 110
|
||||||
END
|
END
|
||||||
-------------------------------
|
-------------------------------
|
||||||
End of Run after 12.03 Seconds.
|
End of Run after 11.74 Seconds.
|
||||||
-------------------------------
|
-------------------------------
|
||||||
|
|
||||||
|
|||||||
2
ex16.out
2
ex16.out
@ -442,6 +442,6 @@ Reading input data for simulation 2.
|
|||||||
------------------------------------
|
------------------------------------
|
||||||
|
|
||||||
------------------------------
|
------------------------------
|
||||||
End of Run after 0.03 Seconds.
|
End of Run after 0.04 Seconds.
|
||||||
------------------------------
|
------------------------------
|
||||||
|
|
||||||
|
|||||||
2
ex17.out
2
ex17.out
@ -360,6 +360,6 @@ Reading input data for simulation 2.
|
|||||||
------------------------------------
|
------------------------------------
|
||||||
|
|
||||||
------------------------------
|
------------------------------
|
||||||
End of Run after 0.02 Seconds.
|
End of Run after 0.03 Seconds.
|
||||||
------------------------------
|
------------------------------
|
||||||
|
|
||||||
|
|||||||
@ -3728,6 +3728,6 @@ Reading input data for simulation 2.
|
|||||||
------------------------------------
|
------------------------------------
|
||||||
|
|
||||||
------------------------------
|
------------------------------
|
||||||
End of Run after 0.24 Seconds.
|
End of Run after 0.26 Seconds.
|
||||||
------------------------------
|
------------------------------
|
||||||
|
|
||||||
|
|||||||
2
ex19.out
2
ex19.out
@ -69,6 +69,6 @@ Reading input data for simulation 1.
|
|||||||
PRINT
|
PRINT
|
||||||
reset false
|
reset false
|
||||||
------------------------------
|
------------------------------
|
||||||
End of Run after 0.02 Seconds.
|
End of Run after 0.03 Seconds.
|
||||||
------------------------------
|
------------------------------
|
||||||
|
|
||||||
|
|||||||
2
ex2.out
2
ex2.out
@ -4354,6 +4354,6 @@ Reading input data for simulation 2.
|
|||||||
------------------------------------
|
------------------------------------
|
||||||
|
|
||||||
------------------------------
|
------------------------------
|
||||||
End of Run after 0.04 Seconds.
|
End of Run after 0.05 Seconds.
|
||||||
------------------------------
|
------------------------------
|
||||||
|
|
||||||
|
|||||||
@ -53631,6 +53631,6 @@ Reading input data for simulation 114.
|
|||||||
--------------------------------------
|
--------------------------------------
|
||||||
|
|
||||||
------------------------------
|
------------------------------
|
||||||
End of Run after 1.33 Seconds.
|
End of Run after 1.34 Seconds.
|
||||||
------------------------------
|
------------------------------
|
||||||
|
|
||||||
|
|||||||
2
ex21.out
2
ex21.out
@ -961,6 +961,6 @@ WARNING: No dispersivities were read; disp = 0 assumed.
|
|||||||
END
|
END
|
||||||
END
|
END
|
||||||
-------------------------------
|
-------------------------------
|
||||||
End of Run after 19.28 Seconds.
|
End of Run after 19.26 Seconds.
|
||||||
-------------------------------
|
-------------------------------
|
||||||
|
|
||||||
|
|||||||
2
ex3.out
2
ex3.out
@ -819,6 +819,6 @@ Reading input data for simulation 6.
|
|||||||
------------------------------------
|
------------------------------------
|
||||||
|
|
||||||
------------------------------
|
------------------------------
|
||||||
End of Run after 0.01 Seconds.
|
End of Run after 0.02 Seconds.
|
||||||
------------------------------
|
------------------------------
|
||||||
|
|
||||||
|
|||||||
2
ex4.out
2
ex4.out
@ -490,6 +490,6 @@ Reading input data for simulation 3.
|
|||||||
------------------------------------
|
------------------------------------
|
||||||
|
|
||||||
------------------------------
|
------------------------------
|
||||||
End of Run after 0.01 Seconds.
|
End of Run after 0.02 Seconds.
|
||||||
------------------------------
|
------------------------------
|
||||||
|
|
||||||
|
|||||||
6
ex6.out
6
ex6.out
@ -3882,7 +3882,7 @@ End of simulation.
|
|||||||
Reading input data for simulation 12.
|
Reading input data for simulation 12.
|
||||||
-------------------------------------
|
-------------------------------------
|
||||||
|
|
||||||
------------------------------
|
-----------------------------
|
||||||
End of Run after 0.51 Seconds.
|
End of Run after 0.5 Seconds.
|
||||||
------------------------------
|
-----------------------------
|
||||||
|
|
||||||
|
|||||||
2
ex7.out
2
ex7.out
@ -3135,6 +3135,6 @@ Reading input data for simulation 4.
|
|||||||
------------------------------------
|
------------------------------------
|
||||||
|
|
||||||
------------------------------
|
------------------------------
|
||||||
End of Run after 0.04 Seconds.
|
End of Run after 0.05 Seconds.
|
||||||
------------------------------
|
------------------------------
|
||||||
|
|
||||||
|
|||||||
2
ex8.out
2
ex8.out
@ -3880,6 +3880,6 @@ Reading input data for simulation 34.
|
|||||||
-------------------------------------
|
-------------------------------------
|
||||||
|
|
||||||
------------------------------
|
------------------------------
|
||||||
End of Run after 0.04 Seconds.
|
End of Run after 0.06 Seconds.
|
||||||
------------------------------
|
------------------------------
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user