[d2a0f6d] | 1 | /*
|
---|
| 2 | * VMGJob.hpp
|
---|
| 3 | *
|
---|
| 4 | * Created on: Jul 12, 2012
|
---|
| 5 | * Author: heber
|
---|
| 6 | */
|
---|
| 7 |
|
---|
| 8 | #ifndef VMGJOB_HPP_
|
---|
| 9 | #define VMGJOB_HPP_
|
---|
| 10 |
|
---|
| 11 |
|
---|
| 12 | // include config.h
|
---|
| 13 | #ifdef HAVE_CONFIG_H
|
---|
| 14 | #include <config.h>
|
---|
| 15 | #endif
|
---|
| 16 |
|
---|
| 17 | #include "boost/serialization/export.hpp"
|
---|
| 18 | #include "boost/serialization/vector.hpp"
|
---|
| 19 |
|
---|
| 20 | #include "JobMarket/Jobs/FragmentJob.hpp"
|
---|
[fbf143] | 21 | #include "Fragmentation/Summation/SetValues/SamplingGrid.hpp"
|
---|
| 22 | #include "Fragmentation/Summation/Containers/VMGData.hpp"
|
---|
[d2a0f6d] | 23 |
|
---|
| 24 | #include <vector>
|
---|
| 25 |
|
---|
| 26 | /** This class encapsulates a VMG Job.
|
---|
| 27 | *
|
---|
| 28 | * VMGJob calculates the long-range contribution that is missed out so far in the
|
---|
| 29 | * MPQCJob where the SCF cycle is calculated. To this end
|
---|
| 30 | *
|
---|
| 31 | */
|
---|
| 32 | class VMGJob : public FragmentJob
|
---|
| 33 | {
|
---|
| 34 | public:
|
---|
| 35 | /** Constructor for class VMGJob.
|
---|
| 36 | *
|
---|
| 37 | * @param _JobId id of the job
|
---|
[065574] | 38 | * @param _density_grid sampled electron charge density from short-range solutions
|
---|
| 39 | * @param _particle_positions position per nuclei
|
---|
| 40 | * @param _particle_charges charges per nuclei
|
---|
| 41 | * @param _near_field_cells number of grid-points used to smear our nuclei charge
|
---|
[cd2591] | 42 | * @param _interpolation_degree degree of interpolation polynomial for getting nuclei
|
---|
| 43 | * potential from grid
|
---|
[b6b21a] | 44 | * @param _DoPrintDebug whether we do print grid for debug visualization or not
|
---|
[d2a0f6d] | 45 | */
|
---|
[d12d621] | 46 | VMGJob(const JobId_t _JobId,
|
---|
[cd77fc] | 47 | const SamplingGrid &density_grid,
|
---|
| 48 | const std::vector< std::vector< double > > &_particle_positions,
|
---|
[065574] | 49 | const std::vector< double > &_particle_charges,
|
---|
[cd2591] | 50 | const size_t _near_field_cells,
|
---|
[b6b21a] | 51 | const size_t _interpolation_degree,
|
---|
| 52 | const bool _DoPrintDebug=false
|
---|
[cd2591] | 53 | );
|
---|
[d2a0f6d] | 54 | virtual ~VMGJob();
|
---|
| 55 |
|
---|
| 56 | FragmentResult::ptr Work();
|
---|
| 57 |
|
---|
[e9cfc4] | 58 | private:
|
---|
| 59 | void InitVMG();
|
---|
| 60 |
|
---|
[a82602] | 61 | void InitVMGArrays();
|
---|
| 62 |
|
---|
[d2a0f6d] | 63 | private:
|
---|
[28c025] | 64 | //!> sampled density required as input
|
---|
| 65 | const SamplingGrid density_grid;
|
---|
[cd77fc] | 66 | //!> positions of all nuclei
|
---|
| 67 | const std::vector< std::vector< double > > particle_positions;
|
---|
| 68 | //!> charges of all nuclei
|
---|
| 69 | const std::vector< double > particle_charges;
|
---|
[065574] | 70 | //!> near field cells used in smearing out core charge density
|
---|
| 71 | const size_t near_field_cells;
|
---|
[cd2591] | 72 | //!> interpolation degree used in sampling the potential of the nuclei
|
---|
| 73 | const size_t interpolation_degree;
|
---|
[b6b21a] | 74 | //!> whether we do print grid for debug visualization or not
|
---|
| 75 | const bool DoPrintDebug;
|
---|
[d2a0f6d] | 76 |
|
---|
[2bc560] | 77 | private:
|
---|
| 78 | //!> temporary instance to hold return data
|
---|
| 79 | VMGData returndata;
|
---|
| 80 |
|
---|
[e089fb] | 81 | /** This structure stores particle values per particle.
|
---|
| 82 | *
|
---|
| 83 | * \note This structure contains temporary information needed during solving
|
---|
| 84 | * with VMG.
|
---|
| 85 | * \warning It is specifically not serialized!
|
---|
| 86 | *
|
---|
| 87 | */
|
---|
| 88 | struct particle_arrays {
|
---|
| 89 | particle_arrays();
|
---|
| 90 | ~particle_arrays();
|
---|
| 91 |
|
---|
| 92 | /** Initializes arrays.
|
---|
| 93 | *
|
---|
| 94 | * @param _num_particles size of array per dimension
|
---|
| 95 | */
|
---|
| 96 | void init(const size_t _num_particles);
|
---|
| 97 |
|
---|
| 98 | //!> number of particles
|
---|
| 99 | size_t num_particles;
|
---|
| 100 | //!> forces array
|
---|
| 101 | double *f;
|
---|
| 102 | //!> position array
|
---|
| 103 | double *x;
|
---|
| 104 | //!> potential array
|
---|
| 105 | double *p;
|
---|
| 106 | //!> charge array
|
---|
| 107 | double *q;
|
---|
| 108 | } particles;
|
---|
[a82602] | 109 |
|
---|
[d2a0f6d] | 110 | private:
|
---|
| 111 | /** private default cstor for serialization only
|
---|
| 112 | */
|
---|
| 113 | VMGJob();
|
---|
| 114 |
|
---|
| 115 | friend class boost::serialization::access;
|
---|
| 116 | // serialization
|
---|
| 117 | template <typename Archive>
|
---|
| 118 | void serialize(Archive& ar, const unsigned int version)
|
---|
| 119 | {
|
---|
| 120 | ar & boost::serialization::base_object<FragmentJob>(*this);
|
---|
[28c025] | 121 | ar & const_cast< SamplingGrid &>(density_grid);
|
---|
[cd77fc] | 122 | ar & const_cast< std::vector< std::vector< double > > &>(particle_positions);
|
---|
| 123 | ar & const_cast< std::vector< double > &>(particle_charges);
|
---|
[065574] | 124 | ar & const_cast< size_t &>(near_field_cells);
|
---|
[cd2591] | 125 | ar & const_cast< size_t &>(interpolation_degree);
|
---|
[b6b21a] | 126 | ar & const_cast< bool &>(DoPrintDebug);
|
---|
[2bc560] | 127 | ar & returndata;
|
---|
[d2a0f6d] | 128 | }
|
---|
| 129 | };
|
---|
| 130 |
|
---|
| 131 | // we need to give this class a unique key for serialization
|
---|
| 132 | // its is only serialized through its base class FragmentJob
|
---|
| 133 | BOOST_CLASS_EXPORT_KEY(VMGJob)
|
---|
| 134 |
|
---|
| 135 | #endif /* VMGJOB_HPP_ */
|
---|