X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FDriverDAT%2FDriverDAT_W_SMESHDS_Mesh.cxx;h=e17c6cdd29247fd1107de464bf0d712fd5d353ae;hp=10c4accd2424685e0729fb6d0c63d0cf8be6e67e;hb=1ca52d6d9244fecf0d7fdbb15047f96c1a0ccec7;hpb=4791f5b30ea7a9c1247aa551750dc71cb83b99aa diff --git a/src/DriverDAT/DriverDAT_W_SMESHDS_Mesh.cxx b/src/DriverDAT/DriverDAT_W_SMESHDS_Mesh.cxx index 10c4accd2..e17c6cdd2 100644 --- a/src/DriverDAT/DriverDAT_W_SMESHDS_Mesh.cxx +++ b/src/DriverDAT/DriverDAT_W_SMESHDS_Mesh.cxx @@ -1,5 +1,3 @@ -// SMESH DriverDAT : driver to read and write 'dat' files -// // Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS // @@ -18,184 +16,5 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // // See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org -// -// -// -// File : DriverDAT_W_SMESHDS_Mesh.cxx -// Module : SMESH -using namespace std; #include "DriverDAT_W_SMESHDS_Mesh.h" -#include "DriverDAT_W_SMDS_Mesh.h" - -#include "SMDS_MeshElement.hxx" -#include "SMDS_MeshNode.hxx" -#include "SMDS_MeshEdgesIterator.hxx" -#include "SMDS_MeshFacesIterator.hxx" -#include "SMDS_MeshNodesIterator.hxx" -#include "SMDS_MeshVolumesIterator.hxx" - -#include "utilities.h" - -DriverDAT_W_SMESHDS_Mesh::DriverDAT_W_SMESHDS_Mesh() { -; -} - -DriverDAT_W_SMESHDS_Mesh::~DriverDAT_W_SMESHDS_Mesh() { -; -} - -void DriverDAT_W_SMESHDS_Mesh::SetMesh(Handle(SMDS_Mesh)& aMesh) { - //myMesh = Handle(SMESHDS_Mesh)::DownCast(aMesh); - myMesh = aMesh; -} - -void DriverDAT_W_SMESHDS_Mesh::SetFile(string aFile) { - myFile = aFile; -} - -void DriverDAT_W_SMESHDS_Mesh::SetFileId(FILE* aFileId) { - myFileId = aFileId; -} - -void DriverDAT_W_SMESHDS_Mesh::SetMeshId(int aMeshId) { - myMeshId = aMeshId; -} - -void DriverDAT_W_SMESHDS_Mesh::Write() { - - string myClass = string("SMDS_Mesh"); - string myExtension = string("DAT"); - - DriverDAT_W_SMDS_Mesh* myWriter = new DriverDAT_W_SMDS_Mesh; - - myWriter->SetMesh(myMesh); - myWriter->SetFile(myFile); - myWriter->SetMeshId(myMeshId); - //myWriter->SetFileId(myFileId); - - myWriter->Write(); - - -} -void DriverDAT_W_SMESHDS_Mesh::Add() { - int nbNodes,nbCells; - int i; - - char* file2Read = (char*)myFile.c_str(); - myFileId = fopen(file2Read,"w+"); - if (myFileId < 0) - { - fprintf(stderr,">> ERREUR : ouverture du fichier %s \n",file2Read); - exit(EXIT_FAILURE); - } - - /**************************************************************************** - * NOMBRES D'OBJETS * - ****************************************************************************/ - fprintf(stdout,"\n(****************************)\n"); - fprintf(stdout,"(* INFORMATIONS GENERALES : *)\n"); - fprintf(stdout,"(****************************)\n"); - - /* Combien de noeuds ? */ - nbNodes = myMesh->NbNodes(); - - /* Combien de mailles, faces ou aretes ? */ - Standard_Integer nb_of_nodes, nb_of_edges,nb_of_faces, nb_of_volumes; - nb_of_edges = myMesh->NbEdges(); - nb_of_faces = myMesh->NbFaces(); - nb_of_volumes = myMesh->NbVolumes(); - nbCells = nb_of_edges + nb_of_faces + nb_of_volumes; - - fprintf(stdout,"%d %d\n",nbNodes,nbCells); - fprintf(myFileId,"%d %d\n",nbNodes,nbCells); - - /**************************************************************************** - * ECRITURE DES NOEUDS * - ****************************************************************************/ - fprintf(stdout,"\n(************************)\n"); - fprintf(stdout,"(* NOEUDS DU MAILLAGE : *)\n"); - fprintf(stdout,"(************************)\n"); - - SMDS_MeshNodesIterator itNodes(myMesh); - for (;itNodes.More();itNodes.Next()) { - const Handle(SMDS_MeshElement)& elem = itNodes.Value(); - const Handle(SMDS_MeshNode)& node = myMesh->GetNode(1,elem); - - fprintf(myFileId,"%d %e %e %e\n",node->GetID(),node->X(),node->Y(),node->Z()); - } - - /**************************************************************************** - * ECRITURE DES ELEMENTS * - ****************************************************************************/ - fprintf(stdout,"\n(**************************)\n"); - fprintf(stdout,"(* ELEMENTS DU MAILLAGE : *)\n"); - fprintf(stdout,"(**************************)"); - /* Ecriture des connectivites, noms, numeros des mailles */ - - SMDS_MeshEdgesIterator itEdges(myMesh); - for (;itEdges.More();itEdges.Next()) { - const Handle(SMDS_MeshElement)& elem = itEdges.Value(); - - switch (elem->NbNodes()) { - case 2 : { - fprintf(myFileId,"%d %d ",elem->GetID(),102); - break; - } - case 3 : { - fprintf(myFileId,"%d %d ",elem->GetID(),103); - break; - } - } - - for (i=0;iNbNodes();i++) - fprintf(myFileId,"%d ",elem->GetConnection(i+1)); - - fprintf(myFileId,"\n"); - } - - SMDS_MeshFacesIterator itFaces(myMesh); - for (;itFaces.More();itFaces.Next()) { - const Handle(SMDS_MeshElement)& elem = itFaces.Value(); - - switch (elem->NbNodes()) { - case 3 : { - fprintf(myFileId,"%d %d ",elem->GetID(),203); - break; - } - case 4 : { - fprintf(myFileId,"%d %d ",elem->GetID(),204); - break; - } - case 6 : { - fprintf(myFileId,"%d %d ",elem->GetID(),206); - break; - } - } - - for (i=0;iNbNodes();i++) - fprintf(myFileId,"%d ",elem->GetConnection(i+1)); - - fprintf(myFileId,"\n"); - } - - SMDS_MeshVolumesIterator itVolumes(myMesh); - for (;itVolumes.More();itVolumes.Next()) { - const Handle(SMDS_MeshElement)& elem = itVolumes.Value(); - - switch (elem->NbNodes()) { - case 8 : { - fprintf(myFileId,"%d %d ",elem->GetID(),308); - break; - } - } - - for (i=0;iNbNodes();i++) - fprintf(myFileId,"%d ",elem->GetConnection(i+1)); - - fprintf(myFileId,"\n"); - } - - fclose (myFileId); -} -