├── .gitignore ├── INSTALL ├── LICENSE ├── Makefile ├── Makefile.sphinx ├── README ├── README.md ├── conf.py ├── core ├── Makefile ├── advection.py ├── ana_profiles.py ├── boussinesq.py ├── boussinesqTS.py ├── default.xml ├── defaults.json ├── diagnostics.py ├── euler.py ├── fluid2d.py ├── fluxes.py ├── fortran_advection.f90 ├── fortran_diag.f90 ├── fortran_fluxes.f90 ├── fortran_operators.f90 ├── fourier.py ├── gmg │ ├── Makefile │ ├── __init__.py │ ├── fortran_multigrid.f90 │ ├── halo.py │ ├── hierarchy.py │ ├── level.py │ └── subdomains.py ├── grid.py ├── island.py ├── mpitools.py ├── operators.py ├── output.py ├── parallel_file.py ├── param.py ├── plotting.py ├── qgtwolayers.py ├── quasigeostrophic.py ├── restart.py ├── sqg.py ├── test_euler_log_jobs ├── thermalwind.py ├── timers.py ├── timescheme.py └── variables.py ├── docs ├── experiment_template.py ├── fluid2d_schematic.pdf ├── howto.rst ├── model_equations.rst ├── model_numerics.rst ├── parameters.pdf └── staggering.png ├── environment.yml ├── experiments ├── Advection │ ├── advection_footprint.py │ ├── advection_irreversibility.py │ ├── all_about_advection.py │ └── plotting_adv.py ├── GravityCurrent │ └── gravitycurrent.py ├── GyreCirculation │ └── double_gyre.py ├── InterfacialWave │ └── interfacialwave.py ├── Internal_IVP │ └── internalwave.py ├── Internal_forced │ ├── forcedinternal.py │ └── forcing.py ├── KelvinHelmholtz │ └── kelvin_helmholtz.py ├── Leewave │ └── leewave.py ├── LockExchange │ ├── fdse_lab_exp.py │ └── lockexchange.py ├── QG_channel │ └── channel.py ├── QGbasic │ ├── turbqg.py │ ├── vortex_betaplane.py │ ├── vortex_betaplane_v2.py │ └── vortex_on_topography.py ├── RayleighBenard │ ├── conv_atmos.py │ ├── diag_conv.py │ ├── forcing_rayleigh.py │ ├── horiz_convection.py │ └── rayleigh_benard.py ├── SQG │ └── vortex.py ├── ShearInstab │ └── shear_instability.py ├── SymmetricInstability │ ├── plotting_SI.py │ └── symmetric_instab.py ├── TaylorInstability │ └── taylor_instability.py ├── Twodim_turbulence │ ├── freedecay │ │ └── freedecay.py │ ├── spectrum_analysis.py │ └── turb2d_forced │ │ ├── energy_cascade.py │ │ └── enstrophy_cascade.py ├── VonKarman │ └── karman_street.py ├── Vortex │ └── vortex.py ├── doublediffusion │ └── doublediffusion.py └── vorticity_dynamics │ ├── axisymm.py │ ├── merging.py │ ├── vortex.py │ └── wavepackets.py ├── gallery ├── DW_0.png ├── DW_1.png ├── TI_0.png └── gallery.rst ├── index.rst ├── install.sh ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/.gitignore -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.sphinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/Makefile.sphinx -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/README.md -------------------------------------------------------------------------------- /conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/conf.py -------------------------------------------------------------------------------- /core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/core/Makefile -------------------------------------------------------------------------------- /core/advection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/core/advection.py -------------------------------------------------------------------------------- /core/ana_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/core/ana_profiles.py -------------------------------------------------------------------------------- /core/boussinesq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/core/boussinesq.py -------------------------------------------------------------------------------- /core/boussinesqTS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/core/boussinesqTS.py -------------------------------------------------------------------------------- /core/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/core/default.xml -------------------------------------------------------------------------------- /core/defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/core/defaults.json -------------------------------------------------------------------------------- /core/diagnostics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/core/diagnostics.py -------------------------------------------------------------------------------- /core/euler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/core/euler.py -------------------------------------------------------------------------------- /core/fluid2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/core/fluid2d.py -------------------------------------------------------------------------------- /core/fluxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/core/fluxes.py -------------------------------------------------------------------------------- /core/fortran_advection.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/core/fortran_advection.f90 -------------------------------------------------------------------------------- /core/fortran_diag.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/core/fortran_diag.f90 -------------------------------------------------------------------------------- /core/fortran_fluxes.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/core/fortran_fluxes.f90 -------------------------------------------------------------------------------- /core/fortran_operators.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/core/fortran_operators.f90 -------------------------------------------------------------------------------- /core/fourier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/core/fourier.py -------------------------------------------------------------------------------- /core/gmg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/core/gmg/Makefile -------------------------------------------------------------------------------- /core/gmg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/core/gmg/__init__.py -------------------------------------------------------------------------------- /core/gmg/fortran_multigrid.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/core/gmg/fortran_multigrid.f90 -------------------------------------------------------------------------------- /core/gmg/halo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/core/gmg/halo.py -------------------------------------------------------------------------------- /core/gmg/hierarchy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/core/gmg/hierarchy.py -------------------------------------------------------------------------------- /core/gmg/level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/core/gmg/level.py -------------------------------------------------------------------------------- /core/gmg/subdomains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/core/gmg/subdomains.py -------------------------------------------------------------------------------- /core/grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/core/grid.py -------------------------------------------------------------------------------- /core/island.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/core/island.py -------------------------------------------------------------------------------- /core/mpitools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/core/mpitools.py -------------------------------------------------------------------------------- /core/operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/core/operators.py -------------------------------------------------------------------------------- /core/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/core/output.py -------------------------------------------------------------------------------- /core/parallel_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/core/parallel_file.py -------------------------------------------------------------------------------- /core/param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/core/param.py -------------------------------------------------------------------------------- /core/plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/core/plotting.py -------------------------------------------------------------------------------- /core/qgtwolayers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/core/qgtwolayers.py -------------------------------------------------------------------------------- /core/quasigeostrophic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/core/quasigeostrophic.py -------------------------------------------------------------------------------- /core/restart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/core/restart.py -------------------------------------------------------------------------------- /core/sqg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/core/sqg.py -------------------------------------------------------------------------------- /core/test_euler_log_jobs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/thermalwind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/core/thermalwind.py -------------------------------------------------------------------------------- /core/timers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/core/timers.py -------------------------------------------------------------------------------- /core/timescheme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/core/timescheme.py -------------------------------------------------------------------------------- /core/variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/core/variables.py -------------------------------------------------------------------------------- /docs/experiment_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/docs/experiment_template.py -------------------------------------------------------------------------------- /docs/fluid2d_schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/docs/fluid2d_schematic.pdf -------------------------------------------------------------------------------- /docs/howto.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/docs/howto.rst -------------------------------------------------------------------------------- /docs/model_equations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/docs/model_equations.rst -------------------------------------------------------------------------------- /docs/model_numerics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/docs/model_numerics.rst -------------------------------------------------------------------------------- /docs/parameters.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/docs/parameters.pdf -------------------------------------------------------------------------------- /docs/staggering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/docs/staggering.png -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/environment.yml -------------------------------------------------------------------------------- /experiments/Advection/advection_footprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/experiments/Advection/advection_footprint.py -------------------------------------------------------------------------------- /experiments/Advection/advection_irreversibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/experiments/Advection/advection_irreversibility.py -------------------------------------------------------------------------------- /experiments/Advection/all_about_advection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/experiments/Advection/all_about_advection.py -------------------------------------------------------------------------------- /experiments/Advection/plotting_adv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/experiments/Advection/plotting_adv.py -------------------------------------------------------------------------------- /experiments/GravityCurrent/gravitycurrent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/experiments/GravityCurrent/gravitycurrent.py -------------------------------------------------------------------------------- /experiments/GyreCirculation/double_gyre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/experiments/GyreCirculation/double_gyre.py -------------------------------------------------------------------------------- /experiments/InterfacialWave/interfacialwave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/experiments/InterfacialWave/interfacialwave.py -------------------------------------------------------------------------------- /experiments/Internal_IVP/internalwave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/experiments/Internal_IVP/internalwave.py -------------------------------------------------------------------------------- /experiments/Internal_forced/forcedinternal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/experiments/Internal_forced/forcedinternal.py -------------------------------------------------------------------------------- /experiments/Internal_forced/forcing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/experiments/Internal_forced/forcing.py -------------------------------------------------------------------------------- /experiments/KelvinHelmholtz/kelvin_helmholtz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/experiments/KelvinHelmholtz/kelvin_helmholtz.py -------------------------------------------------------------------------------- /experiments/Leewave/leewave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/experiments/Leewave/leewave.py -------------------------------------------------------------------------------- /experiments/LockExchange/fdse_lab_exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/experiments/LockExchange/fdse_lab_exp.py -------------------------------------------------------------------------------- /experiments/LockExchange/lockexchange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/experiments/LockExchange/lockexchange.py -------------------------------------------------------------------------------- /experiments/QG_channel/channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/experiments/QG_channel/channel.py -------------------------------------------------------------------------------- /experiments/QGbasic/turbqg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/experiments/QGbasic/turbqg.py -------------------------------------------------------------------------------- /experiments/QGbasic/vortex_betaplane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/experiments/QGbasic/vortex_betaplane.py -------------------------------------------------------------------------------- /experiments/QGbasic/vortex_betaplane_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/experiments/QGbasic/vortex_betaplane_v2.py -------------------------------------------------------------------------------- /experiments/QGbasic/vortex_on_topography.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/experiments/QGbasic/vortex_on_topography.py -------------------------------------------------------------------------------- /experiments/RayleighBenard/conv_atmos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/experiments/RayleighBenard/conv_atmos.py -------------------------------------------------------------------------------- /experiments/RayleighBenard/diag_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/experiments/RayleighBenard/diag_conv.py -------------------------------------------------------------------------------- /experiments/RayleighBenard/forcing_rayleigh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/experiments/RayleighBenard/forcing_rayleigh.py -------------------------------------------------------------------------------- /experiments/RayleighBenard/horiz_convection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/experiments/RayleighBenard/horiz_convection.py -------------------------------------------------------------------------------- /experiments/RayleighBenard/rayleigh_benard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/experiments/RayleighBenard/rayleigh_benard.py -------------------------------------------------------------------------------- /experiments/SQG/vortex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/experiments/SQG/vortex.py -------------------------------------------------------------------------------- /experiments/ShearInstab/shear_instability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/experiments/ShearInstab/shear_instability.py -------------------------------------------------------------------------------- /experiments/SymmetricInstability/plotting_SI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/experiments/SymmetricInstability/plotting_SI.py -------------------------------------------------------------------------------- /experiments/SymmetricInstability/symmetric_instab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/experiments/SymmetricInstability/symmetric_instab.py -------------------------------------------------------------------------------- /experiments/TaylorInstability/taylor_instability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/experiments/TaylorInstability/taylor_instability.py -------------------------------------------------------------------------------- /experiments/Twodim_turbulence/freedecay/freedecay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/experiments/Twodim_turbulence/freedecay/freedecay.py -------------------------------------------------------------------------------- /experiments/Twodim_turbulence/spectrum_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/experiments/Twodim_turbulence/spectrum_analysis.py -------------------------------------------------------------------------------- /experiments/Twodim_turbulence/turb2d_forced/energy_cascade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/experiments/Twodim_turbulence/turb2d_forced/energy_cascade.py -------------------------------------------------------------------------------- /experiments/Twodim_turbulence/turb2d_forced/enstrophy_cascade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/experiments/Twodim_turbulence/turb2d_forced/enstrophy_cascade.py -------------------------------------------------------------------------------- /experiments/VonKarman/karman_street.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/experiments/VonKarman/karman_street.py -------------------------------------------------------------------------------- /experiments/Vortex/vortex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/experiments/Vortex/vortex.py -------------------------------------------------------------------------------- /experiments/doublediffusion/doublediffusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/experiments/doublediffusion/doublediffusion.py -------------------------------------------------------------------------------- /experiments/vorticity_dynamics/axisymm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/experiments/vorticity_dynamics/axisymm.py -------------------------------------------------------------------------------- /experiments/vorticity_dynamics/merging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/experiments/vorticity_dynamics/merging.py -------------------------------------------------------------------------------- /experiments/vorticity_dynamics/vortex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/experiments/vorticity_dynamics/vortex.py -------------------------------------------------------------------------------- /experiments/vorticity_dynamics/wavepackets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/experiments/vorticity_dynamics/wavepackets.py -------------------------------------------------------------------------------- /gallery/DW_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/gallery/DW_0.png -------------------------------------------------------------------------------- /gallery/DW_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/gallery/DW_1.png -------------------------------------------------------------------------------- /gallery/TI_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/gallery/TI_0.png -------------------------------------------------------------------------------- /gallery/gallery.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/gallery/gallery.rst -------------------------------------------------------------------------------- /index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/index.rst -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/install.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pvthinker/Fluid2d/HEAD/setup.py --------------------------------------------------------------------------------