├── .gitignore ├── Boost.python └── minimal │ ├── Makefile │ ├── hello_ext.C │ └── test_hello.py ├── FORTRAN ├── BilinearInterpolation │ ├── interpolated.pdf │ ├── interpolation.f90 │ ├── original.pdf │ ├── rect_surface_data.xdr │ └── test_interpolation.py ├── FindElementInArray │ ├── Makefile │ └── find_element_in_array.f90 ├── INI_Parsing │ ├── Makefile │ ├── ini.f90 │ ├── test.ini │ └── test_ini.f90 ├── LinearEquationSolver │ ├── Makefile │ ├── lu_solver.f90 │ ├── test_lu_solver.f90 │ └── test_lu_solver.py └── TridiagonalSolver │ ├── Makefile │ ├── README │ ├── test_tridiag.f90 │ ├── test_tridiag.py │ └── tridiag.f90 ├── Fundamentals └── zip.py ├── GoogleCloudPlatform └── driveAPIexample.py ├── LICENSE ├── Linear_Systems ├── LTI_Simulation_with_Python.py ├── first_order_LTI_step_response.png └── linear_filters.py ├── PairCorrelation ├── README ├── example_2D.py ├── example_3D.py ├── paircorrelation.py └── utilities.py ├── Plotting └── matplotlib │ ├── AxesGrid_example.py │ └── plot_without_axes.py ├── README ├── Visualization └── vtktools.py ├── XML └── write_wxGlade_XML.py ├── f2py └── simple_example │ ├── Makefile │ ├── simple_f2py_example.f90 │ └── test_f2py_example.py └── scipy └── interpolation.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/.gitignore -------------------------------------------------------------------------------- /Boost.python/minimal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/Boost.python/minimal/Makefile -------------------------------------------------------------------------------- /Boost.python/minimal/hello_ext.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/Boost.python/minimal/hello_ext.C -------------------------------------------------------------------------------- /Boost.python/minimal/test_hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/Boost.python/minimal/test_hello.py -------------------------------------------------------------------------------- /FORTRAN/BilinearInterpolation/interpolated.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/FORTRAN/BilinearInterpolation/interpolated.pdf -------------------------------------------------------------------------------- /FORTRAN/BilinearInterpolation/interpolation.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/FORTRAN/BilinearInterpolation/interpolation.f90 -------------------------------------------------------------------------------- /FORTRAN/BilinearInterpolation/original.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/FORTRAN/BilinearInterpolation/original.pdf -------------------------------------------------------------------------------- /FORTRAN/BilinearInterpolation/rect_surface_data.xdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/FORTRAN/BilinearInterpolation/rect_surface_data.xdr -------------------------------------------------------------------------------- /FORTRAN/BilinearInterpolation/test_interpolation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/FORTRAN/BilinearInterpolation/test_interpolation.py -------------------------------------------------------------------------------- /FORTRAN/FindElementInArray/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/FORTRAN/FindElementInArray/Makefile -------------------------------------------------------------------------------- /FORTRAN/FindElementInArray/find_element_in_array.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/FORTRAN/FindElementInArray/find_element_in_array.f90 -------------------------------------------------------------------------------- /FORTRAN/INI_Parsing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/FORTRAN/INI_Parsing/Makefile -------------------------------------------------------------------------------- /FORTRAN/INI_Parsing/ini.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/FORTRAN/INI_Parsing/ini.f90 -------------------------------------------------------------------------------- /FORTRAN/INI_Parsing/test.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/FORTRAN/INI_Parsing/test.ini -------------------------------------------------------------------------------- /FORTRAN/INI_Parsing/test_ini.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/FORTRAN/INI_Parsing/test_ini.f90 -------------------------------------------------------------------------------- /FORTRAN/LinearEquationSolver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/FORTRAN/LinearEquationSolver/Makefile -------------------------------------------------------------------------------- /FORTRAN/LinearEquationSolver/lu_solver.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/FORTRAN/LinearEquationSolver/lu_solver.f90 -------------------------------------------------------------------------------- /FORTRAN/LinearEquationSolver/test_lu_solver.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/FORTRAN/LinearEquationSolver/test_lu_solver.f90 -------------------------------------------------------------------------------- /FORTRAN/LinearEquationSolver/test_lu_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/FORTRAN/LinearEquationSolver/test_lu_solver.py -------------------------------------------------------------------------------- /FORTRAN/TridiagonalSolver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/FORTRAN/TridiagonalSolver/Makefile -------------------------------------------------------------------------------- /FORTRAN/TridiagonalSolver/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/FORTRAN/TridiagonalSolver/README -------------------------------------------------------------------------------- /FORTRAN/TridiagonalSolver/test_tridiag.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/FORTRAN/TridiagonalSolver/test_tridiag.f90 -------------------------------------------------------------------------------- /FORTRAN/TridiagonalSolver/test_tridiag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/FORTRAN/TridiagonalSolver/test_tridiag.py -------------------------------------------------------------------------------- /FORTRAN/TridiagonalSolver/tridiag.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/FORTRAN/TridiagonalSolver/tridiag.f90 -------------------------------------------------------------------------------- /Fundamentals/zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/Fundamentals/zip.py -------------------------------------------------------------------------------- /GoogleCloudPlatform/driveAPIexample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/GoogleCloudPlatform/driveAPIexample.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/LICENSE -------------------------------------------------------------------------------- /Linear_Systems/LTI_Simulation_with_Python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/Linear_Systems/LTI_Simulation_with_Python.py -------------------------------------------------------------------------------- /Linear_Systems/first_order_LTI_step_response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/Linear_Systems/first_order_LTI_step_response.png -------------------------------------------------------------------------------- /Linear_Systems/linear_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/Linear_Systems/linear_filters.py -------------------------------------------------------------------------------- /PairCorrelation/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/PairCorrelation/README -------------------------------------------------------------------------------- /PairCorrelation/example_2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/PairCorrelation/example_2D.py -------------------------------------------------------------------------------- /PairCorrelation/example_3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/PairCorrelation/example_3D.py -------------------------------------------------------------------------------- /PairCorrelation/paircorrelation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/PairCorrelation/paircorrelation.py -------------------------------------------------------------------------------- /PairCorrelation/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/PairCorrelation/utilities.py -------------------------------------------------------------------------------- /Plotting/matplotlib/AxesGrid_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/Plotting/matplotlib/AxesGrid_example.py -------------------------------------------------------------------------------- /Plotting/matplotlib/plot_without_axes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/Plotting/matplotlib/plot_without_axes.py -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | Examples from my web site at http://www.shocksolution.com 2 | -------------------------------------------------------------------------------- /Visualization/vtktools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/Visualization/vtktools.py -------------------------------------------------------------------------------- /XML/write_wxGlade_XML.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/XML/write_wxGlade_XML.py -------------------------------------------------------------------------------- /f2py/simple_example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/f2py/simple_example/Makefile -------------------------------------------------------------------------------- /f2py/simple_example/simple_f2py_example.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/f2py/simple_example/simple_f2py_example.f90 -------------------------------------------------------------------------------- /f2py/simple_example/test_f2py_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/f2py/simple_example/test_f2py_example.py -------------------------------------------------------------------------------- /scipy/interpolation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/Shocksolution_Examples/HEAD/scipy/interpolation.py --------------------------------------------------------------------------------