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 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
|
/* */
/* KIM-API: An API for interatomic models */
/* Copyright (c) 2013--2022, Regents of the University of Minnesota. */
/* All rights reserved. */
/* */
/* Contributors: */
/* Ryan S. Elliott */
/* */
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/* */
/* This library is free software; you can redistribute it and/or */
/* modify it under the terms of the GNU Lesser General Public */
/* License as published by the Free Software Foundation; either */
/* version 2.1 of the License, or (at your option) any later version. */
/* */
/* This library 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 */
/* Lesser General Public License for more details. */
/* */
/* You should have received a copy of the GNU Lesser General Public License */
/* along with this library; if not, write to the Free Software Foundation, */
/* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */
/* */
/* */
/* Release: This file is part of the kim-api.git repository. */
/* */
#ifndef KIM_MODEL_COMPUTE_ARGUMENTS_H_
#define KIM_MODEL_COMPUTE_ARGUMENTS_H_
/* Forward declarations */
#ifndef KIM_LOG_VERBOSITY_DEFINED_
#define KIM_LOG_VERBOSITY_DEFINED_
/**
** \brief Forward declaration.
**
** \since 2.0
**/
typedef struct KIM_LogVerbosity KIM_LogVerbosity;
#endif
#ifndef KIM_COMPUTE_ARGUMENT_NAME_DEFINED_
#define KIM_COMPUTE_ARGUMENT_NAME_DEFINED_
/**
** \brief Forward declaration.
**
** \since 2.0
**/
typedef struct KIM_ComputeArgumentName KIM_ComputeArgumentName;
#endif
#ifndef KIM_COMPUTE_CALLBACK_NAME_DEFINED_
#define KIM_COMPUTE_CALLBACK_NAME_DEFINED_
/**
** \brief Forward declaration.
**
** \since 2.0
**/
typedef struct KIM_ComputeCallbackName KIM_ComputeCallbackName;
#endif
#ifndef KIM_MODEL_COMPUTE_ARGUMENTS_DEFINED_
#define KIM_MODEL_COMPUTE_ARGUMENTS_DEFINED_
/**
** \brief \copybrief KIM::ModelComputeArguments
**
** \sa KIM::ModelComputeArguments,
** kim_model_compute_arguments_module::kim_model_compute_arguments_handle_type
**
** \since 2.0
**/
typedef struct KIM_ModelComputeArguments KIM_ModelComputeArguments;
#endif
/**
** \brief \copybrief KIM::ModelComputeArguments::GetNeighborList
**
** \sa KIM::ModelComputeArguments::GetNeighborList,
** kim_model_compute_arguments_module::kim_get_neighbor_list
**
** \since 2.0
**/
int KIM_ModelComputeArguments_GetNeighborList(
KIM_ModelComputeArguments const * const modelComputeArguments,
int const neighborListIndex,
int const particleNumber,
int * const numberOfNeighbors,
int const ** const neighborsOfParticle);
/**
** \brief \copybrief KIM::ModelComputeArguments::ProcessDEDrTerm
**
** \sa KIM::ModelComputeArguments::ProcessDEDrTerm,
** kim_model_compute_arguments_module::kim_process_dedr_term
**
** \since 2.0
**/
int KIM_ModelComputeArguments_ProcessDEDrTerm(
KIM_ModelComputeArguments const * const modelComputeArguments,
double const de,
double const r,
double const * const dx,
int const i,
int const j);
/**
** \brief \copybrief KIM::ModelComputeArguments::ProcessD2EDr2Term
**
** \sa KIM::ModelComputeArguments::ProcessD2EDr2Term,
** kim_model_compute_arguments_module::kim_process_d2edr2_term
**
** \since 2.0
**/
int KIM_ModelComputeArguments_ProcessD2EDr2Term(
KIM_ModelComputeArguments const * const modelComputeArguments,
double const de,
double const * const r,
double const * const dx,
int const * const i,
int const * const j);
/**
** \brief \copybrief KIM::ModelComputeArguments::GetArgumentPointer
**
** \sa KIM::ModelComputeArguments::GetArgumentPointer,
** kim_model_compute_arguments_module::kim_get_argument_pointer
**
** \since 2.0
**/
int KIM_ModelComputeArguments_GetArgumentPointerInteger(
KIM_ModelComputeArguments const * const modelComputeArguments,
KIM_ComputeArgumentName const computeArgumentName,
int ** const ptr);
/**
** \brief \copybrief KIM::ModelComputeArguments::GetArgumentPointer
**
** \sa KIM::ModelComputeArguments::GetArgumentPointer,
** kim_model_compute_arguments_module::kim_get_argument_pointer
**
** \since 2.0
**/
int KIM_ModelComputeArguments_GetArgumentPointerDouble(
KIM_ModelComputeArguments const * const modelComputeArguments,
KIM_ComputeArgumentName const computeArgumentName,
double ** const ptr);
/**
** \brief \copybrief KIM::ModelComputeArguments::IsCallbackPresent
**
** \sa KIM::ModelComputeArguments::IsCallbackPresent,
** kim_model_compute_arguments_module::kim_is_callback_present
**
** \since 2.0
**/
int KIM_ModelComputeArguments_IsCallbackPresent(
KIM_ModelComputeArguments const * const modelComputeArguments,
KIM_ComputeCallbackName const computeCallbackName,
int * const present);
/**
** \brief \copybrief KIM::ModelComputeArguments::SetModelBufferPointer
**
** \sa KIM::ModelComputeArguments::SetModelBufferPointer,
** kim_model_compute_arguments_module::kim_set_model_buffer_pointer
**
** \since 2.0
**/
void KIM_ModelComputeArguments_SetModelBufferPointer(
KIM_ModelComputeArguments * const modelComputeArguments, void * const ptr);
/**
** \brief \copybrief KIM::ModelComputeArguments::GetModelBufferPointer
**
** \sa KIM::ModelComputeArguments::GetModelBufferPointer,
** kim_model_compute_arguments_module::kim_get_model_buffer_pointer
**
** \since 2.0
**/
void KIM_ModelComputeArguments_GetModelBufferPointer(
KIM_ModelComputeArguments const * const modelComputeArguments,
void ** const ptr);
/**
** \brief \copybrief KIM::ModelComputeArguments::LogEntry
**
** \sa KIM::ModelComputeArguments::LogEntry,
** kim_model_compute_arguments_module::kim_log_entry
**
** \since 2.0
**/
void KIM_ModelComputeArguments_LogEntry(
KIM_ModelComputeArguments const * const modelComputeArguments,
KIM_LogVerbosity const logVerbosity,
char const * const message,
int const lineNumber,
char const * const fileName);
/**
** \brief \copybrief KIM::ModelComputeArguments::ToString
**
** \sa KIM::ModelComputeArguments::ToString,
** kim_model_compute_arguments_module::kim_to_string
**
** \since 2.0
**/
char const * KIM_ModelComputeArguments_ToString(
KIM_ModelComputeArguments const * const modelComputeArguments);
#endif /* KIM_MODEL_COMPUTE_ARGUMENTS_H_ */
|