DeltaNotchOdeSystem.hpp
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036 #ifndef DELTANOTCHODESYSTEM_HPP_
00037 #define DELTANOTCHODESYSTEM_HPP_
00038
00039 #include "ChasteSerialization.hpp"
00040 #include <boost/serialization/base_object.hpp>
00041 #include <boost/serialization/shared_ptr.hpp>
00042
00043 #include <cmath>
00044 #include <iostream>
00045
00046 #include "AbstractOdeSystem.hpp"
00047
00054 class DeltaNotchOdeSystem : public AbstractOdeSystem
00055 {
00056 private:
00057
00058 friend class boost::serialization::access;
00065 template<class Archive>
00066 void serialize(Archive & archive, const unsigned int version)
00067 {
00068 archive & boost::serialization::base_object<AbstractOdeSystem>(*this);
00069 }
00070
00072
00073 public:
00074
00080 DeltaNotchOdeSystem(std::vector<double> stateVariables=std::vector<double>());
00081
00085 ~DeltaNotchOdeSystem();
00086
00097 void EvaluateYDerivatives(double time, const std::vector<double>& rY, std::vector<double>& rDY);
00098 };
00099
00100
00101 #include "SerializationExportWrapper.hpp"
00102 CHASTE_CLASS_EXPORT(DeltaNotchOdeSystem)
00103
00104 namespace boost
00105 {
00106 namespace serialization
00107 {
00111 template<class Archive>
00112 inline void save_construct_data(
00113 Archive & ar, const DeltaNotchOdeSystem * t, const BOOST_PFTO unsigned int file_version)
00114 {
00115 const std::vector<double> state_variables = t->rGetConstStateVariables();
00116 ar & state_variables;
00117 }
00118
00122 template<class Archive>
00123 inline void load_construct_data(
00124 Archive & ar, DeltaNotchOdeSystem * t, const unsigned int file_version)
00125 {
00126 std::vector<double> state_variables;
00127 ar & state_variables;
00128
00129
00130 ::new(t)DeltaNotchOdeSystem(state_variables);
00131 }
00132 }
00133 }
00134
00135 #endif