|
38 | 38 | #include "Element.hpp" |
39 | 39 |
|
40 | 40 | double NumericalIntegrator::computeS(const Vacuum<double> * gf, const Element & e) const { |
| 41 | + return 0.0; |
41 | 42 | } |
42 | 43 | double NumericalIntegrator::computeS(const Vacuum<AD_directional> * gf, const Element & e) const { |
| 44 | + return 0.0; |
43 | 45 | } |
44 | 46 | double NumericalIntegrator::computeS(const Vacuum<AD_gradient> * gf, const Element & e) const { |
| 47 | + return 0.0; |
45 | 48 | } |
46 | 49 | double NumericalIntegrator::computeS(const Vacuum<AD_hessian> * gf, const Element & e) const { |
| 50 | + return 0.0; |
47 | 51 | } |
48 | 52 |
|
49 | 53 | double NumericalIntegrator::computeD(const Vacuum<double> * gf, const Element & e) const { |
| 54 | + return 0.0; |
50 | 55 | } |
51 | 56 | double NumericalIntegrator::computeD(const Vacuum<AD_directional> * gf, const Element & e) const { |
| 57 | + return 0.0; |
52 | 58 | } |
53 | 59 | double NumericalIntegrator::computeD(const Vacuum<AD_gradient> * gf, const Element & e) const { |
| 60 | + return 0.0; |
54 | 61 | } |
55 | 62 | double NumericalIntegrator::computeD(const Vacuum<AD_hessian> * gf, const Element & e) const { |
| 63 | + return 0.0; |
56 | 64 | } |
57 | 65 |
|
58 | 66 | double NumericalIntegrator::computeS(const UniformDielectric<double> * gf, const Element & e) const { |
| 67 | + return 0.0; |
59 | 68 | } |
60 | 69 | double NumericalIntegrator::computeS(const UniformDielectric<AD_directional> * gf, const Element & e) const { |
| 70 | + return 0.0; |
61 | 71 | } |
62 | 72 | double NumericalIntegrator::computeS(const UniformDielectric<AD_gradient> * gf, const Element & e) const { |
| 73 | + return 0.0; |
63 | 74 | } |
64 | 75 | double NumericalIntegrator::computeS(const UniformDielectric<AD_hessian> * gf, const Element & e) const { |
| 76 | + return 0.0; |
65 | 77 | } |
66 | 78 |
|
67 | 79 | double NumericalIntegrator::computeD(const UniformDielectric<double> * gf, const Element & e) const { |
| 80 | + return 0.0; |
68 | 81 | } |
69 | 82 | double NumericalIntegrator::computeD(const UniformDielectric<AD_directional> * gf, const Element & e) const { |
| 83 | + return 0.0; |
70 | 84 | } |
71 | 85 | double NumericalIntegrator::computeD(const UniformDielectric<AD_gradient> * gf, const Element & e) const { |
| 86 | + return 0.0; |
72 | 87 | } |
73 | 88 | double NumericalIntegrator::computeD(const UniformDielectric<AD_hessian> * gf, const Element & e) const { |
| 89 | + return 0.0; |
74 | 90 | } |
75 | 91 |
|
76 | 92 | double NumericalIntegrator::computeS(const IonicLiquid<double> * gf, const Element & e) const { |
| 93 | + return 0.0; |
77 | 94 | } |
78 | 95 | double NumericalIntegrator::computeS(const IonicLiquid<AD_directional> * gf, const Element & e) const { |
| 96 | + return 0.0; |
79 | 97 | } |
80 | 98 | double NumericalIntegrator::computeS(const IonicLiquid<AD_gradient> * gf, const Element & e) const { |
| 99 | + return 0.0; |
81 | 100 | } |
82 | 101 | double NumericalIntegrator::computeS(const IonicLiquid<AD_hessian> * gf, const Element & e) const { |
| 102 | + return 0.0; |
83 | 103 | } |
84 | 104 |
|
85 | 105 | double NumericalIntegrator::computeD(const IonicLiquid<double> * gf, const Element & e) const { |
| 106 | + return 0.0; |
86 | 107 | } |
87 | 108 | double NumericalIntegrator::computeD(const IonicLiquid<AD_directional> * gf, const Element & e) const { |
| 109 | + return 0.0; |
88 | 110 | } |
89 | 111 | double NumericalIntegrator::computeD(const IonicLiquid<AD_gradient> * gf, const Element & e) const { |
| 112 | + return 0.0; |
90 | 113 | } |
91 | 114 | double NumericalIntegrator::computeD(const IonicLiquid<AD_hessian> * gf, const Element & e) const { |
| 115 | + return 0.0; |
| 116 | +} |
| 117 | + |
| 118 | +double NumericalIntegrator::computeS(const AnisotropicLiquid<double> * gf, const Element & e) const { |
| 119 | + return 0.0; |
| 120 | +} |
| 121 | +double NumericalIntegrator::computeS(const AnisotropicLiquid<AD_directional> * gf, const Element & e) const { |
| 122 | + return 0.0; |
| 123 | +} |
| 124 | +double NumericalIntegrator::computeS(const AnisotropicLiquid<AD_gradient> * gf, const Element & e) const { |
| 125 | + return 0.0; |
| 126 | +} |
| 127 | +double NumericalIntegrator::computeS(const AnisotropicLiquid<AD_hessian> * gf, const Element & e) const { |
| 128 | + return 0.0; |
| 129 | +} |
| 130 | + |
| 131 | +double NumericalIntegrator::computeD(const AnisotropicLiquid<double> * gf, const Element & e) const { |
| 132 | + return 0.0; |
| 133 | +} |
| 134 | +double NumericalIntegrator::computeD(const AnisotropicLiquid<AD_directional> * gf, const Element & e) const { |
| 135 | + return 0.0; |
| 136 | +} |
| 137 | +double NumericalIntegrator::computeD(const AnisotropicLiquid<AD_gradient> * gf, const Element & e) const { |
| 138 | + return 0.0; |
| 139 | +} |
| 140 | +double NumericalIntegrator::computeD(const AnisotropicLiquid<AD_hessian> * gf, const Element & e) const { |
| 141 | + return 0.0; |
92 | 142 | } |
0 commit comments