hczhai / OpenMolcas

A copy of OpenMolcas with an interface to Dice (Heat-bath CI), Block (DMRG), and CheMPS2 (DMRG)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

OpenMolcas

OpenMolcas is a quantum chemistry software package developed by scientists and intended to be used by scientists. It includes programs to apply many different electronic structure methods to chemical systems, but its key feature is the multiconfigurational approach, with methods like CASSCF and CASPT2.

OpenMolcas is not a fork or reimplementation of Molcas, it is a large part of the Molcas codebase that has been released as free and open-source software (FOSS) under the Lesser General Public License (LGPL). Some parts of Molcas remain under a different license by decision of their authors (or impossibility to reach them), and are therefore not included in OpenMolcas.

Note

This copy of OpenMolcas has different novel CI Solvers for CASSCF, including Block (G. K-.L. Chan), CheMPS2 (S. Wouters), and Dice (S. Sharma).

Check wiki for installation and manual.

Installation

OpenMolcas is configured with CMake. A quick way to get it up and running is the following:

  1. Clone the repository:

    git clone https://gitlab.com/Molcas/OpenMolcas
    
  2. Get the lapack submodule (only needed if you don't use another linear algebra library like MKL or OpenBLAS):

    cd OpenMolcas
    git submodule update --init External/lapack
    cd ..
    
  3. Create a new directory and run cmake from it:

    mkdir build
    cd build
    cmake ../OpenMolcas
    
  4. Compile with make:

    make
    
  5. Run the verification suite (failures in "grayzone" tests are expected):

    pymolcas verify
    

For running other calculations you should define the MOLCAS environment variable to point to the build directory. Run pymolcas --help to see the available options of the script.

Documentation

The current documentation can be found in the doc project, you can read it in HTML format or PDF format. Note that most of it precedes the creation of OpenMolcas and it is probably outdated in several points. It may also mention features not available in OpenMolcas.

There may be more information in the wiki pages.

Help

OpenMolcas is a community-supported software and as such it doesn't have an official technical support. If you have any problems or questions, you can use the Issues page or the Molcas forum, and hopefully some other user or developer will be able to help you.

If you need technical support, you can acquire a Molcas license.

Contributing

Since OpenMolcas is FOSS, you can download it, modify it and distribute it freely (according to the terms of the LGPL). If you would like your contributions to be included in the main repository, please contact one of the developers, write a message in the forum or submit a merge request. We are currently only accepting Molcas developers as members of the Molcas group, but everyone is welcome to send patches, suggestions and bug reports.

About

A copy of OpenMolcas with an interface to Dice (Heat-bath CI), Block (DMRG), and CheMPS2 (DMRG)

License:GNU Lesser General Public License v2.1


Languages

Language:Fortran 97.6%Language:C 0.8%Language:Python 0.6%Language:CMake 0.4%Language:Perl 0.4%Language:Shell 0.2%Language:Pawn 0.0%Language:C++ 0.0%Language:Makefile 0.0%Language:Vim Script 0.0%Language:Smarty 0.0%Language:Dockerfile 0.0%