This commit is contained in:
dino.celebic 2026-01-24 21:24:09 +01:00
commit c53335074d
3 changed files with 25 additions and 100 deletions

View file

@ -383,7 +383,7 @@ void FEM_Matrix::Derive_Matrix_Pattern_slow()
return;
}
void FEM_Matrix::CalculateLaplaceMult(vector<double> &f)
void FEM_Matrix::CalculateLaplace_mult(vector<double> &f)
{
cout << "\n############ FEM_Matrix::CalculateLaplaceMult ";
double tstart = omp_get_wtime(); // OpenMP
@ -394,9 +394,6 @@ void FEM_Matrix::CalculateLaplaceMult(vector<double> &f)
for (int k = 0; k < _nrows; ++k) {
_sk[k] = 0.0;
}
for (int k = 0; k < _nrows; ++k) {
f[k] = 0.0;
}
double ske[3][3], fe[3];
// Loop over all elements