00001 #ifndef INDII_FMRI_HEMODYNAMIC_LOGFLOWBALLOONMODELDEFAULTS_HPP 00002 #define INDII_FMRI_HEMODYNAMIC_LOGFLOWBALLOONMODELDEFAULTS_HPP 00003 00004 #include "indii/ml/ode/FunctionStatic.hpp" 00005 00006 namespace indii { 00007 namespace fmri { 00008 namespace hemodynamic { 00009 00010 /** 00011 * Default biophysical parameter and function settings for 00012 * LogFlowBalloonModel. 00013 * 00014 * @author Lawrence Murray <lawrence@indii.org> 00015 * @version $Rev: 285 $ 00016 * @date $Date: 2007-07-20 17:25:40 +0100 (Fri, 20 Jul 2007) $ 00017 */ 00018 class LogFlowBalloonModelDefaults { 00019 public: 00020 /** 00021 * \f$f_{out}(t) = e^{\frac{1}{\alpha}\ln v}\f$; normalised flow out 00022 * of the venous compartment. 00023 */ 00024 static indii::ml::ode::f_t F_OUT; 00025 00026 /** 00027 * \f$\frac{d \ln q}{dt} = \frac{\dot{q}}{q}\f$; differential 00028 * equation in log space, where \f$\dot{q} = \frac{dq}{dt}\f$ is 00029 * defined as in FlowBalloonModelDefaults. 00030 */ 00031 static indii::ml::ode::f_t DLNQDT; 00032 00033 /** 00034 * \f$\frac{d \ln v}{dt} = \frac{\dot{v}}{v}\f$; differential 00035 * equation in log space, where \f$\dot{v} = \frac{dv}{dt}\f$ is 00036 * defined as in FlowBalloonModelDefaults. 00037 */ 00038 static indii::ml::ode::f_t DLNVDT; 00039 00040 }; 00041 00042 } 00043 } 00044 } 00045 00046 #endif
1.5.2