![]() |
KIDS
ver-0.0.1
KIDS : Kernel Integrated Dynamics Simulator
|
this class implements calculation/utils for electronic DOFs: More...
#include <Kernel_Elec.h>
Public Member Functions | |
virtual const std::string | getName () |
Get the name of the kernel. | |
virtual int | getType () const |
Get the type of the kernel. | |
void | setInputParam (std::shared_ptr< Param > &PM) |
Set input parameters for the kernel and its children. | |
void | setInputDataSet (std::shared_ptr< DataSet > &DS) |
Set input data set for the kernel and its children. | |
std::shared_ptr< Param > | getParam () const |
Get the parameter associated with the kernel. | |
std::shared_ptr< DataSet > | getDataSet () const |
Get the data set associated with the kernel. | |
Status & | initializeKernel (Status &stat) |
Prepare initial conditions for the kernel and its children. | |
Status & | executeKernel (Status &stat) |
Execute the kernel's algorithm and those of its children. | |
Status & | finalizeKernel (Status &stat) |
Finalize the kernel and its children, performing any necessary cleanup. | |
int | getID () const |
Get the ID of the kernel. | |
bool | operator== (const Kernel &ker) |
Overloaded equality operator to compare two Kernel objects by their IDs. | |
Kernel & | appendChild (std::shared_ptr< Kernel > ker) |
Append a kernel as the last child of the current tree node. | |
Kernel & | insertAt (std::vector< std::size_t > indexes, std::shared_ptr< Kernel > ker) |
Insert a kernel at specified indexes in the tree. | |
Kernel & | removeAt (std::vector< std::size_t > indexes) |
Remove kernels at specified indexes from the tree. | |
Kernel & | updateAt (std::vector< std::size_t > indexes, std::shared_ptr< Kernel > ker) |
Update the kernel at specified indexes in the tree. | |
std::tuple< Kernel *, std::size_t > | getLastParentKernelAndChildOrder () |
Retrieve the last parent kernel along with the order of its child kernels, if available. | |
std::shared_ptr< RuleSet > | getRuleSet () |
Get RuleSet associated with the Kernel. | |
const std::string | generateInformationString (double total_time=-1.0f, int current_layer=0, int total_depth=0, int total_align_size=0) |
Generate a formatted string containing information about the kernel. | |
Static Public Member Functions | |
static int | ker_from_c (kids_complex *ker, kids_complex *c, kids_real xi, kids_real gamma, int fdim) |
convert c (electonic amplititude) to kernel (affine map of the density) | |
static int | ker_from_rho (kids_complex *ker, kids_complex *rho, kids_real xi, kids_real gamma, int fdim, bool quantize=false, int occ=-1) |
convert c (electonic amplititude) to kernel (affine map of the density) | |
static int | dump (Kernel *ker) |
static int | report (Kernel *ker) |
static int | mpi_reduce_info (Kernel *ker) |
static const std::string | serializeKernel (const Kernel &ker) |
Serialize a Kernel object into a string representation. | |
static std::shared_ptr< Kernel > | deserializeKernel (const std::string &str) |
Deserialize a string representation into a Kernel object. | |
Static Public Attributes | |
static int | occ0 |
read parameters | |
static kids_complex * | U |
dynamics variables for electronic DOFs | |
static kids_complex * | c |
static kids_complex * | c_init |
electronic vector | |
static kids_complex * | rho_ele |
static kids_complex * | rho_ele_init |
electronic density | |
static kids_complex * | rho_dual |
static kids_complex * | rho_dual_init |
electronic density | |
static kids_real * | T |
static kids_real * | T_init |
static int * | occ_nuc |
weighting density for nuclear force | |
static kids_complex * | rho_nuc |
static kids_complex * | rho_nuc_init |
static kids_complex * | w |
kernels for time correlation function | |
static kids_complex * | wz_A |
static kids_complex * | wz_D |
static kids_complex * | ww_A |
static kids_complex * | ww_D |
static kids_complex * | ww_A_init |
static kids_complex * | ww_D_init |
static kids_complex * | w_AA |
static kids_complex * | w_AD |
static kids_complex * | w_DD |
static kids_complex * | w_CC |
static kids_complex * | w_CP |
static kids_complex * | w_PP |
static kids_complex * | K0 |
partial version of K0 | |
static kids_complex * | K1 |
partial version of K1 | |
static kids_complex * | K2 |
partial version of K2 | |
static kids_complex * | K1QA |
Simplex Quantization. | |
static kids_complex * | K2QA |
Heaviside Quantization. | |
static kids_complex * | K1DA |
static kids_complex * | K2DA |
static kids_complex * | K1QD |
Simplex Quantization. | |
static kids_complex * | K2QD |
Heaviside Quantization. | |
static kids_complex * | K1DD |
static kids_complex * | K2DD |
static kids_complex * | OpA |
static kids_complex * | OpB |
static kids_complex * | TrK1A |
static kids_complex * | TrK2B |
Protected Member Functions | |
virtual Status & | finalizeKernel_impl (Status &stat) |
Virtual function to finalize the kernel implementation. | |
Protected Attributes | |
bool | is_timing = false |
Flag indicating whether timing is enabled for this kernel. | |
bool | has_parent = false |
Flag indicating whether the kernel has a parent. | |
int | count_calc = 0 |
Counter for the number of calculations performed by this kernel. | |
int | count_exec = 0 |
Counter for the number of executions performed by this kernel. | |
int | kernel_id = 0 |
ID of the kernel. | |
int | kernel_type = 0 |
Type of the kernel. | |
double | exec_time = 0.0f |
Total execution time of the kernel. | |
int | depth = 0 |
Depth of the kernel in the tree structure. | |
int | max_align_size = 0 |
Maximum alignment size used by this kernel. | |
std::string | kernel_name |
Name of the kernel. | |
std::shared_ptr< Param > | _param |
Shared pointer to the Param object associated with this kernel. | |
std::shared_ptr< DataSet > | _dataset |
Shared pointer to the DataSet object associated with this kernel. | |
std::shared_ptr< RuleSet > | _ruleset |
Recorded Rules associated with the Kernel. | |
Kernel * | _parent_kernel |
Pointer to the parent kernel. | |
std::size_t | _order_in_parent |
Order of this kernel in its parent's children. | |
std::vector< std::shared_ptr< Kernel > > | _child_kernels |
Vector containing shared pointers to the child kernels of this kernel. | |
std::vector< std::shared_ptr< Kernel > > | _all_kernels |
Vector containing shared pointers to all descendant kernels of this kernel. | |
Private Member Functions | |
void | setInputParam_impl (std::shared_ptr< Param > &PM) |
Virtual function to set input parameters for the kernel implementation. | |
void | setInputDataSet_impl (std::shared_ptr< DataSet > &DS) |
Virtual function to set input data set for the kernel implementation. | |
Status & | initializeKernel_impl (Status &stat) |
Virtual function to initialize the kernel implementation. | |
Status & | executeKernel_impl (Status &stat) |
Virtual function to execute the kernel implementation. | |
void | connectRelatedKernels (std::shared_ptr< Kernel > &ker) |
Connect related kernels to this kernel. | |
Static Private Member Functions | |
static std::map< std::string, Kernel * > & | getDictOfKernels () |
Get the dictionary of kernels (mapping from names to kernel pointers). | |
static std::vector< Kernel * > & | getKernels () |
Get the vector of all kernel pointers. | |
this class implements calculation/utils for electronic DOFs:
Definition at line 11 of file Kernel_Elec.h.
Append a kernel as the last child of the current tree node.
ker | The kernel to append as the last child. |
Definition at line 78 of file Kernel.cpp.
References PROJECT_NS::Kernel::_child_kernels, PROJECT_NS::Kernel::_order_in_parent, PROJECT_NS::Kernel::_ruleset, PROJECT_NS::Kernel::depth, PROJECT_NS::Kernel::getLastParentKernelAndChildOrder(), and PROJECT_NS::Kernel::max_align_size.
Referenced by PROJECT_NS::Kernel_Elec_NAD::Kernel_Elec_NAD(), PROJECT_NS::Kernel_Elec_Switch::Kernel_Elec_Switch(), PROJECT_NS::Kernel_GWP::Kernel_GWP(), PROJECT_NS::Model_ElectronTransfer::Model_ElectronTransfer(), and PROJECT_NS::Model_SystemBath::Model_SystemBath().
|
privateinherited |
Connect related kernels to this kernel.
This function connects related kernels to the current kernel. Related kernels are kernels that are associated with or connected to this kernel in some way.
Definition at line 228 of file Kernel.cpp.
References PROJECT_NS::Kernel::_all_kernels, and PROJECT_NS::Kernel::connectRelatedKernels().
Referenced by PROJECT_NS::Kernel::connectRelatedKernels().
|
staticinherited |
Deserialize a string representation into a Kernel object.
str | The string containing the serialized Kernel object. |
Definition at line 187 of file Kernel.cpp.
|
inlinestaticinherited |
Execute the kernel's algorithm and those of its children.
stat | The status object to store execution status. |
Definition at line 48 of file Kernel.cpp.
References PROJECT_NS::Kernel::_child_kernels, PROJECT_NS::Kernel::_dataset, PROJECT_NS::Kernel::_ruleset, PROJECT_NS::Kernel::count_exec, PROJECT_NS::Kernel::exec_time, PROJECT_NS::Kernel::executeKernel_impl(), PROJECT_NS::Kernel::has_parent, and PROJECT_NS::Kernel::is_timing.
Referenced by PROJECT_NS::Kernel_Conserve::initializeKernel_impl(), PROJECT_NS::Kernel_Elec_NAD::initializeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::initializeKernel_impl(), PROJECT_NS::Kernel_GWP::initializeKernel_impl(), PROJECT_NS::Kernel_NADForce::initializeKernel_impl(), PROJECT_NS::Kernel_Representation::initializeKernel_impl(), PROJECT_NS::Model_ElectronTransfer::initializeKernel_impl(), PROJECT_NS::Model_LVCM::initializeKernel_impl(), PROJECT_NS::Model_NAD1D::initializeKernel_impl(), and PROJECT_NS::Model_SystemBath::initializeKernel_impl().
Virtual function to execute the kernel implementation.
stat | Status object to store execution status. |
Reimplemented from PROJECT_NS::Kernel.
Definition at line 80 of file Kernel_Elec.cpp.
Referenced by initializeKernel_impl().
Finalize the kernel and its children, performing any necessary cleanup.
stat | The status object to store finalization status. |
Definition at line 66 of file Kernel.cpp.
References PROJECT_NS::Kernel::_child_kernels, and PROJECT_NS::Kernel::finalizeKernel_impl().
Virtual function to finalize the kernel implementation.
stat | Status object to store finalization status. |
Reimplemented in PROJECT_NS::Kernel_Recorder.
Definition at line 226 of file Kernel.cpp.
Referenced by PROJECT_NS::Kernel::finalizeKernel().
|
inherited |
Generate a formatted string containing information about the kernel.
This function generates a formatted string containing information about the kernel, including its total time, current layer, total depth, and total alignment size.
total_time | The total time taken by the kernel (default: -1.0f). |
current_layer | The current layer of the kernel (default: 0). |
total_depth | The total depth of the kernel (default: 0). |
total_align_size | The total alignment size of the kernel (default: 0). |
Definition at line 189 of file Kernel.cpp.
References PROJECT_NS::Kernel::_child_kernels, PROJECT_NS::Kernel::depth, PROJECT_NS::Kernel::exec_time, PROJECT_NS::Kernel::getName(), PROJECT_NS::Kernel::kernel_id, and PROJECT_NS::Kernel::max_align_size.
|
inherited |
Get the data set associated with the kernel.
Definition at line 37 of file Kernel.cpp.
References PROJECT_NS::Kernel::_dataset.
|
staticprivateinherited |
Get the dictionary of kernels (mapping from names to kernel pointers).
This function returns a reference to the static map containing the dictionary of kernels. The dictionary maps kernel names to their corresponding kernel pointers.
|
inherited |
Get the ID of the kernel.
Definition at line 74 of file Kernel.cpp.
References PROJECT_NS::Kernel::kernel_id.
Referenced by PROJECT_NS::Kernel_Prioritization::getName(), and PROJECT_NS::Kernel::operator==().
|
staticprivateinherited |
Get the vector of all kernel pointers.
This function returns a reference to the static vector containing pointers to all kernels.
Definition at line 247 of file Kernel.cpp.
Referenced by PROJECT_NS::Kernel::Kernel().
|
inherited |
Retrieve the last parent kernel along with the order of its child kernels, if available.
Definition at line 178 of file Kernel.cpp.
References PROJECT_NS::Kernel::_order_in_parent, PROJECT_NS::Kernel::_parent_kernel, and PROJECT_NS::Kernel::has_parent.
Referenced by PROJECT_NS::Kernel::appendChild(), PROJECT_NS::Kernel::insertAt(), and PROJECT_NS::Kernel::updateAt().
|
virtual |
Get the name of the kernel.
Returns the concatenated name of the kernel, prefixed with "Kernel__".
Reimplemented from PROJECT_NS::Kernel.
Definition at line 11 of file Kernel_Elec.cpp.
|
inherited |
Get the parameter associated with the kernel.
Definition at line 35 of file Kernel.cpp.
References PROJECT_NS::Kernel::_param.
|
inherited |
Get RuleSet associated with the Kernel.
Definition at line 183 of file Kernel.cpp.
References PROJECT_NS::Kernel::_ruleset.
|
virtual |
Get the type of the kernel.
This function returns the type of the kernel.
Reimplemented from PROJECT_NS::Kernel.
Definition at line 13 of file Kernel_Elec.cpp.
References FUNCTION_NAME, and utils::hash().
Prepare initial conditions for the kernel and its children.
stat | The status object to store initialization status. |
Definition at line 39 of file Kernel.cpp.
References PROJECT_NS::Kernel::_child_kernels, PROJECT_NS::Kernel::_dataset, PROJECT_NS::Kernel::count_calc, and PROJECT_NS::Kernel::initializeKernel_impl().
Virtual function to initialize the kernel implementation.
stat | Status object to store initialization status. |
Reimplemented from PROJECT_NS::Kernel.
Definition at line 59 of file Kernel_Elec.cpp.
References PROJECT_NS::Kernel::_dataset, executeKernel_impl(), K0, K1, K1DA, K1DD, K1QA, K1QD, K2, K2DA, K2DD, K2QA, K2QD, PROJECT_NS::Dimension::P, PROJECT_NS::Dimension::PFF, and w.
|
inherited |
Insert a kernel at specified indexes in the tree.
indexes | Indexes indicating the position to insert the kernel. |
ker | The kernel to insert. |
Definition at line 102 of file Kernel.cpp.
References PROJECT_NS::Kernel::_child_kernels, PROJECT_NS::Kernel::_ruleset, and PROJECT_NS::Kernel::getLastParentKernelAndChildOrder().
|
static |
convert c (electonic amplititude) to kernel (affine map of the density)
Definition at line 85 of file Kernel_Elec.cpp.
References PROJECT_NS::ARRAY_OUTER_TRANS2(), c, and phys::math::iu().
Referenced by PROJECT_NS::Kernel_GWP::executeKernel_impl(), PROJECT_NS::Kernel_Elec_NAD::initializeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::initializeKernel_impl(), and PROJECT_NS::Kernel_GWP::initializeKernel_impl().
|
static |
convert c (electonic amplititude) to kernel (affine map of the density)
Definition at line 100 of file Kernel_Elec.cpp.
Referenced by PROJECT_NS::Kernel_Elec_NAD::executeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::executeKernel_impl(), PROJECT_NS::Kernel_Elec_NAD::initializeKernel_impl(), and PROJECT_NS::Kernel_Elec_Switch::initializeKernel_impl().
|
inlinestaticinherited |
|
inherited |
Overloaded equality operator to compare two Kernel objects by their IDs.
ker | The Kernel object to compare with. |
Definition at line 76 of file Kernel.cpp.
References PROJECT_NS::Kernel::getID().
|
inherited |
Remove kernels at specified indexes from the tree.
indexes | Indexes indicating the kernels to remove. |
Definition at line 128 of file Kernel.cpp.
References PROJECT_NS::Kernel::_child_kernels.
|
inlinestaticinherited |
|
staticinherited |
Serialize a Kernel object into a string representation.
ker | The Kernel object to serialize. |
Definition at line 185 of file Kernel.cpp.
|
inherited |
Set input data set for the kernel and its children.
DS | Shared pointer to the DataSet object. |
Definition at line 28 of file Kernel.cpp.
References PROJECT_NS::Kernel::_child_kernels, PROJECT_NS::Kernel::_dataset, PROJECT_NS::Kernel::_param, and PROJECT_NS::Kernel::setInputDataSet_impl().
|
privatevirtual |
Virtual function to set input data set for the kernel implementation.
DS | Shared pointer to the DataSet object containing input data. |
Reimplemented from PROJECT_NS::Kernel.
Definition at line 21 of file Kernel_Elec.cpp.
References PROJECT_NS::DATA::integrator::c, c, PROJECT_NS::DATA::integrator::K0, K0, PROJECT_NS::DATA::integrator::K1, K1, PROJECT_NS::DATA::integrator::K1DA, K1DA, PROJECT_NS::DATA::integrator::K1DD, K1DD, PROJECT_NS::DATA::integrator::K1QA, K1QA, PROJECT_NS::DATA::integrator::K1QD, K1QD, PROJECT_NS::DATA::integrator::K2, K2, PROJECT_NS::DATA::integrator::K2DA, K2DA, PROJECT_NS::DATA::integrator::K2DD, K2DD, PROJECT_NS::DATA::integrator::K2QA, K2QA, PROJECT_NS::DATA::integrator::K2QD, K2QD, PROJECT_NS::DATA::integrator::occ_nuc, occ_nuc, PROJECT_NS::DATA::integrator::OpA, OpA, PROJECT_NS::DATA::integrator::OpB, OpB, PROJECT_NS::DATA::integrator::rho_dual, rho_dual, PROJECT_NS::DATA::integrator::rho_ele, rho_ele, PROJECT_NS::DATA::integrator::rho_nuc, rho_nuc, PROJECT_NS::DATA::model::rep::T, T, PROJECT_NS::DATA::integrator::U, U, PROJECT_NS::DATA::integrator::w, w, PROJECT_NS::DATA::integrator::w_AA, w_AA, PROJECT_NS::DATA::integrator::w_AD, w_AD, PROJECT_NS::DATA::integrator::w_CC, w_CC, PROJECT_NS::DATA::integrator::w_CP, w_CP, PROJECT_NS::DATA::integrator::w_DD, w_DD, PROJECT_NS::DATA::integrator::w_PP, w_PP, PROJECT_NS::DATA::integrator::ww_A, ww_A, PROJECT_NS::DATA::integrator::ww_D, ww_D, PROJECT_NS::DATA::integrator::wz_A, wz_A, PROJECT_NS::DATA::integrator::wz_D, and wz_D.
|
inherited |
Set input parameters for the kernel and its children.
PM | Shared pointer to the Param object. |
Definition at line 21 of file Kernel.cpp.
References PROJECT_NS::Kernel::_child_kernels, PROJECT_NS::Kernel::_param, PROJECT_NS::Kernel::is_timing, LOC, and PROJECT_NS::Kernel::setInputParam_impl().
|
privatevirtual |
Virtual function to set input parameters for the kernel implementation.
PM | Shared pointer to the Param object containing input parameters. |
Reimplemented from PROJECT_NS::Kernel.
Definition at line 15 of file Kernel_Elec.cpp.
References PROJECT_NS::Dimension::F, LOC, and occ0.
|
inherited |
Update the kernel at specified indexes in the tree.
build tree structure of the kernel
indexes | Indexes indicating the kernel to update. |
ker | The kernel to update with. |
Definition at line 147 of file Kernel.cpp.
References PROJECT_NS::Kernel::_child_kernels, PROJECT_NS::Kernel::_ruleset, and PROJECT_NS::Kernel::getLastParentKernelAndChildOrder().
|
protectedinherited |
Vector containing shared pointers to all descendant kernels of this kernel.
Definition at line 303 of file Kernel.h.
Referenced by PROJECT_NS::Kernel::connectRelatedKernels().
|
protectedinherited |
Vector containing shared pointers to the child kernels of this kernel.
Definition at line 298 of file Kernel.h.
Referenced by PROJECT_NS::Kernel::appendChild(), PROJECT_NS::Kernel::executeKernel(), PROJECT_NS::Kernel_Iter::executeKernel_impl(), PROJECT_NS::Kernel_Iter_Adapt::executeKernel_impl(), PROJECT_NS::Kernel::finalizeKernel(), PROJECT_NS::Kernel::generateInformationString(), PROJECT_NS::Kernel::initializeKernel(), PROJECT_NS::Kernel::insertAt(), PROJECT_NS::Kernel::removeAt(), PROJECT_NS::Kernel::setInputDataSet(), PROJECT_NS::Model_ElectronTransfer::setInputDataSet_impl(), PROJECT_NS::Model_SystemBath::setInputDataSet_impl(), PROJECT_NS::Kernel::setInputParam(), and PROJECT_NS::Kernel::updateAt().
|
protectedinherited |
Shared pointer to the DataSet object associated with this kernel.
Definition at line 278 of file Kernel.h.
Referenced by PROJECT_NS::Kernel::executeKernel(), PROJECT_NS::Kernel_Dump_DataSet::executeKernel_impl(), PROJECT_NS::Kernel_Iter_Adapt::executeKernel_impl(), PROJECT_NS::Kernel_Load_DataSet::executeKernel_impl(), PROJECT_NS::Kernel::getDataSet(), PROJECT_NS::Kernel::initializeKernel(), PROJECT_NS::Kernel_Dump_DataSet::initializeKernel_impl(), initializeKernel_impl(), PROJECT_NS::Kernel_Elec_NAD::initializeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::initializeKernel_impl(), PROJECT_NS::Kernel_GWP::initializeKernel_impl(), PROJECT_NS::Kernel_Representation::initializeKernel_impl(), PROJECT_NS::Model_ElectronTransfer::initializeKernel_impl(), PROJECT_NS::Model_Interf_MNDO::initializeKernel_impl(), PROJECT_NS::Model_LVCM::initializeKernel_impl(), PROJECT_NS::Model_NAD1D::initializeKernel_impl(), PROJECT_NS::Model_SystemBath::initializeKernel_impl(), PROJECT_NS::Model_Interf_MNDO::parse_standard(), PROJECT_NS::Kernel::setInputDataSet(), and PROJECT_NS::Kernel_Recorder::token().
|
protectedinherited |
Order of this kernel in its parent's children.
Definition at line 293 of file Kernel.h.
Referenced by PROJECT_NS::Kernel::appendChild(), and PROJECT_NS::Kernel::getLastParentKernelAndChildOrder().
|
protectedinherited |
Shared pointer to the Param object associated with this kernel.
Definition at line 273 of file Kernel.h.
Referenced by PROJECT_NS::Kernel_Iter_Adapt::executeKernel_impl(), PROJECT_NS::Kernel::getParam(), PROJECT_NS::Kernel_Elec_NAD::initializeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::initializeKernel_impl(), PROJECT_NS::Kernel_Recorder::initializeKernel_impl(), PROJECT_NS::Model_Interf_MNDO::initializeKernel_impl(), PROJECT_NS::Kernel::setInputDataSet(), PROJECT_NS::Model_Bath::setInputDataSet_impl(), PROJECT_NS::Model_ElectronTransfer::setInputDataSet_impl(), PROJECT_NS::Model_Interf_MNDO::setInputDataSet_impl(), PROJECT_NS::Model_LVCM::setInputDataSet_impl(), PROJECT_NS::Model_NAD1D::setInputDataSet_impl(), PROJECT_NS::Model_SystemBath::setInputDataSet_impl(), PROJECT_NS::Kernel::setInputParam(), PROJECT_NS::Kernel_NADForce::setInputParam_impl(), PROJECT_NS::Model_Bath::setInputParam_impl(), PROJECT_NS::Model_ElectronTransfer::setInputParam_impl(), PROJECT_NS::Model_LVCM::setInputParam_impl(), PROJECT_NS::Model_NAD1D::setInputParam_impl(), and PROJECT_NS::Model_SystemBath::setInputParam_impl().
|
protectedinherited |
Pointer to the parent kernel.
Definition at line 288 of file Kernel.h.
Referenced by PROJECT_NS::Kernel::getLastParentKernelAndChildOrder().
|
protectedinherited |
Recorded Rules associated with the Kernel.
Definition at line 283 of file Kernel.h.
Referenced by PROJECT_NS::Kernel::appendChild(), PROJECT_NS::Kernel::executeKernel(), PROJECT_NS::Kernel_Recorder::executeKernel_impl(), PROJECT_NS::Kernel_Recorder::finalizeKernel_impl(), PROJECT_NS::Kernel::getRuleSet(), PROJECT_NS::Kernel_Recorder::initializeKernel_impl(), PROJECT_NS::Kernel::insertAt(), PROJECT_NS::Kernel_Recorder::Kernel_Recorder(), PROJECT_NS::Kernel_Recorder::token(), and PROJECT_NS::Kernel::updateAt().
|
static |
Definition at line 40 of file Kernel_Elec.h.
Referenced by PROJECT_NS::Kernel_Elec_NAD::executeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::executeKernel_impl(), PROJECT_NS::Kernel_GWP::executeKernel_impl(), PROJECT_NS::Kernel_Elec_NAD::initializeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::initializeKernel_impl(), PROJECT_NS::Kernel_GWP::initializeKernel_impl(), ker_from_c(), and setInputDataSet_impl().
|
static |
electronic vector
Definition at line 40 of file Kernel_Elec.h.
Referenced by PROJECT_NS::Kernel_GWP::cloning(), PROJECT_NS::Kernel_Elec_NAD::executeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::executeKernel_impl(), PROJECT_NS::Kernel_GWP::executeKernel_impl(), PROJECT_NS::Kernel_Elec_NAD::initializeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::initializeKernel_impl(), and PROJECT_NS::Kernel_GWP::initializeKernel_impl().
|
static |
partial version of K0
Definition at line 62 of file Kernel_Elec.h.
Referenced by PROJECT_NS::Kernel_Elec_NAD::executeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::executeKernel_impl(), initializeKernel_impl(), and setInputDataSet_impl().
|
static |
partial version of K1
Definition at line 63 of file Kernel_Elec.h.
Referenced by PROJECT_NS::Kernel_Elec_NAD::executeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::executeKernel_impl(), PROJECT_NS::Kernel_GWP::executeKernel_impl(), initializeKernel_impl(), and setInputDataSet_impl().
|
static |
Definition at line 67 of file Kernel_Elec.h.
Referenced by PROJECT_NS::Kernel_Elec_NAD::executeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::executeKernel_impl(), initializeKernel_impl(), and setInputDataSet_impl().
|
static |
Definition at line 71 of file Kernel_Elec.h.
Referenced by PROJECT_NS::Kernel_Elec_NAD::executeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::executeKernel_impl(), initializeKernel_impl(), and setInputDataSet_impl().
|
static |
Simplex Quantization.
Definition at line 65 of file Kernel_Elec.h.
Referenced by PROJECT_NS::Kernel_Elec_NAD::executeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::executeKernel_impl(), initializeKernel_impl(), and setInputDataSet_impl().
|
static |
Simplex Quantization.
Definition at line 69 of file Kernel_Elec.h.
Referenced by PROJECT_NS::Kernel_Elec_NAD::executeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::executeKernel_impl(), initializeKernel_impl(), and setInputDataSet_impl().
|
static |
partial version of K2
Definition at line 64 of file Kernel_Elec.h.
Referenced by PROJECT_NS::Kernel_Elec_NAD::executeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::executeKernel_impl(), initializeKernel_impl(), and setInputDataSet_impl().
|
static |
Definition at line 68 of file Kernel_Elec.h.
Referenced by PROJECT_NS::Kernel_Elec_NAD::executeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::executeKernel_impl(), initializeKernel_impl(), and setInputDataSet_impl().
|
static |
Definition at line 72 of file Kernel_Elec.h.
Referenced by PROJECT_NS::Kernel_Elec_NAD::executeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::executeKernel_impl(), initializeKernel_impl(), and setInputDataSet_impl().
|
static |
Heaviside Quantization.
Definition at line 66 of file Kernel_Elec.h.
Referenced by PROJECT_NS::Kernel_Elec_NAD::executeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::executeKernel_impl(), initializeKernel_impl(), and setInputDataSet_impl().
|
static |
Heaviside Quantization.
Definition at line 70 of file Kernel_Elec.h.
Referenced by PROJECT_NS::Kernel_Elec_NAD::executeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::executeKernel_impl(), initializeKernel_impl(), and setInputDataSet_impl().
|
static |
read parameters
Definition at line 31 of file Kernel_Elec.h.
Referenced by PROJECT_NS::Kernel_Elec_NAD::executeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::executeKernel_impl(), PROJECT_NS::Kernel_Elec_NAD::initializeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::initializeKernel_impl(), PROJECT_NS::Kernel_GWP::initializeKernel_impl(), and setInputParam_impl().
|
static |
weighting density for nuclear force
Definition at line 48 of file Kernel_Elec.h.
Referenced by PROJECT_NS::Kernel_Elec_NAD::executeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::executeKernel_impl(), PROJECT_NS::Kernel_NADForce::executeKernel_impl(), PROJECT_NS::Kernel_Elec_NAD::initializeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::initializeKernel_impl(), PROJECT_NS::Kernel_GWP::initializeKernel_impl(), and setInputDataSet_impl().
|
static |
Definition at line 74 of file Kernel_Elec.h.
Referenced by setInputDataSet_impl().
|
static |
Definition at line 74 of file Kernel_Elec.h.
Referenced by setInputDataSet_impl().
|
static |
Definition at line 42 of file Kernel_Elec.h.
Referenced by setInputDataSet_impl().
|
static |
electronic density
Definition at line 42 of file Kernel_Elec.h.
|
static |
Definition at line 41 of file Kernel_Elec.h.
Referenced by PROJECT_NS::Kernel_Elec_NAD::executeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::executeKernel_impl(), PROJECT_NS::Kernel_Elec_NAD::initializeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::initializeKernel_impl(), and setInputDataSet_impl().
|
static |
electronic density
Definition at line 41 of file Kernel_Elec.h.
Referenced by PROJECT_NS::Kernel_Elec_NAD::executeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::executeKernel_impl(), PROJECT_NS::Kernel_Elec_NAD::initializeKernel_impl(), and PROJECT_NS::Kernel_Elec_Switch::initializeKernel_impl().
|
static |
Definition at line 49 of file Kernel_Elec.h.
Referenced by PROJECT_NS::Kernel_Elec_NAD::executeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::executeKernel_impl(), PROJECT_NS::Kernel_GWP::executeKernel_impl(), PROJECT_NS::Kernel_NADForce::executeKernel_impl(), PROJECT_NS::Kernel_Elec_NAD::initializeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::initializeKernel_impl(), PROJECT_NS::Kernel_GWP::initializeKernel_impl(), and setInputDataSet_impl().
|
static |
|
static |
Definition at line 43 of file Kernel_Elec.h.
Referenced by PROJECT_NS::Kernel_Elec_NAD::executeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::executeKernel_impl(), PROJECT_NS::Kernel_GWP::executeKernel_impl(), PROJECT_NS::Kernel_Elec_NAD::initializeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::initializeKernel_impl(), PROJECT_NS::Kernel_GWP::initializeKernel_impl(), and setInputDataSet_impl().
|
static |
Definition at line 43 of file Kernel_Elec.h.
Referenced by PROJECT_NS::Kernel_Elec_NAD::executeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::executeKernel_impl(), PROJECT_NS::Kernel_GWP::executeKernel_impl(), PROJECT_NS::Kernel_Elec_NAD::initializeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::initializeKernel_impl(), and PROJECT_NS::Kernel_GWP::initializeKernel_impl().
|
static |
Definition at line 75 of file Kernel_Elec.h.
|
static |
Definition at line 75 of file Kernel_Elec.h.
|
static |
dynamics variables for electronic DOFs
Definition at line 39 of file Kernel_Elec.h.
Referenced by PROJECT_NS::Kernel_GWP::cloning(), PROJECT_NS::Kernel_Elec_NAD::executeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::executeKernel_impl(), PROJECT_NS::Kernel_GWP::executeKernel_impl(), PROJECT_NS::Kernel_Elec_NAD::initializeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::initializeKernel_impl(), PROJECT_NS::Kernel_GWP::initializeKernel_impl(), and setInputDataSet_impl().
|
static |
kernels for time correlation function
initial measurement of the phase point
Definition at line 54 of file Kernel_Elec.h.
Referenced by initializeKernel_impl(), PROJECT_NS::Kernel_Elec_NAD::initializeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::initializeKernel_impl(), PROJECT_NS::Kernel_GWP::initializeKernel_impl(), and setInputDataSet_impl().
|
static |
Definition at line 61 of file Kernel_Elec.h.
Referenced by setInputDataSet_impl().
|
static |
Definition at line 61 of file Kernel_Elec.h.
Referenced by setInputDataSet_impl().
|
static |
Definition at line 61 of file Kernel_Elec.h.
Referenced by setInputDataSet_impl().
|
static |
Definition at line 61 of file Kernel_Elec.h.
Referenced by setInputDataSet_impl().
|
static |
Definition at line 61 of file Kernel_Elec.h.
Referenced by setInputDataSet_impl().
|
static |
Definition at line 61 of file Kernel_Elec.h.
Referenced by setInputDataSet_impl().
|
static |
Definition at line 57 of file Kernel_Elec.h.
Referenced by PROJECT_NS::Kernel_Elec_NAD::executeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::executeKernel_impl(), PROJECT_NS::Kernel_Elec_NAD::initializeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::initializeKernel_impl(), and setInputDataSet_impl().
|
static |
|
static |
Definition at line 58 of file Kernel_Elec.h.
Referenced by PROJECT_NS::Kernel_Elec_NAD::executeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::executeKernel_impl(), PROJECT_NS::Kernel_Elec_NAD::initializeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::initializeKernel_impl(), and setInputDataSet_impl().
|
static |
|
static |
Definition at line 55 of file Kernel_Elec.h.
Referenced by PROJECT_NS::Kernel_Elec_NAD::initializeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::initializeKernel_impl(), and setInputDataSet_impl().
|
static |
Definition at line 56 of file Kernel_Elec.h.
Referenced by PROJECT_NS::Kernel_Elec_NAD::initializeKernel_impl(), PROJECT_NS::Kernel_Elec_Switch::initializeKernel_impl(), and setInputDataSet_impl().