Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91955928
solver.cpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Nov 16, 02:46
Size
1 KB
Mime Type
text/x-c
Expires
Mon, Nov 18, 02:46 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22123700
Attached To
rLAMMPS lammps
solver.cpp
View Options
/*
*_________________________________________________________________________*
* POEMS: PARALLELIZABLE OPEN SOURCE EFFICIENT MULTIBODY SOFTWARE *
* DESCRIPTION: SEE READ-ME *
* FILE NAME: solver.cpp *
* AUTHORS: See Author List *
* GRANTS: See Grants List *
* COPYRIGHT: (C) 2005 by Authors as listed in Author's List *
* LICENSE: Please see License Agreement *
* DOWNLOAD: Free at www.rpi.edu/~anderk5 *
* ADMINISTRATOR: Prof. Kurt Anderson *
* Computational Dynamics Lab *
* Rensselaer Polytechnic Institute *
* 110 8th St. Troy NY 12180 *
* CONTACT: anderk5@rpi.edu *
*_________________________________________________________________________*/
#include "solver.h"
#include "system.h"
#include "matrices.h"
Solver::Solver(){
}
Solver::~Solver(){
}
void Solver::SetSystem(System* s){
system = s;
CreateModel();
}
void Solver::ComputeForces(){
system->ComputeForces();
}
SolverType Solver::GetSolverType()
{
return type;
}
Solver * Solver::GetSolver(SolverType solverToMake) //returning a pointer to a new Solver object of the appropriate type
{
switch((int)solverToMake)
{
case ONSOLVER: return new OnSolver();
default: return NULL;
}
}
ColMatMap* Solver::GetState(){
return &state;
}
ColMatMap* Solver::GetStateDerivative(){
return &statedot;
}
ColMatMap* Solver::GetStateDerivativeDerivative(){
return &statedoubledot;
}
Event Timeline
Log In to Comment