File: isotope.cpp

package info (click to toggle)
kalzium 4%3A24.12.3-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 58,016 kB
  • sloc: xml: 27,624; cpp: 15,359; ml: 784; makefile: 68; ansic: 32; sh: 10
file content (525 lines) | stat: -rw-r--r-- 16,588 bytes parent folder | download | duplicates (2)
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
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
/*
    SPDX-FileCopyrightText: 2005 Carsten Niehaus <cniehaus@kde.org>

    SPDX-License-Identifier: GPL-2.0-or-later
*/

#include "isotope.h"


#include "kalzium_libscience_debug.h"

Isotope::Isotope() = default;

Isotope::~Isotope() = default;

void Isotope::addData(const ChemicalDataObject &o)
{
    if (o.type() == ChemicalDataObject::exactMass) {
        m_mass = o;
    } else if (o.type() == ChemicalDataObject::atomicNumber) {
        m_identifier = o;
    } else if (o.type() == ChemicalDataObject::symbol) {
        m_parentElementSymbol = o;
    } else if (o.type() == ChemicalDataObject::spin) {
        m_spin = o;
    } else if (o.type() == ChemicalDataObject::magneticMoment) {
        m_magmoment = o;
    } else if (o.type() == ChemicalDataObject::relativeAbundance) {
        m_abundance = o;
    } else if (o.type() == ChemicalDataObject::halfLife) {
        m_halflife = o;
    } else if (o.type() == ChemicalDataObject::betaminusfissionDecay) {
        m_betaminusfissiondecay = o;
    } else if (o.type() == ChemicalDataObject::betaminusfissionDecayLikeliness) {
        m_betaminusfissionlikeliness = o;
    } else if (o.type() == ChemicalDataObject::alphaDecay) {
        m_alphadecay = o;
    } else if (o.type() == ChemicalDataObject::alphaDecayLikeliness) {
        m_alphalikeliness = o;
    } else if (o.type() == ChemicalDataObject::protonDecay) {
        m_protondecay = o;
    } else if (o.type() == ChemicalDataObject::protonDecayLikeliness) {
        m_protonlikeliness = o;
    } else if (o.type() == ChemicalDataObject::twoprotonDecay) {
        m_twoprotondecay = o;
    } else if (o.type() == ChemicalDataObject::twoprotonDecayLikeliness) {
        m_twoprotonlikeliness = o;
    } else if (o.type() == ChemicalDataObject::neutronDecay) {
        m_neutrondecay = o;
    } else if (o.type() == ChemicalDataObject::neutronDecayLikeliness) {
        m_neutronlikeliness = o;
    } else if (o.type() == ChemicalDataObject::twoneutronDecay) {
        m_twoneutrondecay = o;
    } else if (o.type() == ChemicalDataObject::twoneutronDecayLikeliness) {
        m_twoneutronlikeliness = o;
    } else if (o.type() == ChemicalDataObject::ecDecay) {
        m_ecdecay = o;
    } else if (o.type() == ChemicalDataObject::ecDecayLikeliness) {
        m_eclikeliness = o;
    } else if (o.type() == ChemicalDataObject::twoecDecay) {
        m_twoecdecay = o;
    } else if (o.type() == ChemicalDataObject::twoecDecayLikeliness) {
        m_twoeclikeliness = o;
    } else if (o.type() == ChemicalDataObject::betaminusDecay) {
        m_betaminusdecay = o;
    } else if (o.type() == ChemicalDataObject::betaminusDecayLikeliness) {
        m_betaminuslikeliness = o;
    } else if (o.type() == ChemicalDataObject::twobetaminusDecay) {
        m_twobetaminusdecay = o;
    } else if (o.type() == ChemicalDataObject::twobetaminusDecayLikeliness) {
        m_twobetaminuslikeliness = o;
    } else if (o.type() == ChemicalDataObject::betaplusDecay) {
        m_betaplusdecay = o;
    } else if (o.type() == ChemicalDataObject::betaplusDecayLikeliness) {
        m_betapluslikeliness = o;
    } else if (o.type() == ChemicalDataObject::twobetaplusDecay) {
        m_twobetaplusdecay = o;
    } else if (o.type() == ChemicalDataObject::twobetaplusDecayLikeliness) {
        m_twobetapluslikeliness = o;
    } else if (o.type() == ChemicalDataObject::betaminusneutronDecay) {
        m_betaminusneutrondecay = o;
    } else if (o.type() == ChemicalDataObject::betaminusneutronDecayLikeliness) {
        m_betaminusneutronlikeliness = o;
    } else if (o.type() == ChemicalDataObject::betaminustwoneutronDecay) {
        m_betaminustwoneutrondecay = o;
    } else if (o.type() == ChemicalDataObject::betaminustwoneutronDecayLikeliness) {
        m_betaminustwoneutronlikeliness = o;
    } else if (o.type() == ChemicalDataObject::betaminusthreeneutronDecay) {
        m_betaminusthreeneutrondecay = o;
    } else if (o.type() == ChemicalDataObject::betaminusthreeneutronDecayLikeliness) {
        m_betaminusthreeneutronlikeliness = o;
    } else if (o.type() == ChemicalDataObject::betaminusfourneutronDecay) {
        m_betaminusfourneutrondecay = o;
    } else if (o.type() == ChemicalDataObject::betaminusfourneutronDecayLikeliness) {
        m_betaminusfourneutronlikeliness = o;
    } else if (o.type() == ChemicalDataObject::betaminusalphaneutronDecay) {
        m_betaminusalphaneutrondecay = o;
    } else if (o.type() == ChemicalDataObject::betaminusalphaneutronDecayLikeliness) {
        m_betaminusalphaneutronlikeliness = o;
    } else if (o.type() == ChemicalDataObject::betaminusalphaDecay) {
        m_betaminusalphadecay = o;
    } else if (o.type() == ChemicalDataObject::betaminusalphaDecayLikeliness) {
        m_betaminusalphalikeliness = o;
    } else if (o.type() == ChemicalDataObject::betaminustwoalphaDecay) {
        m_betaminustwoalphadecay = o;
    } else if (o.type() == ChemicalDataObject::betaminustwoalphaDecayLikeliness) {
        m_betaminustwoalphalikeliness = o;
    } else if (o.type() == ChemicalDataObject::betaminusthreealphaDecay) {
        m_betaminusthreealphadecay = o;
    } else if (o.type() == ChemicalDataObject::betaminusthreealphaDecayLikeliness) {
        m_betaminusthreealphalikeliness = o;
    } else if (o.type() == ChemicalDataObject::betaplusprotonDecay) {
        m_betaplusprotondecay = o;
    } else if (o.type() == ChemicalDataObject::betaplusprotonDecayLikeliness) {
        m_betaplusprotonlikeliness = o;
    } else if (o.type() == ChemicalDataObject::betaplustwoprotonDecay) {
        m_betaplustwoprotondecay = o;
    } else if (o.type() == ChemicalDataObject::betaplustwoprotonDecayLikeliness) {
        m_betaplustwoprotonlikeliness = o;
    } else if (o.type() == ChemicalDataObject::betaplusalphaDecay) {
        m_betaplusalphadecay = o;
    } else if (o.type() == ChemicalDataObject::betaplusalphaDecayLikeliness) {
        m_betaplusalphalikeliness = o;
    } else if (o.type() == ChemicalDataObject::betaplustwoalphaDecay) {
        m_betaplustwoalphadecay = o;
    } else if (o.type() == ChemicalDataObject::betaplustwoalphaDecayLikeliness) {
        m_betaplustwoalphalikeliness = o;
    } else if (o.type() == ChemicalDataObject::betaplusthreealphaDecay) {
        m_betaplusthreealphadecay = o;
    } else if (o.type() == ChemicalDataObject::betaplusthreealphaDecayLikeliness) {
        m_betaplusthreealphalikeliness = o;
    } else if (o.type() == ChemicalDataObject::alphabetaminusDecay) {
        m_alphabetaminusdecay = o;
    } else if (o.type() == ChemicalDataObject::alphabetaminusDecayLikeliness) {
        m_alphabetaminuslikeliness = o;
    } else if (o.type() == ChemicalDataObject::protonalphaDecay) {
        m_protonalphadecay = o;
    } else if (o.type() == ChemicalDataObject::protonalphaDecayLikeliness) {
        m_protonalphalikeliness = o;
    } else if (o.type() == ChemicalDataObject::ecprotonDecay) {
        m_ecprotondecay = o;
    } else if (o.type() == ChemicalDataObject::ecprotonDecayLikeliness) {
        m_ecprotonlikeliness = o;
    } else if (o.type() == ChemicalDataObject::ectwoprotonDecay) {
        m_ectwoprotondecay = o;
    } else if (o.type() == ChemicalDataObject::ectwoprotonDecayLikeliness) {
        m_ectwoprotonlikeliness = o;
    } else if (o.type() == ChemicalDataObject::ecthreeprotonDecay) {
        m_ecthreeprotondecay = o;
    } else if (o.type() == ChemicalDataObject::ecthreeprotonDecayLikeliness) {
        m_ecthreeprotonlikeliness = o;
    } else if (o.type() == ChemicalDataObject::ecalphaDecay) {
        m_ecalphadecay = o;
    } else if (o.type() == ChemicalDataObject::ecalphaDecayLikeliness) {
        m_ecalphalikeliness = o;
    } else if (o.type() == ChemicalDataObject::ecalphaprotonDecay) {
        m_ecalphaprotondecay = o;
    } else if (o.type() == ChemicalDataObject::ecalphaprotonDecayLikeliness) {
        m_ecalphaprotonlikeliness = o;
    } else if (o.type() == ChemicalDataObject::spontfissionDecay) {
        m_spontfissiondecay = o;
    } else if (o.type() == ChemicalDataObject::spontfissionDecayLikeliness) {
        m_spontfissionlikeliness = o;
    }
}

double Isotope::mass() const
{
    return m_mass.value().toDouble();
}

QString Isotope::errorMargin() const
{
    return m_mass.errorValue().toString();
}

int Isotope::parentElementNumber() const
{
    return m_identifier.value().toInt();
}

QString Isotope::spin() const
{
    return m_spin.value().toString();
}

QString Isotope::magmoment() const
{
    return m_magmoment.value().toString();
}

QString Isotope::abundance() const
{
    return m_abundance.value().toString();
}

double Isotope::halflife() const
{
    return m_halflife.value().toDouble();
}

QString Isotope::halflifeUnit() const
{
    return m_halflife.unitAsString();
}

double Isotope::betaminusfissiondecay() const
{
    return m_betaminusfissiondecay.value().toDouble();
}

double Isotope::betaminusfissionlikeliness() const
{
    return m_betaminusfissionlikeliness.value().toDouble();
}

double Isotope::alphadecay() const
{
    return m_alphadecay.value().toDouble();
}
double Isotope::alphalikeliness() const
{
    return m_alphalikeliness.value().toDouble();
}
double Isotope::protondecay() const
{
    return m_protondecay.value().toDouble();
}
double Isotope::protonlikeliness() const
{
    return m_protonlikeliness.value().toDouble();
}
double Isotope::twoprotondecay() const
{
    return m_twoprotondecay.value().toDouble();
}
double Isotope::twoprotonlikeliness() const
{
    return m_twoprotonlikeliness.value().toDouble();
}
double Isotope::neutrondecay() const
{
    return m_neutrondecay.value().toDouble();
}
double Isotope::neutronlikeliness() const
{
    return m_neutronlikeliness.value().toDouble();
}
double Isotope::twoneutrondecay() const
{
    return m_twoneutrondecay.value().toDouble();
}
double Isotope::twoneutronlikeliness() const
{
    return m_twoneutronlikeliness.value().toDouble();
}
double Isotope::ecdecay() const
{
    return m_ecdecay.value().toDouble();
}
double Isotope::eclikeliness() const
{
    return m_eclikeliness.value().toDouble();
}
double Isotope::twoecdecay() const
{
    return m_twoecdecay.value().toDouble();
}
double Isotope::twoeclikeliness() const
{
    return m_twoeclikeliness.value().toDouble();
}
double Isotope::betaminusdecay() const
{
    return m_betaminusdecay.value().toDouble();
}
double Isotope::betaminuslikeliness() const
{
    return m_betaminuslikeliness.value().toDouble();
}
double Isotope::twobetaminusdecay() const
{
    return m_twobetaminusdecay.value().toDouble();
}
double Isotope::twobetaminuslikeliness() const
{
    return m_twobetaminuslikeliness.value().toDouble();
}
double Isotope::betaplusdecay() const
{
    return m_betaplusdecay.value().toDouble();
}
double Isotope::betapluslikeliness() const
{
    return m_betapluslikeliness.value().toDouble();
}
double Isotope::twobetaplusdecay() const
{
    return m_twobetaplusdecay.value().toDouble();
}
double Isotope::twobetapluslikeliness() const
{
    return m_twobetapluslikeliness.value().toDouble();
}
double Isotope::betaminusneutrondecay() const
{
    return m_betaminusneutrondecay.value().toDouble();
}
double Isotope::betaminusneutronlikeliness() const
{
    return m_betaminusneutronlikeliness.value().toDouble();
}
double Isotope::betaminustwoneutrondecay() const
{
    return m_betaminustwoneutrondecay.value().toDouble();
}
double Isotope::betaminustwoneutronlikeliness() const
{
    return m_betaminustwoneutronlikeliness.value().toDouble();
}
double Isotope::betaminusthreeneutrondecay() const
{
    return m_betaminusthreeneutrondecay.value().toDouble();
}
double Isotope::betaminusthreeneutronlikeliness() const
{
    return m_betaminusthreeneutronlikeliness.value().toDouble();
}
double Isotope::betaminusfourneutrondecay() const
{
    return m_betaminusfourneutrondecay.value().toDouble();
}
double Isotope::betaminusfourneutronlikeliness() const
{
    return m_betaminusfourneutronlikeliness.value().toDouble();
}
double Isotope::betaminusalphaneutrondecay() const
{
    return m_betaminusalphaneutrondecay.value().toDouble();
}
double Isotope::betaminusalphaneutronlikeliness() const
{
    return m_betaminusalphaneutronlikeliness.value().toDouble();
}
double Isotope::betaminusalphadecay() const
{
    return m_betaminusalphadecay.value().toDouble();
}
double Isotope::betaminusalphalikeliness() const
{
    return m_betaminusalphalikeliness.value().toDouble();
}
double Isotope::betaminustwoalphadecay() const
{
    return m_betaminustwoalphadecay.value().toDouble();
}
double Isotope::betaminustwoalphalikeliness() const
{
    return m_betaminustwoalphalikeliness.value().toDouble();
}
double Isotope::betaminusthreealphadecay() const
{
    return m_betaminusthreealphadecay.value().toDouble();
}
double Isotope::betaminusthreealphalikeliness() const
{
    return m_betaminusthreealphalikeliness.value().toDouble();
}
double Isotope::betaplusprotondecay() const
{
    return m_betaplusprotondecay.value().toDouble();
}
double Isotope::betaplusprotonlikeliness() const
{
    return m_betaplusprotonlikeliness.value().toDouble();
}
double Isotope::betaplustwoprotondecay() const
{
    return m_betaplustwoprotondecay.value().toDouble();
}
double Isotope::betaplustwoprotonlikeliness() const
{
    return m_betaplustwoprotonlikeliness.value().toDouble();
}
double Isotope::betaplusalphadecay() const
{
    return m_betaplusalphadecay.value().toDouble();
}
double Isotope::betaplusalphalikeliness() const
{
    return m_betaplusalphalikeliness.value().toDouble();
}
double Isotope::betaplustwoalphadecay() const
{
    return m_betaplustwoalphadecay.value().toDouble();
}
double Isotope::betaplustwoalphalikeliness() const
{
    return m_betaplustwoalphalikeliness.value().toDouble();
}
double Isotope::betaplusthreealphadecay() const
{
    return m_betaplusthreealphadecay.value().toDouble();
}
double Isotope::betaplusthreealphalikeliness() const
{
    return m_betaplusthreealphalikeliness.value().toDouble();
}
double Isotope::alphabetaminusdecay() const
{
    return m_alphabetaminusdecay.value().toDouble();
}
double Isotope::alphabetaminuslikeliness() const
{
    return m_alphabetaminuslikeliness.value().toDouble();
}
double Isotope::protonalphadecay() const
{
    return m_protonalphadecay.value().toDouble();
}
double Isotope::protonalphalikeliness() const
{
    return m_protonalphalikeliness.value().toDouble();
}
double Isotope::ecprotondecay() const
{
    return m_ecprotondecay.value().toDouble();
}
double Isotope::ecprotonlikeliness() const
{
    return m_ecprotonlikeliness.value().toDouble();
}
double Isotope::ectwoprotondecay() const
{
    return m_ectwoprotondecay.value().toDouble();
}
double Isotope::ectwoprotonlikeliness() const
{
    return m_ectwoprotonlikeliness.value().toDouble();
}
double Isotope::ecthreeprotondecay() const
{
    return m_ecthreeprotondecay.value().toDouble();
}
double Isotope::ecthreeprotonlikeliness() const
{
    return m_ecthreeprotonlikeliness.value().toDouble();
}
double Isotope::ecalphadecay() const
{
    return m_ecalphadecay.value().toDouble();
}
double Isotope::ecalphalikeliness() const
{
    return m_ecalphalikeliness.value().toDouble();
}
double Isotope::ecalphaprotondecay() const
{
    return m_ecalphaprotondecay.value().toDouble();
}
double Isotope::ecalphaprotonlikeliness() const
{
    return m_ecalphaprotonlikeliness.value().toDouble();
}
double Isotope::spontfissiondecay() const
{
    return m_spontfissiondecay.value().toDouble();
}
double Isotope::spontfissionlikeliness() const
{
    return m_spontfissionlikeliness.value().toDouble();
}

QString Isotope::parentElementSymbol() const
{
    return m_parentElementSymbol.value().toString();
}

void Isotope::setNucleons(int number)
{
    m_numberOfNucleons = number;
}

int Isotope::nucleons() const
{
    return m_numberOfNucleons;
}

Isotope::Nucleons Isotope::nucleonsAfterDecay(Decay kind)
{
    Isotope::Nucleons n;
    int protons = m_identifier.value().toInt();
    int neutrons = m_numberOfNucleons - protons;
    n.protons = protons;
    n.neutrons = neutrons;

    switch (kind) {
    case ALPHA:
        n.protons -= 2;
        break;
    case ALPHABETAMINUS:
        n.protons -= 1;
        n.neutrons -= 1;
        break;
    case BETAMINUS:
        n.protons += 1;
        n.neutrons -= 1;
        break;
    case BETAPLUS:
        n.protons -= 1;
        break;
    case EC:
        n.protons -= 1;
        n.neutrons += 1;
        break;
    case NEUTRON:
        n.neutrons -= 1;
        break;
    case PROTON:
        n.protons -= 1;
        break;
    }

    return n;
}