Giter Site home page Giter Site logo

cybaj / computationalphysics2 Goto Github PK

View Code? Open in Web Editor NEW

This project forked from compphysics/computationalphysics2

0.0 0.0 0.0 327.09 MB

Advanced course in Computational Physics, see texbook at http://compphysics.github.io/ComputationalPhysics2/doc/LectureNotes/_build/html/ with an emphasis on computational quantum mechanics, machine learning and quantum computing.

Home Page: http://compphysics.github.io/ComputationalPhysics2/doc/web/course

License: Creative Commons Zero v1.0 Universal

computationalphysics2's Introduction

Computational Physics 2: computational quantum mechanics

Introduction

This repository contain lecture slides, programs, exercises and projects for a more advanced course in computational physics, with an emphasis on quantum mechanical problems with many interacting particles. The applications and the computational methods are relevant for research problems in such diverse areas as nuclear, atomic, molecular and solid-state physics, quantum chemistry and materials science.

A theoretical understanding of the behavior of quantum-mechanical many-body systems - that is, systems containing many interacting particles - is a considerable challenge in that no exact solution can be found; instead, reliable methods are needed for approximate but accurate simulations of such systems on modern computers. New insights and a better understanding of complicated quantum mechanical systems can only be obtained via large-scale simulations. The capability to study such systems is of high relevance for both fundamental research and industrial and technological advances.

The aim of this course is to present applications of, through various computational projects, some of the most widely used many-body methods with pertinent algorithms and high-performance computing topics such as advanced parallelization techniques and object orientation. Furthermore, Machine Learning and quantum computing may be presented if of interest. The methods and algorithms that will be studied may vary from year to year depending on the interests of the participants, but the main focus will be on systems from computational material science, solid-state physics, atomic and molecular physics, nuclear physics and quantum chemistry. The most relevant algorithms and methods are microscopic mean-field theories (Hartree-Fock and Kohn-Sham theories and density functional theories), large-scale diagonalization methods, coupled-cluster theory, similarity renormalization methods, and quantum Monte Carlo like Variational Monte Carlo and Diffusion Monte Carlo approaches. Methods to study phase transitions for both fermionic and bosonic systems can also be studied.

Learning outcomes

The course introduces a variety of central algorithms and methods for professional studies of quantum mechanical systems, with relevance for several problems in physics, materials science and quantum chemistry. The course is project based and through the various projects, normally two, the participants will be exposed to fundamental research problems in these fields, with the aim to reproduce state of the art scientific results. The students will learn to develop and structure large codes for studying these systems, get aquainted with supercomputing facilities and learn to handle large scientific projects. A good scientific and ethical conduct is emphasized throughout the course.

The course is also a continuation of FYS3150 – Computational Physics, and it will give a further treatment of several of the numerical methods given there.

Prerequisites

Basic knowledge in programming and mathematics, with an emphasis on linear algebra. Knowledge of Python or/and C++ as programming languages is strongly recommended and experience with Jupiter notebook is recommended. Required courses are the equivalents to the University of Oslo mathematics courses MAT1100, MAT1110, MAT1120 and at least one of the corresponding computing and programming courses INF1000/INF1110 or MAT-INF1100/MAT-INF1100L/BIOS1100/KJM-INF1100. Most universities offer nowadays a basic programming course (often compulsory) where Python is the recurring programming language.

We recommend also that you have some background in quantum mechanics, typically at the level of FYS2140 and/or FYS3110.

The course has two central parts

Computational aspects play a central role and you are expected to work on numerical examples and projects which illustrate the theory and varous algorithms discussed during the lectures. We recommend strongly to form small project groups of 2-3 participants, if possible.

Instructor information

  • Name: Morten Hjorth-Jensen
  • Email: [email protected]
  • Phone: +47-48257387
  • Office: Department of Physics, University of Oslo, Eastern wing, room FØ470
  • Office hours: Anytime!

Teaching Assistants Spring Semester 2022

  • Name: Øyvind Sigmundson Schøyen,
  • Email: [email protected]
  • Office: Department of Physics, University of Oslo, Eastern wing, room FØ452
  • Office hours: TBA

Practicalities

This course will be delivered in a hybrid mode, with online lectures and on site and online laboratory sessions. The first two weeks (January 17-28) is fully digital and the computer lab and the lectures will be done via zoom.

  1. Two lectures per week, spring semester, 10 ECTS. The lectures are presented in a hybrid mode. The lectures will be recorded and linked to this site and the official University of Oslo website for the course;
  2. Thre hours of laboratory sessions for work on computational projects and exercises. There will also be fully digital laboratory sessions for those who cannot attend in person;
  3. Two projects which are graded and count 1/2 each of the final grade;
  4. The course is offered as a FYS4411 (Master of Science level) and a FYS9411 (PhD level) course;
  5. Videos of teaching material are available via the links at https://www.uio.no/studier/emner/matnat/fys/FYS4411/v21/timeplan/index.html#FOR;
  6. Weekly emails with summary of activities will be mailed to all participants;

Grading

Grading scale: Grades are awarded on a scale from A to F, where A is the best grade and F is a fail. There are two projects which are graded and each project counts 1/2 of the final grade. The total score is thus the average from the two projects.

The final number of points is based on the average of all projects (including eventual additional points) and the grade follows the following table:

  • 92-100 points: A
  • 77-91 points: B
  • 58-76 points: C
  • 46-57 points: D
  • 40-45 points: E
  • 0-39 points: F-failed

Required Technologies

Course participants are expected to have their own laptops/PCs. We use Git as version control software and the usage of providers like GitHub, GitLab or similar are strongly recommended.

We will make extensive use of Python and C++ as programming languages.

If you have Python installed and you feel pretty familiar with installing different packages, we recommend that you install the following Python packages via pip as

  • pip install numpy scipy matplotlib ipython scikit-learn mglearn sympy pandas pillow

For OSX users we recommend, after having installed Xcode, to install brew. Brew allows for a seamless installation of additional software via for example

  • brew install python3

For Linux users, with its variety of distributions like for example the widely popular Ubuntu distribution, you can use pip as well and simply install Python as

  • sudo apt-get install python3

Python installers

If you don't want to perform these operations separately and venture into the hassle of exploring how to set up dependencies and paths, we recommend two widely used distrubutions which set up all relevant dependencies for Python, namely

which is an open source distribution of the Python and R programming languages for large-scale data processing, predictive analytics, and scientific computing, that aims to simplify package management and deployment. Package versions are managed by the package management system conda.

is a Python distribution for scientific and analytic computing distribution and analysis environment, available for free and under a commercial license.

Furthermore, Google's Colab:https://colab.research.google.com/notebooks/welcome.ipynb is a free Jupyter notebook environment that requires no setup and runs entirely in the cloud. Try it out!

Useful Python libraries

Here we list several useful Python libraries we strongly recommend (if you use anaconda many of these are already there)

  • NumPy:https://www.numpy.org/ is a highly popular library for large, multi-dimensional arrays and matrices, along with a large collection of high-level mathematical functions to operate on these arrays
  • The pandas:https://pandas.pydata.org/ library provides high-performance, easy-to-use data structures and data analysis tools
  • Xarray:http://xarray.pydata.org/en/stable/ is a Python package that makes working with labelled multi-dimensional arrays simple, efficient, and fun!
  • Scipy:https://www.scipy.org/ (pronounced “Sigh Pie”) is a Python-based ecosystem of open-source software for mathematics, science, and engineering.
  • Matplotlib:https://matplotlib.org/ is a Python 2D plotting library which produces publication quality figures in a variety of hardcopy formats and interactive environments across platforms.
  • Autograd:https://github.com/HIPS/autograd can automatically differentiate native Python and Numpy code. It can handle a large subset of Python's features, including loops, ifs, recursion and closures, and it can even take derivatives of derivatives of derivatives
  • SymPy:https://www.sympy.org/en/index.html is a Python library for symbolic mathematics.
  • scikit-learn:https://scikit-learn.org/stable/ has simple and efficient tools for machine learning, data mining and data analysis
  • TensorFlow:https://www.tensorflow.org/ is a Python library for fast numerical computing created and released by Google
  • Keras:https://keras.io/ is a high-level neural networks API, written in Python and capable of running on top of TensorFlow, CNTK, or Theano
  • And many more such as pytorch:https://pytorch.org/, Theano:https://pypi.org/project/Theano/ etc

Useful C++ libraries

Textbooks

Recommended textbooks: Lecture Notes by Morten Hjorth-Jensen

computationalphysics2's People

Contributors

evenmn avatar gabrielscabrera avatar kristianwold avatar mhjensen avatar mortele avatar schoyen avatar simehaa avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.