source: ThirdParty/mpqc_open/src/lib/math/isosurf/tricoef.cc@ 1513599

Action_Thermostats Add_AtomRandomPerturbation Add_RotateAroundBondAction Add_SelectAtomByNameAction Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_StructOpt_integration_tests AutomationFragmentation_failures Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_ChronosMutex Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion GeometryObjects Gui_displays_atomic_force_velocity IndependentFragmentGrids_IntegrationTest JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks RotateToPrincipalAxisSystem_UndoRedo StoppableMakroAction Subpackage_levmar Subpackage_vmg ThirdParty_MPQC_rebuilt_buildsystem TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps Ubuntu_1604_changes stable
Last change on this file since 1513599 was 860145, checked in by Frederik Heber <heber@…>, 8 years ago

Merge commit '0b990dfaa8c6007a996d030163a25f7f5fc8a7e7' as 'ThirdParty/mpqc_open'

  • Property mode set to 100644
File size: 3.7 KB
Line 
1//
2// tricoef.cc
3//
4// Copyright (C) 1996 Limit Point Systems, Inc.
5//
6// Author: Curtis Janssen <cljanss@limitpt.com>
7// Maintainer: LPS
8//
9// This file is part of the SC Toolkit.
10//
11// The SC Toolkit is free software; you can redistribute it and/or modify
12// it under the terms of the GNU Library General Public License as published by
13// the Free Software Foundation; either version 2, or (at your option)
14// any later version.
15//
16// The SC Toolkit is distributed in the hope that it will be useful,
17// but WITHOUT ANY WARRANTY; without even the implied warranty of
18// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19// GNU Library General Public License for more details.
20//
21// You should have received a copy of the GNU Library General Public License
22// along with the SC Toolkit; see the file COPYING.LIB. If not, write to
23// the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
24//
25// The U.S. Government is granted a limited license as per AL 91-7.
26//
27
28#ifdef __GNUC__
29#pragma implementation
30#endif
31
32#include <math/isosurf/triangle.h>
33#include <math/isosurf/tricoef.h>
34
35using namespace sc;
36
37/////////////////////////////////////////////////////////////////////////
38// Utility functions
39
40static inline void
41init_coef_deriv(double L, int order, double *Lcoef, double *Lcoefderiv)
42{
43 int i;
44 Lcoef[0] = 1.0;
45 Lcoefderiv[0] = 0.0;
46 double spacing = 1.0/order;
47 for (i=1; i<=order; i++) {
48 Lcoef[i] = Lcoef[i-1] * (L - (i-1)*spacing)/(i*spacing);
49 Lcoefderiv[i] = Lcoefderiv[i-1] * (L - (i-1)*spacing)/(i*spacing)
50 + Lcoef[i-1]/(i*spacing);
51 }
52}
53
54
55/////////////////////////////////////////////////////////////////////////
56// The TriInterpCoef Utility Class
57
58TriInterpCoef::TriInterpCoef(const TriInterpCoefKey& key)
59{
60 int i,j,k;
61
62 int order = key.order();
63 double L1 = key.L1();
64 double L2 = key.L2();
65 double L3 = key.L3();
66 int n = order_to_nvertex(order);
67 coef_ = new double[n];
68 rderiv_ = new double[n];
69 sderiv_ = new double[n];
70
71 double L1coef[Triangle::max_order+1];
72 double L2coef[Triangle::max_order+1];
73 double L3coef[Triangle::max_order+1];
74
75 double L1coefderiv[Triangle::max_order+1];
76 double L2coefderiv[Triangle::max_order+1];
77 double L3coefderiv[Triangle::max_order+1];
78
79 init_coef_deriv(L1, order, L1coef, L1coefderiv);
80 init_coef_deriv(L2, order, L2coef, L2coefderiv);
81 init_coef_deriv(L3, order, L3coef, L3coefderiv);
82
83 // the r derivatives
84 double L1coef_r[Triangle::max_order+1];
85 double L2coef_r[Triangle::max_order+1];
86 double L3coef_r[Triangle::max_order+1];
87
88 // the s derivatives
89 double L1coef_s[Triangle::max_order+1];
90 double L2coef_s[Triangle::max_order+1];
91 double L3coef_s[Triangle::max_order+1];
92
93 // convert into r and s derivatives
94 for (i=0; i<=order; i++) {
95 L1coef_r[i] = -L1coefderiv[i];
96 L1coef_s[i] = -L1coefderiv[i];
97 L2coef_r[i] = L2coefderiv[i];
98 L2coef_s[i] = 0.0;
99 L3coef_r[i] = 0.0;
100 L3coef_s[i] = L3coefderiv[i];
101 }
102
103 for (i=0; i<=order; i++) {
104 for (j=0; j <= order-i; j++) {
105 k = order - i - j;
106 coef(i,j,k) = L1coef[i]*L2coef[j]*L3coef[k];
107 sderiv(i,j,k) = L1coef_s[i]*L2coef[j]*L3coef[k]
108 +L1coef[i]*L2coef_s[j]*L3coef[k]
109 +L1coef[i]*L2coef[j]*L3coef_s[k];
110 rderiv(i,j,k) = L1coef_r[i]*L2coef[j]*L3coef[k]
111 +L1coef[i]*L2coef_r[j]*L3coef[k]
112 +L1coef[i]*L2coef[j]*L3coef_r[k];
113 }
114 }
115}
116
117TriInterpCoef::~TriInterpCoef()
118{
119 delete[] coef_;
120 delete[] rderiv_;
121 delete[] sderiv_;
122}
123
124/////////////////////////////////////////////////////////////////////////////
125
126// Local Variables:
127// mode: c++
128// c-file-style: "CLJ"
129// End:
Note: See TracBrowser for help on using the repository browser.