mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-12-26 09:20:34 +05:00
TUI for mg-adapt
This commit is contained in:
parent
d37a77ee95
commit
43e6429c58
@ -49,6 +49,11 @@ static std::string removeFile(std::string fileName, int& notOk)
|
|||||||
|
|
||||||
return errStr;
|
return errStr;
|
||||||
}
|
}
|
||||||
|
std::string remove_extension(const std::string& filename) {
|
||||||
|
size_t lastdot = filename.find_last_of(".");
|
||||||
|
if (lastdot == std::string::npos) return filename;
|
||||||
|
return filename.substr(0, lastdot);
|
||||||
|
}
|
||||||
namespace
|
namespace
|
||||||
{
|
{
|
||||||
struct GET_DEFAULT // struct used to get default value from GetOptionValue()
|
struct GET_DEFAULT // struct used to get default value from GetOptionValue()
|
||||||
@ -221,7 +226,9 @@ MgAdaptHypothesisData* MgAdapt::getData() const
|
|||||||
}
|
}
|
||||||
void MgAdapt::setMedFileIn(std::string fileName)
|
void MgAdapt::setMedFileIn(std::string fileName)
|
||||||
{
|
{
|
||||||
medFileIn = fileName;
|
medFileIn = fileName;
|
||||||
|
if (medFileOut == "") // default MED file Out
|
||||||
|
medFileOut = remove_extension( fileName )+ ".adapt.med";
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string MgAdapt::getMedFileIn()
|
std::string MgAdapt::getMedFileIn()
|
||||||
@ -283,16 +290,31 @@ int MgAdapt::getRank()
|
|||||||
}
|
}
|
||||||
void MgAdapt::setTimeStepRankLast()
|
void MgAdapt::setTimeStepRankLast()
|
||||||
{
|
{
|
||||||
med_int aRank, tmst;
|
myUseLastTimeStep = true;
|
||||||
std::string fieldFile = useBackgroundMap ? sizeMapFile : medFileIn;
|
myUseChosenTimeStep = false;
|
||||||
getTimeStepInfos(fieldFile, tmst, aRank);
|
myUseNoTimeStep = false;
|
||||||
setRankTimeStep((int) tmst, (int) aRank);
|
//~med_int aRank, tmst;
|
||||||
|
//~std::string fieldFile = useBackgroundMap ? sizeMapFile : medFileIn;
|
||||||
|
//~getTimeStepInfos(fieldFile, tmst, aRank);
|
||||||
|
//~setRankTimeStep((int) tmst, (int) aRank);
|
||||||
}
|
}
|
||||||
void MgAdapt::setNoTimeStep()
|
void MgAdapt::setNoTimeStep()
|
||||||
{
|
{
|
||||||
int aRank = (int)MED_NO_IT;
|
myUseLastTimeStep = false;
|
||||||
int tmst = (int)MED_NO_DT ;
|
myUseChosenTimeStep = false;
|
||||||
setRankTimeStep(tmst, aRank);
|
myUseNoTimeStep = true;
|
||||||
|
//~int aRank = (int)MED_NO_IT;
|
||||||
|
//~int tmst = (int)MED_NO_DT ;
|
||||||
|
//~setRankTimeStep(tmst, aRank);
|
||||||
|
}
|
||||||
|
void MgAdapt::setChosenTimeStepRank()
|
||||||
|
{
|
||||||
|
myUseLastTimeStep = false;
|
||||||
|
myUseChosenTimeStep = true;
|
||||||
|
myUseNoTimeStep = false;
|
||||||
|
//~int aRank = (int)MED_NO_IT;
|
||||||
|
//~int tmst = (int)MED_NO_DT ;
|
||||||
|
//~setRankTimeStep(tmst, aRank);
|
||||||
}
|
}
|
||||||
void MgAdapt::setUseLocalMap(bool myLocal)
|
void MgAdapt::setUseLocalMap(bool myLocal)
|
||||||
{
|
{
|
||||||
@ -454,25 +476,15 @@ bool MgAdapt::setAll()
|
|||||||
}
|
}
|
||||||
|
|
||||||
setSizeMapFile(mapfile);
|
setSizeMapFile(mapfile);
|
||||||
med_int rank;
|
|
||||||
med_int tmst;
|
|
||||||
if (data->myUseNoTimeStep)
|
if (data->myUseNoTimeStep)
|
||||||
{
|
setNoTimeStep();
|
||||||
rank = MED_NO_IT;
|
|
||||||
tmst = MED_NO_DT ;
|
|
||||||
}
|
|
||||||
else if (data->myUseLastTimeStep)
|
else if (data->myUseLastTimeStep)
|
||||||
{
|
setTimeStepRankLast();
|
||||||
std::string fieldFile = useBackgroundMap ? sizeMapFile : medFileIn;
|
|
||||||
getTimeStepInfos(fieldFile, tmst, rank);
|
|
||||||
}
|
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
rank = data->myRank;
|
setChosenTimeStepRank();
|
||||||
tmst = data->myTimeStep;
|
setRankTimeStep(data->myTimeStep, data->myRank);
|
||||||
}
|
}
|
||||||
setRankTimeStep((int)tmst, (int)rank);
|
|
||||||
|
|
||||||
/* Advanced options */
|
/* Advanced options */
|
||||||
setWorkingDir(data->myWorkingDir);
|
setWorkingDir(data->myWorkingDir);
|
||||||
checkDirPath(data->myWorkingDir);
|
checkDirPath(data->myWorkingDir);
|
||||||
@ -714,7 +726,7 @@ int MgAdapt::compute(std::string& errStr)
|
|||||||
{
|
{
|
||||||
convertMeshFile(meshFormatOutputMesh, solFormatOutput);
|
convertMeshFile(meshFormatOutputMesh, solFormatOutput);
|
||||||
}
|
}
|
||||||
//~if (!err) cleanUp();
|
if (!err) cleanUp();
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -787,6 +799,7 @@ std::string MgAdapt::getCommandToRun()
|
|||||||
std::string errStr;
|
std::string errStr;
|
||||||
std::string cmd = getExeName();
|
std::string cmd = getExeName();
|
||||||
std::string meshIn(""), sizeMapIn(""), solFileIn("");
|
std::string meshIn(""), sizeMapIn(""), solFileIn("");
|
||||||
|
updateTimeStepRank();
|
||||||
convertMedFile(meshIn, solFileIn, sizeMapIn);
|
convertMedFile(meshIn, solFileIn, sizeMapIn);
|
||||||
if (!isFileExist(meshIn) || !isFileExist(solFileIn))
|
if (!isFileExist(meshIn) || !isFileExist(solFileIn))
|
||||||
{
|
{
|
||||||
@ -833,7 +846,7 @@ std::string MgAdapt::getCommandToRun()
|
|||||||
|
|
||||||
cmd+= " --verbose "+ ToComment(verbosityLevel);
|
cmd+= " --verbose "+ ToComment(verbosityLevel);
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string option, value;
|
std::string option, value;
|
||||||
bool isDefault;
|
bool isDefault;
|
||||||
const TOptionValues* options[] = { &_option2value, &_customOption2value };
|
const TOptionValues* options[] = { &_option2value, &_customOption2value };
|
||||||
@ -876,7 +889,7 @@ std::string MgAdapt::getCommandToRun()
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
bool MgAdapt::isFileExist(std::string& fName) const
|
bool MgAdapt::isFileExist(const std::string& fName)
|
||||||
{
|
{
|
||||||
|
|
||||||
if ( fName.empty() )
|
if ( fName.empty() )
|
||||||
@ -1123,6 +1136,8 @@ void MgAdapt::convertMedFile(std::string& meshFormatMeshFileName, std::string& s
|
|||||||
MEDCoupling::MCAuto<MEDCoupling::MEDFileData> mfd = MEDCoupling::MEDFileData::New(medFileIn);
|
MEDCoupling::MCAuto<MEDCoupling::MEDFileData> mfd = MEDCoupling::MEDFileData::New(medFileIn);
|
||||||
MEDCoupling::MEDFileMeshes* meshes = mfd->getMeshes();
|
MEDCoupling::MEDFileMeshes* meshes = mfd->getMeshes();
|
||||||
MEDCoupling::MEDFileMesh* fileMesh = meshes->getMeshAtPos(0); // ok only one mesh in file!
|
MEDCoupling::MEDFileMesh* fileMesh = meshes->getMeshAtPos(0); // ok only one mesh in file!
|
||||||
|
if (meshNameOut =="")
|
||||||
|
meshNameOut = fileMesh->getName();
|
||||||
storeGroupsAndFams(fileMesh);
|
storeGroupsAndFams(fileMesh);
|
||||||
|
|
||||||
MEDCoupling::MCAuto<MEDCoupling::MEDFileFields> fields = MEDCoupling::MEDFileFields::New();
|
MEDCoupling::MCAuto<MEDCoupling::MEDFileFields> fields = MEDCoupling::MEDFileFields::New();
|
||||||
@ -1408,5 +1423,20 @@ void MgAdapt::getTimeStepInfos(std::string aFile, med_int& numdt, med_int& numit
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void MgAdapt::updateTimeStepRank()
|
||||||
|
{
|
||||||
|
|
||||||
|
med_int arank = rank;
|
||||||
|
med_int tmst = timeStep;
|
||||||
|
if (myUseNoTimeStep)
|
||||||
|
{
|
||||||
|
rank = MED_NO_IT;
|
||||||
|
tmst = MED_NO_DT ;
|
||||||
|
}
|
||||||
|
else if (myUseLastTimeStep)
|
||||||
|
{
|
||||||
|
std::string fieldFile = useBackgroundMap ? sizeMapFile : medFileIn;
|
||||||
|
getTimeStepInfos(fieldFile, tmst, arank);
|
||||||
|
}
|
||||||
|
setRankTimeStep((int)tmst, (int)arank);
|
||||||
|
}
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
// SMESH includes
|
// SMESH includes
|
||||||
|
|
||||||
//~#include <med.h>
|
//~#include <med.h>
|
||||||
|
std::string remove_extension(const std::string& filename);
|
||||||
namespace MG_ADAPT{
|
namespace MG_ADAPT{
|
||||||
class MgAdapt;
|
class MgAdapt;
|
||||||
|
|
||||||
@ -54,7 +54,7 @@ struct MgAdaptHypothesisData
|
|||||||
bool myUseNoTimeStep, myUseLastTimeStep, myUseChosenTimeStep;
|
bool myUseNoTimeStep, myUseLastTimeStep, myUseChosenTimeStep;
|
||||||
std::string myWorkingDir, myLogFile;
|
std::string myWorkingDir, myLogFile;
|
||||||
bool myPrintLogInFile, myKeepFiles, myRemoveLogOnSuccess;
|
bool myPrintLogInFile, myKeepFiles, myRemoveLogOnSuccess;
|
||||||
int myVerboseLevel;
|
int myVerboseLevel;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -149,6 +149,8 @@ public:
|
|||||||
|
|
||||||
void setTimeStepRankLast();
|
void setTimeStepRankLast();
|
||||||
void setNoTimeStep();
|
void setNoTimeStep();
|
||||||
|
void setChosenTimeStepRank();
|
||||||
|
void updateTimeStepRank();
|
||||||
|
|
||||||
void setLogFile(std::string);
|
void setLogFile(std::string);
|
||||||
std::string getLogFile();
|
std::string getLogFile();
|
||||||
@ -219,9 +221,9 @@ public:
|
|||||||
/* default values */
|
/* default values */
|
||||||
static std::string defaultWorkingDirectory();
|
static std::string defaultWorkingDirectory();
|
||||||
static std::string defaultLogFile();
|
static std::string defaultLogFile();
|
||||||
static bool defaultKeepFiles();
|
static bool defaultKeepFiles();
|
||||||
static bool defaultRemoveLogOnSuccess();
|
static bool defaultRemoveLogOnSuccess();
|
||||||
static int defaultVerboseLevel();
|
static int defaultVerboseLevel();
|
||||||
static bool defaultPrintLogInFile();
|
static bool defaultPrintLogInFile();
|
||||||
static bool defaultFromMedFile();
|
static bool defaultFromMedFile();
|
||||||
static bool defaultMeshOutMed();
|
static bool defaultMeshOutMed();
|
||||||
@ -233,6 +235,7 @@ public:
|
|||||||
static bool defaultUseLastTimeStep();
|
static bool defaultUseLastTimeStep();
|
||||||
static bool defaultUseChosenTimeStep();
|
static bool defaultUseChosenTimeStep();
|
||||||
static double defaultMaximumMemory();
|
static double defaultMaximumMemory();
|
||||||
|
static bool isFileExist(const std::string& fName);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -281,6 +284,7 @@ private :
|
|||||||
std::string meshNameOut;
|
std::string meshNameOut;
|
||||||
bool publish, meshOutMed;
|
bool publish, meshOutMed;
|
||||||
bool useLocalMap, useBackgroundMap, useConstantValue;
|
bool useLocalMap, useBackgroundMap, useConstantValue;
|
||||||
|
bool myUseLastTimeStep, myUseNoTimeStep, myUseChosenTimeStep;
|
||||||
std::string sizeMapFile;
|
std::string sizeMapFile;
|
||||||
std::string fieldName;
|
std::string fieldName;
|
||||||
double constantValue;
|
double constantValue;
|
||||||
@ -327,7 +331,6 @@ private :
|
|||||||
void getTimeStepInfos(std::string aFile, med_int& numdt, med_int& numit);
|
void getTimeStepInfos(std::string aFile, med_int& numdt, med_int& numit);
|
||||||
Status addMessage(const std::string& msg, const bool isFatal = false);
|
Status addMessage(const std::string& msg, const bool isFatal = false);
|
||||||
med_idt openMedFile(const std::string aFile) ;
|
med_idt openMedFile(const std::string aFile) ;
|
||||||
bool isFileExist(std::string& fName) const;
|
|
||||||
void execCmd( const char* cmd, int& err);
|
void execCmd( const char* cmd, int& err);
|
||||||
void cleanUp();
|
void cleanUp();
|
||||||
void appendMsgToLogFile(std::string& msg);
|
void appendMsgToLogFile(std::string& msg);
|
||||||
|
@ -111,6 +111,23 @@ SMESH::MG_ADAPT_ptr SMESH_Gen_i::CreateMG_ADAPT()
|
|||||||
SMESH::MG_ADAPT_i* aMGadapt = new SMESH::MG_ADAPT_i();
|
SMESH::MG_ADAPT_i* aMGadapt = new SMESH::MG_ADAPT_i();
|
||||||
SMESH::MG_ADAPT_var anObj = aMGadapt->_this();
|
SMESH::MG_ADAPT_var anObj = aMGadapt->_this();
|
||||||
return anObj._retn();
|
return anObj._retn();
|
||||||
|
}
|
||||||
|
SMESH::MG_ADAPT_ptr SMESH_Gen_i::CreateAdaptationHypothesis()
|
||||||
|
{
|
||||||
|
SMESH::MG_ADAPT_i* aMGadapt = new SMESH::MG_ADAPT_i();
|
||||||
|
SMESH::MG_ADAPT_var anObj = aMGadapt->_this();
|
||||||
|
return anObj._retn();
|
||||||
|
}
|
||||||
|
SMESH::MG_ADAPT_OBJECT_ptr SMESH_Gen_i::Adaptation( const char* adaptationType)
|
||||||
|
{
|
||||||
|
|
||||||
|
if (!strcmp(adaptationType, "MG_Adapt")){
|
||||||
|
SMESH::MG_ADAPT_OBJECT_i* mg_adapt_object = new SMESH::MG_ADAPT_OBJECT_i();
|
||||||
|
SMESH::MG_ADAPT_OBJECT_var anObj = mg_adapt_object->_this();
|
||||||
|
return anObj._retn();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
//~SMESH::MG_ADAPT_ptr MG_ADAPT_i::CreateMG_ADAPT()
|
//~SMESH::MG_ADAPT_ptr MG_ADAPT_i::CreateMG_ADAPT()
|
||||||
//~{
|
//~{
|
||||||
@ -211,11 +228,11 @@ bool MG_ADAPT_i::getPublish()
|
|||||||
{
|
{
|
||||||
return myMgAdapt->getPublish();
|
return myMgAdapt->getPublish();
|
||||||
}
|
}
|
||||||
void MG_ADAPT_i::setFieldName(const char* str)
|
void MG_ADAPT_i::setSizeMapFieldName(const char* str)
|
||||||
{
|
{
|
||||||
myMgAdapt->setFieldName(str);
|
myMgAdapt->setFieldName(str);
|
||||||
}
|
}
|
||||||
char* MG_ADAPT_i::getFieldName()
|
char* MG_ADAPT_i::getSizeMapFieldName()
|
||||||
{
|
{
|
||||||
return CORBA::string_dup(myMgAdapt->getFieldName().c_str());
|
return CORBA::string_dup(myMgAdapt->getFieldName().c_str());
|
||||||
}
|
}
|
||||||
@ -227,7 +244,7 @@ CORBA::Long MG_ADAPT_i::getTimeStep()
|
|||||||
{
|
{
|
||||||
return myMgAdapt->getTimeStep();
|
return myMgAdapt->getTimeStep();
|
||||||
}
|
}
|
||||||
void MG_ADAPT_i::setRankTimeStep(CORBA::Long t, CORBA::Long r)
|
void MG_ADAPT_i::setTimeStepRank(CORBA::Long t, CORBA::Long r)
|
||||||
{
|
{
|
||||||
myMgAdapt->setRankTimeStep(t, r);
|
myMgAdapt->setRankTimeStep(t, r);
|
||||||
}
|
}
|
||||||
@ -300,11 +317,11 @@ bool MG_ADAPT_i::getUseConstantValue()
|
|||||||
return myMgAdapt->getUseConstantValue();
|
return myMgAdapt->getUseConstantValue();
|
||||||
}
|
}
|
||||||
|
|
||||||
void MG_ADAPT_i::setConstantValue(double value)
|
void MG_ADAPT_i::setConstantSize(double value)
|
||||||
{
|
{
|
||||||
myMgAdapt->setConstantValue(value);
|
myMgAdapt->setConstantValue(value);
|
||||||
}
|
}
|
||||||
double MG_ADAPT_i::getConstantValue()
|
double MG_ADAPT_i::getConstantSize()
|
||||||
{
|
{
|
||||||
return myMgAdapt->getConstantValue();
|
return myMgAdapt->getConstantValue();
|
||||||
}
|
}
|
||||||
@ -337,6 +354,19 @@ bool MG_ADAPT_i::getKeepWorkingFiles()
|
|||||||
//~void MG_ADAPT_i::setPrCORBA::LongLogInFile(bool);
|
//~void MG_ADAPT_i::setPrCORBA::LongLogInFile(bool);
|
||||||
//~bool MG_ADAPT_i::getPrCORBA::LongLogInFile();
|
//~bool MG_ADAPT_i::getPrCORBA::LongLogInFile();
|
||||||
|
|
||||||
|
void MG_ADAPT_i::setSizeMapType(const char* type)
|
||||||
|
{
|
||||||
|
setUseLocalMap(false);
|
||||||
|
setUseBackgroundMap(false);
|
||||||
|
setUseConstantValue(false);
|
||||||
|
|
||||||
|
if (!strcmp("Local", type))
|
||||||
|
setUseLocalMap(true);
|
||||||
|
else if (!strcmp("Background", type))
|
||||||
|
setUseBackgroundMap(true);
|
||||||
|
else
|
||||||
|
setUseConstantValue(true);
|
||||||
|
}
|
||||||
void MG_ADAPT_i::setWorkingDir(const char* dir)
|
void MG_ADAPT_i::setWorkingDir(const char* dir)
|
||||||
{
|
{
|
||||||
myMgAdapt->setWorkingDir(dir);
|
myMgAdapt->setWorkingDir(dir);
|
||||||
@ -365,7 +395,7 @@ CORBA::Long MG_ADAPT_i::compute()
|
|||||||
{
|
{
|
||||||
errStr = "";
|
errStr = "";
|
||||||
CORBA::Long ret;
|
CORBA::Long ret;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
ret = myMgAdapt->compute(errStr);
|
ret = myMgAdapt->compute(errStr);
|
||||||
}
|
}
|
||||||
@ -445,3 +475,68 @@ bool MG_ADAPT_i::getPrintLogInFile()
|
|||||||
}
|
}
|
||||||
//~TOptionValues MG_ADAPT_i::getOptionValues() const;
|
//~TOptionValues MG_ADAPT_i::getOptionValues() const;
|
||||||
//~const TOptionValues& MG_ADAPT_i::getCustomOptionValues() const ;
|
//~const TOptionValues& MG_ADAPT_i::getCustomOptionValues() const ;
|
||||||
|
|
||||||
|
MG_ADAPT_OBJECT_i::MG_ADAPT_OBJECT_i(): SALOME::GenericObj_i( SMESH_Gen_i::GetPOA() )
|
||||||
|
{
|
||||||
|
medFileIn="";
|
||||||
|
medFileOut="";
|
||||||
|
medFileBackground="";
|
||||||
|
publish = false;
|
||||||
|
//~myMesh = CORBA::nil;
|
||||||
|
}
|
||||||
|
|
||||||
|
void MG_ADAPT_OBJECT_i::setMeshIn(SMESH::SMESH_Mesh_ptr theMesh )
|
||||||
|
{
|
||||||
|
myMesh = SMESH::SMESH_Mesh::_duplicate(theMesh);
|
||||||
|
}
|
||||||
|
void MG_ADAPT_OBJECT_i::setMEDFileIn(const char* f)
|
||||||
|
{
|
||||||
|
medFileIn = f;
|
||||||
|
}
|
||||||
|
void MG_ADAPT_OBJECT_i::setMEDFileOut(const char* f)
|
||||||
|
{
|
||||||
|
medFileOut = f;
|
||||||
|
}
|
||||||
|
void MG_ADAPT_OBJECT_i::setMEDFileBackground(const char* f)
|
||||||
|
{
|
||||||
|
medFileBackground = f;
|
||||||
|
}
|
||||||
|
void MG_ADAPT_OBJECT_i::AddHypothesis(SMESH::MG_ADAPT_ptr mg)
|
||||||
|
{
|
||||||
|
|
||||||
|
mg->setMedFileIn(medFileIn.c_str());
|
||||||
|
mg->setMedFileOut(medFileOut.c_str());
|
||||||
|
mg->setSizeMapFile(medFileBackground.c_str());
|
||||||
|
hypothesis = SMESH::MG_ADAPT::_duplicate(mg);
|
||||||
|
}
|
||||||
|
CORBA::Long MG_ADAPT_OBJECT_i::Compute(bool publish)
|
||||||
|
{
|
||||||
|
if(!checkMeshFileIn()){
|
||||||
|
std::cerr<< "\n Error : Please check the MED file input or mesh input. \n";
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
hypothesis->setPublish(publish);
|
||||||
|
return hypothesis->compute();
|
||||||
|
}
|
||||||
|
|
||||||
|
bool MG_ADAPT_OBJECT_i::checkMeshFileIn()
|
||||||
|
{
|
||||||
|
bool ret = false; // 1 ok , 0 nook
|
||||||
|
if(!::MG_ADAPT::MgAdapt::isFileExist(medFileIn))
|
||||||
|
{
|
||||||
|
if(!myMesh->_is_nil())
|
||||||
|
{
|
||||||
|
bool toOverwrite = true;
|
||||||
|
bool toFindOutDim = true;
|
||||||
|
medFileIn = hypothesis->getFileName();
|
||||||
|
medFileIn+= ".med";
|
||||||
|
myMesh->ExportMED(medFileIn.c_str(), false, -1, toOverwrite, toFindOutDim);
|
||||||
|
hypothesis->setMedFileIn(medFileIn.c_str());
|
||||||
|
ret = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
ret = true;
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
@ -11,7 +11,9 @@
|
|||||||
#include "SALOME_Component_i.hxx"
|
#include "SALOME_Component_i.hxx"
|
||||||
#include "SALOME_NamingService.hxx"
|
#include "SALOME_NamingService.hxx"
|
||||||
#include "Utils_CorbaException.hxx"
|
#include "Utils_CorbaException.hxx"
|
||||||
|
#include <vector>
|
||||||
|
#include <algorithm>
|
||||||
|
#include <iterator>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
//~struct MgAdaptHypothesisData;
|
//~struct MgAdaptHypothesisData;
|
||||||
@ -20,6 +22,7 @@
|
|||||||
//~class MgAdapt;
|
//~class MgAdapt;
|
||||||
namespace SMESH
|
namespace SMESH
|
||||||
{
|
{
|
||||||
|
|
||||||
class SMESH_I_EXPORT MG_ADAPT_i :
|
class SMESH_I_EXPORT MG_ADAPT_i :
|
||||||
public virtual SALOME::GenericObj_i,
|
public virtual SALOME::GenericObj_i,
|
||||||
public virtual POA_SMESH::MG_ADAPT
|
public virtual POA_SMESH::MG_ADAPT
|
||||||
@ -51,13 +54,13 @@ public:
|
|||||||
void setPublish(bool mybool);
|
void setPublish(bool mybool);
|
||||||
bool getPublish();
|
bool getPublish();
|
||||||
|
|
||||||
void setFieldName(const char* str);
|
void setSizeMapFieldName(const char* str);
|
||||||
char* getFieldName();
|
char* getSizeMapFieldName();
|
||||||
|
|
||||||
void setTimeStep(CORBA::Long t);
|
void setTimeStep(CORBA::Long t);
|
||||||
CORBA::Long getTimeStep() ;
|
CORBA::Long getTimeStep() ;
|
||||||
|
|
||||||
void setRankTimeStep(CORBA::Long t, CORBA::Long r );
|
void setTimeStepRank(CORBA::Long t, CORBA::Long r );
|
||||||
CORBA::Long getRank();
|
CORBA::Long getRank();
|
||||||
|
|
||||||
void setTimeStepRankLast();
|
void setTimeStepRankLast();
|
||||||
@ -73,7 +76,7 @@ public:
|
|||||||
bool getRemoveOnSuccess();
|
bool getRemoveOnSuccess();
|
||||||
|
|
||||||
SMESH::MgAdaptHypothesisData* getData() ;
|
SMESH::MgAdaptHypothesisData* getData() ;
|
||||||
|
void setSizeMapType(const char* type);
|
||||||
void setUseLocalMap(bool mybool);
|
void setUseLocalMap(bool mybool);
|
||||||
bool getUseLocalMap();
|
bool getUseLocalMap();
|
||||||
|
|
||||||
@ -83,8 +86,8 @@ public:
|
|||||||
void setUseConstantValue(bool mybool);
|
void setUseConstantValue(bool mybool);
|
||||||
bool getUseConstantValue();
|
bool getUseConstantValue();
|
||||||
|
|
||||||
void setConstantValue(double value);
|
void setConstantSize(double value);
|
||||||
double getConstantValue();
|
double getConstantSize();
|
||||||
|
|
||||||
void setSizeMapFile(const char* str);
|
void setSizeMapFile(const char* str);
|
||||||
char* getSizeMapFile();
|
char* getSizeMapFile();
|
||||||
@ -136,5 +139,25 @@ private:
|
|||||||
//~ADAPT::ADAPT_Gen_var _gen_i;
|
//~ADAPT::ADAPT_Gen_var _gen_i;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
class SMESH_I_EXPORT MG_ADAPT_OBJECT_i:
|
||||||
|
public virtual SALOME::GenericObj_i,
|
||||||
|
public virtual POA_SMESH::MG_ADAPT_OBJECT {
|
||||||
|
public :
|
||||||
|
MG_ADAPT_OBJECT_i();
|
||||||
|
void setMeshIn( SMESH::SMESH_Mesh_ptr theMesh );
|
||||||
|
void setMEDFileIn(const char* f);
|
||||||
|
void setMEDFileOut(const char* f);
|
||||||
|
void setMEDFileBackground(const char* f);
|
||||||
|
void AddHypothesis(SMESH::MG_ADAPT_ptr);
|
||||||
|
CORBA::Long Compute(bool Publish);
|
||||||
|
private:
|
||||||
|
std::string medFileIn, medFileOut, medFileBackground;
|
||||||
|
bool checkMeshFileIn();
|
||||||
|
bool publish;
|
||||||
|
SMESH::SMESH_Mesh_ptr myMesh;
|
||||||
|
SMESH::MG_ADAPT_ptr hypothesis;
|
||||||
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
#endif // MG_ADAPT_I_HXX
|
#endif // MG_ADAPT_I_HXX
|
||||||
|
@ -470,6 +470,8 @@ public:
|
|||||||
|
|
||||||
static int CountInPyDump(const TCollection_AsciiString& text);
|
static int CountInPyDump(const TCollection_AsciiString& text);
|
||||||
SMESH::MG_ADAPT_ptr CreateMG_ADAPT();
|
SMESH::MG_ADAPT_ptr CreateMG_ADAPT();
|
||||||
|
SMESH::MG_ADAPT_ptr CreateAdaptationHypothesis();
|
||||||
|
SMESH::MG_ADAPT_OBJECT_ptr Adaptation( const char* adaptationType);
|
||||||
|
|
||||||
// *****************************************
|
// *****************************************
|
||||||
// Internal methods
|
// Internal methods
|
||||||
|
Loading…
Reference in New Issue
Block a user