Boundaries.cc 18.5 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485
/* -*- Base: 10 ; Mode: C++ -*- */
/*------------------------------------------------------------------------
				     **	
  				FOST project
				     **
--------------------------------------------------------------------------
--------------------------------------------------------------------------
   				FILE LOG
		$Revision: 1.3 $    $Date: 2012-06-15 13:04:42 $
--------------------------------------------------------------------------
CREATION
	V.SAC

SUMMARY

DESCRIPTION

	The main function performs the following actions :
	<ul>
	<li>
	</ul>

------------------------------------------------------------------------*/

//=============================================================================
// 
// History of code
//
// creation 
//
// modification 
//=============================================================================

/**

*/
//=============================================================================
// Include section
//=============================================================================

// Standard libraries include files
//-----------------------------------------------------------------------------
#include <iostream>

// Include oriented definitions 
//-----------------------------------------------------------------------------

// Module Kernel include files
//-----------------------------------------------------------------------------

#include "DicError.hh"
#include "AMDA_exception.hh"
#include "ServicesServer.hh"
#include "PluginManager.hh"
#include "CurveFunctionWriter.hh"
#include "Boundaries.hh"

#include <math.h>

using namespace AMDA::Parameters;
using namespace plot;

// Other modules include files
//-----------------------------------------------------------------------------

// void venus_bowshock(double precision, CurveFunctionWriter::AttributeList& pAttributeList, CurveFunctionWriter::CurvePointList& curvePointList)
// {
// 	// param1 = 145.0 degrees
// 	// param2 = 1.35 Rv
// 	// param3 = 1.18
// 	// param4 = 0.55 Rv
// 	bowshock(precision, pAttributeList, curvePointList); 
// }
// 
// void mars_bowshock(double precision, CurveFunctionWriter::AttributeList& pAttributeList, CurveFunctionWriter::CurvePointList& curvePointList)
// {
// 	// param1 = 135.0 degrees
// 	// param2 = 2.04 Rm
// 	// param3 = 1.02
// 	// param4 = 0.55 Rm
// 	bowshock(precision, pAttributeList, curvePointList); 
// }
/**
 * @details This procedure return the curve definition of general bowshock
 *                r = L/(1+epsilon*cos(theta))
 */
void bowshock1(double precision, CurveFunctionWriter::AttributeList& pAttributeList, CurveFunctionWriter::CurvePointList& curvePointList)
{
	CurveFunctionWriter::AttributeList::iterator lparam1It = pAttributeList.find("param1");
	if ( lparam1It == pAttributeList.end()) 
	{
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_INFORMATION_REQUEST_ERR) << AMDA::ex_msg(std::string("bowshock not found param1 attribute")));
	}
		
	CurveFunctionWriter::AttributeList::iterator lparam2It = pAttributeList.find("param2");
	if ( lparam2It == pAttributeList.end()) 
	{
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_INFORMATION_REQUEST_ERR) << AMDA::ex_msg(std::string("bowshock not found param2 attribute")));
	}
	
	CurveFunctionWriter::AttributeList::iterator lparam3It = pAttributeList.find("param3");
	if ( lparam3It == pAttributeList.end()) 
	{
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_INFORMATION_REQUEST_ERR) << AMDA::ex_msg(std::string("bowshock not found param3 attribute")));
	}
		
	
	for (int i = 0; i < precision; ++i)
	{
		double theta = (lparam1It->second * M_PI / 180.) * (double)(((double)i) / precision);
		double rr = lparam2It->second / (1.0 + lparam3It->second * cos(theta));
		CurveFunctionWriter::CurvePoint point;
		point.x = rr * cos(theta);
		point.y = rr * sin(theta);
		point.z = point.y;
		//std::cout << "BRE - " << point.x << " - " << point.y << " - " << point.z << std::endl;
		curvePointList.push_back(point);
	}
}

void bowshock(double precision, CurveFunctionWriter::AttributeList& pAttributeList, CurveFunctionWriter::CurvePointList& curvePointList)
{
	CurveFunctionWriter::AttributeList::iterator lparam1It = pAttributeList.find("param1");
	if ( lparam1It == pAttributeList.end()) 
	{
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_INFORMATION_REQUEST_ERR) << AMDA::ex_msg(std::string("bowshock not found param1 attribute")));
	}
		
	CurveFunctionWriter::AttributeList::iterator lparam2It = pAttributeList.find("param2");
	if ( lparam2It == pAttributeList.end()) 
	{
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_INFORMATION_REQUEST_ERR) << AMDA::ex_msg(std::string("bowshock not found param2 attribute")));
	}
	
	CurveFunctionWriter::AttributeList::iterator lparam3It = pAttributeList.find("param3");
	if ( lparam3It == pAttributeList.end()) 
	{
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_INFORMATION_REQUEST_ERR) << AMDA::ex_msg(std::string("bowshock not found param3 attribute")));
	}
	
	CurveFunctionWriter::AttributeList::iterator lparam4It = pAttributeList.find("param4");
	if ( lparam4It == pAttributeList.end()) 
	{
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_INFORMATION_REQUEST_ERR) << AMDA::ex_msg(std::string("bowshock not found param4 attribute")));
	}
	
	for (int i = 0; i < precision; ++i)
	{
		double theta = (lparam1It->second * M_PI / 180.) * (double)(((double)i) / precision);
		double rr = lparam2It->second / (1.0 + lparam3It->second * cos(theta));
		CurveFunctionWriter::CurvePoint point;
		point.x = lparam4It->second + rr * cos(theta);
		point.y = rr * sin(theta);
		point.z = point.y;
		//std::cout << "BRE - " << point.x << " - " << point.y << " - " << point.z << std::endl;
		curvePointList.push_back(point);
	}
}
/**
 * @details This procedure return the curve definition of earch  bowshock (Farris; pressure dependent )
 *                r = L/(1+epsilon*cos(theta))
 */
void bowshock_farris(double precision, CurveFunctionWriter::AttributeList& pAttributeList, CurveFunctionWriter::CurvePointList& curvePointList)
{
	CurveFunctionWriter::AttributeList::iterator lparam1It = pAttributeList.find("param1");
	if ( lparam1It == pAttributeList.end()) 
	{
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_INFORMATION_REQUEST_ERR) << AMDA::ex_msg(std::string("bowshock not found param1 attribute")));
	}
		
	CurveFunctionWriter::AttributeList::iterator lparam2It = pAttributeList.find("ramPressure");
	if ( lparam2It == pAttributeList.end()) 
	{
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_INFORMATION_REQUEST_ERR) << AMDA::ex_msg(std::string("bowshock not found param2 attribute")));
	}	
	 
       double epsilon = 0.81, L0 = 24.8, ramP = 1.8;
	
	double L, power = -0.166 ;
	L =  L0 * pow(lparam2It->second/ramP, power);
	
	for (int i = 0; i < precision; ++i)
	{
		double theta = (lparam1It->second * M_PI / 180.) * (double)(((double)i) / precision);
		double rr = L / (1.0 + epsilon * cos(theta));
		CurveFunctionWriter::CurvePoint point;
		point.x = rr * cos(theta);
		point.y = rr * sin(theta);
		point.z = point.y;		
		curvePointList.push_back(point);
	}
}
/**
 * @details This procedure return the curve definition of saturn  bowshock (Went; 2011; pressure dependent )
 *                 r = (1 + epsilon)*c1*Pdyn^(-1/c2) /(1 + epsilon*cos(theta))
 */
void saturn_bowshock_went(double precision, CurveFunctionWriter::AttributeList& pAttributeList, CurveFunctionWriter::CurvePointList& curvePointList)
{
	CurveFunctionWriter::AttributeList::iterator lparam1It = pAttributeList.find("param1");
	if ( lparam1It == pAttributeList.end()) 
	{
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_INFORMATION_REQUEST_ERR) << AMDA::ex_msg(std::string("bowshock not found param1 attribute")));
	}
	
	CurveFunctionWriter::AttributeList::iterator lparam2It = pAttributeList.find("ramPressure");
	if ( lparam2It == pAttributeList.end()) 
	{
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_INFORMATION_REQUEST_ERR) << AMDA::ex_msg(std::string("bowshock not found ramPressure attribute")));
	}	
	
	CurveFunctionWriter::AttributeList::iterator lparam3It = pAttributeList.find("epsilon");
	if ( lparam3It == pAttributeList.end()) 
	{
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_INFORMATION_REQUEST_ERR) << AMDA::ex_msg(std::string("bowshock not found epsilon attribute")));
	}
	
	CurveFunctionWriter::AttributeList::iterator lparam4It = pAttributeList.find("c1");
	if ( lparam4It == pAttributeList.end()) 
	{
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_INFORMATION_REQUEST_ERR) << AMDA::ex_msg(std::string("bowshock not found c1 attribute")));
	}
	
	CurveFunctionWriter::AttributeList::iterator lparam5It = pAttributeList.find("c2");
	if ( lparam5It == pAttributeList.end()) 
	{
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_INFORMATION_REQUEST_ERR) << AMDA::ex_msg(std::string("bowshock not found c2 attribute")));
	}

	double power, L;
 
	power = -1.0 / lparam5It->second;
	L = (1.0 + lparam3It->second) * lparam4It->second * pow(lparam2It->second,power);
	 
	for (int i = 0; i < precision; ++i)
	{
		double theta = (lparam1It->second * M_PI / 180.) * (double)(((double)i) / precision);
		double rr = L / (1.0 + lparam3It->second * cos(theta));
		CurveFunctionWriter::CurvePoint point;
		point.x = rr * cos(theta);
		point.y = rr * sin(theta);
		point.z = point.y;		
		curvePointList.push_back(point);
	}
}

/**
 * @details This procedure return the curve definition of venus magnetopause.
 */
void venus_magnetopause(double precision, CurveFunctionWriter::AttributeList& pAttributeList, CurveFunctionWriter::CurvePointList& curvePointList)
{
	//param1 = 1.07
	CurveFunctionWriter::AttributeList::iterator lparam1It = pAttributeList.find("param1");
	if ( lparam1It == pAttributeList.end())
	{
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_INFORMATION_REQUEST_ERR) << AMDA::ex_msg(std::string("venus_magnetopause not found param1 attribute")));
	}

	//param2 = -4
	CurveFunctionWriter::AttributeList::iterator lparam2It = pAttributeList.find("param2");
	if ( lparam2It == pAttributeList.end())
	{
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_INFORMATION_REQUEST_ERR) << AMDA::ex_msg(std::string("venus_magnetopause not found param2 attribute")));
	}

	//param3 = 1.5
	CurveFunctionWriter::AttributeList::iterator lparam3It = pAttributeList.find("param3");
	if ( lparam3It == pAttributeList.end())
	{
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_INFORMATION_REQUEST_ERR) << AMDA::ex_msg(std::string("venus_magnetopause not found param3 attribute")));
	}

	//param4 = 3
	CurveFunctionWriter::AttributeList::iterator lparam4It = pAttributeList.find("param4");
	if ( lparam4It == pAttributeList.end())
	{
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_INFORMATION_REQUEST_ERR) << AMDA::ex_msg(std::string("venus_magnetopause not found param4 attribute")));
	}

	double b = lparam2It->second / (lparam3It->second - lparam1It->second);
	double a = -b * lparam1It->second;

	//double rr;
	for (int i = 0; i < precision; ++i)
	{
		CurveFunctionWriter::CurvePoint point;

		point.y = lparam4It->second * (double)(((double)i) / precision);

		if (point.y < lparam1It->second)
			point.x = sqrt(lparam1It->second * lparam1It->second - point.y * point.y);
		else
			point.x = a + b * point.y;

		point.z = point.y;

		//std::cout << "BRE - " << point.x << " - " << point.y << " - " << point.z << std::endl;
		curvePointList.push_back(point);
	}
}

/**
 * @details This procedure return the curve definition of mars magnetopause.
 */
void mars_magnetopause(double precision, CurveFunctionWriter::AttributeList& pAttributeList, CurveFunctionWriter::CurvePointList& curvePointList)
{
	//param1 = 1.2
	CurveFunctionWriter::AttributeList::iterator lparam1It = pAttributeList.find("param1");
	if ( lparam1It == pAttributeList.end())
	{
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_INFORMATION_REQUEST_ERR) << AMDA::ex_msg(std::string("mars_magnetopause not found param1 attribute")));
	}

	//param2 = -0.0992 
	CurveFunctionWriter::AttributeList::iterator lparam2It = pAttributeList.find("param2");
	if ( lparam2It == pAttributeList.end())
	{
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_INFORMATION_REQUEST_ERR) << AMDA::ex_msg(std::string("mars_magnetopause not found param2 attribute")));
	}

	//param3 = -0.2967
	CurveFunctionWriter::AttributeList::iterator lparam3It = pAttributeList.find("param3");
	if ( lparam3It == pAttributeList.end())
	{
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_INFORMATION_REQUEST_ERR) << AMDA::ex_msg(std::string("mars_magnetopause not found param3 attribute")));
	}

	//param4 = 3
	CurveFunctionWriter::AttributeList::iterator lparam4It = pAttributeList.find("param4");
	if ( lparam4It == pAttributeList.end())
	{
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_INFORMATION_REQUEST_ERR) << AMDA::ex_msg(std::string("mars_magnetopause not found param4 attribute")));
	}

	//double rr;
	for (int i = 0; i < precision; ++i)
	{
		CurveFunctionWriter::CurvePoint point;

		point.y = lparam4It->second * (double)(((double)i) / precision);
		 
		point.x = lparam2It->second * point.y * point.y * point.y * point.y + lparam3It->second * point.y * point.y + lparam1It->second;

		point.z = point.y;

		//std::cout << "BRE - " << point.x << " - " << point.y << " - " << point.z << std::endl;
		curvePointList.push_back(point);
	}
}
/**
 * @details This procedure return the curve definition of Shue magnetopause.
 */
void magnetopause_shue(double precision, CurveFunctionWriter::AttributeList& pAttributeList, CurveFunctionWriter::CurvePointList& curvePointList)
{
	 
	CurveFunctionWriter::AttributeList::iterator lparam1It = pAttributeList.find("param1");
	if ( lparam1It == pAttributeList.end())
	{
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_INFORMATION_REQUEST_ERR) << AMDA::ex_msg(std::string("magnetopause not found param1 attribute")));
	}

	 
	CurveFunctionWriter::AttributeList::iterator lparam2It = pAttributeList.find("ramPressure");
	if ( lparam2It == pAttributeList.end())
	{
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_INFORMATION_REQUEST_ERR) << AMDA::ex_msg(std::string("magnetopause not found param2 attribute")));
	}
	 
	CurveFunctionWriter::AttributeList::iterator lparam3It = pAttributeList.find("Bz");
	if ( lparam3It == pAttributeList.end())
	{
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_INFORMATION_REQUEST_ERR) << AMDA::ex_msg(std::string("mars_magnetopause not found param3 attribute")));
	}
	
// 	   alpha=(.58-.007*Bz)*(1.+0.024*alog(RamPress))
//        r0=(10.22+1.29*tanh(0.184*(Bz+8.14)))*RamPress^(-1./6.6)
//        rr=r0*(2./(1.+COS(theta)))^alpha
       
	double alpha, r0, power = -0.152;
	
	alpha = (0.58 - 0.007 * lparam3It->second) * (1.0 + 0.024 * log(lparam2It->second));
	r0 = (10.22 + 1.29 * tanh(0.184 * (lparam3It->second + 8.14))) * pow(lparam2It->second,power);
		
	for (int i = 0; i < precision; ++i)
	{
		CurveFunctionWriter::CurvePoint point;
		
		double theta = (lparam1It->second * M_PI / 180.) * (double)(((double)i) / precision);
		double rr = r0 * pow((2.0 / (1.0 + cos(theta))),alpha);
		
		point.y = rr * sin(theta);
		 
		point.x = rr * cos(theta);

		point.z = point.y;

		//std::cout << "BRE - " << point.x << " - " << point.y << " - " << point.z << std::endl;
		curvePointList.push_back(point);
	}
}
/**
 * @details This procedure return the curve definition of Shue magnetopause for Mercure (Winslow; JGR;May 2013).
 */
void mercury_magnetopause(double precision, CurveFunctionWriter::AttributeList& pAttributeList, CurveFunctionWriter::CurvePointList& curvePointList)
{
	 
	CurveFunctionWriter::AttributeList::iterator lparam1It = pAttributeList.find("param1");
	if ( lparam1It == pAttributeList.end())
	{
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_INFORMATION_REQUEST_ERR) << AMDA::ex_msg(std::string("magnetopause not found param1 attribute")));
	}

	 
	CurveFunctionWriter::AttributeList::iterator lparam2It = pAttributeList.find("rnose");
	if ( lparam2It == pAttributeList.end())
	{
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_INFORMATION_REQUEST_ERR) << AMDA::ex_msg(std::string("magnetopause not found param2 attribute")));
	}
	 
	CurveFunctionWriter::AttributeList::iterator lparam3It = pAttributeList.find("alpha");
	if ( lparam3It == pAttributeList.end())
	{
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_INFORMATION_REQUEST_ERR) << AMDA::ex_msg(std::string("mars_magnetopause not found param3 attribute")));
	}
	
//        rr=rnose*(2./(1.+COS(theta)))^alpha
       
	for (int i = 0; i < precision; ++i)
	{
		CurveFunctionWriter::CurvePoint point;
		
		double theta = (lparam1It->second * M_PI / 180.) * (double)(((double)i) / precision);
		double rr = lparam2It->second * pow((2.0 / (1.0 + cos(theta))),lparam3It->second);
		
		point.y = rr * sin(theta);
		 
		point.x = rr * cos(theta);

		point.z = point.y;		
		curvePointList.push_back(point);
	}
}
/**
 * @details This procedure return the curve definition of Shue magnetopause for Saturn (Arridge; JGR; 2006).
 */
void saturn_magnetopause(double precision, CurveFunctionWriter::AttributeList& pAttributeList, CurveFunctionWriter::CurvePointList& curvePointList)
{
	 
	CurveFunctionWriter::AttributeList::iterator lparam1It = pAttributeList.find("param1");
	if ( lparam1It == pAttributeList.end())
	{
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_INFORMATION_REQUEST_ERR) << AMDA::ex_msg(std::string("magnetopause not found param1 attribute")));
	}
	 
	CurveFunctionWriter::AttributeList::iterator lparam2It = pAttributeList.find("ramPressure");
	if ( lparam2It == pAttributeList.end())
	{
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_INFORMATION_REQUEST_ERR) << AMDA::ex_msg(std::string("magnetopause not found param2 attribute")));
	}
	 	 
	
//        rr=rnose*(2./(1.+COS(theta)))^alpha
//        rnose = a1*RamPress^(-a2)
//        alpha = a3 + a4*RamPress
       
	double a1 = 9.7, a2 = -0.24, a3 = 0.77, a4 = -1.5;
	double rnose, alpha;
	
	rnose = a1 * pow(lparam2It->second,a2);
	alpha = a3 + a4 * lparam2It->second;
	
	for (int i = 0; i < precision; ++i)
	{
		CurveFunctionWriter::CurvePoint point;
		
		double theta = (lparam1It->second * M_PI / 180.) * (double)(((double)i) / precision);
		double rr = rnose * pow((2.0 / (1.0 + cos(theta))),alpha);
		
		point.y = rr * sin(theta);
		 
		point.x = rr * cos(theta);

		point.z = point.y;		
		curvePointList.push_back(point);
	}
}