본문 바로가기
728x90

Problem Solutions7

[Physics] Srednichi QFT Chapter 2 - solution 2024. 2. 18.
[Physics] Ashcroft & Mermin chapter 22 2024. 2. 18.
[Physics] Ashcroft & Mermin chapter 4 2023. 11. 7.
[Physics] Ashcroft & Mermin chapter 7 The below one is what I solved as an assignment, so it could be wrong. Thus, just please use it for reference only 2023. 10. 22.
[Physics] Aschroft & Mermin chapter 2 The below one is what I solved as an assignment, so it could be wrong. Thus, just please use it for reference only. 2023. 10. 12.
[Classical Mechancis] Double pendulum problem code 1. Differential equations [1] Please read an article on the following website if you want to know the differential equations used in this code. https://scipython.com/blog/the-double-pendulum/ 2. Methods & Language 1. Methods: 4th order Runge-Kutta methods 2. Programming Language: C code 3. Code #include #include #include #include struct particle { double x; // generalized coordinate (in this pro.. 2021. 10. 31.
입문자를 위한 병렬 프로그래밍 - 1장 연습문제 - 아래는 입문자를 위한 병렬 프로그래밍 (An Introduction to Parallel Programming) 1장 연습문제를 풀이하였습니다. 해당 책의 솔류선은 구글링하면 책의 저자가 쓴 솔류선이 나오긴 하지만, 개인적으로 공부 목적을 위해 아래처럼 정리를 하였습니다. 오타나 에러가 있을 수 있으니 참고하시길 바랍니다 1. 글로벌 합계 예제에서 my_first_i와 my_last_i를 계산하는 함수에 대한 공식을 만들어 보자. 각 코어는 루프에서 같은 양의 항목에 대한 계산을 할당 받아야 한다는 것을 기억하자. (힌트) n이 p로 나뉠 수 있는 경우를 고려하자. 가정 1: 병렬 프로그래밍에 사용할 프로세서의 갯수: p 가정 2: 각 프로세서의 호출은 my_rank를 통해서 한다. - my_rank: .. 2020. 12. 17.
728x90