// // wfntest.cc // // Copyright (C) 1996 Limit Point Systems, Inc. // // Author: Curtis Janssen // Maintainer: LPS // // This file is part of the SC Toolkit. // // The SC Toolkit is free software; you can redistribute it and/or modify // it under the terms of the GNU Library General Public License as published by // the Free Software Foundation; either version 2, or (at your option) // any later version. // // The SC Toolkit is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Library General Public License for more details. // // You should have received a copy of the GNU Library General Public License // along with the SC Toolkit; see the file COPYING.LIB. If not, write to // the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. // // The U.S. Government is granted a limited license as per AL 91-7. // #include #include #include #include #include #include using namespace std; using namespace sc; // Force linkages: static ForceLink fl0; #include void density_test(const Ref &wfn, double resolution) { wfn->ao_density()->print("AO Density Matrix"); wfn->overlap()->print("SO Overlap Matrix"); wfn->natural_density()->print("Natural Density"); wfn->natural_orbitals()->print("Natural Orbitals"); Ref ed = new ElectronDensity(wfn); Ref bed = new BatchElectronDensity(wfn); SCVector3 r(0,0,0); for (double x = 0.0; x < 2.1; x += 0.25) { r[0] = x; ed->set_x(x); bed->set_x(x); SCVector3 edg; ed->get_gradient(edg); ExEnv::out0() << scprintf(" ED: %12.8f; ", ed->value()) << edg << std::endl; SCVector3 bedg; bed->get_gradient(bedg); ExEnv::out0() << scprintf("BED: %12.8f; ", bed->value()) << bedg << std::endl; } SCVector3 upper, lower; bed->boundingbox(DBL_EPSILON,DBL_MAX,lower,upper); ExEnv::out0() << "BED BB: " << lower << ", " << upper << std::endl; ed->boundingbox(DBL_EPSILON,DBL_MAX,lower,upper); ExEnv::out0() << " ED BB: " << lower << ", " << upper << std::endl; SCVector3 boxsize = upper - lower; ExEnv::out0() << "boxsize = " << boxsize << std::endl; int nx = int(boxsize[0]/resolution); int ny = int(boxsize[1]/resolution); int nz = int(boxsize[2]/resolution); ExEnv::out0() << "evaluating " << nx*ny*nz << " points" << std::endl; double nele_bed = 0.0; for (int i=0; iset_x(r); nele_bed += bed->value(); } } } nele_bed *= resolution*resolution*resolution; ExEnv::out0() << scprintf("BED Nele = %12.8f",nele_bed) << std::endl; double nele_ed = 0.0; for (int i=0; iset_x(r); nele_ed += ed->value(); } } } nele_ed *= resolution*resolution*resolution; ExEnv::out0() << scprintf(" ED Nele = %12.8f",nele_ed) << std::endl; } main(int argc, char *argv[]) { const char *input = (argc > 1) ? argv[1] : SRCDIR "/wfntest.kv"; Ref rpkv(new ParsedKeyVal(input)); // the output stream is standard out ostream &o = cout; Ref wfn; wfn << rpkv->describedclassvalue("wavefunction"); if (wfn.null()) { ExEnv::err0() << "wfn is null\n"; exit(1); } double resolution = rpkv->doublevalue("resolution"); density_test(wfn,resolution); wfn->overlap()->print("overlap"); wfn->core_hamiltonian()->print("Hcore"); wfn->hcore_guess()->print("guess vector"); wfn->density()->print("density"); wfn->natural_orbitals()->print("natural orbitals"); wfn->natural_density()->print("natural density"); //wfn->print(o); //o << endl; Ref oldwfn; oldwfn << rpkv->describedclassvalue("pwavefunction"); RefSCMatrix evecs = wfn->projected_eigenvectors(oldwfn); evecs.print("projected wavefunction"); StateOutBin so("wfn.ckpt"); SavableState::save_state(wfn.pointer(),so); so.close(); Ref me; StateInBin si("wfn.ckpt"); me << SavableState::restore_state(si); me->print(o); o << me->value(); return 0; } ///////////////////////////////////////////////////////////////////////////// // Local Variables: // mode: c++ // c-file-style: "ETS" // End: