Skip to content
Snippets Groups Projects
Commit 22434d96 authored by Emmanuel Labourasse's avatar Emmanuel Labourasse
Browse files

Before coding for vectors

parent 892abb49
No related branches found
No related tags found
1 merge request!167Improve fluxing based remapping
......@@ -98,8 +98,8 @@ FluxingAdvectionSolver<2>::computeFluxVolume() const
if (m_new_mesh->shared_connectivity() != m_old_mesh->shared_connectivity()) {
throw NormalError("Old and new meshes must share the same connectivity");
}
std::cout << " CARRE "
<< "\n";
// std::cout << " CARRE "
// << "\n";
// MeshDataType& old_mesh_data = MeshDataManager::instance().getMeshData(*m_old_mesh);
// MeshDataType& new_mesh_data = MeshDataManager::instance().getMeshData(*m_new_mesh);
const auto face_to_node_matrix = m_old_mesh->connectivity().faceToNodeMatrix();
......@@ -149,7 +149,7 @@ calculateRemapCycles(const std::shared_ptr<const MeshType>& old_mesh,
total_negative_flux[cell_id] += flux;
}
}
std::cout << " cell_id " << cell_id << " total_negative_flux " << total_negative_flux[cell_id] << "\n";
// std::cout << " cell_id " << cell_id << " total_negative_flux " << total_negative_flux[cell_id] << "\n";
});
MeshData<Dimension>& mesh_data = MeshDataManager::instance().getMeshData(*old_mesh);
const CellValue<const double> Vj = mesh_data.Vj();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment