diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2021-08-03 14:41:53 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2021-08-03 14:41:53 -0400 |
commit | af8fa097905186e0d8ba257e4d70d63fe8901264 (patch) | |
tree | 647de7ddd01c750e9a80849b3cf79efddf32d4b2 /Dummy.com | |
download | moog-af8fa097905186e0d8ba257e4d70d63fe8901264.tar.gz |
Initial commit
Diffstat (limited to 'Dummy.com')
-rwxr-xr-x | Dummy.com | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Dummy.com b/Dummy.com new file mode 100755 index 0000000..4a0726e --- /dev/null +++ b/Dummy.com @@ -0,0 +1,11 @@ + +c****************************************************************************** +c this simply is a "scratch" common block that holds arrays +c that are temporary and will be "recycled" for different +c internal calculation purposes. +c****************************************************************************** + + real*8 dummy1(100), dummy2(100), dummy3(5000), dummy4(5000) + + common/dummy/dummy1, dummy2, dummy3, dummy4 + |