aboutsummaryrefslogtreecommitdiff
path: root/Multimod.com
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2021-08-03 14:41:53 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2021-08-03 14:41:53 -0400
commitaf8fa097905186e0d8ba257e4d70d63fe8901264 (patch)
tree647de7ddd01c750e9a80849b3cf79efddf32d4b2 /Multimod.com
downloadmoog-af8fa097905186e0d8ba257e4d70d63fe8901264.tar.gz
Initial commit
Diffstat (limited to 'Multimod.com')
-rwxr-xr-xMultimod.com32
1 files changed, 32 insertions, 0 deletions
diff --git a/Multimod.com b/Multimod.com
new file mode 100755
index 0000000..eefac16
--- /dev/null
+++ b/Multimod.com
@@ -0,0 +1,32 @@
+c******************************************************************************
+c this common block carries the data for population syntheses,
+c using multiple model calculations
+c******************************************************************************
+
+
+ real*8 gfmodtab(100,1000,50), rwmodtab(100,1000,50)
+ real*8 weightmod(100,1000), fluxmod(100,1000),
+ . ewmod(1000)
+ real*8 radius(100), relcount(100)
+ real*8 elspecial(10), abspecial(100,10)
+ real*8 isospecial(10), fracspecial(100,10)
+ real*8 deltangf, rwlgerror
+ integer nmodcurve(100,1000), modtot, nabs, nisos
+
+ character*80 fmodinput(100), fmodoutput(100),
+ . modpre, synpre
+
+
+ common/multidata/ gfmodtab, rwmodtab,
+ . weightmod, fluxmod,
+ . ewmod,
+ . radius, relcount,
+ . elspecial, abspecial,
+ . isospecial, fracspecial,
+ . deltangf, rwlgerror,
+ . nmodcurve, modtot, nabs, nisos
+
+ common/multichar/ fmodinput, fmodoutput,
+ . modpre, synpre
+
+