Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix numerical threshold for ReduceVEV and corrected output #162

Merged
merged 24 commits into from
Sep 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
4785a1e
Implemented Dilogarithm/Spencer's funtion and unit tests for it.
vollous May 7, 2024
8b40f91
Espinosa-Konstandin - Example A
vollous May 8, 2024
7f0d060
Espinosa-Konstandin - Example B
vollous May 8, 2024
26cab49
Correct typo
vollous May 8, 2024
5e9d06d
Fix wrong sign in numerical derivative of analytical solution when d2…
vollous May 13, 2024
3e0eb4c
Fix recursive step that assumed l0 = 0.
vollous May 13, 2024
4cd0e49
Protect against infinite recursion in "BounceActionInt::ExactSolution…
vollous May 13, 2024
1173018
Espinosa-Konstandin - Example D
vollous May 13, 2024
fabf242
Include "gsl_sf_expint" in tests
vollous May 13, 2024
673d57c
Espinosa-Konstandin - Example C
vollous May 13, 2024
7c623a9
Espinosa-Konstandin - Example E
vollous May 13, 2024
14cea54
Espinosa-Konstandin - Example 2D
vollous May 14, 2024
6824d08
adjust output column names
May 14, 2024
008f0fa
correct output text Pf -> I(T)
May 14, 2024
01bf86a
add numerical threshold for ReduceVEV
May 14, 2024
d34db6d
Merge remote-tracking branch 'origin/Espinosa-Konstandin-testing' int…
May 14, 2024
932a413
add functional include
May 14, 2024
7448283
Merge branch 'master' into fix_num_thres_ReduceVEV
Jun 27, 2024
6420b07
write false vacuum fraction to logginglevel
Jun 27, 2024
fd242e3
Merge branch 'master' into fix_num_thres_ReduceVEV
Jul 31, 2024
b682f77
Version bump
Jul 31, 2024
8633e28
Apply suggestions from code review
phbasler Jul 31, 2024
f809768
restore file
Aug 1, 2024
d783ae8
Merge branch 'master' into fix_num_thres_ReduceVEV
phbasler Aug 2, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
cmake_minimum_required(VERSION 3.23)
project(
BSMPT
VERSION 3.0.6
VERSION 3.0.7
LANGUAGES C CXX
DESCRIPTION
"BSMPT - Beyond the Standard Model Phase Transitions : A C++ package for the computation of the EWPT in BSM models"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ SPDX-FileCopyrightText: 2021 Philipp Basler, Margarete Mühlleitner and Jonas M
SPDX-License-Identifier: GPL-3.0-or-later
-->

Program: BSMPT version 3.0.6
Program: BSMPT version 3.0.7

Released by: Philipp Basler, Lisa Biermann, Margarete Mühlleitner, Jonas Müller, Rui Santos and João Viana

Expand Down
4 changes: 2 additions & 2 deletions src/bounce_solution/bounce_solution.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -744,7 +744,7 @@ double BounceSolution::CalcTempAtFalseVacFraction(const double &false_vac_frac)
}

Logger::Write(LoggingLevel::BounceDetailed,
"T ( Pf = " + std::to_string(int_at_false_vac_frac) +
"T ( Pf = " + std::to_string(std::exp(-int_at_false_vac_frac)) +
" ) is in interval [ " + std::to_string(T_down) + ", " +
std::to_string(T_up) + " ]");

Expand All @@ -769,7 +769,7 @@ double BounceSolution::CalcTempAtFalseVacFraction(const double &false_vac_frac)

Logger::Write(LoggingLevel::BounceDetailed,
"Pf ( T = " + std::to_string(T_middle) +
" ) = " + std::to_string(IatT));
" ) = " + std::to_string(std::exp(-IatT)));

if (IatT < int_at_false_vac_frac)
{
Expand Down
2 changes: 1 addition & 1 deletion src/minimum_tracer/minimum_tracer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -711,7 +711,7 @@ void MinimumTracer::ReduceVEV(std::vector<double> &vev)
// Feed buffer
for (size_t i = 0; i < vev.size(); i++)
BinaryNumber.append(std::to_string(vev[i] * GroupElement(i, i) >=
0)); // Heaviside function
1e-5)); // Heaviside function

// Converto to decimal and compare
if (std::strtol(BinaryNumber.c_str(), &ptr, 2) > MaximumMeasure)
Expand Down