├── LICENSE ├── README.md ├── code ├── Ising2D │ ├── Metropolis_algorithm │ │ ├── autocor_fnct_metro.ipynb │ │ ├── autocorrelation_fnct.ipynb │ │ ├── equilibration_time.ipynb │ │ ├── ising2D_script.ipynb │ │ ├── ising2d_run.ipynb │ │ ├── ising2dmetropolis.py │ │ ├── ising2dmetropolis.pyc │ │ ├── property_read.ipynb │ │ └── spin │ │ │ └── spin │ ├── Metropolis_algorithm_with_SSE │ │ ├── autocorrelation_fnct.ipynb │ │ ├── equilibration_time_SSE.ipynb │ │ ├── ising2D_SSE_script.ipynb │ │ └── spin │ │ │ └── spin │ └── Wolff_algorithm │ │ ├── autocor_fnct_graph.ipynb │ │ ├── autocorrelation_fnct.ipynb │ │ ├── binder_ratio.ipynb │ │ ├── equilibration_time.ipynb │ │ ├── ising2D_wolff_run.ipynb │ │ ├── ising2D_wolff_script.ipynb │ │ ├── ising2dwolff.py │ │ ├── ising2dwolff.pyc │ │ ├── property_read.ipynb │ │ └── spin │ │ └── spin ├── MonteCarlo │ ├── Others │ │ ├── detailed_balance.ipynb │ │ ├── detailed_balance.py │ │ ├── ex1_4_neighbor_table.ipynb │ │ ├── ex1_4_neighbor_table.py │ │ ├── two_side metropolis.py │ │ └── two_side_metropolis.ipynb │ ├── Pi │ │ ├── .ipynb_checkpoints │ │ │ └── ex1_2_markov_pi-checkpoint.ipynb │ │ ├── ex1_1_direct_pi.ipynb │ │ ├── ex1_2_markov_pi.ipynb │ │ ├── mean_square_deviation_Markov_sampling.png │ │ ├── mean_square_deviation_direct_sampling.png │ │ └── rejection_rate_Markov_sampling.png │ └── central_limit_theorem │ │ ├── central_limit_theorem.py │ │ ├── clt.ipynb │ │ ├── clt.png │ │ └── clt2.png └── graphics │ ├── autocorrelation │ ├── autocorrelation1_T2,000000_L32.png │ ├── autocorrelation1_T3,000000_L16.png │ ├── autocorrelation1_T3,000000_L32.png │ ├── autocorrelation2_T2,000000.png │ ├── autocorrelation_T2,000000.png │ ├── autocorrelation_T2,000000_L32.png │ ├── autocorrelation_T3,000000_L16.png │ ├── autocorrelation_T3,000000_L32.png │ ├── correlation_fit_T2,000000.png │ ├── correlation_fit_T2,000000_L32.png │ ├── correlation_fit_T3,000000_L16.png │ └── correlation_fit_T3,000000_L32.png │ ├── equilibration_time │ ├── magnet_allup_T1.600000_L16.png │ ├── magnet_allup_T2,000000.png │ ├── magnet_allup_T2,000000_L32.png │ ├── magnet_allup_T3,000000_L16.png │ ├── magnet_allup_T3,000000_L32.png │ └── magnet_random_T2,000000.png │ ├── metropolis_sse │ ├── autocorrelation1_T2,000000_L32.png │ ├── autocorrelation1_T3,000000_L16.png │ ├── autocorrelation1_T3,000000_L32.png │ ├── autocorrelation_T2,000000_L32.png │ ├── autocorrelation_T3,000000_L16.png │ ├── autocorrelation_T3,000000_L32.png │ ├── correlation_fit_T2,000000_L32.png │ ├── correlation_fit_T3,000000_L16.png │ ├── correlation_fit_T3,000000_L32.png │ ├── magnet_allup_T2,000000_L32.png │ ├── magnet_allup_T3,000000_L16.png │ ├── magnet_allup_T3,000000_L32.png │ ├── n_T2,000000L32.png │ ├── n_T3,000000L16.png │ └── n_T3,000000L32.png │ └── properties │ ├── acceptance_ratio_L50.png │ ├── binder_ratio2_wolff.png │ ├── binder_ratio_wolff.png │ ├── correlation_time_L50.png │ ├── critical_slowing_metropolis_T=2,269.png │ ├── critical_slowing_metropolis_T=3.png │ ├── critical_slowing_metropolis_logtime_T=2,269.png │ ├── critical_slowing_metropolis_logtime_T=3.png │ ├── dynamic_exponent.png │ ├── dynamic_exponent_wolff.png │ ├── energy2_L50.png │ ├── gamma_over_nu_wolff.png │ ├── internal_energy_L50.png │ ├── magnetic_suscept_L50.png │ ├── magnetic_suscept_wolff.png │ ├── magnetization2_L50.png │ ├── magnetization_L50.png │ ├── one_over_nu_wolff.png │ ├── scaled_log_spec_heat_wolff.png │ ├── scaled_magnetic_suscept_wolff.png │ ├── scaled_spec_heat_wolff.png │ └── specific_heat_L50.png ├── hpc └── install.sh ├── reference ├── JChemPhys_21_1087.pdf ├── MC_by_Metropolis.pdf ├── M_E_J_Newman-G_T_Barkema_Monte_Carlo_Methods.djvu └── randomness_as_a_resource_by_Hayes.pdf ├── reports ├── codes_for_reports │ ├── metropolis_report.py │ ├── metropolis_sse_report.py │ └── wolff_report.py ├── kaplan_ifp_report.aux ├── kaplan_ifp_report.bbl ├── kaplan_ifp_report.bib ├── kaplan_ifp_report.blg ├── kaplan_ifp_report.dvi ├── kaplan_ifp_report.lof ├── kaplan_ifp_report.log ├── kaplan_ifp_report.lot ├── kaplan_ifp_report.out ├── kaplan_ifp_report.pdf ├── kaplan_ifp_report.pdf.xoj ├── kaplan_ifp_report.synctex.gz ├── kaplan_ifp_report.tex ├── kaplan_ifp_report.toc ├── kaplan_ifp_report_check.pdf └── presentation │ ├── Sunum_Arka_Plan_Gorseli.jpg │ ├── presentation.aux │ ├── presentation.log │ ├── presentation.nav │ ├── presentation.out │ ├── presentation.pdf │ ├── presentation.snm │ ├── presentation.synctex.gz │ ├── presentation.tex │ ├── presentation.toc │ ├── presentation_Levent_Subasi's_conflicted_copy_2014-01-08.log │ ├── presentation_Levent_Subasi's_conflicted_copy_2014-01-08.pdf │ ├── presentation_Levent_Subasi's_conflicted_copy_2014-01-08.tex │ ├── presentation_Onur_Kaplan's_conflicted_copy_2014-01-06.pdf │ └── presentation_Onur_Kaplan's_conflicted_copy_2014-01-06.tex └── sandvik ├── average.f90 ├── bindata.dat ├── ising.in ├── ising2d.f90 ├── mc.pdf ├── seed.in ├── systemvariables.mod ├── xave └── xising2d /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/README.md -------------------------------------------------------------------------------- /code/Ising2D/Metropolis_algorithm/autocor_fnct_metro.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/Ising2D/Metropolis_algorithm/autocor_fnct_metro.ipynb -------------------------------------------------------------------------------- /code/Ising2D/Metropolis_algorithm/autocorrelation_fnct.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/Ising2D/Metropolis_algorithm/autocorrelation_fnct.ipynb -------------------------------------------------------------------------------- /code/Ising2D/Metropolis_algorithm/equilibration_time.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/Ising2D/Metropolis_algorithm/equilibration_time.ipynb -------------------------------------------------------------------------------- /code/Ising2D/Metropolis_algorithm/ising2D_script.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/Ising2D/Metropolis_algorithm/ising2D_script.ipynb -------------------------------------------------------------------------------- /code/Ising2D/Metropolis_algorithm/ising2d_run.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/Ising2D/Metropolis_algorithm/ising2d_run.ipynb -------------------------------------------------------------------------------- /code/Ising2D/Metropolis_algorithm/ising2dmetropolis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/Ising2D/Metropolis_algorithm/ising2dmetropolis.py -------------------------------------------------------------------------------- /code/Ising2D/Metropolis_algorithm/ising2dmetropolis.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/Ising2D/Metropolis_algorithm/ising2dmetropolis.pyc -------------------------------------------------------------------------------- /code/Ising2D/Metropolis_algorithm/property_read.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/Ising2D/Metropolis_algorithm/property_read.ipynb -------------------------------------------------------------------------------- /code/Ising2D/Metropolis_algorithm/spin/spin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/Ising2D/Metropolis_algorithm/spin/spin -------------------------------------------------------------------------------- /code/Ising2D/Metropolis_algorithm_with_SSE/autocorrelation_fnct.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/Ising2D/Metropolis_algorithm_with_SSE/autocorrelation_fnct.ipynb -------------------------------------------------------------------------------- /code/Ising2D/Metropolis_algorithm_with_SSE/equilibration_time_SSE.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/Ising2D/Metropolis_algorithm_with_SSE/equilibration_time_SSE.ipynb -------------------------------------------------------------------------------- /code/Ising2D/Metropolis_algorithm_with_SSE/ising2D_SSE_script.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/Ising2D/Metropolis_algorithm_with_SSE/ising2D_SSE_script.ipynb -------------------------------------------------------------------------------- /code/Ising2D/Metropolis_algorithm_with_SSE/spin/spin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/Ising2D/Metropolis_algorithm_with_SSE/spin/spin -------------------------------------------------------------------------------- /code/Ising2D/Wolff_algorithm/autocor_fnct_graph.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/Ising2D/Wolff_algorithm/autocor_fnct_graph.ipynb -------------------------------------------------------------------------------- /code/Ising2D/Wolff_algorithm/autocorrelation_fnct.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/Ising2D/Wolff_algorithm/autocorrelation_fnct.ipynb -------------------------------------------------------------------------------- /code/Ising2D/Wolff_algorithm/binder_ratio.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/Ising2D/Wolff_algorithm/binder_ratio.ipynb -------------------------------------------------------------------------------- /code/Ising2D/Wolff_algorithm/equilibration_time.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/Ising2D/Wolff_algorithm/equilibration_time.ipynb -------------------------------------------------------------------------------- /code/Ising2D/Wolff_algorithm/ising2D_wolff_run.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/Ising2D/Wolff_algorithm/ising2D_wolff_run.ipynb -------------------------------------------------------------------------------- /code/Ising2D/Wolff_algorithm/ising2D_wolff_script.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/Ising2D/Wolff_algorithm/ising2D_wolff_script.ipynb -------------------------------------------------------------------------------- /code/Ising2D/Wolff_algorithm/ising2dwolff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/Ising2D/Wolff_algorithm/ising2dwolff.py -------------------------------------------------------------------------------- /code/Ising2D/Wolff_algorithm/ising2dwolff.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/Ising2D/Wolff_algorithm/ising2dwolff.pyc -------------------------------------------------------------------------------- /code/Ising2D/Wolff_algorithm/property_read.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/Ising2D/Wolff_algorithm/property_read.ipynb -------------------------------------------------------------------------------- /code/Ising2D/Wolff_algorithm/spin/spin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/Ising2D/Wolff_algorithm/spin/spin -------------------------------------------------------------------------------- /code/MonteCarlo/Others/detailed_balance.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/MonteCarlo/Others/detailed_balance.ipynb -------------------------------------------------------------------------------- /code/MonteCarlo/Others/detailed_balance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/MonteCarlo/Others/detailed_balance.py -------------------------------------------------------------------------------- /code/MonteCarlo/Others/ex1_4_neighbor_table.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/MonteCarlo/Others/ex1_4_neighbor_table.ipynb -------------------------------------------------------------------------------- /code/MonteCarlo/Others/ex1_4_neighbor_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/MonteCarlo/Others/ex1_4_neighbor_table.py -------------------------------------------------------------------------------- /code/MonteCarlo/Others/two_side metropolis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/MonteCarlo/Others/two_side metropolis.py -------------------------------------------------------------------------------- /code/MonteCarlo/Others/two_side_metropolis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/MonteCarlo/Others/two_side_metropolis.ipynb -------------------------------------------------------------------------------- /code/MonteCarlo/Pi/.ipynb_checkpoints/ex1_2_markov_pi-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/MonteCarlo/Pi/.ipynb_checkpoints/ex1_2_markov_pi-checkpoint.ipynb -------------------------------------------------------------------------------- /code/MonteCarlo/Pi/ex1_1_direct_pi.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/MonteCarlo/Pi/ex1_1_direct_pi.ipynb -------------------------------------------------------------------------------- /code/MonteCarlo/Pi/ex1_2_markov_pi.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/MonteCarlo/Pi/ex1_2_markov_pi.ipynb -------------------------------------------------------------------------------- /code/MonteCarlo/Pi/mean_square_deviation_Markov_sampling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/MonteCarlo/Pi/mean_square_deviation_Markov_sampling.png -------------------------------------------------------------------------------- /code/MonteCarlo/Pi/mean_square_deviation_direct_sampling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/MonteCarlo/Pi/mean_square_deviation_direct_sampling.png -------------------------------------------------------------------------------- /code/MonteCarlo/Pi/rejection_rate_Markov_sampling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/MonteCarlo/Pi/rejection_rate_Markov_sampling.png -------------------------------------------------------------------------------- /code/MonteCarlo/central_limit_theorem/central_limit_theorem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/MonteCarlo/central_limit_theorem/central_limit_theorem.py -------------------------------------------------------------------------------- /code/MonteCarlo/central_limit_theorem/clt.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/MonteCarlo/central_limit_theorem/clt.ipynb -------------------------------------------------------------------------------- /code/MonteCarlo/central_limit_theorem/clt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/MonteCarlo/central_limit_theorem/clt.png -------------------------------------------------------------------------------- /code/MonteCarlo/central_limit_theorem/clt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/MonteCarlo/central_limit_theorem/clt2.png -------------------------------------------------------------------------------- /code/graphics/autocorrelation/autocorrelation1_T2,000000_L32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/autocorrelation/autocorrelation1_T2,000000_L32.png -------------------------------------------------------------------------------- /code/graphics/autocorrelation/autocorrelation1_T3,000000_L16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/autocorrelation/autocorrelation1_T3,000000_L16.png -------------------------------------------------------------------------------- /code/graphics/autocorrelation/autocorrelation1_T3,000000_L32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/autocorrelation/autocorrelation1_T3,000000_L32.png -------------------------------------------------------------------------------- /code/graphics/autocorrelation/autocorrelation2_T2,000000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/autocorrelation/autocorrelation2_T2,000000.png -------------------------------------------------------------------------------- /code/graphics/autocorrelation/autocorrelation_T2,000000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/autocorrelation/autocorrelation_T2,000000.png -------------------------------------------------------------------------------- /code/graphics/autocorrelation/autocorrelation_T2,000000_L32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/autocorrelation/autocorrelation_T2,000000_L32.png -------------------------------------------------------------------------------- /code/graphics/autocorrelation/autocorrelation_T3,000000_L16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/autocorrelation/autocorrelation_T3,000000_L16.png -------------------------------------------------------------------------------- /code/graphics/autocorrelation/autocorrelation_T3,000000_L32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/autocorrelation/autocorrelation_T3,000000_L32.png -------------------------------------------------------------------------------- /code/graphics/autocorrelation/correlation_fit_T2,000000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/autocorrelation/correlation_fit_T2,000000.png -------------------------------------------------------------------------------- /code/graphics/autocorrelation/correlation_fit_T2,000000_L32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/autocorrelation/correlation_fit_T2,000000_L32.png -------------------------------------------------------------------------------- /code/graphics/autocorrelation/correlation_fit_T3,000000_L16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/autocorrelation/correlation_fit_T3,000000_L16.png -------------------------------------------------------------------------------- /code/graphics/autocorrelation/correlation_fit_T3,000000_L32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/autocorrelation/correlation_fit_T3,000000_L32.png -------------------------------------------------------------------------------- /code/graphics/equilibration_time/magnet_allup_T1.600000_L16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/equilibration_time/magnet_allup_T1.600000_L16.png -------------------------------------------------------------------------------- /code/graphics/equilibration_time/magnet_allup_T2,000000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/equilibration_time/magnet_allup_T2,000000.png -------------------------------------------------------------------------------- /code/graphics/equilibration_time/magnet_allup_T2,000000_L32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/equilibration_time/magnet_allup_T2,000000_L32.png -------------------------------------------------------------------------------- /code/graphics/equilibration_time/magnet_allup_T3,000000_L16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/equilibration_time/magnet_allup_T3,000000_L16.png -------------------------------------------------------------------------------- /code/graphics/equilibration_time/magnet_allup_T3,000000_L32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/equilibration_time/magnet_allup_T3,000000_L32.png -------------------------------------------------------------------------------- /code/graphics/equilibration_time/magnet_random_T2,000000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/equilibration_time/magnet_random_T2,000000.png -------------------------------------------------------------------------------- /code/graphics/metropolis_sse/autocorrelation1_T2,000000_L32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/metropolis_sse/autocorrelation1_T2,000000_L32.png -------------------------------------------------------------------------------- /code/graphics/metropolis_sse/autocorrelation1_T3,000000_L16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/metropolis_sse/autocorrelation1_T3,000000_L16.png -------------------------------------------------------------------------------- /code/graphics/metropolis_sse/autocorrelation1_T3,000000_L32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/metropolis_sse/autocorrelation1_T3,000000_L32.png -------------------------------------------------------------------------------- /code/graphics/metropolis_sse/autocorrelation_T2,000000_L32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/metropolis_sse/autocorrelation_T2,000000_L32.png -------------------------------------------------------------------------------- /code/graphics/metropolis_sse/autocorrelation_T3,000000_L16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/metropolis_sse/autocorrelation_T3,000000_L16.png -------------------------------------------------------------------------------- /code/graphics/metropolis_sse/autocorrelation_T3,000000_L32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/metropolis_sse/autocorrelation_T3,000000_L32.png -------------------------------------------------------------------------------- /code/graphics/metropolis_sse/correlation_fit_T2,000000_L32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/metropolis_sse/correlation_fit_T2,000000_L32.png -------------------------------------------------------------------------------- /code/graphics/metropolis_sse/correlation_fit_T3,000000_L16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/metropolis_sse/correlation_fit_T3,000000_L16.png -------------------------------------------------------------------------------- /code/graphics/metropolis_sse/correlation_fit_T3,000000_L32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/metropolis_sse/correlation_fit_T3,000000_L32.png -------------------------------------------------------------------------------- /code/graphics/metropolis_sse/magnet_allup_T2,000000_L32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/metropolis_sse/magnet_allup_T2,000000_L32.png -------------------------------------------------------------------------------- /code/graphics/metropolis_sse/magnet_allup_T3,000000_L16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/metropolis_sse/magnet_allup_T3,000000_L16.png -------------------------------------------------------------------------------- /code/graphics/metropolis_sse/magnet_allup_T3,000000_L32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/metropolis_sse/magnet_allup_T3,000000_L32.png -------------------------------------------------------------------------------- /code/graphics/metropolis_sse/n_T2,000000L32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/metropolis_sse/n_T2,000000L32.png -------------------------------------------------------------------------------- /code/graphics/metropolis_sse/n_T3,000000L16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/metropolis_sse/n_T3,000000L16.png -------------------------------------------------------------------------------- /code/graphics/metropolis_sse/n_T3,000000L32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/metropolis_sse/n_T3,000000L32.png -------------------------------------------------------------------------------- /code/graphics/properties/acceptance_ratio_L50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/properties/acceptance_ratio_L50.png -------------------------------------------------------------------------------- /code/graphics/properties/binder_ratio2_wolff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/properties/binder_ratio2_wolff.png -------------------------------------------------------------------------------- /code/graphics/properties/binder_ratio_wolff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/properties/binder_ratio_wolff.png -------------------------------------------------------------------------------- /code/graphics/properties/correlation_time_L50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/properties/correlation_time_L50.png -------------------------------------------------------------------------------- /code/graphics/properties/critical_slowing_metropolis_T=2,269.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/properties/critical_slowing_metropolis_T=2,269.png -------------------------------------------------------------------------------- /code/graphics/properties/critical_slowing_metropolis_T=3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/properties/critical_slowing_metropolis_T=3.png -------------------------------------------------------------------------------- /code/graphics/properties/critical_slowing_metropolis_logtime_T=2,269.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/properties/critical_slowing_metropolis_logtime_T=2,269.png -------------------------------------------------------------------------------- /code/graphics/properties/critical_slowing_metropolis_logtime_T=3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/properties/critical_slowing_metropolis_logtime_T=3.png -------------------------------------------------------------------------------- /code/graphics/properties/dynamic_exponent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/properties/dynamic_exponent.png -------------------------------------------------------------------------------- /code/graphics/properties/dynamic_exponent_wolff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/properties/dynamic_exponent_wolff.png -------------------------------------------------------------------------------- /code/graphics/properties/energy2_L50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/properties/energy2_L50.png -------------------------------------------------------------------------------- /code/graphics/properties/gamma_over_nu_wolff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/properties/gamma_over_nu_wolff.png -------------------------------------------------------------------------------- /code/graphics/properties/internal_energy_L50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/properties/internal_energy_L50.png -------------------------------------------------------------------------------- /code/graphics/properties/magnetic_suscept_L50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/properties/magnetic_suscept_L50.png -------------------------------------------------------------------------------- /code/graphics/properties/magnetic_suscept_wolff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/properties/magnetic_suscept_wolff.png -------------------------------------------------------------------------------- /code/graphics/properties/magnetization2_L50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/properties/magnetization2_L50.png -------------------------------------------------------------------------------- /code/graphics/properties/magnetization_L50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/properties/magnetization_L50.png -------------------------------------------------------------------------------- /code/graphics/properties/one_over_nu_wolff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/properties/one_over_nu_wolff.png -------------------------------------------------------------------------------- /code/graphics/properties/scaled_log_spec_heat_wolff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/properties/scaled_log_spec_heat_wolff.png -------------------------------------------------------------------------------- /code/graphics/properties/scaled_magnetic_suscept_wolff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/properties/scaled_magnetic_suscept_wolff.png -------------------------------------------------------------------------------- /code/graphics/properties/scaled_spec_heat_wolff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/properties/scaled_spec_heat_wolff.png -------------------------------------------------------------------------------- /code/graphics/properties/specific_heat_L50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/code/graphics/properties/specific_heat_L50.png -------------------------------------------------------------------------------- /hpc/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/hpc/install.sh -------------------------------------------------------------------------------- /reference/JChemPhys_21_1087.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/reference/JChemPhys_21_1087.pdf -------------------------------------------------------------------------------- /reference/MC_by_Metropolis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/reference/MC_by_Metropolis.pdf -------------------------------------------------------------------------------- /reference/M_E_J_Newman-G_T_Barkema_Monte_Carlo_Methods.djvu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/reference/M_E_J_Newman-G_T_Barkema_Monte_Carlo_Methods.djvu -------------------------------------------------------------------------------- /reference/randomness_as_a_resource_by_Hayes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/reference/randomness_as_a_resource_by_Hayes.pdf -------------------------------------------------------------------------------- /reports/codes_for_reports/metropolis_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/reports/codes_for_reports/metropolis_report.py -------------------------------------------------------------------------------- /reports/codes_for_reports/metropolis_sse_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/reports/codes_for_reports/metropolis_sse_report.py -------------------------------------------------------------------------------- /reports/codes_for_reports/wolff_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/reports/codes_for_reports/wolff_report.py -------------------------------------------------------------------------------- /reports/kaplan_ifp_report.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/reports/kaplan_ifp_report.aux -------------------------------------------------------------------------------- /reports/kaplan_ifp_report.bbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/reports/kaplan_ifp_report.bbl -------------------------------------------------------------------------------- /reports/kaplan_ifp_report.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/reports/kaplan_ifp_report.bib -------------------------------------------------------------------------------- /reports/kaplan_ifp_report.blg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/reports/kaplan_ifp_report.blg -------------------------------------------------------------------------------- /reports/kaplan_ifp_report.dvi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/reports/kaplan_ifp_report.dvi -------------------------------------------------------------------------------- /reports/kaplan_ifp_report.lof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/reports/kaplan_ifp_report.lof -------------------------------------------------------------------------------- /reports/kaplan_ifp_report.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/reports/kaplan_ifp_report.log -------------------------------------------------------------------------------- /reports/kaplan_ifp_report.lot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/reports/kaplan_ifp_report.lot -------------------------------------------------------------------------------- /reports/kaplan_ifp_report.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/reports/kaplan_ifp_report.out -------------------------------------------------------------------------------- /reports/kaplan_ifp_report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/reports/kaplan_ifp_report.pdf -------------------------------------------------------------------------------- /reports/kaplan_ifp_report.pdf.xoj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/reports/kaplan_ifp_report.pdf.xoj -------------------------------------------------------------------------------- /reports/kaplan_ifp_report.synctex.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/reports/kaplan_ifp_report.synctex.gz -------------------------------------------------------------------------------- /reports/kaplan_ifp_report.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/reports/kaplan_ifp_report.tex -------------------------------------------------------------------------------- /reports/kaplan_ifp_report.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/reports/kaplan_ifp_report.toc -------------------------------------------------------------------------------- /reports/kaplan_ifp_report_check.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/reports/kaplan_ifp_report_check.pdf -------------------------------------------------------------------------------- /reports/presentation/Sunum_Arka_Plan_Gorseli.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/reports/presentation/Sunum_Arka_Plan_Gorseli.jpg -------------------------------------------------------------------------------- /reports/presentation/presentation.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/reports/presentation/presentation.aux -------------------------------------------------------------------------------- /reports/presentation/presentation.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/reports/presentation/presentation.log -------------------------------------------------------------------------------- /reports/presentation/presentation.nav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/reports/presentation/presentation.nav -------------------------------------------------------------------------------- /reports/presentation/presentation.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/reports/presentation/presentation.out -------------------------------------------------------------------------------- /reports/presentation/presentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/reports/presentation/presentation.pdf -------------------------------------------------------------------------------- /reports/presentation/presentation.snm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reports/presentation/presentation.synctex.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/reports/presentation/presentation.synctex.gz -------------------------------------------------------------------------------- /reports/presentation/presentation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/reports/presentation/presentation.tex -------------------------------------------------------------------------------- /reports/presentation/presentation.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/reports/presentation/presentation.toc -------------------------------------------------------------------------------- /reports/presentation/presentation_Levent_Subasi's_conflicted_copy_2014-01-08.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/reports/presentation/presentation_Levent_Subasi's_conflicted_copy_2014-01-08.log -------------------------------------------------------------------------------- /reports/presentation/presentation_Levent_Subasi's_conflicted_copy_2014-01-08.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/reports/presentation/presentation_Levent_Subasi's_conflicted_copy_2014-01-08.pdf -------------------------------------------------------------------------------- /reports/presentation/presentation_Levent_Subasi's_conflicted_copy_2014-01-08.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/reports/presentation/presentation_Levent_Subasi's_conflicted_copy_2014-01-08.tex -------------------------------------------------------------------------------- /reports/presentation/presentation_Onur_Kaplan's_conflicted_copy_2014-01-06.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/reports/presentation/presentation_Onur_Kaplan's_conflicted_copy_2014-01-06.pdf -------------------------------------------------------------------------------- /reports/presentation/presentation_Onur_Kaplan's_conflicted_copy_2014-01-06.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/reports/presentation/presentation_Onur_Kaplan's_conflicted_copy_2014-01-06.tex -------------------------------------------------------------------------------- /sandvik/average.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/sandvik/average.f90 -------------------------------------------------------------------------------- /sandvik/bindata.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/sandvik/bindata.dat -------------------------------------------------------------------------------- /sandvik/ising.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/sandvik/ising.in -------------------------------------------------------------------------------- /sandvik/ising2d.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/sandvik/ising2d.f90 -------------------------------------------------------------------------------- /sandvik/mc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/sandvik/mc.pdf -------------------------------------------------------------------------------- /sandvik/seed.in: -------------------------------------------------------------------------------- 1 | 732890511208497004 2 | -------------------------------------------------------------------------------- /sandvik/systemvariables.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/sandvik/systemvariables.mod -------------------------------------------------------------------------------- /sandvik/xave: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/sandvik/xave -------------------------------------------------------------------------------- /sandvik/xising2d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizaron/Ising2D/HEAD/sandvik/xising2d --------------------------------------------------------------------------------