Changeset d11832


Ignore:
Timestamp:
Jun 8, 2012, 6:01:53 PM (13 years ago)
Author:
Frederik Heber <heber@…>
Children:
62dabe
Parents:
027140
Message:

Added as temporary output all that is needed to get density on a grid.

  • with this we are complete, the rest is only correct multiplication and how to get a value at a specific site r.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/bin/mpqc/mpqc.cc

    r027140 rd11832  
    963963     wfn->ao_density()->print(ExEnv::out0());
    964964     ExEnv::out0() << "The Gaussian basis is " << wfn->basis()->name() << endl;
     965     ExEnv::out0() << "The Gaussians sit at the following centers: " << endl;
     966     for (int nr = 0; nr< wfn->basis()->ncenter(); ++nr) {
     967       ExEnv::out0() << nr << " basis function has its center at ";
     968       for (int i=0; i < 3; ++i)
     969           ExEnv::out0() << wfn->basis()->r(nr,i) << "\t";
     970       ExEnv::out0() << endl;
     971     }
     972     // GaussianShell is the actual orbital functionas it seems ...
     973     ExEnv::out0() << "There are the following Gaussian Shells: " << endl;
     974     for (int nr = 0; nr< wfn->basis()->nshell(); ++nr) {
     975       ExEnv::out0() << "Shell nr. " << nr << ": ";
     976       (*wfn->basis())[nr].print(ExEnv::out0());
     977     }
    965978  }
    966979
Note: See TracChangeset for help on using the changeset viewer.