added int of std::vector and saving 1/2int E^2 dx

This commit is contained in:
Vasco C. B. Ferreira
2026-03-25 16:48:02 +01:00
parent bfd3ada0b8
commit 47a97f7a7c
3 changed files with 40 additions and 4 deletions
BIN
View File
Binary file not shown.
+23
View File
@@ -142,6 +142,29 @@ void interpolate( real *coeffs, const real *values)
coeffs[ i ] = tmp[ i % Parameters::SPLINE_NX ];
}
double integral_space_vector(const double *current_coeffs, double dx = Parameters::SPLINE_DX, size_t Nx = Parameters::SPLINE_NX)
{
double integral = 0.0;
double x = Parameters::X_DOMAIN_LEFT;
for (size_t i=0; i<Nx ; ++i) {
x += dx;
integral += eval<1>(x, current_coeffs)*dx;
}
return integral;
};
double integral_space_vector_squared(const double *current_coeffs, double dx = Parameters::SPLINE_DX, size_t Nx = Parameters::SPLINE_NX)
{
double integral = 0.0;
double x = Parameters::X_DOMAIN_LEFT;
for (size_t i=0; i<Nx ; ++i) {
x += dx;
double val = eval<1>(x, current_coeffs);
integral += val*val*dx;
}
return integral;
};
class Gradient {
public:
Gradient(double xmin, double xmax, unsigned int Nx)
+17 -4
View File
@@ -79,6 +79,9 @@ void NuFISolver::run()
std::unique_ptr<double[]> coeffs { new double[ Nt*stride_t ] {} };
std::unique_ptr<double,decltype(std::free)*> rho { reinterpret_cast<double*>(std::aligned_alloc(64,sizeof(double)*Nx)), std::free };
std::vector<double> int_E_squared;
int_E_squared.reserve(Nt);
if ( rho == nullptr ) throw std::bad_alloc {};
Gradient grad(x_min, x_max, Nx);
@@ -102,24 +105,34 @@ void NuFISolver::run()
poisson.set_rhs_function(std::make_unique<ChargeDensity_NuFI<1>>(rho.get(), Nx));
poisson.solve_step();
std::vector<double> sampled_potential = poisson.sample_electric_potential(x_min, x_max, Nx);
std::vector<double> sampled_potential = poisson.sample_electric_potential(x_min, x_max, Nx); // Solution of FE
save_space_vector(sampled_potential, "potential", it);
std::vector<double> E_vals = grad.compute(sampled_potential);
// std::vector<double> E_vals = poisson.sample_electric_field(x_min, x_max, Nx);
// These have been tested to be equivalent
// ////////////////////////////////////////////////
std::vector<double> E_vals = grad.compute(sampled_potential); // vector grad of FE solution
save_space_vector(E_vals, "electric", it);
std::vector<double> E_vals_deal = poisson.sample_electric_field(x_min, x_max, Nx); // FE grad of soution
save_space_vector(E_vals_deal, "electricdeal", it);
// ////////////////////////////////////////////////
double* current_coeffs = coeffs.get() + it*stride_t;
interpolate<double, Parameters::SPLINE_ORDER>(current_coeffs, E_vals.data());
if (it % Parameters::PLOT_FREQUENCY == 0)
{
std::cout << "Saving results... \n\n";
save_ftilda(*this, it, coeffs.get(), 128, 128, "results/ftilda_" + std::to_string(it) + ".dat");
save_rho(*this, it, coeffs.get(), 128, "results/rho_" + std::to_string(it) + ".dat");
save_Efield(it, coeffs.get(), 128, "results/field_" + std::to_string(it) + ".dat");
double int_val = 0.5 * integral_space_vector_squared(current_coeffs);
int_E_squared.push_back(int_val);
save_space_vector(int_E_squared, "electricint", it);
}
}