numass-framework/numass-main/src/main/java/inr/numass/utils/TritiumUtils.java

144 lines
4.9 KiB
Java
Raw Normal View History

2015-12-18 16:20:47 +03:00
/*
* Copyright 2015 Alexander Nozik.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package inr.numass.utils;
import hep.dataforge.tables.DataPoint;
import hep.dataforge.tables.ListTable;
import hep.dataforge.tables.Table;
2015-12-18 16:20:47 +03:00
import inr.numass.data.SpectrumDataAdapter;
2016-07-07 20:40:43 +03:00
import inr.numass.storage.NMPoint;
2016-08-29 16:38:11 +03:00
import org.apache.commons.math3.analysis.UnivariateFunction;
2016-07-11 17:03:50 +03:00
import java.util.HashMap;
import java.util.Map;
2016-08-29 16:38:11 +03:00
import static java.lang.Math.*;
2015-12-18 16:20:47 +03:00
/**
* @author Darksnake
*/
public class TritiumUtils {
public static Table correctForDeadTime(ListTable data, double dtime) {
2016-04-25 15:32:23 +03:00
return correctForDeadTime(data, adapter(), dtime);
}
2015-12-18 16:20:47 +03:00
/**
* Коррекция на мертвое время в секундах
*
* @param data
* @param dtime
* @return
*/
public static Table correctForDeadTime(ListTable data, SpectrumDataAdapter adapter, double dtime) {
2016-04-25 15:32:23 +03:00
// SpectrumDataAdapter adapter = adapter();
ListTable.Builder res = new ListTable.Builder(data.getFormat());
2015-12-18 16:20:47 +03:00
for (DataPoint dp : data) {
2016-04-25 15:32:23 +03:00
double corrFactor = 1 / (1 - dtime * adapter.getCount(dp) / adapter.getTime(dp));
2016-07-11 17:03:50 +03:00
res.row(adapter.buildSpectrumDataPoint(adapter.getX(dp).doubleValue(), (long) (adapter.getCount(dp) * corrFactor), adapter.getTime(dp)));
2015-12-18 16:20:47 +03:00
}
return res.build();
2015-12-18 16:20:47 +03:00
}
/**
* Поправка масштаба высокого.
*
* @param data
* @param beta
* @return
*/
public static Table setHVScale(ListTable data, double beta) {
2016-03-21 15:29:31 +03:00
SpectrumDataAdapter reader = adapter();
ListTable.Builder res = new ListTable.Builder(data.getFormat());
2015-12-18 16:20:47 +03:00
for (DataPoint dp : data) {
double corrFactor = 1 + beta;
2016-07-11 17:03:50 +03:00
res.row(reader.buildSpectrumDataPoint(reader.getX(dp).doubleValue() * corrFactor, reader.getCount(dp), reader.getTime(dp)));
2015-12-18 16:20:47 +03:00
}
return res.build();
2015-12-18 16:20:47 +03:00
}
2016-04-25 15:32:23 +03:00
public static SpectrumDataAdapter adapter() {
2016-03-21 15:29:31 +03:00
return new SpectrumDataAdapter("Uset", "CR", "CRerr", "Time");
}
2016-04-25 15:32:23 +03:00
2015-12-18 16:20:47 +03:00
/**
* Integral beta spectrum background with given amplitude (total count rate
* from)
*
2016-08-29 16:38:11 +03:00
* @param amplitude
2015-12-18 16:20:47 +03:00
* @return
*/
public static UnivariateFunction tritiumBackgroundFunction(double amplitude) {
return (e) -> {
/*чистый бета-спектр*/
double e0 = 18575d;
double D = e0 - e;//E0-E
if (D <= 0) {
return 0;
}
return amplitude * factor(e) * D * D;
};
}
private static double factor(double E) {
double me = 0.511006E6;
double Etot = E + me;
double pe = sqrt(E * (E + 2d * me));
double ve = pe / Etot;
double yfactor = 2d * 2d * 1d / 137.039 * Math.PI;
double y = yfactor / ve;
double Fn = y / abs(1d - exp(-y));
double Fermi = Fn * (1.002037 - 0.001427 * ve);
double res = Fermi * pe * Etot;
return res * 1E-23;
2016-04-25 15:32:23 +03:00
}
2016-07-07 20:40:43 +03:00
public static double countRateWithDeadTime(NMPoint p, int from, int to, double deadTime) {
double wind = p.getCountInWindow(from, to) / p.getLength();
double res;
if (deadTime > 0) {
double total = p.getEventsCount();
2016-11-16 18:57:53 +03:00
// double time = p.getLength();
// res = wind / (1 - total * deadTime / time);
double timeRatio = deadTime / p.getLength();
res = wind / total * (1d - Math.sqrt(1d - 4d * total * timeRatio)) / 2d / timeRatio;
2016-07-07 20:40:43 +03:00
} else {
res = wind;
}
return res;
}
2016-11-16 18:57:53 +03:00
2016-07-07 20:40:43 +03:00
public static double countRateWithDeadTimeErr(NMPoint p, int from, int to, double deadTime) {
2016-11-16 18:57:53 +03:00
return Math.sqrt(countRateWithDeadTime(p, from, to, deadTime) / p.getLength());
2016-07-07 20:40:43 +03:00
}
2016-11-16 18:57:53 +03:00
2016-07-11 17:03:50 +03:00
/**
* Evaluate groovy expression using numass point as parameter
*
* @param point
* @param expression
* @return
*/
2016-11-16 18:57:53 +03:00
public static double evaluateExpression(NMPoint point, String expression) {
2016-07-11 17:03:50 +03:00
Map<String, Object> exprParams = new HashMap<>();
exprParams.put("T", point.getLength());
exprParams.put("U", point.getUread());
exprParams.put("point", point);
return ExpressionUtils.evaluate(expression, exprParams);
2016-11-16 18:57:53 +03:00
}
2015-12-18 16:20:47 +03:00
}