source: src/molecule_geometry.cpp@ d74077

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since d74077 was d74077, checked in by Frederik Heber <heber@…>, 15 years ago

Member variable Vector and element of class atom are now private.

  • Property mode set to 100644
File size: 18.3 KB
Line 
1/*
2 * molecule_geometry.cpp
3 *
4 * Created on: Oct 5, 2009
5 * Author: heber
6 */
7
8#ifdef HAVE_CONFIG_H
9#include <config.h>
10#endif
11
12#include "Helpers/MemDebug.hpp"
13
14#include "atom.hpp"
15#include "bond.hpp"
16#include "config.hpp"
17#include "element.hpp"
18#include "helpers.hpp"
19#include "leastsquaremin.hpp"
20#include "verbose.hpp"
21#include "log.hpp"
22#include "molecule.hpp"
23#include "World.hpp"
24#include "Plane.hpp"
25#include "Matrix.hpp"
26#include "Box.hpp"
27#include <boost/foreach.hpp>
28
29#include <gsl/gsl_eigen.h>
30#include <gsl/gsl_multimin.h>
31
32
33/************************************* Functions for class molecule *********************************/
34
35
36/** Centers the molecule in the box whose lengths are defined by vector \a *BoxLengths.
37 * \param *out output stream for debugging
38 */
39bool molecule::CenterInBox()
40{
41 bool status = true;
42 const Vector *Center = DetermineCenterOfAll();
43 const Vector *CenterBox = DetermineCenterOfBox();
44 Box &domain = World::getInstance().getDomain();
45
46 // go through all atoms
47 BOOST_FOREACH(atom* iter, atoms){
48 *iter -= *Center;
49 *iter -= *CenterBox;
50 iter->setPosition(domain.WrapPeriodically(iter->getPosition()));
51 }
52
53 delete(Center);
54 delete(CenterBox);
55 return status;
56};
57
58
59/** Bounds the molecule in the box whose lengths are defined by vector \a *BoxLengths.
60 * \param *out output stream for debugging
61 */
62bool molecule::BoundInBox()
63{
64 bool status = true;
65 Box &domain = World::getInstance().getDomain();
66
67 // go through all atoms
68 BOOST_FOREACH(atom* iter, atoms){
69 iter->setPosition(domain.WrapPeriodically(iter->getPosition()));
70 }
71
72 return status;
73};
74
75/** Centers the edge of the atoms at (0,0,0).
76 * \param *out output stream for debugging
77 * \param *max coordinates of other edge, specifying box dimensions.
78 */
79void molecule::CenterEdge(Vector *max)
80{
81 Vector *min = new Vector;
82
83// Log() << Verbose(3) << "Begin of CenterEdge." << endl;
84 molecule::const_iterator iter = begin(); // start at first in list
85 if (iter != end()) { //list not empty?
86 for (int i=NDIM;i--;) {
87 max->at(i) = (*iter)->at(i);
88 min->at(i) = (*iter)->at(i);
89 }
90 for (; iter != end(); ++iter) {// continue with second if present
91 //(*iter)->Output(1,1,out);
92 for (int i=NDIM;i--;) {
93 max->at(i) = (max->at(i) < (*iter)->at(i)) ? (*iter)->at(i) : max->at(i);
94 min->at(i) = (min->at(i) > (*iter)->at(i)) ? (*iter)->at(i) : min->at(i);
95 }
96 }
97// Log() << Verbose(4) << "Maximum is ";
98// max->Output(out);
99// Log() << Verbose(0) << ", Minimum is ";
100// min->Output(out);
101// Log() << Verbose(0) << endl;
102 min->Scale(-1.);
103 (*max) += (*min);
104 Translate(min);
105 Center.Zero();
106 }
107 delete(min);
108// Log() << Verbose(3) << "End of CenterEdge." << endl;
109};
110
111/** Centers the center of the atoms at (0,0,0).
112 * \param *out output stream for debugging
113 * \param *center return vector for translation vector
114 */
115void molecule::CenterOrigin()
116{
117 int Num = 0;
118 molecule::const_iterator iter = begin(); // start at first in list
119
120 Center.Zero();
121
122 if (iter != end()) { //list not empty?
123 for (; iter != end(); ++iter) { // continue with second if present
124 Num++;
125 Center += (*iter)->getPosition();
126 }
127 Center.Scale(-1./(double)Num); // divide through total number (and sign for direction)
128 Translate(&Center);
129 Center.Zero();
130 }
131};
132
133/** Returns vector pointing to center of all atoms.
134 * \return pointer to center of all vector
135 */
136Vector * molecule::DetermineCenterOfAll() const
137{
138 molecule::const_iterator iter = begin(); // start at first in list
139 Vector *a = new Vector();
140 double Num = 0;
141
142 a->Zero();
143
144 if (iter != end()) { //list not empty?
145 for (; iter != end(); ++iter) { // continue with second if present
146 Num++;
147 (*a) += (*iter)->getPosition();
148 }
149 a->Scale(1./(double)Num); // divide through total mass (and sign for direction)
150 }
151 return a;
152};
153
154/** Returns vector pointing to center of the domain.
155 * \return pointer to center of the domain
156 */
157Vector * molecule::DetermineCenterOfBox() const
158{
159 Vector *a = new Vector(0.5,0.5,0.5);
160 const Matrix &M = World::getInstance().getDomain().getM();
161 (*a) *= M;
162 return a;
163};
164
165/** Returns vector pointing to center of gravity.
166 * \param *out output stream for debugging
167 * \return pointer to center of gravity vector
168 */
169Vector * molecule::DetermineCenterOfGravity()
170{
171 molecule::const_iterator iter = begin(); // start at first in list
172 Vector *a = new Vector();
173 Vector tmp;
174 double Num = 0;
175
176 a->Zero();
177
178 if (iter != end()) { //list not empty?
179 for (; iter != end(); ++iter) { // continue with second if present
180 Num += (*iter)->getType()->mass;
181 tmp = (*iter)->getType()->mass * (*iter)->getPosition();
182 (*a) += tmp;
183 }
184 a->Scale(1./Num); // divide through total mass
185 }
186// Log() << Verbose(1) << "Resulting center of gravity: ";
187// a->Output(out);
188// Log() << Verbose(0) << endl;
189 return a;
190};
191
192/** Centers the center of gravity of the atoms at (0,0,0).
193 * \param *out output stream for debugging
194 * \param *center return vector for translation vector
195 */
196void molecule::CenterPeriodic()
197{
198 DeterminePeriodicCenter(Center);
199};
200
201
202/** Centers the center of gravity of the atoms at (0,0,0).
203 * \param *out output stream for debugging
204 * \param *center return vector for translation vector
205 */
206void molecule::CenterAtVector(Vector *newcenter)
207{
208 Center = *newcenter;
209};
210
211
212/** Scales all atoms by \a *factor.
213 * \param *factor pointer to scaling factor
214 *
215 * TODO: Is this realy what is meant, i.e.
216 * x=(x[0]*factor[0],x[1]*factor[1],x[2]*factor[2]) (current impl)
217 * or rather
218 * x=(**factor) * x (as suggested by comment)
219 */
220void molecule::Scale(const double ** const factor)
221{
222 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) {
223 for (int j=0;j<MDSteps;j++)
224 (*iter)->Trajectory.R.at(j).ScaleAll(*factor);
225 (*iter)->ScaleAll(*factor);
226 }
227};
228
229/** Translate all atoms by given vector.
230 * \param trans[] translation vector.
231 */
232void molecule::Translate(const Vector *trans)
233{
234 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) {
235 for (int j=0;j<MDSteps;j++)
236 (*iter)->Trajectory.R.at(j) += (*trans);
237 *(*iter) += (*trans);
238 }
239};
240
241/** Translate the molecule periodically in the box.
242 * \param trans[] translation vector.
243 * TODO treatment of trajetories missing
244 */
245void molecule::TranslatePeriodically(const Vector *trans)
246{
247 Box &domain = World::getInstance().getDomain();
248
249 // go through all atoms
250 BOOST_FOREACH(atom* iter, atoms){
251 *iter += *trans;
252 iter->setPosition(domain.WrapPeriodically(iter->getPosition()));
253 }
254
255};
256
257
258/** Mirrors all atoms against a given plane.
259 * \param n[] normal vector of mirror plane.
260 */
261void molecule::Mirror(const Vector *n)
262{
263 OBSERVE;
264 Plane p(*n,0);
265 BOOST_FOREACH(atom* iter, atoms ){
266 iter->setPosition(p.mirrorVector(iter->getPosition()));
267 }
268};
269
270/** Determines center of molecule (yet not considering atom masses).
271 * \param center reference to return vector
272 */
273void molecule::DeterminePeriodicCenter(Vector &center)
274{
275 const Matrix &matrix = World::getInstance().getDomain().getM();
276 const Matrix &inversematrix = World::getInstance().getDomain().getM();
277 double tmp;
278 bool flag;
279 Vector Testvector, Translationvector;
280
281 do {
282 Center.Zero();
283 flag = true;
284 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) {
285#ifdef ADDHYDROGEN
286 if ((*iter)->getType()->Z != 1) {
287#endif
288 Testvector = inversematrix * (*iter)->getPosition();
289 Translationvector.Zero();
290 for (BondList::const_iterator Runner = (*iter)->ListOfBonds.begin(); Runner != (*iter)->ListOfBonds.end(); (++Runner)) {
291 if ((*iter)->nr < (*Runner)->GetOtherAtom((*iter))->nr) // otherwise we shift one to, the other fro and gain nothing
292 for (int j=0;j<NDIM;j++) {
293 tmp = (*iter)->at(j) - (*Runner)->GetOtherAtom(*iter)->at(j);
294 if ((fabs(tmp)) > BondDistance) {
295 flag = false;
296 DoLog(0) && (Log() << Verbose(0) << "Hit: atom " << (*iter)->getName() << " in bond " << *(*Runner) << " has to be shifted due to " << tmp << "." << endl);
297 if (tmp > 0)
298 Translationvector[j] -= 1.;
299 else
300 Translationvector[j] += 1.;
301 }
302 }
303 }
304 Testvector += Translationvector;
305 Testvector *= matrix;
306 Center += Testvector;
307 Log() << Verbose(1) << "vector is: " << Testvector << endl;
308#ifdef ADDHYDROGEN
309 // now also change all hydrogens
310 for (BondList::const_iterator Runner = (*iter)->ListOfBonds.begin(); Runner != (*iter)->ListOfBonds.end(); (++Runner)) {
311 if ((*Runner)->GetOtherAtom((*iter))->getType()->Z == 1) {
312 Testvector = inversematrix * (*Runner)->GetOtherAtom((*iter))->getPosition();
313 Testvector += Translationvector;
314 Testvector *= matrix;
315 Center += Testvector;
316 Log() << Verbose(1) << "Hydrogen vector is: " << Testvector << endl;
317 }
318 }
319 }
320#endif
321 }
322 } while (!flag);
323
324 Center.Scale(1./static_cast<double>(getAtomCount()));
325};
326
327/** Transforms/Rotates the given molecule into its principal axis system.
328 * \param *out output stream for debugging
329 * \param DoRotate whether to rotate (true) or only to determine the PAS.
330 * TODO treatment of trajetories missing
331 */
332void molecule::PrincipalAxisSystem(bool DoRotate)
333{
334 double InertiaTensor[NDIM*NDIM];
335 Vector *CenterOfGravity = DetermineCenterOfGravity();
336
337 CenterPeriodic();
338
339 // reset inertia tensor
340 for(int i=0;i<NDIM*NDIM;i++)
341 InertiaTensor[i] = 0.;
342
343 // sum up inertia tensor
344 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) {
345 Vector x = (*iter)->getPosition();
346 //x.SubtractVector(CenterOfGravity);
347 InertiaTensor[0] += (*iter)->getType()->mass*(x[1]*x[1] + x[2]*x[2]);
348 InertiaTensor[1] += (*iter)->getType()->mass*(-x[0]*x[1]);
349 InertiaTensor[2] += (*iter)->getType()->mass*(-x[0]*x[2]);
350 InertiaTensor[3] += (*iter)->getType()->mass*(-x[1]*x[0]);
351 InertiaTensor[4] += (*iter)->getType()->mass*(x[0]*x[0] + x[2]*x[2]);
352 InertiaTensor[5] += (*iter)->getType()->mass*(-x[1]*x[2]);
353 InertiaTensor[6] += (*iter)->getType()->mass*(-x[2]*x[0]);
354 InertiaTensor[7] += (*iter)->getType()->mass*(-x[2]*x[1]);
355 InertiaTensor[8] += (*iter)->getType()->mass*(x[0]*x[0] + x[1]*x[1]);
356 }
357 // print InertiaTensor for debugging
358 DoLog(0) && (Log() << Verbose(0) << "The inertia tensor is:" << endl);
359 for(int i=0;i<NDIM;i++) {
360 for(int j=0;j<NDIM;j++)
361 DoLog(0) && (Log() << Verbose(0) << InertiaTensor[i*NDIM+j] << " ");
362 DoLog(0) && (Log() << Verbose(0) << endl);
363 }
364 DoLog(0) && (Log() << Verbose(0) << endl);
365
366 // diagonalize to determine principal axis system
367 gsl_eigen_symmv_workspace *T = gsl_eigen_symmv_alloc(NDIM);
368 gsl_matrix_view m = gsl_matrix_view_array(InertiaTensor, NDIM, NDIM);
369 gsl_vector *eval = gsl_vector_alloc(NDIM);
370 gsl_matrix *evec = gsl_matrix_alloc(NDIM, NDIM);
371 gsl_eigen_symmv(&m.matrix, eval, evec, T);
372 gsl_eigen_symmv_free(T);
373 gsl_eigen_symmv_sort(eval, evec, GSL_EIGEN_SORT_ABS_DESC);
374
375 for(int i=0;i<NDIM;i++) {
376 DoLog(1) && (Log() << Verbose(1) << "eigenvalue = " << gsl_vector_get(eval, i));
377 DoLog(0) && (Log() << Verbose(0) << ", eigenvector = (" << evec->data[i * evec->tda + 0] << "," << evec->data[i * evec->tda + 1] << "," << evec->data[i * evec->tda + 2] << ")" << endl);
378 }
379
380 // check whether we rotate or not
381 if (DoRotate) {
382 DoLog(1) && (Log() << Verbose(1) << "Transforming molecule into PAS ... ");
383 // the eigenvectors specify the transformation matrix
384 Matrix M = Matrix(evec->data);
385 Vector tempVector;
386 BOOST_FOREACH(atom* iter, atoms){
387 tempVector = iter->getPosition();
388 tempVector *= M;
389 iter->setPosition(tempVector);
390 }
391 DoLog(0) && (Log() << Verbose(0) << "done." << endl);
392
393 // summing anew for debugging (resulting matrix has to be diagonal!)
394 // reset inertia tensor
395 for(int i=0;i<NDIM*NDIM;i++)
396 InertiaTensor[i] = 0.;
397
398 // sum up inertia tensor
399 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) {
400 Vector x = (*iter)->getPosition();
401 InertiaTensor[0] += (*iter)->getType()->mass*(x[1]*x[1] + x[2]*x[2]);
402 InertiaTensor[1] += (*iter)->getType()->mass*(-x[0]*x[1]);
403 InertiaTensor[2] += (*iter)->getType()->mass*(-x[0]*x[2]);
404 InertiaTensor[3] += (*iter)->getType()->mass*(-x[1]*x[0]);
405 InertiaTensor[4] += (*iter)->getType()->mass*(x[0]*x[0] + x[2]*x[2]);
406 InertiaTensor[5] += (*iter)->getType()->mass*(-x[1]*x[2]);
407 InertiaTensor[6] += (*iter)->getType()->mass*(-x[2]*x[0]);
408 InertiaTensor[7] += (*iter)->getType()->mass*(-x[2]*x[1]);
409 InertiaTensor[8] += (*iter)->getType()->mass*(x[0]*x[0] + x[1]*x[1]);
410 }
411 // print InertiaTensor for debugging
412 DoLog(0) && (Log() << Verbose(0) << "The inertia tensor is:" << endl);
413 for(int i=0;i<NDIM;i++) {
414 for(int j=0;j<NDIM;j++)
415 DoLog(0) && (Log() << Verbose(0) << InertiaTensor[i*NDIM+j] << " ");
416 DoLog(0) && (Log() << Verbose(0) << endl);
417 }
418 DoLog(0) && (Log() << Verbose(0) << endl);
419 }
420
421 // free everything
422 delete(CenterOfGravity);
423 gsl_vector_free(eval);
424 gsl_matrix_free(evec);
425};
426
427
428/** Align all atoms in such a manner that given vector \a *n is along z axis.
429 * \param n[] alignment vector.
430 */
431void molecule::Align(Vector *n)
432{
433 double alpha, tmp;
434 Vector z_axis;
435 z_axis[0] = 0.;
436 z_axis[1] = 0.;
437 z_axis[2] = 1.;
438
439 // rotate on z-x plane
440 DoLog(0) && (Log() << Verbose(0) << "Begin of Aligning all atoms." << endl);
441 alpha = atan(-n->at(0)/n->at(2));
442 DoLog(1) && (Log() << Verbose(1) << "Z-X-angle: " << alpha << " ... ");
443 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) {
444 tmp = (*iter)->at(0);
445 (*iter)->set(0, cos(alpha) * tmp + sin(alpha) * (*iter)->at(2));
446 (*iter)->set(2, -sin(alpha) * tmp + cos(alpha) * (*iter)->at(2));
447 for (int j=0;j<MDSteps;j++) {
448 tmp = (*iter)->Trajectory.R.at(j)[0];
449 (*iter)->Trajectory.R.at(j)[0] = cos(alpha) * tmp + sin(alpha) * (*iter)->Trajectory.R.at(j)[2];
450 (*iter)->Trajectory.R.at(j)[2] = -sin(alpha) * tmp + cos(alpha) * (*iter)->Trajectory.R.at(j)[2];
451 }
452 }
453 // rotate n vector
454 tmp = n->at(0);
455 n->at(0) = cos(alpha) * tmp + sin(alpha) * n->at(2);
456 n->at(2) = -sin(alpha) * tmp + cos(alpha) * n->at(2);
457 DoLog(1) && (Log() << Verbose(1) << "alignment vector after first rotation: " << n << endl);
458
459 // rotate on z-y plane
460 alpha = atan(-n->at(1)/n->at(2));
461 DoLog(1) && (Log() << Verbose(1) << "Z-Y-angle: " << alpha << " ... ");
462 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) {
463 tmp = (*iter)->at(1);
464 (*iter)->set(1, cos(alpha) * tmp + sin(alpha) * (*iter)->at(2));
465 (*iter)->set(2, -sin(alpha) * tmp + cos(alpha) * (*iter)->at(2));
466 for (int j=0;j<MDSteps;j++) {
467 tmp = (*iter)->Trajectory.R.at(j)[1];
468 (*iter)->Trajectory.R.at(j)[1] = cos(alpha) * tmp + sin(alpha) * (*iter)->Trajectory.R.at(j)[2];
469 (*iter)->Trajectory.R.at(j)[2] = -sin(alpha) * tmp + cos(alpha) * (*iter)->Trajectory.R.at(j)[2];
470 }
471 }
472 // rotate n vector (for consistency check)
473 tmp = n->at(1);
474 n->at(1) = cos(alpha) * tmp + sin(alpha) * n->at(2);
475 n->at(2) = -sin(alpha) * tmp + cos(alpha) * n->at(2);
476
477
478 DoLog(1) && (Log() << Verbose(1) << "alignment vector after second rotation: " << n << endl);
479 DoLog(0) && (Log() << Verbose(0) << "End of Aligning all atoms." << endl);
480};
481
482
483/** Calculates sum over least square distance to line hidden in \a *x.
484 * \param *x offset and direction vector
485 * \param *params pointer to lsq_params structure
486 * \return \f$ sum_i^N | y_i - (a + t_i b)|^2\f$
487 */
488double LeastSquareDistance (const gsl_vector * x, void * params)
489{
490 double res = 0, t;
491 Vector a,b,c,d;
492 struct lsq_params *par = (struct lsq_params *)params;
493
494 // initialize vectors
495 a[0] = gsl_vector_get(x,0);
496 a[1] = gsl_vector_get(x,1);
497 a[2] = gsl_vector_get(x,2);
498 b[0] = gsl_vector_get(x,3);
499 b[1] = gsl_vector_get(x,4);
500 b[2] = gsl_vector_get(x,5);
501 // go through all atoms
502 for (molecule::const_iterator iter = par->mol->begin(); iter != par->mol->end(); ++iter) {
503 if ((*iter)->getType() == ((struct lsq_params *)params)->type) { // for specific type
504 c = (*iter)->getPosition() - a;
505 t = c.ScalarProduct(b); // get direction parameter
506 d = t*b; // and create vector
507 c -= d; // ... yielding distance vector
508 res += d.ScalarProduct(d); // add squared distance
509 }
510 }
511 return res;
512};
513
514/** By minimizing the least square distance gains alignment vector.
515 * \bug this is not yet working properly it seems
516 */
517void molecule::GetAlignvector(struct lsq_params * par) const
518{
519 int np = 6;
520
521 const gsl_multimin_fminimizer_type *T =
522 gsl_multimin_fminimizer_nmsimplex;
523 gsl_multimin_fminimizer *s = NULL;
524 gsl_vector *ss;
525 gsl_multimin_function minex_func;
526
527 size_t iter = 0, i;
528 int status;
529 double size;
530
531 /* Initial vertex size vector */
532 ss = gsl_vector_alloc (np);
533
534 /* Set all step sizes to 1 */
535 gsl_vector_set_all (ss, 1.0);
536
537 /* Starting point */
538 par->x = gsl_vector_alloc (np);
539 par->mol = this;
540
541 gsl_vector_set (par->x, 0, 0.0); // offset
542 gsl_vector_set (par->x, 1, 0.0);
543 gsl_vector_set (par->x, 2, 0.0);
544 gsl_vector_set (par->x, 3, 0.0); // direction
545 gsl_vector_set (par->x, 4, 0.0);
546 gsl_vector_set (par->x, 5, 1.0);
547
548 /* Initialize method and iterate */
549 minex_func.f = &LeastSquareDistance;
550 minex_func.n = np;
551 minex_func.params = (void *)par;
552
553 s = gsl_multimin_fminimizer_alloc (T, np);
554 gsl_multimin_fminimizer_set (s, &minex_func, par->x, ss);
555
556 do
557 {
558 iter++;
559 status = gsl_multimin_fminimizer_iterate(s);
560
561 if (status)
562 break;
563
564 size = gsl_multimin_fminimizer_size (s);
565 status = gsl_multimin_test_size (size, 1e-2);
566
567 if (status == GSL_SUCCESS)
568 {
569 printf ("converged to minimum at\n");
570 }
571
572 printf ("%5d ", (int)iter);
573 for (i = 0; i < (size_t)np; i++)
574 {
575 printf ("%10.3e ", gsl_vector_get (s->x, i));
576 }
577 printf ("f() = %7.3f size = %.3f\n", s->fval, size);
578 }
579 while (status == GSL_CONTINUE && iter < 100);
580
581 for (i=0;i<(size_t)np;i++)
582 gsl_vector_set(par->x, i, gsl_vector_get(s->x, i));
583 //gsl_vector_free(par->x);
584 gsl_vector_free(ss);
585 gsl_multimin_fminimizer_free (s);
586};
Note: See TracBrowser for help on using the repository browser.