├── .gitignore ├── .gitmodules ├── README.md ├── index.html ├── lattice-boltzmann ├── Domain-area Tests.ipynb ├── Main.ipynb ├── Mechanical Tests.ipynb ├── README.txt ├── SETUP.txt └── index.md ├── proba-ecological-networks └── README ├── psteinb-reproducible-randomness └── README.txt ├── turcksin-spring-mechanics ├── README.txt ├── codeinclude │ ├── plot.py │ └── spring1.py ├── figures │ ├── aspect.png │ ├── graph.dot │ ├── graph.png │ ├── graph.sh │ ├── graph.svg │ ├── inheritance.dot │ ├── inheritance.png │ ├── inheritance.svg │ └── testcase-1.png ├── paper.bib ├── paper.tex ├── settings.json ├── spring.py └── tests │ ├── compare.sh │ ├── testcase-1.json │ ├── testcase-1.reference │ ├── testcase-2.json │ ├── testcase-2.reference │ ├── testcase-3.json │ ├── testcase-3.reference │ ├── testcase-4.json │ ├── testcase-4.reference │ ├── testcase-5.json │ └── testcase-5.reference └── walker-testing-msat └── README.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcarpentry/close-enough-for-scientific-work/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcarpentry/close-enough-for-scientific-work/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcarpentry/close-enough-for-scientific-work/HEAD/index.html -------------------------------------------------------------------------------- /lattice-boltzmann/Domain-area Tests.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcarpentry/close-enough-for-scientific-work/HEAD/lattice-boltzmann/Domain-area Tests.ipynb -------------------------------------------------------------------------------- /lattice-boltzmann/Main.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcarpentry/close-enough-for-scientific-work/HEAD/lattice-boltzmann/Main.ipynb -------------------------------------------------------------------------------- /lattice-boltzmann/Mechanical Tests.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcarpentry/close-enough-for-scientific-work/HEAD/lattice-boltzmann/Mechanical Tests.ipynb -------------------------------------------------------------------------------- /lattice-boltzmann/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcarpentry/close-enough-for-scientific-work/HEAD/lattice-boltzmann/README.txt -------------------------------------------------------------------------------- /lattice-boltzmann/SETUP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcarpentry/close-enough-for-scientific-work/HEAD/lattice-boltzmann/SETUP.txt -------------------------------------------------------------------------------- /lattice-boltzmann/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcarpentry/close-enough-for-scientific-work/HEAD/lattice-boltzmann/index.md -------------------------------------------------------------------------------- /proba-ecological-networks/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcarpentry/close-enough-for-scientific-work/HEAD/proba-ecological-networks/README -------------------------------------------------------------------------------- /psteinb-reproducible-randomness/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcarpentry/close-enough-for-scientific-work/HEAD/psteinb-reproducible-randomness/README.txt -------------------------------------------------------------------------------- /turcksin-spring-mechanics/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcarpentry/close-enough-for-scientific-work/HEAD/turcksin-spring-mechanics/README.txt -------------------------------------------------------------------------------- /turcksin-spring-mechanics/codeinclude/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcarpentry/close-enough-for-scientific-work/HEAD/turcksin-spring-mechanics/codeinclude/plot.py -------------------------------------------------------------------------------- /turcksin-spring-mechanics/codeinclude/spring1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcarpentry/close-enough-for-scientific-work/HEAD/turcksin-spring-mechanics/codeinclude/spring1.py -------------------------------------------------------------------------------- /turcksin-spring-mechanics/figures/aspect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcarpentry/close-enough-for-scientific-work/HEAD/turcksin-spring-mechanics/figures/aspect.png -------------------------------------------------------------------------------- /turcksin-spring-mechanics/figures/graph.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcarpentry/close-enough-for-scientific-work/HEAD/turcksin-spring-mechanics/figures/graph.dot -------------------------------------------------------------------------------- /turcksin-spring-mechanics/figures/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcarpentry/close-enough-for-scientific-work/HEAD/turcksin-spring-mechanics/figures/graph.png -------------------------------------------------------------------------------- /turcksin-spring-mechanics/figures/graph.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcarpentry/close-enough-for-scientific-work/HEAD/turcksin-spring-mechanics/figures/graph.sh -------------------------------------------------------------------------------- /turcksin-spring-mechanics/figures/graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcarpentry/close-enough-for-scientific-work/HEAD/turcksin-spring-mechanics/figures/graph.svg -------------------------------------------------------------------------------- /turcksin-spring-mechanics/figures/inheritance.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcarpentry/close-enough-for-scientific-work/HEAD/turcksin-spring-mechanics/figures/inheritance.dot -------------------------------------------------------------------------------- /turcksin-spring-mechanics/figures/inheritance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcarpentry/close-enough-for-scientific-work/HEAD/turcksin-spring-mechanics/figures/inheritance.png -------------------------------------------------------------------------------- /turcksin-spring-mechanics/figures/inheritance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcarpentry/close-enough-for-scientific-work/HEAD/turcksin-spring-mechanics/figures/inheritance.svg -------------------------------------------------------------------------------- /turcksin-spring-mechanics/figures/testcase-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcarpentry/close-enough-for-scientific-work/HEAD/turcksin-spring-mechanics/figures/testcase-1.png -------------------------------------------------------------------------------- /turcksin-spring-mechanics/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcarpentry/close-enough-for-scientific-work/HEAD/turcksin-spring-mechanics/paper.bib -------------------------------------------------------------------------------- /turcksin-spring-mechanics/paper.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcarpentry/close-enough-for-scientific-work/HEAD/turcksin-spring-mechanics/paper.tex -------------------------------------------------------------------------------- /turcksin-spring-mechanics/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcarpentry/close-enough-for-scientific-work/HEAD/turcksin-spring-mechanics/settings.json -------------------------------------------------------------------------------- /turcksin-spring-mechanics/spring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcarpentry/close-enough-for-scientific-work/HEAD/turcksin-spring-mechanics/spring.py -------------------------------------------------------------------------------- /turcksin-spring-mechanics/tests/compare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcarpentry/close-enough-for-scientific-work/HEAD/turcksin-spring-mechanics/tests/compare.sh -------------------------------------------------------------------------------- /turcksin-spring-mechanics/tests/testcase-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcarpentry/close-enough-for-scientific-work/HEAD/turcksin-spring-mechanics/tests/testcase-1.json -------------------------------------------------------------------------------- /turcksin-spring-mechanics/tests/testcase-1.reference: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcarpentry/close-enough-for-scientific-work/HEAD/turcksin-spring-mechanics/tests/testcase-1.reference -------------------------------------------------------------------------------- /turcksin-spring-mechanics/tests/testcase-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcarpentry/close-enough-for-scientific-work/HEAD/turcksin-spring-mechanics/tests/testcase-2.json -------------------------------------------------------------------------------- /turcksin-spring-mechanics/tests/testcase-2.reference: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcarpentry/close-enough-for-scientific-work/HEAD/turcksin-spring-mechanics/tests/testcase-2.reference -------------------------------------------------------------------------------- /turcksin-spring-mechanics/tests/testcase-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcarpentry/close-enough-for-scientific-work/HEAD/turcksin-spring-mechanics/tests/testcase-3.json -------------------------------------------------------------------------------- /turcksin-spring-mechanics/tests/testcase-3.reference: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcarpentry/close-enough-for-scientific-work/HEAD/turcksin-spring-mechanics/tests/testcase-3.reference -------------------------------------------------------------------------------- /turcksin-spring-mechanics/tests/testcase-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcarpentry/close-enough-for-scientific-work/HEAD/turcksin-spring-mechanics/tests/testcase-4.json -------------------------------------------------------------------------------- /turcksin-spring-mechanics/tests/testcase-4.reference: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcarpentry/close-enough-for-scientific-work/HEAD/turcksin-spring-mechanics/tests/testcase-4.reference -------------------------------------------------------------------------------- /turcksin-spring-mechanics/tests/testcase-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcarpentry/close-enough-for-scientific-work/HEAD/turcksin-spring-mechanics/tests/testcase-5.json -------------------------------------------------------------------------------- /turcksin-spring-mechanics/tests/testcase-5.reference: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcarpentry/close-enough-for-scientific-work/HEAD/turcksin-spring-mechanics/tests/testcase-5.reference -------------------------------------------------------------------------------- /walker-testing-msat/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swcarpentry/close-enough-for-scientific-work/HEAD/walker-testing-msat/README.txt --------------------------------------------------------------------------------