-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
David Pawlowski
committed
Jun 4, 2020
1 parent
f881a98
commit 7e7163a
Showing
1,260 changed files
with
3,110,749 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
/.cvsignore/1.3/Wed Jan 24 14:53:47 2007// | ||
/Config.pl/1.16/Sat Oct 12 04:00:59 2013// | ||
/Copyright/1.1/Mon Jan 16 01:06:17 2012// | ||
/Makefile/1.59/Mon Nov 17 01:32:10 2014// | ||
/PARAM.XML/1.9/Thu May 29 18:48:51 2008// | ||
/get_info.pl/1.4/Sat Oct 12 04:00:59 2013// | ||
/makerun.pl/1.4/Thu Feb 20 22:46:50 2014// | ||
D |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
A D/src//// | ||
A D/srcData//// | ||
A D/srcDoc//// | ||
A D/srcGlow//// | ||
A D/srcIDL//// | ||
A D/srcInterface//// | ||
A D/srcMake//// | ||
A D/srcPython//// | ||
A D/srcScript//// | ||
A D/srcSphereAB//// | ||
A D/srcUser//// | ||
A D/share//// | ||
A D/util//// |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
SWMF_NEW/UA/GITM2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[email protected]:/FRAMEWORK |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,294 @@ | ||
#!/usr/bin/perl -i | ||
# Copyright (C) 2002 Regents of the University of Michigan, portions used with permission | ||
# For more information, see http://csem.engin.umich.edu/tools/swmf | ||
use strict; | ||
|
||
our $Component = 'UA'; | ||
our $Code = 'GITM2'; | ||
our $MakefileDefOrig = 'srcMake/Makefile.def'; | ||
our @Arguments = @ARGV; | ||
|
||
my $config = "share/Scripts/Config.pl"; | ||
if(-f $config){ | ||
require $config; | ||
}else{ | ||
require "../../$config"; | ||
} | ||
|
||
# These are inherited from $config | ||
our %Remaining; # Arguments not handled by share/Scripts/Config.pl | ||
our $Show; | ||
our $Help; | ||
our $ERROR; | ||
our $WARNING; | ||
our $NewGridSize; | ||
our $ShowGridSize; | ||
our $Install; | ||
our $Compiler; | ||
our $OS; | ||
|
||
&print_help if $Help; | ||
|
||
# src/Makefile (needs fixing for Linux/ifort compiler) | ||
my $SrcMakefile = "src/Makefile"; | ||
|
||
# Grid size variables | ||
my $NameGridFile="src/ModSize.f90"; # File with actual grid size | ||
my $GridSize; | ||
my ($nLon, $nLat, $nAlt, $MaxBlock); | ||
|
||
# Planet variables | ||
my $ModPlanet = "ModPlanet.f90"; | ||
my $Planet; | ||
my $PlanetOrig; | ||
|
||
my $NoFlush; | ||
|
||
&get_settings; | ||
|
||
$Planet = "Earth" if $Install; # Default planet | ||
$NoFlush = 0; | ||
|
||
foreach (@Arguments){ | ||
if(/^-LV-426$/i) {$Planet="LV-426"; next}; | ||
if(/^-Titan$/i) {$Planet="Titan"; next}; | ||
if(/^-mars$/i) {$Planet="Mars"; next}; | ||
if(/^-earth$/i) {$Planet="Earth"; next}; | ||
if(/^-noflush$/i) {$NoFlush=1 ; next}; | ||
if(/^-s$/) {$Show=1; next}; | ||
|
||
warn "WARNING: Unknown flag $_\n" if $Remaining{$_}; | ||
} | ||
|
||
&modify_utilities if $NoFlush; | ||
|
||
&install_code if $Install; | ||
|
||
&set_grid_size if $NewGridSize and $NewGridSize ne $GridSize; | ||
|
||
&set_planet if $Planet and $Planet ne $PlanetOrig; | ||
|
||
&show_settings if $Show; | ||
|
||
print "Config.pl -g=$GridSize\n" if $ShowGridSize and not $Show; | ||
|
||
exit 0; | ||
|
||
############################################################################ | ||
sub modify_utilities{ | ||
|
||
my $IsDone; | ||
my $DoWrite; | ||
my $line; | ||
|
||
print "Altering ModUtilities.f90!\n"; | ||
|
||
system "mv share/Library/src/ModUtilities.F90 share/Library/src/ModUtilities.orig.F90"; | ||
|
||
open(OUTFILE,">share/Library/src/ModUtilities.f90"); | ||
open(INFILE, "<share/Library/src/ModUtilities.orig.F90"); | ||
|
||
while(<INFILE>) { | ||
|
||
if (/subroutine flush_unit/) { | ||
print OUTFILE $_; | ||
$IsDone = 0; | ||
$DoWrite = 1; | ||
while (!$IsDone) { | ||
$line = <INFILE>; | ||
$DoWrite = 0 if ($line =~ /ifdef/); | ||
print OUTFILE $line if ($DoWrite); | ||
$DoWrite = 1 if ($line =~ /endif/); | ||
$IsDone = 1 if ($line =~ /end subroutine/); | ||
} | ||
} else { | ||
print OUTFILE $_; | ||
} | ||
} | ||
|
||
close(OUTFILE); | ||
close(INFILE); | ||
|
||
} | ||
|
||
############################################################################ | ||
sub get_settings{ | ||
|
||
# Read size of the grid from $NameGridFile | ||
open(FILE,$NameGridFile) or die "$ERROR could not open $NameGridFile\n"; | ||
while(<FILE>){ | ||
next if /^\s*!/; # skip commented out lines | ||
$nLon=$1 if /\bnLons\s*=\s*(\d+)/i; | ||
$nLat=$1 if /\bnLats\s*=\s*(\d+)/i; | ||
$nAlt=$1 if /\bnAlts\s*=\s*(\d+)/i; | ||
$MaxBlock=$1 if /\bnBlocksMax\s*=\s*(\d+)/i; | ||
last if $nLon and $nLat and $nAlt and $MaxBlock; | ||
} | ||
close FILE; | ||
|
||
die "$ERROR could not read nLon from $NameGridFile\n" unless length($nLon); | ||
die "$ERROR could not read nLat from $NameGridFile\n" unless length($nLat); | ||
die "$ERROR could not read nAlt from $NameGridFile\n" unless length($nAlt); | ||
die "$ERROR could not read MaxBlock from $NameGridFile\n" | ||
unless length($MaxBlock); | ||
|
||
$GridSize = "$nLon,$nLat,$nAlt,$MaxBlock"; | ||
|
||
# Get the current planet | ||
if(-l "src/$ModPlanet"){ | ||
my $link = `ls -l src/$ModPlanet`; | ||
$link =~ /Mod(\w+)\.f90$/ or | ||
warn "GITM2/config: Could not find planet in $link"; | ||
$PlanetOrig = $1; | ||
} | ||
} | ||
|
||
############################################################################# | ||
|
||
sub install_code{ | ||
|
||
return unless $Compiler =~ /ifort/ and $OS =~ /Linux/; | ||
# Unfix object list for Linux/ifort compiler (this is not kosher) | ||
@ARGV = ($SrcMakefile); | ||
while (<>){ | ||
s/-lSHARE.*ModIons.o/-lSHARE/; | ||
print; | ||
} | ||
} | ||
|
||
############################################################################# | ||
|
||
sub set_grid_size{ | ||
|
||
print "Writing new grid size $NewGridSize into $NameGridFile...\n"; | ||
|
||
$GridSize = $NewGridSize; | ||
|
||
if($GridSize=~/^\d+,\d+,\d+,\d+$/){ | ||
($nLon, $nLat, $nAlt, $MaxBlock)= split(',', $GridSize); | ||
}elsif($GridSize){ | ||
die "$ERROR -g=$GridSize should be 4 integers separated with commas\n"; | ||
} | ||
|
||
if($MaxBlock and $MaxBlock !~ /^\d+$/){ | ||
die "$ERROR -b=$MaxBlock should be a positive integer\n"; | ||
} | ||
|
||
@ARGV = ($NameGridFile); | ||
while(<>){ | ||
if(/^\s*!/){print; next} # Skip commented out lines | ||
s/\b(nLons\s*=[^\d]*)(\d+)/$1$nLon/i; | ||
s/\b(nLats\s*=[^\d]*)(\d+)/$1$nLat/i; | ||
s/\b(nAlts\s*=[^\d]*)(\d+)/$1$nAlt/i; | ||
s/\b(nBlocksMax\s*=[^\d]*)(\d+)/$1$MaxBlock/i; | ||
print; | ||
} | ||
|
||
} | ||
|
||
############################################################################ | ||
|
||
sub set_planet{ | ||
$PlanetOrig = $Planet; | ||
|
||
chdir "src" or die "Could not change directory to src\n"; | ||
|
||
print "Configuring GITM for $Planet!!\n"; | ||
|
||
&shell_command("rm -f ModPlanet.f90 ModPlanet.o planet.f90"); | ||
&shell_command("ln -s Mod$Planet.f90 ModPlanet.f90"); | ||
&shell_command("ln -s $Planet.f90 planet.f90"); | ||
|
||
my $file; | ||
foreach $file (glob("*.$Planet.f90")) { | ||
$file =~ /(.*)\.$Planet\.f90/; | ||
my $name = $1; | ||
unlink "$name.f90"; | ||
&shell_command("ln -s $name.$Planet.f90 $name.f90"); | ||
} | ||
|
||
chdir ".."; | ||
|
||
&shell_command("cd srcData ; cp UAM.in.$Planet UAM.in"); | ||
|
||
if($Planet eq 'Earth'){ | ||
$nLon = 9; | ||
$nLat = 9; | ||
$nAlt = 50; | ||
$MaxBlock = 4; | ||
}elsif($Planet eq 'LV-426'){ | ||
$nLon = 9; | ||
$nLat = 9; | ||
$nAlt = 100; | ||
$MaxBlock = 4; | ||
}elsif($Planet eq 'Mars'){ | ||
$nLon = 9; | ||
$nLat = 9; | ||
$nAlt = 120; | ||
$MaxBlock = 4; | ||
} elsif($Planet eq 'Titan'){ | ||
$nLon = 2; | ||
$nLat = 2; | ||
$nAlt = 100; | ||
$MaxBlock = 4; | ||
} | ||
|
||
@ARGV = ($NameGridFile); | ||
while(<>){ | ||
if(/^\s*!/){print; next} # Skip commented out lines | ||
s/\b(nLons\s*=[^\d]*)(\d+)/$1$nLon/i; | ||
s/\b(nLats\s*=[^\d]*)(\d+)/$1$nLat/i; | ||
s/\b(nAlts\s*=[^\d]*)(\d+)/$1$nAlt/i; | ||
s/\b(nBlocksMax\s*=[^\d]*)(\d+)/$1$MaxBlock/i; | ||
print; | ||
} | ||
} | ||
|
||
############################################################################ | ||
|
||
sub show_settings{ | ||
|
||
print "Number of cells in a block: nLon=$nLon, nLat=$nLat, nAlt=$nAlt\n"; | ||
print "Max. number of blocks : MaxBlock=$MaxBlock\n"; | ||
print "Planet=$PlanetOrig\n"; | ||
} | ||
|
||
############################################################################ | ||
|
||
sub print_help{ | ||
print "Additional options for GITM2/Config.pl: | ||
-Titan Configure GITM2 for Titan. This flag is case insensitive. | ||
-Mars Configure GITM2 for Mars. This flag is case insensitive. | ||
-LV-426 Configure GITM2 for Testing. This flag is case insensitive. | ||
-Earth Configure GITM2 for Earth. This flag is case insensitive. | ||
-s Show current planet. | ||
Additional examples for GITM2/Config.pl: | ||
Install for Titan: | ||
Config.pl -install -Titan | ||
Install for Mars: | ||
Config.pl -install -Mars | ||
Reconfigure GITM for Earth: | ||
Config.pl -Earth | ||
Set grid to nLon=36, nLat=36, nAlt=50 and the number of blocks to 16: | ||
Config.pl -g=36,36,50,16 | ||
Show settings for UA/GITM2: | ||
Config.pl -s | ||
"; | ||
exit 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
COPYRIGHT � 2006 | ||
THE REGENTS OF THE UNIVERSITY OF MICHIGAN | ||
ALL RIGHTS RESERVED | ||
|
||
PERMISSION IS GRANTED TO A SINGLE USER TO USE THIS SOFTWARE FOR | ||
NONCOMMERCIAL EDUCATION AND RESEARCH PURPOSES. THE USER IS GIVEN | ||
PERMISSION TO INSTALL AND RUN THE SOFTWARE ON MULTIPLE PLATFORMS. NO | ||
PERMISSION IS GIVEN TO COPY OR REDISTRIBUTE THIS SOFTWARE IN ANY FORM | ||
INCLUDING, BUT NOT LIMITED TO, COPYING SECTIONS OF THE SOURCE CODE OR | ||
DOCUMENTATION AND DISTRIBUTING THE CODE TO OTHER USERS. ALTHOUGH | ||
SOURCE CODE IS DISTRIBUTED, USERS ARE RESTRICTED FROM MODIFYING THE | ||
SOURCE CODE IN ANYWAY WITHOUT PRIOR CONSENT OF THE CENTER FOR SPACE | ||
ENVIRONMENT MODELING AT THE UNIVERSITY OF MIGHIGAN. | ||
|
||
THIS SOFTWARE IS PROVIDED AS IS, WITHOUT REPRESENTATION AS TO ITS | ||
FITNESS FOR ANY PURPOSE, AND WITHOUT WARRANTY OF ANY KIND, EITHER | ||
EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES | ||
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE REGENTS OF | ||
THE UNIVERSITY OF MICHIGAN SHALL NOT BE LIABLE FOR ANY DAMAGES, | ||
INCLUDING SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WITH | ||
RESPECT TO ANY CLAIM ARISING OUT OF OR IN CONNECTION WITH THE USE OF | ||
THE SOFTWARE, EVEN IF IT HAS BEEN OR IS HEREAFTER ADVISED OF THE | ||
POSSIBILITY OF SUCH DAMAGES. | ||
|
Oops, something went wrong.