├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── functions ├── chemical_reaction_function.f90 ├── dynamical_systems_function.f90 ├── lotka_volterra_function.f90 ├── one_dimension_function.f90 ├── quadratic_function.f90 ├── stochastic_dynamical_systems_function.f90 └── whatever_function.f90 ├── img ├── bogdanov_takens.png ├── bruinsma.png ├── lorenz.png ├── lotka_volterra1.png ├── lotka_volterra2.png ├── one_dim_funct.png ├── pendulum.png ├── plot1.png └── transesterification_isoterm.png ├── modules ├── module_edo.f90 ├── module_integrate.f90 ├── module_linear_equations.f90 ├── module_no_linear_equations.f90 ├── module_probability_distributions.f90 └── module_sdo.f90 ├── plot ├── plot_bogdanov_takens_bifurcation.f90 ├── plot_bruinsma.f90 ├── plot_lorenz_attractor.f90 ├── plot_lotka_volterra.f90 ├── plot_lotka_volterra2.f90 ├── plot_ode_fun1.f90 ├── plot_pendulum.f90 └── plot_transesterification_isoterm.f90 └── test ├── fix_point.f90 ├── integrate_one_dimension.f90 ├── linear_sys.f90 ├── newton_test.f90 ├── ode.f90 ├── probability_distribution.f90 └── sde.f90 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/README.md -------------------------------------------------------------------------------- /functions/chemical_reaction_function.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/functions/chemical_reaction_function.f90 -------------------------------------------------------------------------------- /functions/dynamical_systems_function.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/functions/dynamical_systems_function.f90 -------------------------------------------------------------------------------- /functions/lotka_volterra_function.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/functions/lotka_volterra_function.f90 -------------------------------------------------------------------------------- /functions/one_dimension_function.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/functions/one_dimension_function.f90 -------------------------------------------------------------------------------- /functions/quadratic_function.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/functions/quadratic_function.f90 -------------------------------------------------------------------------------- /functions/stochastic_dynamical_systems_function.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/functions/stochastic_dynamical_systems_function.f90 -------------------------------------------------------------------------------- /functions/whatever_function.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/functions/whatever_function.f90 -------------------------------------------------------------------------------- /img/bogdanov_takens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/img/bogdanov_takens.png -------------------------------------------------------------------------------- /img/bruinsma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/img/bruinsma.png -------------------------------------------------------------------------------- /img/lorenz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/img/lorenz.png -------------------------------------------------------------------------------- /img/lotka_volterra1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/img/lotka_volterra1.png -------------------------------------------------------------------------------- /img/lotka_volterra2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/img/lotka_volterra2.png -------------------------------------------------------------------------------- /img/one_dim_funct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/img/one_dim_funct.png -------------------------------------------------------------------------------- /img/pendulum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/img/pendulum.png -------------------------------------------------------------------------------- /img/plot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/img/plot1.png -------------------------------------------------------------------------------- /img/transesterification_isoterm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/img/transesterification_isoterm.png -------------------------------------------------------------------------------- /modules/module_edo.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/modules/module_edo.f90 -------------------------------------------------------------------------------- /modules/module_integrate.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/modules/module_integrate.f90 -------------------------------------------------------------------------------- /modules/module_linear_equations.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/modules/module_linear_equations.f90 -------------------------------------------------------------------------------- /modules/module_no_linear_equations.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/modules/module_no_linear_equations.f90 -------------------------------------------------------------------------------- /modules/module_probability_distributions.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/modules/module_probability_distributions.f90 -------------------------------------------------------------------------------- /modules/module_sdo.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/modules/module_sdo.f90 -------------------------------------------------------------------------------- /plot/plot_bogdanov_takens_bifurcation.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/plot/plot_bogdanov_takens_bifurcation.f90 -------------------------------------------------------------------------------- /plot/plot_bruinsma.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/plot/plot_bruinsma.f90 -------------------------------------------------------------------------------- /plot/plot_lorenz_attractor.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/plot/plot_lorenz_attractor.f90 -------------------------------------------------------------------------------- /plot/plot_lotka_volterra.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/plot/plot_lotka_volterra.f90 -------------------------------------------------------------------------------- /plot/plot_lotka_volterra2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/plot/plot_lotka_volterra2.f90 -------------------------------------------------------------------------------- /plot/plot_ode_fun1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/plot/plot_ode_fun1.f90 -------------------------------------------------------------------------------- /plot/plot_pendulum.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/plot/plot_pendulum.f90 -------------------------------------------------------------------------------- /plot/plot_transesterification_isoterm.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/plot/plot_transesterification_isoterm.f90 -------------------------------------------------------------------------------- /test/fix_point.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/test/fix_point.f90 -------------------------------------------------------------------------------- /test/integrate_one_dimension.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/test/integrate_one_dimension.f90 -------------------------------------------------------------------------------- /test/linear_sys.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/test/linear_sys.f90 -------------------------------------------------------------------------------- /test/newton_test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/test/newton_test.f90 -------------------------------------------------------------------------------- /test/ode.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/test/ode.f90 -------------------------------------------------------------------------------- /test/probability_distribution.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/test/probability_distribution.f90 -------------------------------------------------------------------------------- /test/sde.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-planelles/numerical-methods-fortran/HEAD/test/sde.f90 --------------------------------------------------------------------------------