Simbody
|
00001 #ifndef SimTK_SIMBODY_MULTIBODY_SYSTEM_H_ 00002 #define SimTK_SIMBODY_MULTIBODY_SYSTEM_H_ 00003 00004 /* -------------------------------------------------------------------------- * 00005 * SimTK Core: SimTK Simbody(tm) * 00006 * -------------------------------------------------------------------------- * 00007 * This is part of the SimTK Core biosimulation toolkit originating from * 00008 * Simbios, the NIH National Center for Physics-Based Simulation of * 00009 * Biological Structures at Stanford, funded under the NIH Roadmap for * 00010 * Medical Research, grant U54 GM072970. See https://simtk.org. * 00011 * * 00012 * Portions copyright (c) 2005-10 Stanford University and the Authors. * 00013 * Authors: Michael Sherman * 00014 * Contributors: * 00015 * * 00016 * Permission is hereby granted, free of charge, to any person obtaining a * 00017 * copy of this software and associated documentation files (the "Software"), * 00018 * to deal in the Software without restriction, including without limitation * 00019 * the rights to use, copy, modify, merge, publish, distribute, sublicense, * 00020 * and/or sell copies of the Software, and to permit persons to whom the * 00021 * Software is furnished to do so, subject to the following conditions: * 00022 * * 00023 * The above copyright notice and this permission notice shall be included in * 00024 * all copies or substantial portions of the Software. * 00025 * * 00026 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * 00027 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * 00028 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * 00029 * THE AUTHORS, CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, * 00030 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR * 00031 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE * 00032 * USE OR OTHER DEALINGS IN THE SOFTWARE. * 00033 * -------------------------------------------------------------------------- */ 00034 00035 #include "SimTKcommon.h" 00036 #include "simbody/internal/common.h" 00037 00038 #include <vector> 00039 00040 namespace SimTK { 00041 00042 class SimbodyMatterSubsystem; 00043 class ForceSubsystem; 00044 class DecorationSubsystem; 00045 class GeneralContactSubsystem; 00046 00047 00057 class SimTK_SIMBODY_EXPORT MultibodySystem : public System { 00058 public: 00059 MultibodySystem(); 00060 explicit MultibodySystem(SimbodyMatterSubsystem& m); 00061 00062 // Steals ownership of the source; returns subsystem ID number. 00063 int addForceSubsystem(ForceSubsystem&); 00064 00065 int setMatterSubsystem(SimbodyMatterSubsystem&); 00066 const SimbodyMatterSubsystem& getMatterSubsystem() const; 00067 SimbodyMatterSubsystem& updMatterSubsystem(); 00068 bool hasMatterSubsystem() const; 00069 00070 int setDecorationSubsystem(DecorationSubsystem&); 00071 const DecorationSubsystem& getDecorationSubsystem() const; 00072 DecorationSubsystem& updDecorationSubsystem(); 00073 bool hasDecorationSubsystem() const; 00074 00075 int setContactSubsystem(GeneralContactSubsystem&); 00076 const GeneralContactSubsystem& getContactSubsystem() const; 00077 GeneralContactSubsystem& updContactSubsystem(); 00078 bool hasContactSubsystem() const; 00079 00080 00083 const Real calcPotentialEnergy(const State&) const; 00086 const Real calcKineticEnergy(const State&) const; 00089 Real calcEnergy(const State& s) const { 00090 return calcPotentialEnergy(s)+calcKineticEnergy(s); 00091 } 00092 00093 // These methods are for use by our constituent subsystems to communicate 00094 // with each other and with the MultibodySystem as a whole. 00095 00096 // These cache entries belong to the global subsystem, which zeroes them at 00097 // the start of the corresponding stage. They are filled in by the force 00098 // subsystems when they are realized to each stage. Forces are cumulative 00099 // from stage to stage, so the Dynamics stage includes everything. That may 00100 // then be accessed by the matter subsystem in Acceleration stage to 00101 // generate the accelerations. 00102 const Vector_<SpatialVec>& getRigidBodyForces(const State&, Stage) const; 00103 const Vector_<Vec3>& getParticleForces (const State&, Stage) const; 00104 const Vector& getMobilityForces (const State&, Stage) const; 00105 00106 // These routines are for use by force subsystems during Dynamics stage. 00107 Vector_<SpatialVec>& updRigidBodyForces(const State&, Stage) const; 00108 Vector_<Vec3>& updParticleForces (const State&, Stage) const; 00109 Vector& updMobilityForces (const State&, Stage) const; 00110 00111 // Private implementation. 00112 SimTK_PIMPL_DOWNCAST(MultibodySystem, System); 00113 class MultibodySystemRep& updRep(); 00114 const MultibodySystemRep& getRep() const; 00115 protected: 00116 explicit MultibodySystem(MultibodySystemRep*); 00117 }; 00118 00119 class SimTK_SIMBODY_EXPORT MultibodyDynamicsStudy : public Study { 00120 public: 00121 MultibodyDynamicsStudy() { } 00122 MultibodyDynamicsStudy(const MultibodyDynamicsStudy&); 00123 MultibodyDynamicsStudy& operator=(const MultibodyDynamicsStudy&); 00124 ~MultibodyDynamicsStudy(); 00125 00126 MultibodyDynamicsStudy(const MultibodySystem&); 00127 00128 const MultibodySystem& getMultibodySystem() const; 00129 00130 void advanceTimeBy(const Real& h); //TODO 00131 00132 SimTK_PIMPL_DOWNCAST(MultibodyDynamicsStudy, Study); 00133 }; 00134 00135 00136 } // namespace SimTK 00137 00138 #endif // SimTK_SIMBODY_MULTIBODY_SYSTEM_H_