From 1afb2bb51d1800570fc678c7483a37d3faabe8a1 Mon Sep 17 00:00:00 2001
From: Valentin Hanser <valentin.hanser@tuwien.ac.at>
Date: Fri, 14 Mar 2025 09:47:09 +0100
Subject: [PATCH] added additional informaion about used dist and mesh

---
 C++/multiscale/MSVPM.cc          | 2 +-
 C++/preisach/ngPreisachScalar.cc | 2 +-
 C++/preisach/ngPreisachVector.cc | 3 ++-
 3 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/C++/multiscale/MSVPM.cc b/C++/multiscale/MSVPM.cc
index 68864ae..64135d9 100644
--- a/C++/multiscale/MSVPM.cc
+++ b/C++/multiscale/MSVPM.cc
@@ -67,7 +67,7 @@ coefHysteresisMS<DIM_MESH, DIM_PREISACH, DIM_MS_COEF_R, DIM_MS_COEF_C>::coefHyst
         }
     });
     cout << "\n";
-    cout << "created " << CountVectorPreisachPoints() << " VectorPreisachPoints" << endl;
+    cout << "created " << CountVectorPreisachPoints() << " VectorPreisachPoints ,  mesh dim: " << DIM_MESH <<", Preisach dim" << DIM_PREISACH << ", Ndist" << ptrDist->size() << endl;
 
 
 
diff --git a/C++/preisach/ngPreisachScalar.cc b/C++/preisach/ngPreisachScalar.cc
index 49bbdf8..c0e2bcf 100644
--- a/C++/preisach/ngPreisachScalar.cc
+++ b/C++/preisach/ngPreisachScalar.cc
@@ -85,7 +85,7 @@ ngPreisachScalar<DIM>::ngPreisachScalar(shared_ptr<MeshAccess>& mesh, Integratio
             }
         }
     });
-    cout << "created " << CountScalarPreisachPoints() << " ScalarPreisachPoints" << endl;
+    cout << "created " << CountScalarPreisachPoints() << " ScalarPreisachPoints,  mesh dim: " << DIM << endl;
 
     Demagnetise();
 }
diff --git a/C++/preisach/ngPreisachVector.cc b/C++/preisach/ngPreisachVector.cc
index bf34215..52c15e4 100644
--- a/C++/preisach/ngPreisachVector.cc
+++ b/C++/preisach/ngPreisachVector.cc
@@ -93,7 +93,8 @@ ngPreisachVector<DIM_MESH, DIM_PREISACH>::ngPreisachVector(shared_ptr<MeshAccess
     });
 
     cout << "\n";
-    cout << "created " << CountVectorPreisachPoints() << " VectorPreisachPoints with "<< ptrDist->size() << "ScalarPoints each" << endl;
+    
+    cout << "created " << CountVectorPreisachPoints() << " VectorPreisachPoints ,  mesh dim: " << DIM_MESH <<", Preisach dim" << DIM_PREISACH << ", Ndist" << ptrDist->size() << endl;
 
     Demagnetise();
 } 
-- 
GitLab