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/beta2d.hpp | 60 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 models/beta2d.hpp (limited to 'models/beta2d.hpp') diff --git a/models/beta2d.hpp b/models/beta2d.hpp new file mode 100644 index 0000000..abb6da1 --- /dev/null +++ b/models/beta2d.hpp @@ -0,0 +1,60 @@ +#ifndef BETA_MODEL2d_H_ +#define BETA_MODEL2d_H_ +#include +#include +#include +#include "vecn.hpp" + + +namespace opt_utilities +{ + + template + class beta2d + :public model,std::vector,std::string> + { + private: + model,std::vector >* do_clone()const + { + return new beta2d(*this); + } + public: + beta2d() + { + this->push_param_info(param_info >("S0",1)); + this->push_param_info(param_info >("rc1",100)); + this->push_param_info(param_info >("rc2",100)); + this->push_param_info(param_info >("rho",0)); + this->push_param_info(param_info >("x0",100)); + this->push_param_info(param_info >("y0",100)); + this->push_param_info(param_info >("beta",2./3.)); + this->push_param_info(param_info >("bkg",0)); + } + + + T do_eval(const vecn& xy,const std::vector& param) + { + T S0=get_element(param,0); + T rc1=get_element(param,1); + T rc2=get_element(param,2); + T rho=get_element(param,3); + T x0=get_element(param,4); + T y0=get_element(param,5); + T beta=get_element(param,6); + T bkg=get_element(param,7); + T x=xy[0]; + T y=xy[1]; + + T r=(x-x0)*(x-x0)/(rc1*rc1)+(y-y0)*(y-y0)/(rc2*rc2) + -2*rho*(x-x0)*(y-y0)/(rc1*rc2); + r=r<0?0:r; + + return bkg+S0*pow(1+r,-3*beta+static_cast(.5)); + } + }; +}; + + + +#endif +//EOF -- cgit v1.2.2