From 1f4a944064bc42284c33e6b755353d191cf288e8 Mon Sep 17 00:00:00 2001 From: astrojhgu Date: Mon, 15 Dec 2008 07:26:12 +0000 Subject: git-svn-id: file:///home/svn/opt_utilities@1 ed2142bd-67ad-457f-ba7c-d818d4011675 --- models/nbeta1d.hpp | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 models/nbeta1d.hpp (limited to 'models/nbeta1d.hpp') diff --git a/models/nbeta1d.hpp b/models/nbeta1d.hpp new file mode 100644 index 0000000..3806fe9 --- /dev/null +++ b/models/nbeta1d.hpp @@ -0,0 +1,49 @@ +#ifndef NBETA_MODEL_H_ +#define NBETA_MODEL_H_ +#include +#include +#include +namespace opt_utilities +{ + template + class nbeta1d + :public model ,std::string> + { + private: + model >* do_clone()const + { + return new nbeta1d(*this); + } + public: + nbeta1d() + { + this->push_param_info(param_info >("S0",1)); + this->push_param_info(param_info >("rc",10)); + this->push_param_info(param_info >("beta",2./3.)); + this->push_param_info(param_info >("bkg",0)); + } + + + T do_eval(const T& x,const std::vector& param) + { + T S0=get_element(param,0); + T r_c=get_element(param,1); + T beta=get_element(param,2); + T bkg=get_element(param,3); + + return bkg+S0*pow(1+(x*x)/(r_c*r_c),-3./2.*beta); + } + + private: + std::string do_to_string()const + { + return "density beta model\n" + "n=n0*(1+(r/rc)^2)^(-1.5*beta)\n"; + } + }; +}; + + + +#endif +//EOF -- cgit v1.2.2