summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/netlist/plib/pmath.h
blob: acacd0a5ab1c92ca26908e6849ef6ab96c2ddb65 (plain) (blame)
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
// license:GPL-2.0+
// copyright-holders:Couriersud
/*
 * pmath.h
 *
 */

#ifndef PMATH_H_
#define PMATH_H_

#include "pconfig.h"

#include <algorithm>
#include <type_traits>
#include <cmath>

#if (PUSE_FLOAT128)
#include <quadmath.h>
#endif

namespace plib
{

	/*! Holds constants used repeatedly.
	 *
	 *  @tparam T floating point type
	 *
	 *  Using the structure members we can avoid magic numbers in the code.
	 *  In addition, this is a typesafe approach.
	 */
	template <typename T>
	struct constants
	{
		static inline constexpr T zero()   noexcept { return static_cast<T>(0); }
		static inline constexpr T half()   noexcept { return static_cast<T>(0.5); }
		static inline constexpr T one()    noexcept { return static_cast<T>(1); }
		static inline constexpr T two()    noexcept { return static_cast<T>(2); }
		static inline constexpr T three()  noexcept { return static_cast<T>(3); }
		static inline constexpr T four()   noexcept { return static_cast<T>(4); }
		static inline constexpr T sqrt2()  noexcept { return static_cast<T>(1.414213562373095048801688724209L); }
		static inline constexpr T pi()     noexcept { return static_cast<T>(3.14159265358979323846264338327950L); }

		/*!
		 * \brief Electric constant of vacuum
		 */
		static inline constexpr T eps_0() noexcept { return static_cast<T>(8.854187817e-12); }
		/*!
		 * \brief Relative permittivity of Silicon dioxide
		 */
		static inline constexpr T eps_SiO2() noexcept { return static_cast<T>(3.9); }
		/*!
		 * \brief Relative permittivity of Silicon
		 */
		static inline constexpr T eps_Si() noexcept { return static_cast<T>(11.7); }
		/*!
		 * \brief Boltzmann constant
		 */
		static inline constexpr T k_b() noexcept { return static_cast<T>(1.38064852e-23); }
		/*!
		 * \brief room temperature (gives VT = 0.02585 at T=300)
		 */
		static inline constexpr T T0() noexcept { return static_cast<T>(300); }
		/*!
		 * \brief Elementary charge
		 */
		static inline constexpr T Q_e() noexcept { return static_cast<T>(1.6021765314e-19); }
		/*!
		 * \brief Intrinsic carrier concentration in 1/m^3 of Silicon
		 */
		static inline constexpr T NiSi() noexcept { return static_cast<T>(1.45e16); }
		/*!
		 * \brief clearly identify magic numbers in code
		 *
		 * Magic numbers should be avoided. The magic member at least clearly
		 * identifies them and makes it easier to convert them to named constants
		 * later.
		 */
		template <typename V>
		static inline constexpr const T magic(V &&v) noexcept { return static_cast<T>(v); }
	};

	/*! typesafe reciprocal function
	 *
	 * @tparam T type of the argument
	 * @param  v argument
	 * @return reciprocal of argument
	 */
	template <typename T>
	static inline constexpr typename std::enable_if<std::is_floating_point<T>::value, T>::type
	reciprocal(T v) noexcept
	{
		return constants<T>::one() / v;
	}

	/*! abs function
	 *
	 * @tparam T type of the argument
	 * @param  v argument
	 * @return absolute value of argument
	 */
	template <typename T>
	static inline constexpr typename std::enable_if<std::is_floating_point<T>::value, T>::type
	abs(T v) noexcept
	{
		return std::abs(v);
	}

	/*! sqrt function
	 *
	 * @tparam T type of the argument
	 * @param  v argument
	 * @return absolute value of argument
	 */
	template <typename T>
	static inline constexpr typename std::enable_if<std::is_floating_point<T>::value, T>::type
	sqrt(T v) noexcept
	{
		return std::sqrt(v);
	}

	/*! hypot function
	 *
	 * @tparam T type of the arguments
	 * @param  v1 first argument
	 * @param  v2 second argument
	 * @return sqrt(v1*v1+v2*v2)
	 */
	template <typename T>
	static inline constexpr typename std::enable_if<std::is_floating_point<T>::value, T>::type
	hypot(T v1, T v2) noexcept
	{
		return std::hypot(v1, v2);
	}

	/*! exp function
	 *
	 * @tparam T type of the argument
	 * @param  v argument
	 * @return exp(v)
	 */
	template <typename T>
	static inline constexpr typename std::enable_if<std::is_floating_point<T>::value, T>::type
	exp(T v) noexcept
	{
		return std::exp(v);
	}

	/*! log function
	 *
	 * @tparam T type of the argument
	 * @param  v argument
	 * @return log(v)
	 */
	template <typename T>
	static inline constexpr typename std::enable_if<std::is_floating_point<T>::value, T>::type
	log(T v) noexcept
	{
		return std::log(v);
	}

	/*! tanh function
	 *
	 * @tparam T type of the argument
	 * @param  v argument
	 * @return tanh(v)
	 */
	template <typename T>
	static inline constexpr typename std::enable_if<std::is_floating_point<T>::value, T>::type
	tanh(T v) noexcept
	{
		return std::tanh(v);
	}

	/*! floor function
	 *
	 * @tparam T type of the argument
	 * @param  v argument
	 * @return floor(v)
	 */
	template <typename T>
	static inline constexpr typename std::enable_if<std::is_floating_point<T>::value, T>::type
	floor(T v) noexcept
	{
		return std::floor(v);
	}

	/*! log1p function
	 *
	 * @tparam T type of the argument
	 * @param  v argument
	 * @return log(1 + v)
	 */
	template <typename T>
	static inline constexpr typename std::enable_if<std::is_floating_point<T>::value, T>::type
	log1p(T v) noexcept
	{
		return std::log1p(v);
	}

	/*! sin function
	 *
	 * @tparam T type of the argument
	 * @param  v argument
	 * @return sin(v)
	 */
	template <typename T>
	static inline constexpr typename std::enable_if<std::is_floating_point<T>::value, T>::type
	sin(T v) noexcept
	{
		return std::sin(v);
	}

	/*! cos function
	 *
	 * @tparam T type of the argument
	 * @param  v argument
	 * @return cos(v)
	 */
	template <typename T>
	static inline constexpr typename std::enable_if<std::is_floating_point<T>::value, T>::type
	cos(T v) noexcept
	{
		return std::cos(v);
	}

	/*! trunc function
	 *
	 * @tparam T type of the argument
	 * @param  v argument
	 * @return trunc(v)
	 */
	template <typename T>
	static inline constexpr typename std::enable_if<std::is_floating_point<T>::value, T>::type
	trunc(T v) noexcept
	{
		return std::trunc(v);
	}

	/*! pow function
	 *
	 * @tparam T1 type of the first argument
	 * @tparam T2 type of the second argument
	 * @param  v argument
	 * @param  p power
	 * @return v^p
	 *
	 * FIXME: limited implementation
	 */
	template <typename T1, typename T2>
	static inline T1
	pow(T1 v, T2 p) noexcept
	{
		return std::pow(v, p);
	}

#if (PUSE_FLOAT128)
	static inline constexpr __float128 reciprocal(__float128 v) noexcept
	{
		return constants<__float128>::one() / v;
	}

	static inline __float128 abs(__float128 v) noexcept
	{
		return fabsq(v);
	}

	static inline __float128 sqrt(__float128 v) noexcept
	{
		return sqrtq(v);
	}

	static inline __float128 hypot(__float128 v1, __float128 v2) noexcept
	{
		return hypotq(v1, v2);
	}

	static inline __float128 exp(__float128 v) noexcept
	{
		return expq(v);
	}

	static inline __float128 log(__float128 v) noexcept
	{
		return logq(v);
	}

	static inline __float128 tanh(__float128 v) noexcept
	{
		return tanhq(v);
	}

	static inline __float128 floor(__float128 v) noexcept
	{
		return floorq(v);
	}

	static inline __float128 log1p(__float128 v) noexcept
	{
		return log1pq(v);
	}

	static inline __float128 sin(__float128 v) noexcept
	{
		return sinq(v);
	}

	static inline __float128 cos(__float128 v) noexcept
	{
		return cosq(v);
	}

	static inline __float128 trunc(__float128 v) noexcept
	{
		return truncq(v);
	}

	template <typename T>
	static inline __float128 pow(__float128 v, T p) noexcept
	{
		return powq(v, static_cast<__float128>(p));
	}

	static inline __float128 pow(__float128 v, int p) noexcept
	{
		if (p==2)
			return v*v;
		else
			return powq(v, static_cast<__float128>(p));
	}

#endif

	static_assert(noexcept(constants<double>::one()) == true, "Not evaluated as constexpr");

} // namespace plib

#endif /* PMATH_H_ */