File: DMRGSCFindices.cpp

package info (click to toggle)
chemps2 1.8.12-5
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 5,432 kB
  • sloc: cpp: 38,521; python: 1,116; f90: 215; makefile: 45; sh: 23
file content (162 lines) | stat: -rw-r--r-- 5,208 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
/*
   CheMPS2: a spin-adapted implementation of DMRG for ab initio quantum chemistry
   Copyright (C) 2013-2018 Sebastian Wouters

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.

   This program 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 General Public License for more details.

   You should have received a copy of the GNU General Public License along
   with this program; if not, write to the Free Software Foundation, Inc.,
   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/

#include <stdlib.h>
#include <assert.h>
#include <iostream>
#include <algorithm>

#include "DMRGSCFindices.h"

using std::cout;
using std::endl;
using std::max;

CheMPS2::DMRGSCFindices::DMRGSCFindices(const int L, const int Group, int * NOCCin, int * NDMRGin, int * NVIRTin){

   this->L = L;
   SymmInfo.setGroup(Group);
   this->Nirreps = SymmInfo.getNumberOfIrreps();
   
   NORB  = new int[Nirreps];
   NOCC  = new int[Nirreps];
   NDMRG = new int[Nirreps];
   NVIRT = new int[Nirreps];
   NORBcumulative  = new int[Nirreps+1];
   NDMRGcumulative = new int[Nirreps+1];
   
   int totalNumOrbs = 0;
   NORBcumulative[0]  = 0;
   NDMRGcumulative[0] = 0;
   for (int irrep=0; irrep<Nirreps; irrep++){
   
      assert( NOCCin [irrep]>=0 );
      assert( NDMRGin[irrep]>=0 );
      assert( NVIRTin[irrep]>=0 );
      
      NORB[ irrep] = NOCCin[ irrep] + NDMRGin[irrep] + NVIRTin[irrep];
      NOCC[ irrep] = NOCCin[ irrep];
      NDMRG[irrep] = NDMRGin[irrep];
      NVIRT[irrep] = NVIRTin[irrep];
      
      totalNumOrbs += NORB[irrep];
      
      NORBcumulative[ irrep+1] = NORBcumulative[ irrep] + NORB[irrep];
      NDMRGcumulative[irrep+1] = NDMRGcumulative[irrep] + NDMRG[irrep];
      
   }
   assert( totalNumOrbs==L );
   
   irrepOfEachDMRGorbital = new int[NDMRGcumulative[Nirreps]];
   irrepOfEachOrbital = new int[L];
   for (int irrep=0; irrep<Nirreps; irrep++){
      for (int cnt=0; cnt<NDMRG[irrep]; cnt++){
         irrepOfEachDMRGorbital[ NDMRGcumulative[irrep] + cnt ] = irrep;
      }
      for (int cnt=0; cnt<NORB[irrep]; cnt++){
         irrepOfEachOrbital[ NORBcumulative[irrep] + cnt ] = irrep;
      }
   }

}

CheMPS2::DMRGSCFindices::~DMRGSCFindices(){

   delete [] NORB;
   delete [] NOCC;
   delete [] NDMRG;
   delete [] NVIRT;
   delete [] NORBcumulative;
   delete [] NDMRGcumulative;
   delete [] irrepOfEachDMRGorbital;
   delete [] irrepOfEachOrbital;

}

int CheMPS2::DMRGSCFindices::getL() const{ return L; }

int CheMPS2::DMRGSCFindices::getGroupNumber() const{ return SymmInfo.getGroupNumber(); }

int CheMPS2::DMRGSCFindices::getNirreps() const{ return Nirreps; }

int CheMPS2::DMRGSCFindices::getNORB(const int irrep) const{ return NORB[irrep]; }

int CheMPS2::DMRGSCFindices::getNOCC(const int irrep) const{ return NOCC[irrep]; }

int CheMPS2::DMRGSCFindices::getNDMRG(const int irrep) const{ return NDMRG[irrep]; }

int CheMPS2::DMRGSCFindices::getNVIRT(const int irrep) const{ return NVIRT[irrep]; }

int CheMPS2::DMRGSCFindices::getDMRGcumulative(const int irrep) const{ return NDMRGcumulative[irrep]; }

int CheMPS2::DMRGSCFindices::getOrigNOCCstart(const int irrep) const{ return NORBcumulative[irrep]; }

int CheMPS2::DMRGSCFindices::getOrigNDMRGstart(const int irrep) const{ return NORBcumulative[irrep] + NOCC[irrep]; }

int CheMPS2::DMRGSCFindices::getOrigNVIRTstart(const int irrep) const{ return NORBcumulative[irrep+1] - NVIRT[irrep]; }

int * CheMPS2::DMRGSCFindices::getIrrepOfEachDMRGorbital(){ return irrepOfEachDMRGorbital; }

int CheMPS2::DMRGSCFindices::getOrbitalIrrep(const int index) const{ return irrepOfEachOrbital[index]; }

int CheMPS2::DMRGSCFindices::getNOCCsum() const{

   int total = 0;
   for ( int irrep = 0; irrep < getNirreps(); irrep++ ){ total += getNOCC( irrep ); }
   return total;

}

int CheMPS2::DMRGSCFindices::getNORBmax() const{

   int the_max = 0;
   for ( int irrep = 0; irrep < getNirreps(); irrep++ ){ the_max = max( the_max, getNORB( irrep ) ); }
   return the_max;

}

int CheMPS2::DMRGSCFindices::getROTparamsize() const{

   int paramsize = 0;
   for ( int irrep = 0; irrep < getNirreps(); irrep++ ){ paramsize += ( getNORB( irrep ) * ( getNORB( irrep ) - 1 ) ) / 2; }
   return paramsize;

}

void CheMPS2::DMRGSCFindices::Print() const{

   cout << "NORB  = [ ";
   for (int irrep=0; irrep<Nirreps-1; irrep++){ cout << NORB[irrep] << " , "; }
   cout << NORB[Nirreps-1] << " ]" << endl;

   cout << "NOCC  = [ ";
   for (int irrep=0; irrep<Nirreps-1; irrep++){ cout << NOCC[irrep] << " , "; }
   cout << NOCC[Nirreps-1] << " ]" << endl;
   
   cout << "NDMRG = [ ";
   for (int irrep=0; irrep<Nirreps-1; irrep++){ cout << NDMRG[irrep] << " , "; }
   cout << NDMRG[Nirreps-1] << " ]" << endl;
   
   cout << "NVIRT = [ ";
   for (int irrep=0; irrep<Nirreps-1; irrep++){ cout << NVIRT[irrep] << " , "; }
   cout << NVIRT[Nirreps-1] << " ]" << endl;

}