From a5e178cb949a2d229677c402dbd0327fee8efbf2 Mon Sep 17 00:00:00 2001 From: astrojhgu Date: Thu, 20 May 2010 16:21:07 +0000 Subject: git-svn-id: file:///home/svn/opt_utilities@115 ed2142bd-67ad-457f-ba7c-d818d4011675 --- vmodels/nbeta1d.hpp | 62 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 vmodels/nbeta1d.hpp (limited to 'vmodels') diff --git a/vmodels/nbeta1d.hpp b/vmodels/nbeta1d.hpp new file mode 100644 index 0000000..b98d179 --- /dev/null +++ b/vmodels/nbeta1d.hpp @@ -0,0 +1,62 @@ +#ifndef VNBETA_MODEL_H_ +#define VNBETA_MODEL_H_ +#define OPT_HEADER +#include +#include +#include + +namespace opt_utilities +{ + template + class nbeta1d + :public model,optvec,optvec,std::string> + { + typedef optvec Tv; + private: + nbeta1d* do_clone()const + { + return new nbeta1d(*this); + } + + const char* do_get_type_name()const + { + return "1d density beta model"; + } + public: + nbeta1d() + { + this->push_param_info(param_info("n0",1)); + this->push_param_info(param_info("rc",10)); + this->push_param_info(param_info("beta",2./3.)); + } + + public: + Tv do_eval(const Tv& x,const Tv& param) + { + Tv result(x.size()); + T n0=get_element(param,0); + T r_c=get_element(param,1); + T beta=get_element(param,2); + + //return x*get_element(param,0)+get_element(param,1); + for(size_t i=0;i!=x.size();++i) + { + + result[i]=n0*pow(1+(x[i]*x[i])/(r_c*r_c),-3./2.*beta); + + } + return result; + } + + private: + std::string do_get_information()const + { + return ""; + } + }; +} + + + +#endif +//EOF -- cgit v1.2.2