/usr/include/trilinos/fei_FEI_Impl.hpp is in libtrilinos-dev 10.4.0.dfsg-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 | /*--------------------------------------------------------------------*/
/* Copyright 2005 Sandia Corporation. */
/* Under the terms of Contract DE-AC04-94AL85000, there is a */
/* non-exclusive license for use of this work by or on behalf */
/* of the U.S. Government. Export of this program may require */
/* a license from the United States Government. */
/*--------------------------------------------------------------------*/
#ifndef _fei_FEI_Impl_hpp_
#define _fei_FEI_Impl_hpp_
#include <fei_macros.hpp>
#include <fei_mpi.h>
#include <FEI.hpp>
#include <fei_Factory.hpp>
#include <set>
#include <vector>
#include <map>
namespace fei {
/** Implementation of the original abstract FEI interface. This FEI_Impl
class plays the same role as the FEI_Implementation class, except that
this class internally is based on the newer more modular fei:: classes.
The result should be the same functionality as FEI_Implementation but
with improved performance.
The ultimate goal is for this class to replace the FEI_Implementation
class, thereby greatly reducing the total body of code that constitutes
the fei code-distribution.
*/
class FEI_Impl : public FEI, private fei::Logger {
public:
/** Constructor
*/
FEI_Impl(fei::SharedPtr<LibraryWrapper> wrapper,
MPI_Comm comm,
int masterRank=0);
/** Constructor
*/
FEI_Impl(const fei::Factory* factory,
MPI_Comm comm,
int masterRank=0);
/** Destructor
*/
virtual ~FEI_Impl();
/** This function isn't in the original FEI 2.1 interface. But it is useful
to users who may be mixing old and new fei objects and need access
to underlying stuff.
*/
fei::SharedPtr<fei::LinearSystem> getLinearSystem();
int parameters(int numParams,
const char *const* paramStrings);
int setIDLists(int numMatrices,
const int* matrixIDs,
int numRHSs,
const int* rhsIDs);
int setSolveType(int solveType);
int initFields(int numFields,
const int *fieldSizes,
const int *fieldIDs,
const int *fieldTypes=NULL);
int initElemBlock(GlobalID elemBlockID,
int numElements,
int numNodesPerElement,
const int* numFieldsPerNode,
const int* const* nodalFieldIDs,
int numElemDofFieldsPerElement,
const int* elemDOFFieldIDs,
int interleaveStrategy);
int initElem(GlobalID elemBlockID,
GlobalID elemID,
const GlobalID* elemConn);
int initSlaveVariable(GlobalID slaveNodeID,
int slaveFieldID,
int offsetIntoSlaveField,
int numMasterNodes,
const GlobalID* masterNodeIDs,
const int* masterFieldIDs,
const double* weights,
double rhsValue);
int deleteMultCRs();
int initSharedNodes(int numSharedNodes,
const GlobalID *sharedNodeIDs,
const int* numProcsPerNode,
const int *const *sharingProcIDs);
int initCRMult(int numCRNodes,
const GlobalID* CRNodeIDs,
const int *CRFieldIDs,
int& CRID);
int initCRPen(int numCRNodes,
const GlobalID* CRNodeIDs,
const int *CRFieldIDs,
int& CRID);
/** indicate that overall initialization sequence is complete */
int initComplete();
int setCurrentMatrix(int matrixID);
int setCurrentRHS(int rhsID);
int resetSystem(double s=0.0);
int resetMatrix(double s=0.0);
int resetRHSVector(double s=0.0);
int resetInitialGuess(double s=0.0);
int loadNodeBCs(int numNodes,
const GlobalID *nodeIDs,
int fieldID,
const int* offsetsIntoField,
const double* prescribedValues);
int loadElemBCs(int numElems,
const GlobalID* elemIDs,
int fieldID,
const double *const *alpha,
const double *const *beta,
const double *const *gamma);
int sumInElem(GlobalID elemBlockID,
GlobalID elemID,
const GlobalID* elemConn,
const double* const* elemStiffness,
const double* elemLoad,
int elemFormat);
int sumInElemMatrix(GlobalID elemBlockID,
GlobalID elemID,
const GlobalID* elemConn,
const double* const* elemStiffness,
int elemFormat);
int sumInElemRHS(GlobalID elemBlockID,
GlobalID elemID,
const GlobalID* elemConn,
const double* elemLoad);
int loadCRMult(int CRMultID,
int numCRNodes,
const GlobalID* CRNodeIDs,
const int* CRFieldIDs,
const double* CRWeights,
double CRValue);
int loadCRPen(int CRPenID,
int numCRNodes,
const GlobalID* CRNodeIDs,
const int* CRFieldIDs,
const double* CRWeights,
double CRValue,
double penValue);
/**
*/
int putIntoRHS(int IDType,
int fieldID,
int numIDs,
const GlobalID* IDs,
const double* coefficients);
/**
*/
int sumIntoRHS(int IDType,
int fieldID,
int numIDs,
const GlobalID* IDs,
const double* coefficients);
int setMatScalars(int numScalars,
const int* IDs,
const double* scalars);
int setRHSScalars(int numScalars,
const int* IDs,
const double* scalars);
int loadComplete(bool applyBCs=true,
bool globalAssemble=true);
/** get residual norms */
int residualNorm(int whichNorm,
int numFields,
int* fieldIDs,
double* norms);
/** launch underlying solver */
int solve(int& status);
/** Query number of iterations taken for last solve.
@param itersTaken Iterations performed during any previous solve.
*/
int iterations(int& itersTaken) const;
int version(const char*& versionString);
/** query for some accumulated timing information. Collective function. */
int cumulative_cpu_times(double& initTime,
double& loadTime,
double& solveTime,
double& solnReturnTime);
/** return all nodal solution params on a block-by-block basis */
int getBlockNodeSolution(GlobalID elemBlockID,
int numNodes,
const GlobalID *nodeIDs,
int *offsets,
double *results);
/** return all nodal solution params for an arbitrary list of nodes */
int getNodalSolution(int numNodes,
const GlobalID* nodeIDs,
int* offsets,
double* results);
/** return nodal solution for one field on a block-by-block basis */
int getBlockFieldNodeSolution(GlobalID elemBlockID,
int fieldID,
int numNodes,
const GlobalID *nodeIDs,
double *results);
/** return element solution params on a block-by-block basis */
int getBlockElemSolution(GlobalID elemBlockID,
int numElems,
const GlobalID *elemIDs,
int& numElemDOFPerElement,
double *results);
/** Query number of lagrange-multiplier constraints on local processor */
int getNumCRMultipliers(int& numMultCRs);
/** Obtain list of lagrange-multiplier IDs */
int getCRMultIDList(int numMultCRs, int* multIDs);
/** get Lagrange Multipliers */
int getCRMultipliers(int numCRs,
const int* CRIDs,
double *multipliers);
// associated "puts" paralleling the solution return services.
//
// the int sizing parameters are passed for error-checking purposes, so
// that the interface implementation can tell if the passed estimate
// vectors make sense -before- an attempt is made to utilize them as
// initial guesses by unpacking them into the solver's native solution
// vector format (these parameters include lenNodeIDList, lenElemIDList,
// numElemDOF, and numMultCRs -- all other passed params are either
// vectors or block/constraint-set IDs)
/** put nodal-based solution guess on a block-by-block basis */
int putBlockNodeSolution(GlobalID elemBlockID,
int numNodes,
const GlobalID *nodeIDs,
const int *offsets,
const double *estimates);
/** put nodal-based guess for one field on a block-by-block basis */
int putBlockFieldNodeSolution(GlobalID elemBlockID,
int fieldID,
int numNodes,
const GlobalID *nodeIDs,
const double *estimates);
/** put element-based solution guess on a block-by-block basis */
int putBlockElemSolution(GlobalID elemBlockID,
int numElems,
const GlobalID *elemIDs,
int dofPerElem,
const double *estimates);
/** put Lagrange solution to FE analysis on a constraint-set basis */
int putCRMultipliers(int numMultCRs,
const int* CRIDs,
const double* multEstimates);
// utility functions that aid in integrating the FEI calls..............
// support methods for the "gets" and "puts" of the soln services.
/** return info associated with blocked nodal solution */
int getBlockNodeIDList(GlobalID elemBlockID,
int numNodes,
GlobalID *nodeIDs);
/** return info associated with blocked element solution */
int getBlockElemIDList(GlobalID elemBlockID,
int numElems,
GlobalID* elemIDs);
// miscellaneous self-explanatory "read-only" query functions............
/** Query number of degrees-of-freedom for specified node */
int getNumSolnParams(GlobalID nodeID, int& numSolnParams) const;
/** Query number of element-blocks on local processor */
int getNumElemBlocks(int& numElemBlocks) const;
/** return the number of active nodes in a given element block */
int getNumBlockActNodes(GlobalID blockID, int& numNodes) const;
/** return the number of active equations in a given element block */
int getNumBlockActEqns(GlobalID blockID, int& numEqns) const;
/** return the number of nodes associated with elements of a
given block ID */
int getNumNodesPerElement(GlobalID blockID, int& nodesPerElem) const;
/** return the number of equations (including element eqns)
associated with elements of a given block ID */
int getNumEqnsPerElement(GlobalID blockID, int& numEqns) const;
/** return the number of elements associated with this blockID */
int getNumBlockElements(GlobalID blockID, int& numElems) const;
/** return the number of elements eqns for elems w/ this blockID */
int getNumBlockElemDOF(GlobalID blockID, int& DOFPerElem) const;
/** return the parameters that have been set so far. The caller should
NOT delete the paramStrings pointer.
*/
int getParameters(int& numParams, char**& paramStrings);
//And now a couple of non-FEI query functions that Sandia applications
//need to augment the matrix-access functions. I (Alan Williams) will
//argue to have these included in the FEI 2.1 specification update.
/** Query the size of a field. This info is supplied to the FEI (initFields)
by the application, but may not be easily obtainable on the app side at
all times. Thus, it would be nice if the FEI could answer this query.
*/
int getFieldSize(int fieldID, int& numScalars);
/**Since the ultimate intent for matrix-access is to bypass the FEI and go
straight to data objects, we need a translation function to map between
the IDs that the FEI deals in, and equation numbers that linear algebra
objects deal in.
@param ID Identifier of either a node or an element.
@param idType Can take either of the values FEI_NODE or FEI_ELEMENT.
@param fieldID Identifies a particular field at this [node||element].
@param numEqns Output. Number of equations associated with this
node/field (or element/field) pair.
@param eqnNumbers Caller-allocated array. On exit, this is filled with the
above-described equation-numbers. They are global 0-based numbers.
*/
int getEqnNumbers(GlobalID ID,
int idType,
int fieldID,
int& numEqns,
int* eqnNumbers);
/**Get the solution data for a particular field, on an arbitrary set of
nodes.
@param fieldID Input. field identifier for which solution data is being
requested.
@param numNodes Input. Length of the nodeIDs list.
@param nodeIDs Input. List specifying the nodes on which solution
data is being requested.
@param results Allocated by caller, but contents are output.
Solution data for the i-th node/element starts in position i*fieldSize,
where fieldSize is the number of scalar components that make up
'fieldID'.
@return error-code 0 if successful
*/
int getNodalFieldSolution(int fieldID,
int numNodes,
const GlobalID* nodeIDs,
double* results);
/**Get the number of nodes that are local to this processor (includes nodes
that are shared by other processors).
@param numNodes Output. Number of local nodes.
@return error-code 0 if successful
*/
int getNumLocalNodes(int& numNodes);
/**Get a list of the nodeIDs that are local to this processor (includes nodes
that are shared by other processors).
@param numNodes Output. Same as the value output by 'getNumLocalNodes'.
@param nodeIDs Caller-allocated array, contents to be filled by this
function.
@param lenNodeIDs Input. Length of the caller-allocated nodeIDs array. If
lenNodeIDs is less than numNodes, then only 'lenNodeIDs' nodeIDs are
provided, of course. If lenNodeIDs is greater than numNodes, then only
'numNodes' positions of the nodeIDs array are referenced.
@return error-code 0 if successful
*/
int getLocalNodeIDList(int& numNodes,
GlobalID* nodeIDs,
int lenNodeIDs);
/** Pass nodal data for a specified field through to the solver. Example
is geometric coordinates, etc.
@param fieldID field identifier for the data to be passed. This is probably
not one of the 'solution-field' identifiers. It should be an identifier
that the solver is expecting and knows how to handle. This field id must
previously have been provided to the fei implementation via the normal
initFields method.
@param numNodes number of nodes for which data is being provided
@param nodeIDs List of length numNodes, giving node-identifiers for which
data is being provided.
@param nodeData List of length fieldSize*numNodes, where fieldSize is the
size which was associated with fieldID when initFields was called. The
data for nodeIDs[i] begins in position i*fieldSize of this array.
*/
int putNodalFieldData(int fieldID,
int numNodes,
const GlobalID* nodeIDs,
const double* nodeData);
private: //methods
void basic_initializations();
int inputRHS(int IDType,
int fieldID,
int numIDs,
const GlobalID* IDs,
const double* rhsEntries,
bool sumInto);
int fillNodeset(int blockID) const;
int aggregateSystem();
int aggregateSystem_LinSysCore();
private: //attributes
std::vector<fei::SharedPtr<LibraryWrapper> > wrapper_;
int nodeIDType_;
int elemIDType_;
int constraintIDType_;
std::vector<fei::SharedPtr<fei::Factory> > factory_;
bool createdFactory_;
fei::SharedPtr<fei::VectorSpace> rowSpace_;
fei::SharedPtr<fei::MatrixGraph> matGraph_;
fei::SharedPtr<fei::Vector> x_;
std::vector<fei::SharedPtr<fei::Vector> > b_;
std::vector<fei::SharedPtr<fei::Matrix> > A_;
fei::SharedPtr<fei::LinearSystem> linSys_;
bool newData_;
Data *soln_fei_matrix_;
Data *soln_fei_vector_;
MPI_Comm comm_;
int masterRank_;
int localProc_;
int numProcs_;
int numParams_;
char** paramStrings_;
std::vector<int> matrixIDs_;
std::vector<int> rhsIDs_;
std::vector<double> matScalars_;
bool matScalarsSet_;
std::vector<double> rhsScalars_;
bool rhsScalarsSet_;
int constraintID_;
int index_soln_;
int index_current_;
int index_current_rhs_row_;
int solveType_;
int iterations_;
bool setSolveTypeCalled_;
bool initPhaseIsComplete_;
bool aggregateSystemFormed_;
int newMatrixDataLoaded_;
int solveCounter_;
double initTime_, loadTime_, solveTime_, solnReturnTime_;
std::vector<int> iwork_;
mutable std::set<int> nodeset_;
mutable bool nodeset_filled_;
mutable int nodeset_blockid_;
mutable std::map<int,int> block_dof_per_elem_;
bool any_blocks_have_elem_dof_;
};//class FEI_Impl
}//namespace fei
#endif
|