Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,12 @@ jobs:
path: classic
- name: Install clawpack
run: |
pip install --user -e $CLAW
pip install --no-build-isolation --editable $CLAW
# pip install --user -e $CLAW

- name: Lint with flake8
run: |
cd ${CLAW}/geoclaw
cd ${CLAW}/classic
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
Expand Down
42 changes: 0 additions & 42 deletions .travis.yml

This file was deleted.

7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Classic Clawpack

This package hosts the single-grid version of the Clawpack code. All of the Clawpack solvers include the *classic* algorithms described in [LeVeque-FVMHP](https://www.clawpack.org/fvmhp_materials/) [DOI](https://doi.org/10.1017/CBO9780511791253).

**Links**
- [Documentation](https://www.clawpack.org/)
- ![Tests](https://github.com/clawpack/classic/actions/workflows/testing.yml/badge.svg)
1 change: 0 additions & 1 deletion README.txt

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ def runTest(self, save=False):

# Write out data files
self.load_rundata()

# Modify data for test run
self.rundata.clawdata.num_output_times = 2
self.rundata.clawdata.tfinal = 5.0
self.rundata.clawdata.output_t0 = False
self.write_rundata_objects()

# Run code
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Regression tests for 3D heterogeneous acoustics problem.
"""

from __future__ import absolute_import
import sys
import unittest

Expand All @@ -17,6 +16,11 @@ def runTest(self, save=False):

# Write out data files
self.load_rundata()

self.rundata.clawdata.num_cells = [20, 20, 20]
self.rundata.clawdata.num_output_times = 2
self.rundata.clawdata.tfinal = 1.0

self.write_rundata_objects()

# Run code
Expand Down
3 changes: 0 additions & 3 deletions examples/advection_2d_annulus/afterframe.py

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ def runTest(self, save=False):

# Write out data files
self.load_rundata()

self.rundata.clawdata.num_output_times = 2
self.rundata.clawdata.tfinal = 0.5

self.write_rundata_objects()

# Run code
Expand Down
1 change: 0 additions & 1 deletion src/python/classic/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
results and looking for errors.
"""

from __future__ import absolute_import
import os
import glob

Expand Down
23 changes: 0 additions & 23 deletions tests/README.txt

This file was deleted.

Empty file removed tests/__init__.py
Empty file.
60 changes: 0 additions & 60 deletions tests/acoustics_1d_heterogeneous/Makefile

This file was deleted.

12 changes: 0 additions & 12 deletions tests/acoustics_1d_heterogeneous/README.rst

This file was deleted.

Empty file.
65 changes: 0 additions & 65 deletions tests/acoustics_1d_heterogeneous/qinit.f

This file was deleted.

38 changes: 0 additions & 38 deletions tests/acoustics_1d_heterogeneous/setaux.f

This file was deleted.

39 changes: 0 additions & 39 deletions tests/acoustics_1d_heterogeneous/setplot.py

This file was deleted.

Loading