Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
David L George committed Apr 3, 2012
0 parents commit 9d3d4bd
Show file tree
Hide file tree
Showing 1,341 changed files with 144,145 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
*.pyc
*.o
*.mod
xclaw
xamr
xgeoclaw
*.html
_output/
_plots/
34 changes: 34 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@

Clawpack is distributed under the terms of the
Berkeley Software Distribution (BSD) license
http:https://www.opensource.org/licenses/bsd-license.php

Copyright (c) 1994--2010, Randall J. LeVeque and others
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.

* Neither the name of the University of Washington nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.

3 changes: 3 additions & 0 deletions README-Git.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
This repository contains a copy of the svn trunk from kingkong.
Future development of 4.x will take place here rather than on kingkong.

1 change: 1 addition & 0 deletions README-digclaw4.x
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
this is a repository for development of digclaw4.x. It is based on clawpack4.x, but not forked from clawpack4.x.
Empty file added README-digclaw4.x~
Empty file.
21 changes: 21 additions & 0 deletions README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@

Clawpack 4.6.1
Date: 15 May 2011

-----------------------------------------

For installation instructions see:
http:https://kingkong.amath.washington.edu/clawpack/users/installing.html

These instructions are also in the file doc/sphinx/installing.rst

-----------------------------------------

For documentation:
http:https://kingkong.amath.washington.edu/clawpack/users/

-----------------------------------------

For license information, see LICENSE.txt or
http:https://kingkong.amath.washington.edu/clawpack/users/about.html#license

144 changes: 144 additions & 0 deletions amrclaw/2d/lib/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,144 @@

# Library version of Makefile
# ---------------------------

# Only "make .objs" and "make .htmls" are useful in this directory.

# Makefile for Clawpack code in this directory.
# This version only sets the local files and frequently changed
# options, and then includes the standard makefile pointed to by CLAWMAKE.
CLAWMAKE = $(CLAW)/util/Makefile.common

# See the above file for details and a list of make options, or type
# make .help
# at the unix prompt.

# Note: This version uses dynamic memory allocation from f90 and so requires
# an f90 compiler such as gfortran.

# Environment variable FC should be set to fortran compiler, e.g. gfortran
FC ?= gfortran # default if not set as environment variable
# Add any desired compiler flags such as -g here:
FFLAGS ?= -O2


CLAW_LIB = $(shell pwd)

CLAW_SOURCES = \
$(CLAW_LIB)/amr2ez.f \
$(CLAW_LIB)/bc2amr.f \
$(CLAW_LIB)/setaux.f \
$(CLAW_LIB)/setprob.f \
$(CLAW_LIB)/b4step2.f \
$(CLAW_LIB)/advanc.f \
$(CLAW_LIB)/bound.f \
$(CLAW_LIB)/stepgrid.f \
$(CLAW_LIB)/estdt.f \
$(CLAW_LIB)/errest.f \
$(CLAW_LIB)/flag2refine.f \
$(CLAW_LIB)/allowflag.f \
$(CLAW_LIB)/spest.f \
$(CLAW_LIB)/igetsp.f \
$(CLAW_LIB)/reclam.f \
$(CLAW_LIB)/birect.f \
$(CLAW_LIB)/cleanup.f \
$(CLAW_LIB)/colate.f \
$(CLAW_LIB)/bufnst.f \
$(CLAW_LIB)/errf1.f \
$(CLAW_LIB)/gfixup.f \
$(CLAW_LIB)/filval.f \
$(CLAW_LIB)/fixcapaq.f \
$(CLAW_LIB)/filpatch.f \
$(CLAW_LIB)/prefilp.f \
$(CLAW_LIB)/flglvl.f \
$(CLAW_LIB)/fluxad.f \
$(CLAW_LIB)/fluxsv.f \
$(CLAW_LIB)/ginit.f \
$(CLAW_LIB)/grdfit.f \
$(CLAW_LIB)/intfil.f \
$(CLAW_LIB)/moment.f \
$(CLAW_LIB)/nestck.f \
$(CLAW_LIB)/prepc.f \
$(CLAW_LIB)/prepf.f \
$(CLAW_LIB)/projec.f \
$(CLAW_LIB)/signs.f \
$(CLAW_LIB)/findcut.f \
$(CLAW_LIB)/smartbis.f \
$(CLAW_LIB)/putnod.f \
$(CLAW_LIB)/putsp.f \
$(CLAW_LIB)/regrid.f \
$(CLAW_LIB)/setgrd.f \
$(CLAW_LIB)/setuse.f \
$(CLAW_LIB)/stst1.f \
$(CLAW_LIB)/tick.f \
$(CLAW_LIB)/trimbd.f \
$(CLAW_LIB)/update.f \
$(CLAW_LIB)/nodget.f \
$(CLAW_LIB)/upbnd.f \
$(CLAW_LIB)/basic.f \
$(CLAW_LIB)/outval.f \
$(CLAW_LIB)/copysol.f \
$(CLAW_LIB)/outvar.f \
$(CLAW_LIB)/outmsh.f \
$(CLAW_LIB)/outtre.f \
$(CLAW_LIB)/domain.f \
$(CLAW_LIB)/cellave.f \
$(CLAW_LIB)/fdisc.f \
$(CLAW_LIB)/fss.f \
$(CLAW_LIB)/zeroin.f \
$(CLAW_LIB)/setflags.f \
$(CLAW_LIB)/shiftset.f \
$(CLAW_LIB)/conck.f \
$(CLAW_LIB)/domshrink.f \
$(CLAW_LIB)/domprep.f \
$(CLAW_LIB)/domup.f \
$(CLAW_LIB)/domcopy.f \
$(CLAW_LIB)/coarsen.f \
$(CLAW_LIB)/auxcoarsen.f \
$(CLAW_LIB)/intcopy.f \
$(CLAW_LIB)/preintcopy.f \
$(CLAW_LIB)/icall.f \
$(CLAW_LIB)/preicall.f \
$(CLAW_LIB)/step2.f \
$(CLAW_LIB)/flux2.f \
$(CLAW_LIB)/flux2fw.f \
$(CLAW_LIB)/inlinelimiter.f \
$(CLAW_LIB)/limiter.f \
$(CLAW_LIB)/philim.f \
$(CLAW_LIB)/cstore.f \
$(CLAW_LIB)/qad.f \
$(CLAW_LIB)/src2.f \
$(CLAW_LIB)/src1d.f \
$(CLAW_LIB)/saveqc.f \
$(CLAW_LIB)/check.f \
$(CLAW_LIB)/restrt.f \
$(CLAW_LIB)/valout.f \
$(CLAW_LIB)/check4nans.f \
$(CLAW_LIB)/check_hdf.f \
$(CLAW_LIB)/restrt_hdf.f \
$(CLAW_LIB)/valout_hdf.f \
$(CLAW_LIB)/opendatafile.f \
$(CLAW_LIB)/dumpgauge.f \
$(CLAW_LIB)/setgauges.f \
$(CLAW_LIB)/quick_sort1.f \
$(CLAW_LIB)/rpn2from1d.f \
$(CLAW_LIB)/rpt2.f \
$(CLAW_LIB)/init_alloc.f90 \
$(CLAW_LIB)/restrt_alloc.f90 \
$(CLAW_LIB)/resize_alloc_static.f90 \
$(CLAW_LIB)/resize_alloc.f90 \

CLAW_COMMONS = \
$(CLAW_LIB)/call.i \
$(CLAW_LIB)/gauges.i \
$(CLAW_LIB)/regions.i

default: .objs

#-------------------------------------------------------------------
# Include Makefile containing standard definitions and make options:
include $(CLAWMAKE)


### DO NOT remove this line - make depends on it ###

17 changes: 17 additions & 0 deletions amrclaw/2d/lib/README
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@


This directory contains the basic amrclaw files in 2d.

Execute
make .objs
to create .o files needed in running any example or application.

Notes:

The common blocks in call.i are "included" in many of the .f files.
If you copy .f files to another directory you may also need this file.

The Clawpack 4.4 version includes a few .f95 files, in particular so that
dynamic memory allocation is now supported. You will need to use a Fortran
compiler that supports this, such as gfortran.

Loading

0 comments on commit 9d3d4bd

Please sign in to comment.