├── .gitignore ├── Bilinear Interpolation ├── README.md ├── Sample Output.png └── bilinear_int.py ├── Evaluating Square Root ├── README.md └── sqrt.py ├── Feigenbaum Plot ├── FP_Comparison.py ├── FP_Iterations.py ├── Sample Output.png └── UNDOCUMENTED.md ├── Gradient Descent ├── UNDOCUMENTED.md ├── altitude.txt ├── max_alt.png ├── max_alt.py ├── min_STM.png ├── min_STM.py └── stm.txt ├── Lotka-Volterra Simulation ├── Lotka-Volterra.py └── Output Graphs │ ├── Function of N.png │ └── Function of Time │ ├── 1000 Diff.png │ ├── 1000 Euler.png │ ├── 1000 RK4.png │ ├── 10000 Diff.png │ ├── 10000 Euler.png │ ├── 10000 RK4.png │ ├── 100000 Diff.png │ ├── 100000 Euler.png │ ├── 100000 RK4.png │ ├── 1000000 Diff.png │ ├── 1000000 Euler.png │ └── 1000000 RK4.png ├── Numerical Differentiation and Integration ├── UNDOCUMENTED.md ├── derivatives_graph.py └── monte_carlo_and_riemann.py ├── Powers of Euler's Constant ├── README.md ├── exp ├── exp.cpp └── exp.py ├── Projectile Motion with Viscous Drag ├── Projectile_Motion.py ├── README.md ├── Speed vs Distance.png └── Speed vs Theta.png ├── README.md ├── Random Walk Simulation ├── README.md ├── Sample Outputs │ ├── M_vs._Time.png │ ├── RMS_vs._Time.png │ ├── Ratio_vs._Time.png │ └── Sim.png └── random_walk.py └── packet.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/.gitignore -------------------------------------------------------------------------------- /Bilinear Interpolation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Bilinear Interpolation/README.md -------------------------------------------------------------------------------- /Bilinear Interpolation/Sample Output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Bilinear Interpolation/Sample Output.png -------------------------------------------------------------------------------- /Bilinear Interpolation/bilinear_int.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Bilinear Interpolation/bilinear_int.py -------------------------------------------------------------------------------- /Evaluating Square Root/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Evaluating Square Root/README.md -------------------------------------------------------------------------------- /Evaluating Square Root/sqrt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Evaluating Square Root/sqrt.py -------------------------------------------------------------------------------- /Feigenbaum Plot/FP_Comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Feigenbaum Plot/FP_Comparison.py -------------------------------------------------------------------------------- /Feigenbaum Plot/FP_Iterations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Feigenbaum Plot/FP_Iterations.py -------------------------------------------------------------------------------- /Feigenbaum Plot/Sample Output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Feigenbaum Plot/Sample Output.png -------------------------------------------------------------------------------- /Feigenbaum Plot/UNDOCUMENTED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Feigenbaum Plot/UNDOCUMENTED.md -------------------------------------------------------------------------------- /Gradient Descent/UNDOCUMENTED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Gradient Descent/UNDOCUMENTED.md -------------------------------------------------------------------------------- /Gradient Descent/altitude.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Gradient Descent/altitude.txt -------------------------------------------------------------------------------- /Gradient Descent/max_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Gradient Descent/max_alt.png -------------------------------------------------------------------------------- /Gradient Descent/max_alt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Gradient Descent/max_alt.py -------------------------------------------------------------------------------- /Gradient Descent/min_STM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Gradient Descent/min_STM.png -------------------------------------------------------------------------------- /Gradient Descent/min_STM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Gradient Descent/min_STM.py -------------------------------------------------------------------------------- /Gradient Descent/stm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Gradient Descent/stm.txt -------------------------------------------------------------------------------- /Lotka-Volterra Simulation/Lotka-Volterra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Lotka-Volterra Simulation/Lotka-Volterra.py -------------------------------------------------------------------------------- /Lotka-Volterra Simulation/Output Graphs/Function of N.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Lotka-Volterra Simulation/Output Graphs/Function of N.png -------------------------------------------------------------------------------- /Lotka-Volterra Simulation/Output Graphs/Function of Time/1000 Diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Lotka-Volterra Simulation/Output Graphs/Function of Time/1000 Diff.png -------------------------------------------------------------------------------- /Lotka-Volterra Simulation/Output Graphs/Function of Time/1000 Euler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Lotka-Volterra Simulation/Output Graphs/Function of Time/1000 Euler.png -------------------------------------------------------------------------------- /Lotka-Volterra Simulation/Output Graphs/Function of Time/1000 RK4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Lotka-Volterra Simulation/Output Graphs/Function of Time/1000 RK4.png -------------------------------------------------------------------------------- /Lotka-Volterra Simulation/Output Graphs/Function of Time/10000 Diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Lotka-Volterra Simulation/Output Graphs/Function of Time/10000 Diff.png -------------------------------------------------------------------------------- /Lotka-Volterra Simulation/Output Graphs/Function of Time/10000 Euler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Lotka-Volterra Simulation/Output Graphs/Function of Time/10000 Euler.png -------------------------------------------------------------------------------- /Lotka-Volterra Simulation/Output Graphs/Function of Time/10000 RK4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Lotka-Volterra Simulation/Output Graphs/Function of Time/10000 RK4.png -------------------------------------------------------------------------------- /Lotka-Volterra Simulation/Output Graphs/Function of Time/100000 Diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Lotka-Volterra Simulation/Output Graphs/Function of Time/100000 Diff.png -------------------------------------------------------------------------------- /Lotka-Volterra Simulation/Output Graphs/Function of Time/100000 Euler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Lotka-Volterra Simulation/Output Graphs/Function of Time/100000 Euler.png -------------------------------------------------------------------------------- /Lotka-Volterra Simulation/Output Graphs/Function of Time/100000 RK4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Lotka-Volterra Simulation/Output Graphs/Function of Time/100000 RK4.png -------------------------------------------------------------------------------- /Lotka-Volterra Simulation/Output Graphs/Function of Time/1000000 Diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Lotka-Volterra Simulation/Output Graphs/Function of Time/1000000 Diff.png -------------------------------------------------------------------------------- /Lotka-Volterra Simulation/Output Graphs/Function of Time/1000000 Euler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Lotka-Volterra Simulation/Output Graphs/Function of Time/1000000 Euler.png -------------------------------------------------------------------------------- /Lotka-Volterra Simulation/Output Graphs/Function of Time/1000000 RK4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Lotka-Volterra Simulation/Output Graphs/Function of Time/1000000 RK4.png -------------------------------------------------------------------------------- /Numerical Differentiation and Integration/UNDOCUMENTED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Numerical Differentiation and Integration/UNDOCUMENTED.md -------------------------------------------------------------------------------- /Numerical Differentiation and Integration/derivatives_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Numerical Differentiation and Integration/derivatives_graph.py -------------------------------------------------------------------------------- /Numerical Differentiation and Integration/monte_carlo_and_riemann.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Numerical Differentiation and Integration/monte_carlo_and_riemann.py -------------------------------------------------------------------------------- /Powers of Euler's Constant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Powers of Euler's Constant/README.md -------------------------------------------------------------------------------- /Powers of Euler's Constant/exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Powers of Euler's Constant/exp -------------------------------------------------------------------------------- /Powers of Euler's Constant/exp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Powers of Euler's Constant/exp.cpp -------------------------------------------------------------------------------- /Powers of Euler's Constant/exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Powers of Euler's Constant/exp.py -------------------------------------------------------------------------------- /Projectile Motion with Viscous Drag/Projectile_Motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Projectile Motion with Viscous Drag/Projectile_Motion.py -------------------------------------------------------------------------------- /Projectile Motion with Viscous Drag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Projectile Motion with Viscous Drag/README.md -------------------------------------------------------------------------------- /Projectile Motion with Viscous Drag/Speed vs Distance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Projectile Motion with Viscous Drag/Speed vs Distance.png -------------------------------------------------------------------------------- /Projectile Motion with Viscous Drag/Speed vs Theta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Projectile Motion with Viscous Drag/Speed vs Theta.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/README.md -------------------------------------------------------------------------------- /Random Walk Simulation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Random Walk Simulation/README.md -------------------------------------------------------------------------------- /Random Walk Simulation/Sample Outputs/M_vs._Time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Random Walk Simulation/Sample Outputs/M_vs._Time.png -------------------------------------------------------------------------------- /Random Walk Simulation/Sample Outputs/RMS_vs._Time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Random Walk Simulation/Sample Outputs/RMS_vs._Time.png -------------------------------------------------------------------------------- /Random Walk Simulation/Sample Outputs/Ratio_vs._Time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Random Walk Simulation/Sample Outputs/Ratio_vs._Time.png -------------------------------------------------------------------------------- /Random Walk Simulation/Sample Outputs/Sim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Random Walk Simulation/Sample Outputs/Sim.png -------------------------------------------------------------------------------- /Random Walk Simulation/random_walk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/Random Walk Simulation/random_walk.py -------------------------------------------------------------------------------- /packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvey2phase/computational-physics/HEAD/packet.c --------------------------------------------------------------------------------