2009-01-13 04:40:13 +05:00
|
|
|
/*
|
2009-01-31 03:12:17 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
The interface between the GUI and the netgen library
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <mystdlib.h>
|
|
|
|
#include <myadt.hpp>
|
|
|
|
#include <linalg.hpp>
|
|
|
|
|
2009-03-15 17:25:09 +05:00
|
|
|
#include <meshing.hpp>
|
|
|
|
|
2009-08-25 14:44:03 +06:00
|
|
|
|
2014-10-08 18:46:25 +06:00
|
|
|
#include <inctcl.hpp>
|
2009-01-13 04:40:13 +05:00
|
|
|
#include <visual.hpp>
|
|
|
|
|
2009-03-15 17:25:09 +05:00
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
#include <csg.hpp>
|
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
#ifdef SOCKETS
|
|
|
|
#include "../libsrc/sockets/sockets.hpp"
|
|
|
|
#include "../libsrc/sockets/socketmanager.hpp"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2009-01-20 14:08:01 +05:00
|
|
|
// to be sure to include the 'right' togl-version
|
2016-02-08 19:53:16 +05:00
|
|
|
#include "Togl2.1/togl.h"
|
|
|
|
#include "fonts.hpp"
|
2009-01-20 14:08:01 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
extern bool nodisplay;
|
|
|
|
|
2011-03-07 21:38:43 +05:00
|
|
|
#include <nginterface.h>
|
2009-05-09 15:48:16 +06:00
|
|
|
|
|
|
|
|
2016-07-10 21:07:36 +05:00
|
|
|
#include "../libsrc/interface/writeuser.hpp"
|
2009-05-09 15:48:16 +06:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
namespace netgen
|
|
|
|
{
|
2015-10-19 13:08:30 +05:00
|
|
|
DLL_HEADER extern MeshingParameters mparam;
|
|
|
|
DLL_HEADER extern void ImportSolution2(const char * filename);
|
2009-01-13 04:40:13 +05:00
|
|
|
#include "demoview.hpp"
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef ACIS
|
|
|
|
#include "ng_acis.hpp"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2009-04-05 21:10:33 +06:00
|
|
|
#ifdef JPEGLIB
|
2009-01-13 04:40:13 +05:00
|
|
|
#include <jpeglib.h>
|
2009-04-05 21:10:33 +06:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef FFMPEG
|
2017-02-03 19:28:59 +05:00
|
|
|
#include "encoding.hpp"
|
2009-01-13 04:40:13 +05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef NGSOLVE
|
|
|
|
extern "C" void NGSolve_Exit();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// extern void * ngsolve_handle;
|
|
|
|
|
|
|
|
|
|
|
|
namespace netgen
|
|
|
|
{
|
2011-01-11 01:18:01 +05:00
|
|
|
extern Flags parameters;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2012-07-06 13:49:05 +06:00
|
|
|
/*
|
2009-01-13 04:40:13 +05:00
|
|
|
NetgenOutStream operator<< ( ostream & ost, Imp imp )
|
|
|
|
{
|
|
|
|
return ( NetgenOutStream ( &ost, imp ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
NetgenOutStream operator<< ( ostream & ost, Proc proc )
|
|
|
|
{
|
|
|
|
return ( NetgenOutStream ( &ost, proc ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
NetgenOutStream operator<< ( ostream & ost, Procs & procs )
|
|
|
|
{
|
|
|
|
return ( NetgenOutStream ( &ost, procs ) );
|
|
|
|
}
|
2012-07-06 13:49:05 +06:00
|
|
|
*/
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2015-10-19 13:08:30 +05:00
|
|
|
DLL_HEADER extern std::shared_ptr<NetgenGeometry> ng_geometry;
|
|
|
|
DLL_HEADER extern std::shared_ptr<Mesh> mesh;
|
2009-01-13 04:40:13 +05:00
|
|
|
Tcl_Interp * tcl_interp;
|
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
#ifdef SOCKETS
|
|
|
|
AutoPtr<ClientSocket> clientsocket;
|
|
|
|
ServerSocketManager serversocketmanager;
|
2009-01-25 17:35:25 +05:00
|
|
|
//Array< AutoPtr < ServerInfo > > servers;
|
|
|
|
Array< ServerInfo* > servers;
|
2009-01-13 04:40:13 +05:00
|
|
|
AutoPtr<ServerSocketUserNetgen> serversocketusernetgen;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// visualization scenes, pointer vs selects which one is drawn:
|
|
|
|
|
|
|
|
static VisualScene vscross;
|
2015-10-19 13:08:30 +05:00
|
|
|
DLL_HEADER extern VisualSceneSurfaceMeshing vssurfacemeshing;
|
|
|
|
DLL_HEADER extern VisualSceneMeshDoctor vsmeshdoc;
|
2011-01-11 01:18:01 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
static VisualSceneSpecPoints vsspecpoints;
|
2009-01-31 03:12:17 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
|
|
|
|
VisualScene *vs = &vscross;
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-10-09 13:57:43 +06:00
|
|
|
extern char * err_needsmesh;// = (char*) "This operation needs a mesh";
|
|
|
|
extern char * err_jobrunning;// = (char*) "Meshing Job already running";
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-05-09 16:22:16 +06:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
#ifndef SMALLLIB
|
2014-09-03 15:10:17 +06:00
|
|
|
// // Destination for messages, errors, ...
|
|
|
|
#ifndef WIN32
|
2010-05-18 17:28:15 +06:00
|
|
|
DLL_HEADER void Ng_PrintDest(const char * s)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2012-06-21 20:19:47 +06:00
|
|
|
/*
|
2009-01-13 04:40:13 +05:00
|
|
|
#ifdef PARALLEL
|
|
|
|
int id, ntasks;
|
|
|
|
MPI_Comm_size(MPI_COMM_WORLD, &ntasks);
|
|
|
|
MPI_Comm_rank(MPI_COMM_WORLD, &id);
|
|
|
|
#else
|
|
|
|
int id = 0; int ntasks = 1;
|
|
|
|
#endif
|
2012-06-21 20:19:47 +06:00
|
|
|
*/
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2012-09-03 15:50:08 +06:00
|
|
|
if (id == 0)
|
|
|
|
(*mycout) << s << flush;
|
|
|
|
|
|
|
|
/*
|
2009-01-13 04:40:13 +05:00
|
|
|
if ( ntasks == 1 )
|
|
|
|
(*mycout) << s << flush;
|
|
|
|
else
|
|
|
|
(*mycout) << "p" << id << ": " << s << flush ;
|
2012-09-03 15:50:08 +06:00
|
|
|
*/
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
2014-09-03 15:10:17 +06:00
|
|
|
#endif
|
2015-10-19 13:08:30 +05:00
|
|
|
void MyError2(const char * ch)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
cout << ch;
|
|
|
|
(*testout) << "Error !!! " << ch << endl << flush;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static clock_t starttimea;
|
2014-08-30 06:15:59 +06:00
|
|
|
void ResetTime2 ()
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
starttimea = clock();
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef SMALLLIB
|
2015-10-19 13:08:30 +05:00
|
|
|
double GetTime2 ()
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
return double(clock() - starttimea) / CLOCKS_PER_SEC;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// file handling ..
|
|
|
|
int Ng_New (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
2009-01-31 03:12:17 +05:00
|
|
|
if (strcmp (argv[1], "mesh") == 0)
|
2014-09-08 21:21:09 +06:00
|
|
|
mesh.reset();
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
if (strcmp (argv[1], "geom") == 0)
|
|
|
|
{
|
2013-02-27 19:49:17 +06:00
|
|
|
/*
|
2011-01-11 01:18:01 +05:00
|
|
|
delete ng_geometry;
|
|
|
|
ng_geometry = new NetgenGeometry;
|
2013-02-27 19:49:17 +06:00
|
|
|
*/
|
2014-09-08 21:21:09 +06:00
|
|
|
ng_geometry = make_shared<NetgenGeometry>();
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int Ng_ImportMesh (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[]);
|
|
|
|
|
|
|
|
int Ng_LoadMesh (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
|
|
|
string filename (argv[1]);
|
|
|
|
|
2013-04-04 21:16:19 +06:00
|
|
|
if (filename.find(".vol") == string::npos)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
return Ng_ImportMesh(clientData,interp,argc,argv);
|
|
|
|
}
|
|
|
|
|
|
|
|
PrintMessage (1, "load mesh from file ", filename);
|
|
|
|
|
2014-09-08 21:21:09 +06:00
|
|
|
mesh = make_shared<Mesh>();
|
2009-01-13 04:40:13 +05:00
|
|
|
try
|
|
|
|
{
|
2013-02-27 23:29:12 +06:00
|
|
|
istream * infile;
|
2013-04-04 21:16:19 +06:00
|
|
|
// if (filename.substr (filename.length()-3, 3) == ".gz")
|
|
|
|
if (filename.find(".vol.gz") != string::npos)
|
2013-02-27 23:29:12 +06:00
|
|
|
infile = new igzstream (filename.c_str());
|
|
|
|
else
|
|
|
|
infile = new ifstream (filename.c_str());
|
|
|
|
|
|
|
|
// ifstream infile(filename.c_str());
|
|
|
|
mesh -> Load(*infile);
|
2015-01-09 02:17:42 +05:00
|
|
|
// vsmesh.SetMesh (mesh);
|
|
|
|
SetGlobalMesh (mesh);
|
2011-01-11 01:18:01 +05:00
|
|
|
|
2012-07-05 17:05:33 +06:00
|
|
|
#ifdef PARALLEL
|
|
|
|
MyMPI_SendCmd ("mesh");
|
|
|
|
mesh -> Distribute();
|
|
|
|
#endif
|
2011-01-11 01:18:01 +05:00
|
|
|
for (int i = 0; i < geometryregister.Size(); i++)
|
|
|
|
{
|
2013-02-27 23:29:12 +06:00
|
|
|
NetgenGeometry * hgeom = geometryregister[i]->LoadFromMeshFile (*infile);
|
2011-01-11 01:18:01 +05:00
|
|
|
if (hgeom)
|
|
|
|
{
|
2014-09-08 21:21:09 +06:00
|
|
|
ng_geometry = shared_ptr<NetgenGeometry>(hgeom);
|
2011-01-11 01:18:01 +05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2013-02-27 23:29:12 +06:00
|
|
|
delete infile;
|
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
/*
|
2009-01-13 04:40:13 +05:00
|
|
|
string auxstring;
|
|
|
|
if(infile.good())
|
|
|
|
{
|
|
|
|
infile >> auxstring;
|
|
|
|
if(auxstring == "csgsurfaces")
|
|
|
|
{
|
2011-01-11 01:18:01 +05:00
|
|
|
CSGeometry * geometry = new CSGeometry ("");
|
2009-01-13 04:40:13 +05:00
|
|
|
geometry -> LoadSurfaces(infile);
|
2011-01-11 01:18:01 +05:00
|
|
|
|
|
|
|
delete ng_geometry;
|
|
|
|
ng_geometry = geometry;
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
|
|
|
}
|
2011-01-11 01:18:01 +05:00
|
|
|
*/
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
|
|
|
catch (NgException e)
|
|
|
|
{
|
|
|
|
PrintMessage (3, e.What());
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
PrintMessage (2, mesh->GetNP(), " Points, ",
|
|
|
|
mesh->GetNE(), " Elements.");
|
2009-01-31 03:12:17 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int Ng_SaveMesh (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
2014-09-08 21:21:09 +06:00
|
|
|
if (!mesh)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_needsmesh, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
2013-02-27 23:29:12 +06:00
|
|
|
string filename (argv[1]);
|
2009-10-28 04:04:42 +05:00
|
|
|
PrintMessage (1, "Save mesh to file ", filename, ".... Please Wait!");
|
2013-02-27 23:29:12 +06:00
|
|
|
|
|
|
|
ostream * outfile;
|
|
|
|
if (filename.substr (filename.length()-3, 3) == ".gz")
|
|
|
|
outfile = new ogzstream (filename.c_str());
|
|
|
|
else
|
|
|
|
outfile = new ofstream (filename.c_str());
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2013-02-27 23:29:12 +06:00
|
|
|
mesh -> Save (*outfile);
|
2016-05-06 10:30:59 +05:00
|
|
|
// *outfile << endl << endl << "endmesh" << endl << endl;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2016-05-06 10:30:59 +05:00
|
|
|
if (ng_geometry && !mesh->GetGeometry())
|
2013-02-27 23:29:12 +06:00
|
|
|
ng_geometry -> SaveToMeshFile (*outfile);
|
2009-01-31 03:12:17 +05:00
|
|
|
|
2013-02-27 23:29:12 +06:00
|
|
|
delete outfile;
|
2009-10-28 04:04:42 +05:00
|
|
|
PrintMessage (1, "Save mesh to file .... DONE!");
|
2009-01-13 04:40:13 +05:00
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int Ng_MergeMesh (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
|
|
|
string filename (argv[1]);
|
|
|
|
|
|
|
|
PrintMessage (1, "merge with mesh from file ", filename);
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
2014-09-08 21:21:09 +06:00
|
|
|
CSGeometry * geometry = dynamic_cast<CSGeometry*> (ng_geometry.get());
|
2011-01-11 01:18:01 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
//mesh -> Merge (filename);
|
|
|
|
ifstream infile(filename.c_str());
|
|
|
|
const int offset = (geometry) ? geometry->GetNSurf() : 0;
|
|
|
|
mesh -> Merge(infile,offset);
|
2011-01-11 01:18:01 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
string auxstring;
|
|
|
|
if(infile.good())
|
|
|
|
{
|
|
|
|
infile >> auxstring;
|
2014-04-28 13:10:21 +06:00
|
|
|
if(geometry && auxstring == "csgsurfaces")
|
2009-01-13 04:40:13 +05:00
|
|
|
geometry -> LoadSurfaces(infile);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (NgException e)
|
|
|
|
{
|
|
|
|
PrintMessage (3, e.What());
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
PrintMessage (2, mesh->GetNP(), " Points, ",
|
|
|
|
mesh->GetNSE(), " Surface Elements.");
|
2009-01-31 03:12:17 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int Ng_ExportMesh (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
2014-09-08 21:21:09 +06:00
|
|
|
if (!mesh)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_needsmesh, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
string filename (argv[1]);
|
|
|
|
string filetype (argv[2]);
|
2009-10-28 04:04:42 +05:00
|
|
|
PrintMessage (1, "Export mesh to file ", filename, ".... Please Wait!");
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
// CSGeometry * geometry = dynamic_cast<CSGeometry*> (ng_geometry);
|
2017-07-25 01:26:18 +05:00
|
|
|
if (WriteUserFormat (filetype, *mesh, /* *ng_geometry, */ filename))
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
ostringstream ost;
|
|
|
|
ost << "Sorry, nothing known about file format " << filetype << endl;
|
|
|
|
Tcl_SetResult (interp, (char*)ost.str().c_str(), TCL_VOLATILE);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
2009-10-28 04:04:42 +05:00
|
|
|
PrintMessage (1, "Export mesh to file .... DONE!");
|
2009-01-13 04:40:13 +05:00
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int Ng_ImportMesh (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
|
|
|
const string filename (argv[1]);
|
|
|
|
PrintMessage (1, "import mesh from ", filename);
|
|
|
|
|
2014-09-08 21:21:09 +06:00
|
|
|
mesh = make_shared<Mesh>();
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
ReadFile (*mesh, filename);
|
|
|
|
PrintMessage (2, mesh->GetNP(), " Points, ",
|
|
|
|
mesh->GetNE(), " Elements.");
|
2009-01-31 03:12:17 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
mesh->SetGlobalH (mparam.maxh);
|
2011-07-25 14:40:23 +06:00
|
|
|
mesh->CalcLocalH(mparam.grading);
|
2009-01-31 03:12:17 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int Ng_ImportSolution (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
2014-09-08 21:21:09 +06:00
|
|
|
if (!mesh)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_needsmesh, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char * filename = argv[1];
|
|
|
|
PrintMessage (1, "Import solution from file ", filename);
|
2009-01-31 03:12:17 +05:00
|
|
|
|
2015-10-19 13:08:30 +05:00
|
|
|
ImportSolution2 (filename);
|
2009-01-13 04:40:13 +05:00
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static DemoView * demoview = 0;
|
|
|
|
int Ng_ShowDemo (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
|
|
|
const char * filename = argv[1];
|
|
|
|
PrintMessage (1, "Show demo ", filename);
|
|
|
|
demoview = new DemoView (filename);
|
|
|
|
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int Ng_DemoSetTime (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
|
|
|
cout << "demosettime, time = " << argv[1] << endl;
|
|
|
|
int result = -1;
|
|
|
|
|
|
|
|
static char strminusone[] = "-1";
|
|
|
|
static char str0[] = "0";
|
|
|
|
|
|
|
|
if (demoview)
|
|
|
|
result = demoview->SetTime (atof (argv[1]));
|
2009-01-31 03:12:17 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
if (result == -1)
|
|
|
|
Tcl_SetResult (interp, strminusone, TCL_STATIC);
|
|
|
|
else
|
|
|
|
Tcl_SetResult (interp, str0, TCL_STATIC);
|
|
|
|
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int Ng_SaveSolution (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
2014-09-08 21:21:09 +06:00
|
|
|
if (!mesh)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_needsmesh, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char * filename = argv[1];
|
|
|
|
PrintMessage (1, "Save solution to file ", filename);
|
|
|
|
|
2017-08-28 21:19:20 +05:00
|
|
|
netgen::GetVSSolution().SaveSolutionData (filename);
|
2009-01-13 04:40:13 +05:00
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
int Ng_SetNextTimeStamp (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argqc, tcl_const char *argv[])
|
|
|
|
{
|
2014-09-08 21:21:09 +06:00
|
|
|
if (mesh)
|
2011-01-11 01:18:01 +05:00
|
|
|
mesh -> SetNextTimeStamp();
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int Ng_LoadGeometry (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
|
|
|
if (multithread.running)
|
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_jobrunning, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
tcl_const char * lgfilename = argv[1];
|
|
|
|
|
|
|
|
#ifdef LOG_STREAM
|
|
|
|
(*logout) << "Load geometry file: " << lgfilename << endl;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef STAT_STREAM
|
|
|
|
(*statout) << lgfilename << " & " << endl;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
2011-01-11 01:18:01 +05:00
|
|
|
for (int i = 0; i < geometryregister.Size(); i++)
|
|
|
|
{
|
|
|
|
NetgenGeometry * hgeom = geometryregister[i]->Load (lgfilename);
|
|
|
|
if (hgeom)
|
|
|
|
{
|
2013-02-27 19:49:17 +06:00
|
|
|
// delete ng_geometry;
|
|
|
|
// ng_geometry = hgeom;
|
2014-09-08 21:21:09 +06:00
|
|
|
ng_geometry = shared_ptr<NetgenGeometry> (hgeom);
|
2011-01-11 01:18:01 +05:00
|
|
|
|
2014-09-08 21:21:09 +06:00
|
|
|
mesh.reset();
|
2011-01-11 01:18:01 +05:00
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
ifstream infile(lgfilename);
|
|
|
|
|
2009-01-31 03:12:17 +05:00
|
|
|
if (strlen(lgfilename) < 4)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
cout << "ERROR: cannot recognise file format!" << endl;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-01-11 01:18:01 +05:00
|
|
|
if ((strcmp (&lgfilename[strlen(lgfilename)-4], "iges") == 0) ||
|
2009-01-13 04:40:13 +05:00
|
|
|
(strcmp (&lgfilename[strlen(lgfilename)-3], "igs") == 0) ||
|
|
|
|
(strcmp (&lgfilename[strlen(lgfilename)-3], "IGS") == 0) ||
|
|
|
|
(strcmp (&lgfilename[strlen(lgfilename)-4], "IGES") == 0))
|
|
|
|
{
|
2009-01-20 14:08:01 +05:00
|
|
|
Tcl_SetResult (interp, (char*)"IGES import requires the OpenCascade geometry kernel. "
|
2009-01-31 03:12:17 +05:00
|
|
|
"Please install OpenCascade as described in the Netgen-website",
|
|
|
|
TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
2009-01-31 03:12:17 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
else if (strcmp (&lgfilename[strlen(lgfilename)-3], "sat") == 0)
|
|
|
|
{
|
|
|
|
#ifdef ACIS
|
|
|
|
PrintMessage (1, "Load ACIS geometry file ", lgfilename);
|
|
|
|
acisgeometry = netgen::LoadACIS_SAT (lgfilename);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else if ((strcmp (&lgfilename[strlen(lgfilename)-4], "step") == 0) ||
|
|
|
|
(strcmp (&lgfilename[strlen(lgfilename)-3], "stp") == 0) ||
|
|
|
|
(strcmp (&lgfilename[strlen(lgfilename)-3], "STP") == 0) ||
|
|
|
|
(strcmp (&lgfilename[strlen(lgfilename)-4], "STEP") == 0))
|
|
|
|
{
|
|
|
|
#ifdef ACISxxx
|
|
|
|
PrintMessage (1, "Load STEP geometry file ", lgfilename);
|
|
|
|
acisgeometry = netgen::LoadACIS_STEP (lgfilename);
|
|
|
|
#else
|
2009-01-20 14:08:01 +05:00
|
|
|
Tcl_SetResult (interp, (char*)"IGES import requires the OpenCascade geometry kernel. "
|
2009-01-31 03:12:17 +05:00
|
|
|
"Please install OpenCascade as described in the Netgen-website",
|
|
|
|
TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
2009-01-13 04:40:13 +05:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else if ((strcmp (&lgfilename[strlen(lgfilename)-4], "brep") == 0) ||
|
|
|
|
(strcmp (&lgfilename[strlen(lgfilename)-4], "Brep") == 0) ||
|
|
|
|
(strcmp (&lgfilename[strlen(lgfilename)-4], "BREP") == 0))
|
|
|
|
{
|
2009-01-20 14:08:01 +05:00
|
|
|
Tcl_SetResult (interp, (char*)"BREP import requires the OpenCascade geometry kernel. "
|
2009-01-31 03:12:17 +05:00
|
|
|
"Please install OpenCascade as described in the Netgen-website",
|
|
|
|
TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-01-11 01:18:01 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
catch (NgException e)
|
|
|
|
{
|
2009-01-31 03:12:17 +05:00
|
|
|
Tcl_SetResult (interp, const_cast<char*> (e.What().c_str()), TCL_VOLATILE);
|
2009-01-13 04:40:13 +05:00
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
2014-09-08 21:21:09 +06:00
|
|
|
mesh.reset();
|
2009-01-13 04:40:13 +05:00
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int Ng_SaveGeometry (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
|
|
|
if (argc == 2)
|
|
|
|
{
|
|
|
|
const char * cfilename = argv[1];
|
2011-01-11 01:18:01 +05:00
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
ng_geometry -> Save (string (cfilename));
|
|
|
|
}
|
|
|
|
catch (NgException e)
|
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, const_cast<char*> (e.What().c_str()), TCL_VOLATILE);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
PrintMessage (1, "Save geometry to file ", cfilename);
|
2009-01-31 03:12:17 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
if (strlen(cfilename) < 4) {cout << "ERROR: can not recognise file format!!!" << endl;}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
#ifdef ACIS
|
|
|
|
if (acisgeometry)
|
|
|
|
{
|
|
|
|
char * filename = const_cast<char*> (argv[1]);
|
|
|
|
if (strcmp (&filename[strlen(filename)-3], "sat") == 0)
|
|
|
|
{
|
|
|
|
acisgeometry -> SaveSATFile (filename);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2011-01-11 01:18:01 +05:00
|
|
|
/*
|
|
|
|
if (strcmp (&cfilename[strlen(cfilename)-3], "ngg") == 0)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2011-01-11 01:18:01 +05:00
|
|
|
CSGeometry * geometry = dynamic_cast<CSGeometry*> (ng_geometry);
|
|
|
|
if (geometry)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2011-01-11 01:18:01 +05:00
|
|
|
ofstream of(cfilename);
|
|
|
|
geometry->Save (of);
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
|
|
|
}
|
2011-01-11 01:18:01 +05:00
|
|
|
*/
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int Ng_ReadStatus (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
|
|
|
char buf[20], lstring[200];
|
2014-09-08 21:21:09 +06:00
|
|
|
if (mesh)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
sprintf (buf, "%d", mesh->GetNP());
|
|
|
|
Tcl_SetVar (interp, "::status_np", buf, 0);
|
|
|
|
sprintf (buf, "%d", mesh->GetNE());
|
|
|
|
Tcl_SetVar (interp, "::status_ne", buf, 0);
|
|
|
|
sprintf (buf, "%d", mesh->GetNSE());
|
|
|
|
Tcl_SetVar (interp, "::status_nse", buf, 0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Tcl_SetVar (interp, "::status_np", "0", 0);
|
|
|
|
Tcl_SetVar (interp, "::status_ne", "0", 0);
|
|
|
|
Tcl_SetVar (interp, "::status_nse", "0", 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (multithread.running)
|
|
|
|
Tcl_SetVar (interp, "::status_working", "working", 0);
|
|
|
|
else
|
|
|
|
Tcl_SetVar (interp, "::status_working", " ", 0);
|
|
|
|
|
|
|
|
Tcl_SetVar (interp, "::status_task", const_cast<char *>(multithread.task), 0);
|
|
|
|
sprintf (buf, "%lf", multithread.percent);
|
|
|
|
Tcl_SetVar (interp, "::status_percent", buf, 0);
|
|
|
|
|
|
|
|
lstring[0] = 0;
|
2012-11-05 17:28:58 +06:00
|
|
|
for (int i = 1; i <= tets_in_qualclass.Size(); i++)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
sprintf (buf, " %d", tets_in_qualclass.Get(i));
|
|
|
|
strcat (lstring, buf);
|
|
|
|
}
|
2012-11-05 17:28:58 +06:00
|
|
|
for (int i = tets_in_qualclass.Size()+1; i <= 20; i++)
|
2009-01-13 04:40:13 +05:00
|
|
|
strcat (lstring, " 0");
|
|
|
|
Tcl_SetVar (interp, "::status_tetqualclasses", lstring, 0);
|
|
|
|
|
2015-06-26 19:30:27 +05:00
|
|
|
{
|
2016-02-22 22:43:51 +05:00
|
|
|
lock_guard<mutex> guard(tcl_todo_mutex);
|
2015-06-26 19:30:27 +05:00
|
|
|
if (multithread.tcl_todo->length())
|
|
|
|
{
|
|
|
|
Tcl_Eval (interp, multithread.tcl_todo->c_str());
|
|
|
|
*multithread.tcl_todo = "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int Ng_MemInfo (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
2015-10-19 13:08:30 +05:00
|
|
|
{/*
|
2009-01-13 04:40:13 +05:00
|
|
|
if (argc < 2) return TCL_ERROR;
|
|
|
|
|
|
|
|
if (strcmp (argv[1], "usedmb") == 0)
|
|
|
|
{ // returns string of 512 '0' or '1'
|
|
|
|
|
|
|
|
static char usedmb[513];
|
|
|
|
for (int i = 0; i < 512; i++)
|
|
|
|
usedmb[i] = (i % 7 == 0) ? '1' : '0';
|
|
|
|
|
|
|
|
usedmb[512] = 0;
|
|
|
|
BaseDynamicMem::GetUsed (512, usedmb);
|
2009-01-31 03:12:17 +05:00
|
|
|
Tcl_SetResult (interp, usedmb, TCL_STATIC);
|
2009-01-13 04:40:13 +05:00
|
|
|
return TCL_OK;
|
|
|
|
}
|
2015-10-19 13:08:30 +05:00
|
|
|
*/
|
2009-01-13 04:40:13 +05:00
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int Ng_BCProp (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
|
|
|
static char buf[100];
|
|
|
|
|
|
|
|
if (argc < 2)
|
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, (char*)"Ng_BCProp needs arguments", TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp (argv[1], "setbc") == 0)
|
|
|
|
{
|
|
|
|
int facenr = atoi (argv[2]);
|
|
|
|
int bcnr = atoi (argv[3]);
|
2014-09-08 21:21:09 +06:00
|
|
|
if (mesh && facenr >= 1 && facenr <= mesh->GetNFD())
|
2009-01-13 04:40:13 +05:00
|
|
|
mesh->GetFaceDescriptor (facenr).SetBCProperty (bcnr);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp (argv[1], "setall") == 0)
|
|
|
|
{
|
|
|
|
int bcnr = atoi (argv[2]);
|
2014-09-08 21:21:09 +06:00
|
|
|
if (mesh)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
int nfd = mesh->GetNFD();
|
|
|
|
for (int i = 1; i <= nfd; i++)
|
|
|
|
mesh->GetFaceDescriptor (i).SetBCProperty (bcnr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp (argv[1], "getbc") == 0)
|
|
|
|
{
|
|
|
|
int facenr = atoi (argv[2]);
|
2014-09-08 21:21:09 +06:00
|
|
|
if (mesh && facenr >= 1 && facenr <= mesh->GetNFD())
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
sprintf (buf, "%d", mesh->GetFaceDescriptor(facenr).BCProperty());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
strcpy (buf, "0");
|
|
|
|
}
|
|
|
|
Tcl_SetResult (interp, buf, TCL_STATIC);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp (argv[1], "getbcname") == 0)
|
|
|
|
{
|
|
|
|
int facenr = atoi (argv[2]);
|
2014-09-08 21:21:09 +06:00
|
|
|
if (mesh && facenr >= 1 && facenr <= mesh->GetNFD())
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
sprintf (buf, "%s", mesh->GetFaceDescriptor(facenr).GetBCName().c_str());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
strcpy (buf, "-");
|
|
|
|
}
|
|
|
|
Tcl_SetResult (interp, buf, TCL_STATIC);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (strcmp (argv[1], "getactive") == 0)
|
|
|
|
{
|
|
|
|
sprintf (buf, "%d", vsmesh.SelectedFace());
|
|
|
|
Tcl_SetResult (interp, buf, TCL_STATIC);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp (argv[1], "setactive") == 0)
|
|
|
|
{
|
|
|
|
int facenr = atoi (argv[2]);
|
2014-09-08 21:21:09 +06:00
|
|
|
if (mesh && facenr >= 1 && facenr <= mesh->GetNFD())
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
vsmesh.SetSelectedFace (facenr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp (argv[1], "getnfd") == 0)
|
|
|
|
{
|
2014-09-08 21:21:09 +06:00
|
|
|
if (mesh)
|
2009-01-13 04:40:13 +05:00
|
|
|
sprintf (buf, "%d", mesh->GetNFD());
|
|
|
|
else
|
|
|
|
sprintf (buf, "0");
|
|
|
|
Tcl_SetResult (interp, buf, TCL_STATIC);
|
|
|
|
}
|
|
|
|
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-01-31 03:12:17 +05:00
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
int Ng_Refine (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
2014-09-08 21:21:09 +06:00
|
|
|
if (!mesh)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_needsmesh, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
if (multithread.running)
|
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_jobrunning, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef ACIS
|
2009-08-25 20:00:20 +06:00
|
|
|
if (acisgeometry)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
ACISRefinementSurfaces ref (*acisgeometry);
|
|
|
|
ACISMeshOptimize2dSurfaces opt(*acisgeometry);
|
|
|
|
ref.Set2dOptimizer(&opt);
|
|
|
|
ref.Refine (*mesh);
|
|
|
|
}
|
|
|
|
else
|
2011-01-11 01:18:01 +05:00
|
|
|
#endif
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2015-08-08 22:10:48 +05:00
|
|
|
// ng_geometry -> GetRefinement().Refine(*mesh);
|
|
|
|
mesh->GetGeometry()->GetRefinement().Refine(*mesh);
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
|
|
|
|
2010-10-17 16:44:39 +06:00
|
|
|
//redo second order refinement if desired
|
|
|
|
if (mparam.secondorder)
|
2015-08-08 22:10:48 +05:00
|
|
|
const_cast<Refinement&> (mesh->GetGeometry()->GetRefinement()).MakeSecondOrder(*mesh);
|
2010-10-17 16:44:39 +06:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Ng_SecondOrder (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
2014-09-08 21:21:09 +06:00
|
|
|
if (!mesh)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_needsmesh, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
if (multithread.running)
|
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_jobrunning, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
2009-08-25 20:00:20 +06:00
|
|
|
|
2015-08-08 22:10:48 +05:00
|
|
|
const_cast<Refinement&> (mesh->GetGeometry()->GetRefinement()).MakeSecondOrder (*mesh);
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void * HighOrderDummy (void *)
|
|
|
|
{
|
|
|
|
// mparam.elementorder = atoi (Tcl_GetVar (interp, "options.elementorder", 0));
|
|
|
|
const char * savetask = multithread.task;
|
|
|
|
|
2015-08-08 22:10:48 +05:00
|
|
|
Refinement & ref = const_cast<Refinement&> (mesh->GetGeometry()->GetRefinement());
|
2009-08-25 20:00:20 +06:00
|
|
|
mesh -> GetCurvedElements().BuildCurvedElements (&ref, mparam.elementorder);
|
2009-01-31 03:12:17 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
multithread.task = savetask;
|
|
|
|
multithread.running = 0;
|
|
|
|
multithread.terminate = 1;
|
|
|
|
|
|
|
|
mesh -> SetNextMajorTimeStamp();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Ng_HighOrder (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
2014-09-08 21:21:09 +06:00
|
|
|
if (!mesh)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_needsmesh, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
if (multithread.running)
|
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_jobrunning, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
multithread.running = 1;
|
|
|
|
multithread.terminate = 0;
|
2009-01-31 03:12:17 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
mparam.elementorder = atoi(argv[1]);
|
2009-01-31 03:12:17 +05:00
|
|
|
|
2009-08-25 14:44:03 +06:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
HighOrderDummy(NULL);
|
2009-01-31 03:12:17 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void * ValidateDummy (void *)
|
|
|
|
{
|
2015-08-08 22:10:48 +05:00
|
|
|
Refinement & ref = const_cast<Refinement&> (mesh->GetGeometry()->GetRefinement());
|
2009-01-13 04:40:13 +05:00
|
|
|
ref.ValidateSecondOrder (*mesh);
|
|
|
|
|
|
|
|
multithread.running = 0;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int Ng_ValidateSecondOrder (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
2014-09-08 21:21:09 +06:00
|
|
|
if (!mesh)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_needsmesh, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
if (multithread.running)
|
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_jobrunning, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
multithread.running = 1;
|
|
|
|
RunParallel (ValidateDummy, NULL);
|
|
|
|
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int Ng_ZRefinement (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
2014-09-08 21:21:09 +06:00
|
|
|
if (!mesh)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_needsmesh, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
if (multithread.running)
|
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_jobrunning, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
ZRefinementOptions opt;
|
|
|
|
opt.minref = 5;
|
|
|
|
|
|
|
|
if (argc >= 2) opt.minref = atoi (argv[1]);
|
|
|
|
|
2014-09-08 21:21:09 +06:00
|
|
|
ZRefinement (*mesh, ng_geometry.get(), opt);
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Ng_HPRefinement (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
2014-09-08 21:21:09 +06:00
|
|
|
if (!mesh)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_needsmesh, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
if (multithread.running)
|
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_jobrunning, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
int levels = atoi (argv[1]);
|
|
|
|
|
|
|
|
|
2015-08-08 22:10:48 +05:00
|
|
|
Refinement & ref = const_cast<Refinement&> (mesh->GetGeometry()->GetRefinement());
|
2009-08-25 20:00:20 +06:00
|
|
|
HPRefinement (*mesh, &ref, levels);
|
2009-01-13 04:40:13 +05:00
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int Ng_LoadMeshSize (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
2014-09-08 21:21:09 +06:00
|
|
|
if (!mesh)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_needsmesh, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
if (multithread.running)
|
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_jobrunning, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
mesh->LoadLocalMeshSize(argv[1]);
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int Ng_MeshSizeFromSurfaceMesh (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
2014-09-08 21:21:09 +06:00
|
|
|
if (!mesh)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_needsmesh, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
if (multithread.running)
|
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_jobrunning, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
mesh->SetGlobalH (mparam.maxh);
|
2011-07-25 14:40:23 +06:00
|
|
|
mesh->CalcLocalH(mparam.grading);
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-06-19 11:41:22 +06:00
|
|
|
// Philippose Rajan - 13 June 2009
|
|
|
|
// Added a new TCL function call for the generation
|
|
|
|
// of prismatic boundary layers
|
|
|
|
int Ng_GenerateBoundaryLayer (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
2014-09-08 21:21:09 +06:00
|
|
|
if (!mesh)
|
2009-06-19 11:41:22 +06:00
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_needsmesh, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(multithread.running)
|
|
|
|
{
|
|
|
|
Tcl_SetResult(interp, err_jobrunning, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
2014-12-18 19:00:58 +05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cout << "Generate Prismatic Boundary Layers (Experimental)...." << endl;
|
|
|
|
|
|
|
|
// Use an array to support creation of boundary
|
|
|
|
// layers for multiple surfaces in the future...
|
|
|
|
Array<int> surfid;
|
|
|
|
int surfinp = 0;
|
|
|
|
int prismlayers = 1;
|
|
|
|
double hfirst = 0.01;
|
|
|
|
double growthfactor = 1.0;
|
|
|
|
|
|
|
|
|
|
|
|
while(surfinp >= 0)
|
|
|
|
{
|
|
|
|
cout << "Enter Surface ID (-1 to end list): ";
|
|
|
|
cin >> surfinp;
|
|
|
|
if(surfinp >= 0) surfid.Append(surfinp);
|
|
|
|
}
|
|
|
|
|
|
|
|
cout << "Number of surfaces entered = " << surfid.Size() << endl;
|
|
|
|
cout << "Selected surfaces are:" << endl;
|
|
|
|
|
|
|
|
for(int i = 1; i <= surfid.Size(); i++)
|
|
|
|
cout << "Surface " << i << ": " << surfid.Elem(i) << endl;
|
|
|
|
|
|
|
|
cout << endl << "Enter number of prism layers: ";
|
|
|
|
cin >> prismlayers;
|
|
|
|
if(prismlayers < 1) prismlayers = 1;
|
|
|
|
|
|
|
|
cout << "Enter height of first layer: ";
|
|
|
|
cin >> hfirst;
|
|
|
|
if(hfirst <= 0.0) hfirst = 0.01;
|
|
|
|
|
|
|
|
cout << "Enter layer growth / shrink factor: ";
|
|
|
|
cin >> growthfactor;
|
|
|
|
if(growthfactor <= 0.0) growthfactor = 0.5;
|
|
|
|
|
|
|
|
BoundaryLayerParameters blp;
|
|
|
|
blp.surfid = surfid;
|
|
|
|
blp.prismlayers = prismlayers;
|
|
|
|
blp.hfirst = blp.hfirst;
|
|
|
|
blp.growthfactor = growthfactor;
|
|
|
|
GenerateBoundaryLayer (*mesh, blp);
|
2009-06-19 11:41:22 +06:00
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
int Ng_InsertVirtualBL (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
2014-09-08 21:21:09 +06:00
|
|
|
if (!mesh)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_needsmesh, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
if (multithread.running)
|
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_jobrunning, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
InsertVirtualBoundaryLayer (*mesh);
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Ng_CutOffAndCombine (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
|
|
|
Mesh othermesh;
|
|
|
|
othermesh.Load (argv[1]);
|
|
|
|
othermesh.SetGlobalH (mparam.maxh);
|
2011-07-25 14:40:23 +06:00
|
|
|
othermesh.CalcLocalH(mparam.grading);
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
CutOffAndCombine (*mesh, othermesh);
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int Ng_HelmholtzMesh (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
|
|
|
HelmholtzMesh (*mesh);
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int Ng_SetMeshingParameters (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
|
|
|
mparam.maxh = atof (Tcl_GetVar (interp, "::options.meshsize", 0));
|
|
|
|
mparam.minh = atof (Tcl_GetVar (interp, "::options.minmeshsize", 0));
|
2014-08-30 06:15:59 +06:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
mparam.meshsizefilename = Tcl_GetVar (interp, "::options.meshsizefilename", 0);
|
2014-08-31 18:12:31 +06:00
|
|
|
// if (!strlen (mparam.meshsizefilename)) mparam.meshsizefilename = NULL;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
mparam.curvaturesafety = atof (Tcl_GetVar (interp, "::options.curvaturesafety", 0));
|
|
|
|
mparam.segmentsperedge = atof (Tcl_GetVar (interp, "::options.segmentsperedge", 0));
|
|
|
|
mparam.badellimit = atof (Tcl_GetVar (interp, "::options.badellimit", 0));
|
|
|
|
mparam.secondorder = atoi (Tcl_GetVar (interp, "::options.secondorder", 0));
|
|
|
|
mparam.elementorder = atoi (Tcl_GetVar (interp, "::options.elementorder", 0));
|
|
|
|
mparam.quad = atoi (Tcl_GetVar (interp, "::options.quad", 0));
|
2017-07-25 00:49:49 +05:00
|
|
|
mparam.try_hexes = atoi (Tcl_GetVar (interp, "::options.try_hexes", 0));
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
mparam.inverttets = atoi (Tcl_GetVar (interp, "::options.inverttets", 0));
|
|
|
|
mparam.inverttrigs = atoi (Tcl_GetVar (interp, "::options.inverttrigs", 0));
|
|
|
|
mparam.uselocalh = atoi (Tcl_GetVar (interp, "::options.localh", 0));
|
|
|
|
mparam.grading = atof (Tcl_GetVar (interp, "::options.grading", 0));
|
|
|
|
mparam.delaunay = atoi (Tcl_GetVar (interp, "::options.delaunay", 0));
|
|
|
|
mparam.checkoverlap = atoi (Tcl_GetVar (interp, "::options.checkoverlap", 0));
|
|
|
|
mparam.checkoverlappingboundary = atoi (Tcl_GetVar (interp, "::options.checkoverlappingboundary", 0));
|
|
|
|
mparam.checkchartboundary = atoi (Tcl_GetVar (interp, "::options.checkchartboundary", 0));
|
|
|
|
mparam.optsteps3d = atoi (Tcl_GetVar (interp, "::options.optsteps3d", 0));
|
|
|
|
mparam.optsteps2d = atoi (Tcl_GetVar (interp, "::options.optsteps2d", 0));
|
|
|
|
mparam.opterrpow = atof (Tcl_GetVar (interp, "::options.opterrpow", 0));
|
|
|
|
|
|
|
|
mparam.parthread = atoi (Tcl_GetVar (interp, "::options.parthread", 0));
|
|
|
|
mparam.elsizeweight = atof (Tcl_GetVar (interp, "::options.elsizeweight", 0));
|
|
|
|
|
|
|
|
mparam.autozrefine = atoi (Tcl_GetVar (interp, "::options.autozrefine", 0));
|
|
|
|
|
|
|
|
extern int printmessage_importance;
|
|
|
|
extern int printdots;
|
|
|
|
printmessage_importance = atoi (Tcl_GetVar (interp, "::options.printmsg", 0));
|
|
|
|
printdots = (printmessage_importance >= 4);
|
|
|
|
|
2009-08-24 06:03:40 +06:00
|
|
|
//BaseMoveableMem::totalsize = 0;
|
2009-01-25 04:28:47 +05:00
|
|
|
// 1048576 * atoi (Tcl_GetVar (interp, "::options.memory", 0));
|
2014-09-08 21:21:09 +06:00
|
|
|
if (mesh)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
mesh->SetGlobalH (mparam.maxh);
|
|
|
|
mesh->SetMinimalH (mparam.minh);
|
|
|
|
}
|
|
|
|
|
2011-07-22 02:52:45 +06:00
|
|
|
#ifdef PARALLEL
|
|
|
|
MyMPI_SendCmd ("bcastparthread");
|
|
|
|
MyMPI_Bcast (mparam.parthread);
|
|
|
|
#endif
|
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int Ng_SetDebugParameters (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
|
|
|
debugparam.slowchecks = atoi (Tcl_GetVar (interp, "::debug.slowchecks", 0));
|
|
|
|
debugparam.debugoutput = atoi (Tcl_GetVar (interp, "::debug.debugoutput", 0));
|
|
|
|
debugparam.haltexistingline = atoi (Tcl_GetVar (interp, "::debug.haltexistingline", 0));
|
|
|
|
debugparam.haltoverlap = atoi (Tcl_GetVar (interp, "::debug.haltoverlap", 0));
|
|
|
|
debugparam.haltsuccess = atoi (Tcl_GetVar (interp, "::debug.haltsuccess", 0));
|
|
|
|
debugparam.haltnosuccess = atoi (Tcl_GetVar (interp, "::debug.haltnosuccess", 0));
|
|
|
|
debugparam.haltlargequalclass = atoi (Tcl_GetVar (interp, "::debug.haltlargequalclass", 0));
|
|
|
|
debugparam.haltsegment = atoi (Tcl_GetVar (interp, "::debug.haltsegment", 0));
|
|
|
|
debugparam.haltnode = atoi (Tcl_GetVar (interp, "::debug.haltnode", 0));
|
|
|
|
debugparam.haltface = atoi (Tcl_GetVar (interp, "::debug.haltface", 0));
|
|
|
|
debugparam.haltsegmentp1 = atoi (Tcl_GetVar (interp, "::debug.haltsegmentp1", 0));
|
|
|
|
debugparam.haltsegmentp2 = atoi (Tcl_GetVar (interp, "::debug.haltsegmentp2", 0));
|
|
|
|
debugparam.haltfacenr = atoi (Tcl_GetVar (interp, "::debug.haltfacenr", 0));
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-08-30 18:36:11 +06:00
|
|
|
|
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
int Ng_GetCommandLineParameter (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
|
|
|
if (argc != 2)
|
|
|
|
{
|
2009-01-31 03:12:17 +05:00
|
|
|
Tcl_SetResult (interp, (char*)"Ng_GetCommandLineParameter needs 1 parameter",
|
2009-01-13 04:40:13 +05:00
|
|
|
TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char buf[10];
|
|
|
|
|
|
|
|
if (parameters.StringFlagDefined (argv[1]))
|
|
|
|
Tcl_SetResult (interp,
|
|
|
|
(char*)parameters.GetStringFlag (argv[1], NULL), TCL_STATIC);
|
|
|
|
else if (parameters.NumFlagDefined (argv[1]))
|
|
|
|
{
|
|
|
|
sprintf (buf, "%lf", parameters.GetNumFlag (argv[1], 0));
|
|
|
|
Tcl_SetResult (interp, buf, TCL_STATIC);
|
|
|
|
}
|
|
|
|
else if (parameters.GetDefineFlag (argv[1]))
|
|
|
|
Tcl_SetResult (interp, (char*)"defined", TCL_STATIC);
|
|
|
|
else
|
|
|
|
Tcl_SetResult (interp, (char*)"undefined", TCL_STATIC);
|
|
|
|
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int perfstepsstart;
|
|
|
|
static int perfstepsend;
|
2011-01-11 01:18:01 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
static char* optstring = NULL;
|
|
|
|
static char* optstringcsg = NULL;
|
|
|
|
|
|
|
|
void * MeshingDummy (void *)
|
|
|
|
{
|
|
|
|
|
|
|
|
const char * savetask = multithread.task;
|
|
|
|
multithread.task = "Generate Mesh";
|
|
|
|
|
|
|
|
ResetTime();
|
|
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
|
|
|
|
#ifdef LOG_STREAM
|
|
|
|
(*logout) << "Start meshing" << endl;
|
|
|
|
(*logout) << "Meshing parameters:" << endl;
|
|
|
|
mparam.Print (*logout);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef ACIS
|
2009-08-25 20:00:20 +06:00
|
|
|
if (acisgeometry)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
ACISGenerateMesh(*acisgeometry, mesh.Ptr(), perfstepsstart, perfstepsend, optstring);
|
|
|
|
}
|
2009-08-25 20:00:20 +06:00
|
|
|
else
|
2009-01-13 04:40:13 +05:00
|
|
|
#endif
|
2016-02-08 19:53:16 +05:00
|
|
|
if (ng_geometry)
|
2009-08-25 20:00:20 +06:00
|
|
|
{
|
2014-09-26 04:09:21 +06:00
|
|
|
mesh = make_shared<Mesh> ();
|
2015-01-09 02:17:42 +05:00
|
|
|
// vsmesh.SetMesh (mesh);
|
|
|
|
SetGlobalMesh (mesh);
|
2015-08-08 22:10:48 +05:00
|
|
|
mesh -> SetGeometry(ng_geometry);
|
2016-12-05 17:50:21 +05:00
|
|
|
mparam.perfstepsstart = perfstepsstart;
|
|
|
|
mparam.perfstepsend = perfstepsend;
|
|
|
|
int res = ng_geometry -> GenerateMesh (mesh, mparam);
|
2014-09-08 21:21:09 +06:00
|
|
|
|
2010-03-23 17:52:07 +05:00
|
|
|
if (res != MESHING3_OK)
|
|
|
|
{
|
|
|
|
multithread.task = savetask;
|
|
|
|
multithread.running = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
2009-08-25 20:00:20 +06:00
|
|
|
}
|
2016-02-08 19:53:16 +05:00
|
|
|
else // no ng_geometry
|
|
|
|
{
|
|
|
|
multithread.task = savetask;
|
|
|
|
multithread.running = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
if (mparam.autozrefine)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2009-08-25 20:00:20 +06:00
|
|
|
ZRefinementOptions opt;
|
|
|
|
opt.minref = 5;
|
2014-09-08 21:21:09 +06:00
|
|
|
ZRefinement (*mesh, ng_geometry.get(), opt);
|
2009-08-25 20:00:20 +06:00
|
|
|
mesh -> SetNextMajorTimeStamp();
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
2009-08-25 20:00:20 +06:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
if (mparam.secondorder)
|
|
|
|
{
|
2015-08-08 22:10:48 +05:00
|
|
|
const_cast<Refinement&> (mesh->GetGeometry()->GetRefinement()).MakeSecondOrder (*mesh);
|
2009-08-25 20:00:20 +06:00
|
|
|
mesh -> SetNextMajorTimeStamp();
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
if (mparam.elementorder > 1)
|
|
|
|
{
|
2015-08-08 22:10:48 +05:00
|
|
|
mesh -> GetCurvedElements().BuildCurvedElements (&const_cast<Refinement&> (mesh->GetGeometry()->GetRefinement()),
|
2009-08-25 20:00:20 +06:00
|
|
|
mparam.elementorder);
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
mesh -> SetNextMajorTimeStamp();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
PrintMessage (1, "Meshing done, time = ", GetTime(), " sec");
|
|
|
|
}
|
2009-08-25 20:00:20 +06:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
catch (NgException e)
|
|
|
|
{
|
|
|
|
cout << e.What() << endl;
|
|
|
|
}
|
2009-08-25 20:00:20 +06:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
multithread.task = savetask;
|
|
|
|
multithread.running = 0;
|
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
#ifdef OCCGEOMETRYorig
|
|
|
|
// currently not active
|
|
|
|
OCCGeometry * occgeometry = dynamic_cast<OCCGeometry*> (ng_geometry);
|
|
|
|
if (occgeometry && occgeometry->ErrorInSurfaceMeshing())
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2011-01-11 01:18:01 +05:00
|
|
|
char script[] = "rebuildoccdialog";
|
|
|
|
Tcl_GlobalEval (tcl_interp, script);
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
int MeshingVal(tcl_const char* str)
|
|
|
|
{
|
|
|
|
if (strcmp(str, "ag") == 0) {return MESHCONST_ANALYSE;}
|
|
|
|
if (strcmp(str, "me") == 0) {return MESHCONST_MESHEDGES;}
|
|
|
|
if (strcmp(str, "ms") == 0) {return MESHCONST_MESHSURFACE;}
|
|
|
|
if (strcmp(str, "os") == 0) {return MESHCONST_OPTSURFACE;}
|
|
|
|
if (strcmp(str, "mv") == 0) {return MESHCONST_MESHVOLUME;}
|
|
|
|
if (strcmp(str, "ov") == 0) {return MESHCONST_OPTVOLUME;}
|
|
|
|
|
|
|
|
cout << "TCL TK ERROR, wrong meshing value, return='" << str << "'" << endl;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
|
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
int Ng_GenerateMesh (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
|
|
|
if (multithread.running)
|
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_jobrunning, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
multithread.running = 1;
|
|
|
|
multithread.terminate = 0;
|
2014-08-30 06:15:59 +06:00
|
|
|
|
2014-12-04 15:24:45 +05:00
|
|
|
extern void Render(bool blocking);
|
2014-08-30 06:15:59 +06:00
|
|
|
mparam.render_function = &Render;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
for (int i = 0; i < geometryregister.Size(); i++)
|
|
|
|
geometryregister[i] -> SetParameters (interp);
|
2009-08-30 18:36:11 +06:00
|
|
|
|
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
Ng_SetMeshingParameters (clientData, interp, 0, argv);
|
|
|
|
|
|
|
|
perfstepsstart = 1;
|
|
|
|
perfstepsend = 6;
|
|
|
|
|
|
|
|
if (optstringcsg) delete optstringcsg;
|
|
|
|
optstringcsg = NULL;
|
|
|
|
if (optstring) delete optstring;
|
|
|
|
optstring = NULL;
|
|
|
|
|
|
|
|
if (argc == 2)
|
|
|
|
{
|
|
|
|
perfstepsstart = 1;
|
|
|
|
perfstepsend = MeshingVal(argv[1]);
|
|
|
|
}
|
|
|
|
else if (argc == 3)
|
|
|
|
{
|
|
|
|
perfstepsstart = MeshingVal(argv[1]);
|
|
|
|
perfstepsend = MeshingVal(argv[2]);
|
|
|
|
}
|
|
|
|
else if (argc == 4)
|
|
|
|
{
|
|
|
|
perfstepsstart = MeshingVal(argv[1]);
|
|
|
|
perfstepsend = MeshingVal(argv[2]);
|
|
|
|
optstring = new char[strlen(argv[3])+1];
|
|
|
|
strcpy(optstring, argv[3]);
|
|
|
|
optstringcsg = new char[strlen(argv[3])+1];
|
|
|
|
strcpy(optstringcsg, argv[3]);
|
|
|
|
}
|
|
|
|
|
|
|
|
RunParallel (MeshingDummy, NULL);
|
|
|
|
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int Ng_StopMeshing (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
|
|
|
multithread.terminate = 1;
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Ng_MeshInfo (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
2014-09-08 21:21:09 +06:00
|
|
|
if (!mesh)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_needsmesh, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
ostringstream str;
|
|
|
|
|
|
|
|
if (argc >= 2 && strcmp (argv[1], "dim") == 0)
|
|
|
|
str << mesh->GetDimension();
|
|
|
|
else if (argc >= 2 && strcmp (argv[1], "np") == 0)
|
|
|
|
str << mesh->GetNP();
|
|
|
|
else if (argc >= 2 && strcmp (argv[1], "ne") == 0)
|
|
|
|
str << mesh->GetNE();
|
|
|
|
else if (argc >= 2 && strcmp (argv[1], "nse") == 0)
|
|
|
|
str << mesh->GetNSE();
|
|
|
|
else if (argc >= 2 && strcmp (argv[1], "nseg") == 0)
|
|
|
|
str << mesh->GetNSeg();
|
|
|
|
else if (argc >= 2 && strcmp (argv[1], "bbox") == 0)
|
|
|
|
{
|
|
|
|
Point3d pmin, pmax;
|
|
|
|
mesh->GetBox (pmin, pmax);
|
|
|
|
str << pmin.X() << " " << pmax.X() << " "
|
|
|
|
<< pmin.Y() << " " << pmax.Y() << " "
|
|
|
|
<< pmin.Z() << " " << pmax.Z() << endl;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cout << "argv[1] = " << argv[1] << endl;
|
|
|
|
Tcl_SetResult (interp, (char*)"Ng_MeshInfo requires an argument out of \n dim np ne", TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
Tcl_SetResult (interp, (char*)str.str().c_str(), TCL_VOLATILE);
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Ng_MeshQuality (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
2014-09-08 21:21:09 +06:00
|
|
|
if (!mesh)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_needsmesh, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
if (multithread.running)
|
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_jobrunning, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
double angles[4];
|
|
|
|
char buf[10];
|
|
|
|
|
2014-09-08 21:21:09 +06:00
|
|
|
if (mesh)
|
2009-01-13 04:40:13 +05:00
|
|
|
mesh->CalcMinMaxAngle(mparam.badellimit, angles);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
angles[0] = angles[1] = angles[2] = angles[3] = 0;
|
|
|
|
}
|
|
|
|
sprintf (buf, "%5.1lf", angles[0]);
|
|
|
|
Tcl_SetVar (interp, argv[1], buf, 0);
|
|
|
|
sprintf (buf, "%5.1lf", angles[1]);
|
|
|
|
Tcl_SetVar (interp, argv[2], buf, 0);
|
|
|
|
sprintf (buf, "%5.1lf", angles[2]);
|
|
|
|
Tcl_SetVar (interp, argv[3], buf, 0);
|
|
|
|
sprintf (buf, "%5.1lf", angles[3]);
|
|
|
|
Tcl_SetVar (interp, argv[4], buf, 0);
|
|
|
|
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Ng_CheckSurfaceMesh (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
2014-09-08 21:21:09 +06:00
|
|
|
if (!mesh)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_needsmesh, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
if (multithread.running)
|
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_jobrunning, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
mesh->FindOpenElements();
|
|
|
|
if (mesh->CheckConsistentBoundary())
|
|
|
|
{
|
|
|
|
PrintMessage (1, "surface mesh not consistent, trying orientation");
|
|
|
|
mesh->SurfaceMeshOrientation();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
PrintMessage (1, "surface mesh consistent");
|
|
|
|
}
|
|
|
|
|
|
|
|
mesh->CheckOverlappingBoundary();
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Ng_CheckVolumeMesh (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
2014-09-08 21:21:09 +06:00
|
|
|
if (!mesh)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_needsmesh, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
if (multithread.running)
|
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_jobrunning, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
mesh->CheckVolumeMesh();
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int Ng_DeleteVolMesh (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
2014-09-08 21:21:09 +06:00
|
|
|
if (mesh)
|
2009-01-13 04:40:13 +05:00
|
|
|
mesh->ClearVolumeElements();
|
|
|
|
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int Ng_SplitSeparatedFaces (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
2014-09-08 21:21:09 +06:00
|
|
|
if (mesh)
|
2009-01-13 04:40:13 +05:00
|
|
|
mesh->SplitSeparatedFaces ();
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int Ng_RestrictH (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
2014-09-08 21:21:09 +06:00
|
|
|
if (!mesh)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_needsmesh, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
if (multithread.running)
|
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_jobrunning, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argc != 3)
|
|
|
|
return TCL_OK;
|
2014-09-08 21:21:09 +06:00
|
|
|
if (!mesh)
|
2009-01-13 04:40:13 +05:00
|
|
|
return TCL_OK;
|
|
|
|
|
|
|
|
|
|
|
|
double loch = atof (argv[2]);
|
|
|
|
if (strcmp (argv[1], "face") == 0)
|
|
|
|
{
|
|
|
|
cout << "Restrict h at face to " << loch << endl;
|
|
|
|
mesh -> RestrictLocalH (RESTRICTH_FACE, vsmesh.SelectedFace(), loch);
|
|
|
|
}
|
|
|
|
if (strcmp (argv[1], "edge") == 0)
|
|
|
|
{
|
|
|
|
cout << "Restrict h at edge to " << loch << endl;
|
|
|
|
mesh -> RestrictLocalH (RESTRICTH_EDGE, vsmesh.SelectedEdge(), loch);
|
|
|
|
}
|
|
|
|
if (strcmp (argv[1], "point") == 0)
|
|
|
|
{
|
|
|
|
cout << "Restrict h at point to " << loch << endl;
|
|
|
|
mesh -> RestrictLocalH (RESTRICTH_POINT, vsmesh.SelectedPoint(), loch);
|
|
|
|
}
|
|
|
|
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int Ng_Anisotropy (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
2014-09-08 21:21:09 +06:00
|
|
|
if (!mesh)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_needsmesh, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
if (multithread.running)
|
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_jobrunning, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argc != 2)
|
|
|
|
return TCL_OK;
|
2014-09-08 21:21:09 +06:00
|
|
|
if (!mesh)
|
2009-01-13 04:40:13 +05:00
|
|
|
return TCL_OK;
|
|
|
|
|
|
|
|
if (strcmp (argv[1], "edge") == 0)
|
|
|
|
{
|
|
|
|
int edgenr = vsmesh.SelectedEdge();
|
|
|
|
for (int i = 1; i <= mesh->GetNSeg(); i++)
|
|
|
|
{
|
|
|
|
Segment & seg = mesh->LineSegment(i);
|
|
|
|
if (seg.edgenr == edgenr)
|
|
|
|
{
|
|
|
|
seg.singedge_left = 1 - seg.singedge_left;
|
|
|
|
seg.singedge_right = 1 - seg.singedge_right;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
BisectionOptions biopt;
|
|
|
|
|
|
|
|
void * BisectDummy (void *)
|
|
|
|
{
|
2015-08-08 22:10:48 +05:00
|
|
|
const Refinement & ref = mesh->GetGeometry()->GetRefinement();
|
2009-01-13 04:40:13 +05:00
|
|
|
MeshOptimize2d * opt = NULL;
|
2011-01-11 01:18:01 +05:00
|
|
|
|
|
|
|
/*
|
2009-01-13 04:40:13 +05:00
|
|
|
#ifdef ACIS
|
2011-01-11 01:18:01 +05:00
|
|
|
if (acisgeometry)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2011-01-11 01:18:01 +05:00
|
|
|
// ref = new ACISRefinementSurfaces(*acisgeometry);
|
2009-01-13 04:40:13 +05:00
|
|
|
opt = new ACISMeshOptimize2dSurfaces(*acisgeometry);
|
|
|
|
ref->Set2dOptimizer(opt);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ref = new RefinementSurfaces(*geometry);
|
|
|
|
opt = new MeshOptimize2dSurfaces(*geometry);
|
|
|
|
ref->Set2dOptimizer(opt);
|
|
|
|
}
|
2011-01-11 01:18:01 +05:00
|
|
|
*/
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
if(!mesh->LocalHFunctionGenerated())
|
2011-07-25 14:40:23 +06:00
|
|
|
mesh->CalcLocalH(mparam.grading);
|
2009-01-31 03:12:17 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
mesh->LocalHFunction().SetGrading (mparam.grading);
|
2011-01-11 01:18:01 +05:00
|
|
|
ref . Bisect (*mesh, biopt);
|
2009-01-13 04:40:13 +05:00
|
|
|
mesh -> UpdateTopology();
|
2011-01-11 01:18:01 +05:00
|
|
|
mesh -> GetCurvedElements().BuildCurvedElements (&ref, mparam.elementorder);
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
multithread.running = 0;
|
2011-01-11 01:18:01 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
delete opt;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int Ng_Bisect (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
2014-09-08 21:21:09 +06:00
|
|
|
if (!mesh)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_needsmesh, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
if (multithread.running)
|
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_jobrunning, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (multithread.running)
|
|
|
|
{
|
|
|
|
cout << "Thread alrad running" << endl;
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
multithread.running = 1;
|
|
|
|
|
|
|
|
biopt.outfilename = NULL; // "ngfepp.vol";
|
|
|
|
biopt.femcode = "fepp";
|
|
|
|
biopt.refinementfilename = NULL;
|
|
|
|
|
|
|
|
if (argc >= 2)
|
|
|
|
biopt.refinementfilename = argv[1];
|
|
|
|
|
|
|
|
|
|
|
|
BisectDummy (0);
|
|
|
|
|
|
|
|
/*
|
|
|
|
extern void BisectTets (Mesh &, const CSGeometry *);
|
|
|
|
BisectTets (*mesh, geometry);
|
|
|
|
*/
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// int Ng_BisectCopyMesh (ClientData clientData,
|
|
|
|
// Tcl_Interp * interp,
|
|
|
|
// int argc, tcl_const char *argv[])
|
|
|
|
// {
|
2014-09-08 21:21:09 +06:00
|
|
|
// if (!mesh)
|
2009-01-13 04:40:13 +05:00
|
|
|
// {
|
|
|
|
// Tcl_SetResult (interp, err_needsmesh, TCL_STATIC);
|
|
|
|
// return TCL_ERROR;
|
|
|
|
// }
|
|
|
|
// if (multithread.running)
|
|
|
|
// {
|
|
|
|
// Tcl_SetResult (interp, err_jobrunning, TCL_STATIC);
|
|
|
|
// return TCL_ERROR;
|
|
|
|
// }
|
|
|
|
|
|
|
|
// BisectTetsCopyMesh (*mesh, geometry.Ptr(), biopt);
|
|
|
|
// return TCL_OK;
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int Ng_Split2Tets (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
2014-09-08 21:21:09 +06:00
|
|
|
if (!mesh)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_needsmesh, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
if (multithread.running)
|
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_jobrunning, TCL_STATIC);
|
2011-01-11 01:18:01 +05:00
|
|
|
return TCL_ERROR;
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
mesh->Split2Tets ();
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
return TCL_OK;
|
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-08-30 18:36:11 +06:00
|
|
|
|
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
extern int Ng_MeshDoctor (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[]);
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SYMBOLTABLE<VisualScene*> & GetVisualizationScenes ()
|
|
|
|
{
|
|
|
|
static SYMBOLTABLE<VisualScene*> vss;
|
|
|
|
return vss;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AddVisualizationScene (const string & name,
|
|
|
|
VisualScene * avs)
|
|
|
|
{
|
|
|
|
GetVisualizationScenes().Set (name.c_str(), avs);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SetVisualScene (Tcl_Interp * interp)
|
|
|
|
{
|
|
|
|
const char * vismode = vispar.selectvisual;
|
|
|
|
// Tcl_GetVar (interp, "selectvisual", 0);
|
|
|
|
vs = &vscross;
|
|
|
|
if (GetVisualizationScenes().Used(vismode))
|
|
|
|
{
|
|
|
|
vs = GetVisualizationScenes().Get(vismode);
|
|
|
|
}
|
|
|
|
else if (vismode)
|
|
|
|
{
|
|
|
|
if (strcmp (vismode, "geometry") == 0)
|
|
|
|
{
|
2011-01-11 01:18:01 +05:00
|
|
|
for (int i = 0; i < geometryregister.Size(); i++)
|
|
|
|
{
|
2014-09-08 21:21:09 +06:00
|
|
|
VisualScene * hvs = geometryregister[i]->GetVisualScene (ng_geometry.get());
|
2011-01-11 01:18:01 +05:00
|
|
|
if (hvs)
|
|
|
|
{
|
|
|
|
vs = hvs;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
#ifdef ACIS
|
|
|
|
else if (acisgeometry)
|
|
|
|
vs = &vsacisgeom;
|
|
|
|
#endif // ACIS
|
|
|
|
}
|
2011-01-11 01:18:01 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
if (strcmp (vismode, "mesh") == 0)
|
|
|
|
{
|
|
|
|
if (!meshdoctor.active)
|
|
|
|
vs = &vsmesh;
|
|
|
|
else
|
|
|
|
vs = &vsmeshdoc;
|
|
|
|
}
|
2011-01-11 01:18:01 +05:00
|
|
|
|
|
|
|
// if (strcmp (vismode, "surfmeshing") == 0) vs = &vssurfacemeshing;
|
2009-01-13 04:40:13 +05:00
|
|
|
if (strcmp (vismode, "specpoints") == 0) vs = &vsspecpoints;
|
2017-08-28 21:19:20 +05:00
|
|
|
if (strcmp (vismode, "solution") == 0) vs = &netgen::GetVSSolution();
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-20 14:08:01 +05:00
|
|
|
|
|
|
|
|
2016-02-08 19:53:16 +05:00
|
|
|
Font * font = nullptr;
|
2011-02-28 18:34:54 +05:00
|
|
|
Togl * togl = NULL;
|
|
|
|
|
2016-02-08 19:53:16 +05:00
|
|
|
void MyOpenGLText_GUI (const char * text)
|
2009-09-09 03:54:32 +06:00
|
|
|
{
|
2016-02-08 19:53:16 +05:00
|
|
|
glListBase (font->getDisplayListsBase());
|
|
|
|
glCallLists (GLsizei(strlen(text)), GL_UNSIGNED_BYTE, text);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
Ng_ToglVersion(ClientData clientData, Tcl_Interp *interp, int objc, Tcl_Obj *const *objv)
|
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, (char*)"2", TCL_STATIC);
|
|
|
|
return TCL_OK;
|
2009-09-09 03:54:32 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
init(ClientData clientData, Tcl_Interp *interp, int objc, Tcl_Obj *const *objv)
|
|
|
|
{
|
2016-02-08 19:53:16 +05:00
|
|
|
// cout << "call init" << endl;
|
2009-09-09 04:14:23 +06:00
|
|
|
|
|
|
|
|
2009-09-09 03:54:32 +06:00
|
|
|
if (Togl_GetToglFromObj(interp, objv[1], &togl) != TCL_OK)
|
|
|
|
return TCL_ERROR;
|
|
|
|
|
2016-02-08 19:53:16 +05:00
|
|
|
// possible values: 12,14,16,18,20,22,24,28,32
|
|
|
|
font = selectFont(18);
|
2009-09-09 03:54:32 +06:00
|
|
|
|
2016-12-02 16:27:26 +05:00
|
|
|
LoadOpenGLFunctionPointers();
|
|
|
|
|
2009-09-09 03:54:32 +06:00
|
|
|
glMatrixMode(GL_PROJECTION);
|
|
|
|
glLoadIdentity();
|
|
|
|
glMatrixMode(GL_MODELVIEW);
|
|
|
|
|
|
|
|
SetVisualScene (Togl_Interp(togl));
|
|
|
|
vs->DrawScene();
|
2016-02-08 19:53:16 +05:00
|
|
|
Set_OpenGLText_Callback (&MyOpenGLText_GUI);
|
2009-09-09 03:54:32 +06:00
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
zap(ClientData clientData, Tcl_Interp *interp, int objc, Tcl_Obj *const *objv)
|
|
|
|
{
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
draw(ClientData clientData, Tcl_Interp *interp, int objc, Tcl_Obj *const *objv)
|
|
|
|
{
|
|
|
|
SetVisualScene (interp);
|
|
|
|
|
|
|
|
glPushMatrix();
|
2011-02-28 18:34:54 +05:00
|
|
|
|
2009-09-09 03:54:32 +06:00
|
|
|
glLoadIdentity();
|
|
|
|
vs->DrawScene();
|
|
|
|
Togl_SwapBuffers(togl);
|
2011-02-28 18:34:54 +05:00
|
|
|
|
2009-09-09 03:54:32 +06:00
|
|
|
glPopMatrix();
|
|
|
|
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
reshape(ClientData clientData, Tcl_Interp *interp, int objc, Tcl_Obj *const *objv)
|
|
|
|
{
|
|
|
|
int w = Togl_Width (togl);
|
|
|
|
int h = Togl_Height (togl);
|
|
|
|
|
2016-02-08 19:53:16 +05:00
|
|
|
// glViewport(0, 0, w, h);
|
|
|
|
int res[4];
|
|
|
|
glGetIntegerv(GL_VIEWPORT, res);
|
|
|
|
// cout << "w = " << w << " h = " << h << endl;
|
|
|
|
w = res[2];
|
|
|
|
h = res[3];
|
|
|
|
/*
|
|
|
|
cout << "viewport: "
|
|
|
|
<< res[0] << " "
|
|
|
|
<< res[1] << " "
|
|
|
|
<< res[2] << " "
|
|
|
|
<< res[3] << endl;
|
|
|
|
*/
|
|
|
|
// change font size according to window width
|
|
|
|
font = selectFont(w/80);
|
2009-09-09 03:54:32 +06:00
|
|
|
|
|
|
|
glMatrixMode(GL_PROJECTION);
|
|
|
|
glLoadIdentity();
|
2011-01-11 01:18:01 +05:00
|
|
|
|
|
|
|
// OpenGL near and far clipping planes
|
|
|
|
double pnear = 0.1;
|
|
|
|
double pfar = 10;
|
|
|
|
|
2009-09-09 03:54:32 +06:00
|
|
|
gluPerspective(20.0f, double(w) / h, pnear, pfar);
|
|
|
|
glMatrixMode(GL_MODELVIEW);
|
|
|
|
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-05-22 20:24:17 +05:00
|
|
|
static int Ng_SnapShot(ClientData clientData, Tcl_Interp *interp, int argc, Tcl_Obj *const *argv)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2017-05-22 20:24:17 +05:00
|
|
|
struct Togl *togl;
|
|
|
|
if (Togl_GetToglFromObj(interp, argv[1], &togl) != TCL_OK)
|
|
|
|
return TCL_ERROR;
|
|
|
|
const char * filename = Tcl_GetString(argv[2]);
|
2009-01-31 03:12:17 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
int len = strlen(filename);
|
|
|
|
|
|
|
|
int w = Togl_Width (togl);
|
|
|
|
int h = Togl_Height (togl);
|
|
|
|
|
2017-05-22 20:24:17 +05:00
|
|
|
Array<char> buffer(w*h*3);
|
|
|
|
glReadPixels (0, 0, w, h, GL_RGB, GL_UNSIGNED_BYTE, &buffer[0]);
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2017-05-22 20:24:17 +05:00
|
|
|
#ifdef JPEGLIB
|
2009-01-13 04:40:13 +05:00
|
|
|
if (strcmp ("jpg", filename+len-3) == 0)
|
|
|
|
{
|
|
|
|
cout << "Snapshot to file '" << filename << "'" << endl;
|
|
|
|
|
2009-01-31 03:12:17 +05:00
|
|
|
struct jpeg_compress_struct cinfo;
|
2009-01-13 04:40:13 +05:00
|
|
|
struct jpeg_error_mgr jerr;
|
|
|
|
FILE *outfile = fopen(filename,"wb");
|
|
|
|
JSAMPROW row_pointer[1];
|
2014-04-28 13:10:21 +06:00
|
|
|
int row_stride, quality = 100; // 1...100
|
2009-01-31 03:12:17 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
cinfo.err = jpeg_std_error( &jerr );
|
|
|
|
jpeg_create_compress( &cinfo );
|
|
|
|
jpeg_stdio_dest( &cinfo, outfile );
|
2009-01-31 03:12:17 +05:00
|
|
|
|
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
cinfo.image_width = w;
|
|
|
|
cinfo.image_height = h;
|
|
|
|
cinfo.input_components = 3;
|
|
|
|
cinfo.in_color_space = JCS_RGB;
|
2009-01-31 03:12:17 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
jpeg_set_defaults( &cinfo );
|
2014-04-28 13:10:21 +06:00
|
|
|
jpeg_set_quality( &cinfo, quality, FALSE ); // TRUE
|
2009-01-13 04:40:13 +05:00
|
|
|
jpeg_start_compress( &cinfo, TRUE );
|
2009-01-31 03:12:17 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
row_stride = 3*w;
|
|
|
|
while( cinfo.next_scanline < cinfo.image_height ) {
|
|
|
|
row_pointer[0] = &buffer[ (h-1-cinfo.next_scanline) * row_stride ];
|
|
|
|
(void)jpeg_write_scanlines( &cinfo, row_pointer, 1 );
|
|
|
|
}
|
2009-01-31 03:12:17 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
jpeg_finish_compress( &cinfo );
|
|
|
|
fclose( outfile );
|
2009-01-31 03:12:17 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
jpeg_destroy_compress( &cinfo );
|
2009-01-31 03:12:17 +05:00
|
|
|
fprintf( stdout, "done [ok]\n" );
|
2009-01-13 04:40:13 +05:00
|
|
|
fflush( stdout );
|
2009-01-31 03:12:17 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
return TCL_OK;
|
|
|
|
}
|
2017-05-22 20:24:17 +05:00
|
|
|
#endif // JPEGLIB
|
|
|
|
{
|
|
|
|
char str[250];
|
|
|
|
char filename2[250];
|
|
|
|
int len = strlen(filename);
|
|
|
|
strcpy (filename2, filename);
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2017-05-22 20:24:17 +05:00
|
|
|
filename2[len-3] = 'p';
|
|
|
|
filename2[len-2] = 'p';
|
|
|
|
filename2[len-1] = 'm';
|
|
|
|
filename2[len] = 0;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2017-05-22 20:24:17 +05:00
|
|
|
cout << "Snapshot to file '" << filename << endl;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2017-05-22 20:24:17 +05:00
|
|
|
int w = Togl_Width (togl);
|
|
|
|
w = int((w + 1) / 4) * 4 + 4;
|
|
|
|
int h = Togl_Height (togl);
|
2017-02-03 19:28:59 +05:00
|
|
|
|
2017-05-22 20:24:17 +05:00
|
|
|
ofstream outfile(filename2);
|
|
|
|
outfile << "P6" << endl
|
|
|
|
<< "# CREATOR: Netgen" << endl
|
|
|
|
<< w << " " << h << endl
|
|
|
|
<< "255" << endl;
|
|
|
|
for (int i = 0; i < h; i++)
|
|
|
|
for (int j = 0; j < w; j++)
|
|
|
|
for (int k = 0; k < 3; k++)
|
|
|
|
outfile.put (buffer[k+3*j+3*w*(h-i-1)]);
|
|
|
|
outfile << flush;
|
|
|
|
|
|
|
|
// convert image file (Unix/Linux only):
|
|
|
|
sprintf(str,"convert -quality 100 %s %s", filename2, filename);
|
|
|
|
|
|
|
|
int err = system(str);
|
|
|
|
if (err != 0)
|
|
|
|
{
|
|
|
|
Tcl_SetResult (Togl_Interp(togl), (char*)"Cannot convert image file", TCL_VOLATILE);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
sprintf(str,"rm %s", filename2);
|
2017-02-03 19:28:59 +05:00
|
|
|
|
2017-05-22 20:24:17 +05:00
|
|
|
err = system(str);
|
|
|
|
if (err != 0)
|
|
|
|
{
|
|
|
|
Tcl_SetResult (Togl_Interp(togl), (char*)"Cannot delete temporary file", TCL_VOLATILE);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
2017-02-03 19:28:59 +05:00
|
|
|
|
2017-05-22 20:24:17 +05:00
|
|
|
}
|
2017-02-03 19:28:59 +05:00
|
|
|
|
2017-05-22 20:24:17 +05:00
|
|
|
{
|
|
|
|
cout << "Snapshot to " << filename << " not supported" << endl;
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2009-04-05 21:10:33 +06:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef FFMPEG
|
2017-02-03 19:28:59 +05:00
|
|
|
static int Ng_VideoClip(ClientData clientData, Tcl_Interp *interp, int argc, Tcl_Obj *const *argv)
|
|
|
|
{
|
|
|
|
static Mpeg mpeg;
|
|
|
|
struct Togl *togl;
|
|
|
|
if (Togl_GetToglFromObj(interp, argv[1], &togl) != TCL_OK)
|
|
|
|
return TCL_ERROR;
|
2009-04-07 19:15:21 +06:00
|
|
|
|
2017-02-03 19:28:59 +05:00
|
|
|
if (strcmp (Tcl_GetString(argv[2]), "init") == 0)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
// Can't initialize when running:
|
|
|
|
//-------------------------------
|
2017-02-03 19:28:59 +05:00
|
|
|
if( mpeg.IsStarted() ) {
|
2009-01-13 04:40:13 +05:00
|
|
|
cout << "cannot initialize: already running" << endl;
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
2017-02-03 19:28:59 +05:00
|
|
|
const char * filename = Tcl_GetString(argv[3]);
|
|
|
|
mpeg.Start(filename);
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
2009-04-05 21:10:33 +06:00
|
|
|
|
|
|
|
|
2017-02-03 19:28:59 +05:00
|
|
|
else if (strcmp (Tcl_GetString(argv[2]), "addframe") == 0)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2017-02-03 19:28:59 +05:00
|
|
|
if(mpeg.AddFrame())
|
2009-04-05 21:10:33 +06:00
|
|
|
return TCL_ERROR;
|
2009-01-31 03:12:17 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-05 21:10:33 +06:00
|
|
|
|
2017-02-03 19:28:59 +05:00
|
|
|
else if (strcmp (Tcl_GetString(argv[2]), "finalize") == 0)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2017-02-03 19:28:59 +05:00
|
|
|
mpeg.Stop();
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
2011-01-11 01:18:01 +05:00
|
|
|
return TCL_OK;
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
|
|
|
|
2017-02-03 19:28:59 +05:00
|
|
|
#else // FFMPEG
|
|
|
|
static int Ng_VideoClip(ClientData clientData, Tcl_Interp *interp, int argc, Tcl_Obj *const *argv)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2010-04-22 17:44:07 +06:00
|
|
|
Tcl_SetResult (Togl_Interp(togl), (char*)"Video not available, Netgen was not compiled with FFMPEG library", TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
2017-02-03 19:28:59 +05:00
|
|
|
#endif // FFMPEG
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int Ng_MouseMove (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
|
|
|
int oldx, oldy;
|
|
|
|
int newx, newy;
|
|
|
|
|
|
|
|
oldx = atoi (argv[1]);
|
|
|
|
oldy = atoi (argv[2]);
|
|
|
|
newx = atoi (argv[3]);
|
|
|
|
newy = atoi (argv[4]);
|
|
|
|
|
|
|
|
SetVisualScene(interp);
|
|
|
|
vs->MouseMove (oldx, oldy, newx, newy, argv[5][0]);
|
|
|
|
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int Ng_MouseDblClick (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
|
|
|
int px, py;
|
|
|
|
|
|
|
|
px = atoi (argv[1]);
|
|
|
|
py = atoi (argv[2]);
|
|
|
|
|
|
|
|
SetVisualScene(interp);
|
|
|
|
vs->MouseDblClick (px, py);
|
|
|
|
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int Ng_ZoomAll (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
2011-01-11 01:18:01 +05:00
|
|
|
SetVisualScene(interp);
|
|
|
|
vs->BuildScene (1);
|
2009-01-31 03:12:17 +05:00
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
return TCL_OK;
|
|
|
|
}
|
2009-01-31 03:12:17 +05:00
|
|
|
|
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
int Ng_Center (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
|
|
|
SetVisualScene(interp);
|
|
|
|
vs->BuildScene (2);
|
2009-01-31 03:12:17 +05:00
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
return TCL_OK;
|
|
|
|
}
|
2009-01-31 03:12:17 +05:00
|
|
|
|
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
int Ng_StandardRotation (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
|
|
|
SetVisualScene(interp);
|
|
|
|
vs->StandardRotation (argv[1]);
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
return TCL_OK;
|
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
int Ng_ArbitraryRotation (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
|
|
|
SetVisualScene(interp);
|
|
|
|
Array<double> alpha;
|
|
|
|
Array<Vec3d> vec;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
for(int i=1; i<argc; i+=4)
|
|
|
|
{
|
|
|
|
alpha.Append(atof(argv[i]));
|
|
|
|
vec.Append(Vec3d(atof(argv[i+1]),atof(argv[i+2]),atof(argv[i+3])));
|
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
vs->ArbitraryRotation (alpha,vec);
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
return TCL_OK;
|
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
|
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
int Ng_Metis (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
2015-02-06 03:53:17 +05:00
|
|
|
#ifdef PARALLEL
|
2011-01-11 01:18:01 +05:00
|
|
|
if (!mesh)
|
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, err_needsmesh, TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2015-02-06 03:53:17 +05:00
|
|
|
int nparts = atoi (argv[1]);
|
|
|
|
ntasks = nparts+1;
|
|
|
|
cout << "calling metis ... " << flush;
|
|
|
|
mesh->ParallelMetis();
|
|
|
|
cout << "done" << endl;
|
|
|
|
ntasks = 1;
|
|
|
|
for (ElementIndex ei = 0; ei < mesh->GetNE(); ei++)
|
|
|
|
(*mesh)[ei].SetIndex ( (*mesh)[ei].GetPartition() );
|
|
|
|
|
|
|
|
return TCL_OK;
|
|
|
|
|
|
|
|
#else
|
|
|
|
Tcl_SetResult (interp, (char*)"metis not available", TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef OLDOLD
|
2011-01-11 01:18:01 +05:00
|
|
|
// METIS Partitioning
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
if (mesh->GetDimension() == 3)
|
|
|
|
{
|
|
|
|
using namespace metis;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
int ne = mesh->GetNE();
|
|
|
|
if (ne < 3)
|
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, "This operation needs a volume mesh", TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
2009-01-31 03:12:17 +05:00
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
int nn = mesh->GetNP();
|
2009-01-31 03:12:17 +05:00
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
ELEMENT_TYPE elementtype = mesh->VolumeElement(1).GetType();
|
|
|
|
int npe = mesh->VolumeElement(1).GetNP();
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
for (int i = 2; i<=ne; i++)
|
|
|
|
if (mesh->VolumeElement(i).GetType() != elementtype)
|
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, "Works in 3D only uniformal tet or hex meshes", TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
idxtype *elmnts;
|
|
|
|
elmnts = new idxtype[ne*npe];
|
2009-01-31 03:12:17 +05:00
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
int etype;
|
|
|
|
if (elementtype == TET)
|
|
|
|
etype = 2;
|
|
|
|
else if (elementtype == HEX)
|
|
|
|
etype = 3;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Tcl_SetResult (interp, "Works in 3D only uniformal tet or hex meshes", TCL_STATIC);
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
2009-01-31 03:12:17 +05:00
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
for (int i=1; i<=ne; i++)
|
|
|
|
for (int j=1; j<=npe; j++)
|
|
|
|
elmnts[(i-1)*npe+(j-1)] = mesh->VolumeElement(i).PNum(j)-1;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
int numflag = 0;
|
|
|
|
int nparts = atoi (argv[1]);
|
|
|
|
int edgecut;
|
|
|
|
idxtype *epart, *npart;
|
|
|
|
epart = new idxtype[ne];
|
|
|
|
npart = new idxtype[nn];
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
cout << "Starting Metis (" << ne << " Elements, " << nn << " Nodes, " << nparts << " Partitions) ... " << flush;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
METIS_PartMeshNodal (&ne, &nn, elmnts, &etype, &numflag, &nparts,
|
|
|
|
&edgecut, epart, npart);
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
cout << "done" << endl;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
cout << "edge-cut: " << edgecut << ", balance: " << ComputeElementBalance(ne, nparts, epart) << endl;
|
|
|
|
|
|
|
|
for (int i=1; i<=ne; i++)
|
|
|
|
mesh->VolumeElement(i).SetPartition(epart[i-1]);
|
|
|
|
|
|
|
|
mesh->SetNextTimeStamp();
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
#endif
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
void SelectFaceInOCCDialogTree (int facenr)
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
2011-01-11 01:18:01 +05:00
|
|
|
char script[50];
|
|
|
|
sprintf (script, "selectentity {Face %i}", facenr);
|
|
|
|
Tcl_GlobalEval (tcl_interp, script);
|
2009-01-13 04:40:13 +05:00
|
|
|
}
|
2011-01-11 01:18:01 +05:00
|
|
|
|
|
|
|
|
2009-01-31 03:12:17 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
|
|
|
|
#ifndef ACIS
|
|
|
|
int Ng_ACISCommand (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
2009-01-31 03:12:17 +05:00
|
|
|
int argc, tcl_const char *argv[])
|
2009-01-13 04:40:13 +05:00
|
|
|
{
|
|
|
|
if (argc >= 2)
|
|
|
|
{
|
|
|
|
if (strcmp (argv[1], "isACISavailable") == 0)
|
|
|
|
{
|
2009-01-20 14:08:01 +05:00
|
|
|
Tcl_SetResult (interp, (char*)"no", TCL_STATIC);
|
2009-01-13 04:40:13 +05:00
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
}
|
2009-01-20 14:08:01 +05:00
|
|
|
Tcl_SetResult (interp, (char*)"undefined ACiS command", TCL_STATIC);
|
2009-01-13 04:40:13 +05:00
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2011-03-07 21:38:43 +05:00
|
|
|
// from ng_interface
|
|
|
|
void Ng_SetVisualizationParameter (const char * name, const char * value)
|
|
|
|
{
|
|
|
|
// #ifdef OPENGL
|
|
|
|
// #ifndef NOTCL
|
|
|
|
char buf[100];
|
|
|
|
sprintf (buf, "visoptions.%s", name);
|
|
|
|
if (printmessage_importance>0)
|
|
|
|
{
|
|
|
|
cout << "name = " << name << ", value = " << value << endl;
|
|
|
|
cout << "set tcl-variable " << buf << " to " << value << endl;
|
|
|
|
}
|
|
|
|
Tcl_SetVar (tcl_interp, buf, const_cast<char*> (value), 0);
|
|
|
|
Tcl_Eval (tcl_interp, "Ng_Vis_Set parameters;");
|
|
|
|
// #endif
|
|
|
|
// #endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
using namespace netgen;
|
|
|
|
|
2012-08-30 19:40:17 +06:00
|
|
|
void Ng_SetMouseEventHandler (netgen::MouseEventHandler * handler)
|
|
|
|
{
|
|
|
|
vsmesh.SetMouseEventHandler (handler);
|
|
|
|
}
|
|
|
|
|
2014-02-24 01:31:40 +06:00
|
|
|
void Ng_SetUserVisualizationObject (netgen::UserVisualizationObject * vis)
|
|
|
|
{
|
2017-08-28 21:19:20 +05:00
|
|
|
netgen::GetVSSolution().AddUserVisualizationObject (vis);
|
2014-02-24 01:31:40 +06:00
|
|
|
}
|
2012-08-30 19:40:17 +06:00
|
|
|
|
2011-03-07 21:38:43 +05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace netgen
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
int firsttime = 1;
|
|
|
|
int animcnt = 0;
|
|
|
|
void PlayAnimFile(const char* name, int speed, int maxcnt)
|
|
|
|
{
|
|
|
|
//extern Mesh * mesh;
|
|
|
|
|
|
|
|
/*
|
2014-09-08 21:21:09 +06:00
|
|
|
if (mesh) mesh->DeleteMesh();
|
|
|
|
if (!mesh) mesh = new Mesh();
|
2011-03-07 21:38:43 +05:00
|
|
|
*/
|
2014-09-08 21:21:09 +06:00
|
|
|
mesh = make_shared<Mesh>();
|
2011-03-07 21:38:43 +05:00
|
|
|
|
|
|
|
int ne, np, i;
|
|
|
|
|
|
|
|
char str[80];
|
|
|
|
char str2[80];
|
|
|
|
|
|
|
|
//int tend = 5000;
|
|
|
|
// for (ti = 1; ti <= tend; ti++)
|
|
|
|
//{
|
|
|
|
int rti = (animcnt%(maxcnt-1)) + 1;
|
|
|
|
animcnt+=speed;
|
|
|
|
|
|
|
|
sprintf(str2,"%05i.sol",rti);
|
|
|
|
strcpy(str,"mbssol/");
|
|
|
|
strcat(str,name);
|
|
|
|
strcat(str,str2);
|
|
|
|
|
|
|
|
if (printmessage_importance>0)
|
|
|
|
cout << "read file '" << str << "'" << endl;
|
|
|
|
|
|
|
|
ifstream infile(str);
|
|
|
|
infile >> ne;
|
|
|
|
for (i = 1; i <= ne; i++)
|
|
|
|
{
|
|
|
|
int j;
|
|
|
|
Element2d tri(TRIG);
|
|
|
|
tri.SetIndex(1); //faceind
|
|
|
|
|
|
|
|
for (j = 1; j <= 3; j++)
|
|
|
|
infile >> tri.PNum(j);
|
|
|
|
|
|
|
|
infile >> np;
|
|
|
|
for (i = 1; i <= np; i++)
|
|
|
|
{
|
|
|
|
Point3d p;
|
|
|
|
infile >> p.X() >> p.Y() >> p.Z();
|
|
|
|
if (firsttime)
|
|
|
|
mesh->AddPoint (p);
|
|
|
|
else
|
|
|
|
mesh->Point(i) = Point<3> (p);
|
|
|
|
}
|
|
|
|
|
|
|
|
//firsttime = 0;
|
|
|
|
Ng_Redraw();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
|
|
|
|
int Ng_SetVisParameters (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
2009-01-31 03:12:17 +05:00
|
|
|
{
|
2009-01-13 04:40:13 +05:00
|
|
|
if (!Tcl_GetVar (interp, "::viewoptions.light.amb", TCL_GLOBAL_ONLY))
|
|
|
|
return TCL_ERROR;
|
|
|
|
|
|
|
|
vispar.lightamb = atof (Tcl_GetVar (interp, "::viewoptions.light.amb", TCL_GLOBAL_ONLY));
|
|
|
|
vispar.lightdiff = atof (Tcl_GetVar (interp, "::viewoptions.light.diff", TCL_GLOBAL_ONLY));
|
|
|
|
vispar.lightspec = atof (Tcl_GetVar (interp, "::viewoptions.light.spec", TCL_GLOBAL_ONLY));
|
|
|
|
vispar.shininess = atof (Tcl_GetVar (interp, "::viewoptions.mat.shininess", TCL_GLOBAL_ONLY));
|
|
|
|
vispar.locviewer = atoi (Tcl_GetVar (interp, "::viewoptions.light.locviewer", TCL_GLOBAL_ONLY));
|
|
|
|
vispar.transp = atof (Tcl_GetVar (interp, "::viewoptions.mat.transp", TCL_GLOBAL_ONLY));
|
2014-08-08 21:51:13 +06:00
|
|
|
|
2012-11-05 17:28:58 +06:00
|
|
|
VisualizationParameters::Clipping hclip;
|
|
|
|
hclip.normal.X() = atof (Tcl_GetVar (interp, "::viewoptions.clipping.nx", TCL_GLOBAL_ONLY));
|
|
|
|
hclip.normal.Y() = atof (Tcl_GetVar (interp, "::viewoptions.clipping.ny", TCL_GLOBAL_ONLY));
|
|
|
|
hclip.normal.Z() = atof (Tcl_GetVar (interp, "::viewoptions.clipping.nz", TCL_GLOBAL_ONLY));
|
|
|
|
hclip.dist = atof (Tcl_GetVar (interp, "::viewoptions.clipping.dist", TCL_GLOBAL_ONLY));
|
2013-02-03 20:44:27 +06:00
|
|
|
hclip.dist2 = atof (Tcl_GetVar (interp, "::viewoptions.clipping.dist2", TCL_GLOBAL_ONLY));
|
2012-11-05 17:28:58 +06:00
|
|
|
hclip.enable = atoi (Tcl_GetVar (interp, "::viewoptions.clipping.enable", TCL_GLOBAL_ONLY));
|
2009-01-13 04:40:13 +05:00
|
|
|
vispar.clipdomain =
|
|
|
|
atoi (Tcl_GetVar (interp, "::viewoptions.clipping.onlydomain", TCL_GLOBAL_ONLY));
|
|
|
|
vispar.donotclipdomain =
|
|
|
|
atoi (Tcl_GetVar (interp, "::viewoptions.clipping.notdomain", TCL_GLOBAL_ONLY));
|
|
|
|
|
2012-11-05 17:28:58 +06:00
|
|
|
if ( ! (hclip == vispar.clipping) )
|
2014-08-08 21:51:13 +06:00
|
|
|
{
|
|
|
|
vispar.clipping = hclip;
|
|
|
|
vispar.clipping.timestamp = NextTimeStamp();
|
|
|
|
}
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
vispar.whitebackground = atoi (Tcl_GetVar (interp, "::viewoptions.whitebackground", TCL_GLOBAL_ONLY));
|
|
|
|
vispar.drawcoordinatecross = atoi (Tcl_GetVar (interp, "::viewoptions.drawcoordinatecross", TCL_GLOBAL_ONLY));
|
|
|
|
vispar.drawcolorbar = atoi (Tcl_GetVar (interp, "::viewoptions.drawcolorbar", TCL_GLOBAL_ONLY));
|
|
|
|
vispar.drawnetgenlogo = atoi (Tcl_GetVar (interp, "::viewoptions.drawnetgenlogo", TCL_GLOBAL_ONLY));
|
|
|
|
vispar.stereo = atoi (Tcl_GetVar (interp, "::viewoptions.stereo", TCL_GLOBAL_ONLY));
|
|
|
|
vispar.colormeshsize = atoi (Tcl_GetVar (interp, "::viewoptions.colormeshsize", TCL_GLOBAL_ONLY));
|
|
|
|
VisualScene :: SetBackGroundColor (vispar.whitebackground ? 1 : 0);
|
|
|
|
|
|
|
|
strcpy (vispar.selectvisual, Tcl_GetVar (interp, "::selectvisual", TCL_GLOBAL_ONLY));
|
|
|
|
|
|
|
|
// vispar.showstltrias = atoi (Tcl_GetVar (interp, "::viewoptions.stl.showtrias", TCL_GLOBAL_ONLY));
|
|
|
|
|
|
|
|
vispar.stlshowtrias =
|
|
|
|
atoi (Tcl_GetVar (interp, "::stloptions.showtrias", TCL_GLOBAL_ONLY));
|
|
|
|
vispar.stlshowfilledtrias =
|
|
|
|
atoi (Tcl_GetVar (interp, "::stloptions.showfilledtrias", TCL_GLOBAL_ONLY));
|
|
|
|
vispar.stlshowedges =
|
|
|
|
atoi (Tcl_GetVar (interp, "::stloptions.showedges", TCL_GLOBAL_ONLY));
|
|
|
|
vispar.stlshowmarktrias =
|
|
|
|
atoi (Tcl_GetVar (interp, "::stloptions.showmarktrias", TCL_GLOBAL_ONLY));
|
|
|
|
vispar.stlshowactivechart =
|
|
|
|
atoi (Tcl_GetVar (interp, "::stloptions.showactivechart", TCL_GLOBAL_ONLY));
|
|
|
|
vispar.stlchartnumber =
|
|
|
|
atoi (Tcl_GetVar (interp, "::stloptions.chartnumber", TCL_GLOBAL_ONLY));
|
|
|
|
vispar.stlchartnumberoffset =
|
|
|
|
atoi (Tcl_GetVar (interp, "::stloptions.chartnumberoffset", TCL_GLOBAL_ONLY));
|
|
|
|
|
|
|
|
vispar.occshowsurfaces =
|
2009-01-31 03:12:17 +05:00
|
|
|
atoi (Tcl_GetVar (interp, "::occoptions.showsurfaces", TCL_GLOBAL_ONLY));
|
2009-01-13 04:40:13 +05:00
|
|
|
vispar.occshowedges =
|
2009-01-31 03:12:17 +05:00
|
|
|
atoi (Tcl_GetVar (interp, "::occoptions.showedges", TCL_GLOBAL_ONLY));
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
vispar.drawoutline =
|
|
|
|
atoi (Tcl_GetVar (interp, "::viewoptions.drawoutline", TCL_GLOBAL_ONLY));
|
|
|
|
vispar.drawfilledtrigs =
|
|
|
|
atoi (Tcl_GetVar (interp, "::viewoptions.drawfilledtrigs", TCL_GLOBAL_ONLY));
|
|
|
|
vispar.subdivisions =
|
|
|
|
atoi (Tcl_GetVar (interp, "::visoptions.subdivisions", TCL_GLOBAL_ONLY));
|
|
|
|
vispar.drawbadels =
|
|
|
|
atoi (Tcl_GetVar (interp, "::viewoptions.drawbadels", TCL_GLOBAL_ONLY));
|
|
|
|
vispar.drawedges =
|
|
|
|
atoi (Tcl_GetVar (interp, "::viewoptions.drawedges", TCL_GLOBAL_ONLY));
|
|
|
|
|
|
|
|
vispar.drawtetsdomain =
|
|
|
|
atoi (Tcl_GetVar (interp, "::viewoptions.drawtetsdomain", TCL_GLOBAL_ONLY));
|
|
|
|
vispar.drawtets =
|
|
|
|
atoi (Tcl_GetVar (interp, "::viewoptions.drawtets", TCL_GLOBAL_ONLY));
|
|
|
|
vispar.drawprisms =
|
|
|
|
atoi (Tcl_GetVar (interp, "::viewoptions.drawprisms", TCL_GLOBAL_ONLY));
|
|
|
|
vispar.drawpyramids =
|
|
|
|
atoi (Tcl_GetVar (interp, "::viewoptions.drawpyramids", TCL_GLOBAL_ONLY));
|
|
|
|
vispar.drawhexes =
|
|
|
|
atoi (Tcl_GetVar (interp, "::viewoptions.drawhexes", TCL_GLOBAL_ONLY));
|
2014-01-27 02:23:48 +06:00
|
|
|
/*
|
2009-01-13 04:40:13 +05:00
|
|
|
vispar.shrink =
|
|
|
|
atof (Tcl_GetVar (interp, "::viewoptions.shrink", TCL_GLOBAL_ONLY));
|
2014-01-27 02:23:48 +06:00
|
|
|
*/
|
|
|
|
double hshrink = atof (Tcl_GetVar (interp, "::viewoptions.shrink", TCL_GLOBAL_ONLY));
|
|
|
|
if (hshrink != vispar.shrink)
|
|
|
|
{ vispar.shrink = hshrink; vispar.clipping.timestamp = NextTimeStamp();}
|
2009-01-13 04:40:13 +05:00
|
|
|
vispar.drawidentified =
|
|
|
|
atoi (Tcl_GetVar (interp, "::viewoptions.drawidentified", TCL_GLOBAL_ONLY));
|
|
|
|
vispar.drawpointnumbers =
|
|
|
|
atoi (Tcl_GetVar (interp, "::viewoptions.drawpointnumbers", TCL_GLOBAL_ONLY));
|
|
|
|
vispar.drawedgenumbers =
|
|
|
|
atoi (Tcl_GetVar (interp, "::viewoptions.drawedgenumbers", TCL_GLOBAL_ONLY));
|
|
|
|
vispar.drawfacenumbers =
|
|
|
|
atoi (Tcl_GetVar (interp, "::viewoptions.drawfacenumbers", TCL_GLOBAL_ONLY));
|
|
|
|
vispar.drawelementnumbers =
|
|
|
|
atoi (Tcl_GetVar (interp, "::viewoptions.drawelementnumbers", TCL_GLOBAL_ONLY));
|
|
|
|
vispar.drawdomainsurf =
|
|
|
|
atoi (Tcl_GetVar (interp, "::viewoptions.drawdomainsurf", TCL_GLOBAL_ONLY));
|
|
|
|
|
|
|
|
vispar.drawededges =
|
|
|
|
atoi (Tcl_GetVar (interp, "::viewoptions.drawededges", TCL_GLOBAL_ONLY));
|
|
|
|
vispar.drawedpoints =
|
|
|
|
atoi (Tcl_GetVar (interp, "::viewoptions.drawedpoints", TCL_GLOBAL_ONLY));
|
|
|
|
vispar.drawedpointnrs =
|
|
|
|
atoi (Tcl_GetVar (interp, "::viewoptions.drawedpointnrs", TCL_GLOBAL_ONLY));
|
|
|
|
vispar.drawedtangents =
|
|
|
|
atoi (Tcl_GetVar (interp, "::viewoptions.drawedtangents", TCL_GLOBAL_ONLY));
|
|
|
|
vispar.drawededgenrs =
|
|
|
|
atoi (Tcl_GetVar (interp, "::viewoptions.drawededgenrs", TCL_GLOBAL_ONLY));
|
|
|
|
|
|
|
|
vispar.drawcurveproj =
|
|
|
|
atoi (Tcl_GetVar (interp, "::viewoptions.drawcurveproj", TCL_GLOBAL_ONLY));
|
|
|
|
vispar.drawcurveprojedge =
|
|
|
|
atoi (Tcl_GetVar (interp, "::viewoptions.drawcurveprojedge", TCL_GLOBAL_ONLY));
|
|
|
|
|
|
|
|
vispar.centerpoint =
|
|
|
|
atoi (Tcl_GetVar (interp, "::viewoptions.centerpoint", TCL_GLOBAL_ONLY));
|
2009-01-31 03:12:17 +05:00
|
|
|
vispar.use_center_coords =
|
2009-01-13 04:40:13 +05:00
|
|
|
atoi (Tcl_GetVar (interp, "::viewoptions.usecentercoords", TCL_GLOBAL_ONLY)) > 0;
|
2009-01-31 03:12:17 +05:00
|
|
|
vispar.centerx =
|
2009-01-13 04:40:13 +05:00
|
|
|
atof (Tcl_GetVar (interp, "::viewoptions.centerx", TCL_GLOBAL_ONLY));
|
2009-01-31 03:12:17 +05:00
|
|
|
vispar.centery =
|
2009-01-13 04:40:13 +05:00
|
|
|
atof (Tcl_GetVar (interp, "::viewoptions.centery", TCL_GLOBAL_ONLY));
|
2009-01-31 03:12:17 +05:00
|
|
|
vispar.centerz =
|
2009-01-13 04:40:13 +05:00
|
|
|
atof (Tcl_GetVar (interp, "::viewoptions.centerz", TCL_GLOBAL_ONLY));
|
|
|
|
vispar.drawelement =
|
|
|
|
atoi (Tcl_GetVar (interp, "::viewoptions.drawelement", TCL_GLOBAL_ONLY));
|
|
|
|
vispar.drawmetispartition =
|
|
|
|
atoi (Tcl_GetVar (interp, "::viewoptions.drawmetispartition", TCL_GLOBAL_ONLY));
|
|
|
|
|
2009-01-31 03:12:17 +05:00
|
|
|
vispar.drawspecpoint =
|
2009-01-13 04:40:13 +05:00
|
|
|
atoi (Tcl_GetVar (interp, "::viewoptions.drawspecpoint", TCL_GLOBAL_ONLY));
|
|
|
|
vispar.specpointx =
|
|
|
|
atof (Tcl_GetVar (interp, "::viewoptions.specpointx", TCL_GLOBAL_ONLY));
|
|
|
|
vispar.specpointy =
|
|
|
|
atof (Tcl_GetVar (interp, "::viewoptions.specpointy", TCL_GLOBAL_ONLY));
|
|
|
|
vispar.specpointz =
|
|
|
|
atof (Tcl_GetVar (interp, "::viewoptions.specpointz", TCL_GLOBAL_ONLY));
|
|
|
|
|
|
|
|
|
|
|
|
vsspecpoints.len =
|
|
|
|
atof (Tcl_GetVar (interp, "::viewoptions.specpointvlen", TCL_GLOBAL_ONLY));
|
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
vispar.occdeflection = pow(10.0,-1-atof (Tcl_GetVar (interp, "::occoptions.deflection", TCL_GLOBAL_ONLY)));
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef PARALLELGL
|
|
|
|
vsmesh.Broadcast ();
|
2009-01-31 03:12:17 +05:00
|
|
|
#endif
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int Ng_BuildFieldLines (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
2017-08-28 21:19:20 +05:00
|
|
|
netgen::GetVSSolution().BuildFieldLinesPlot();
|
2009-01-13 04:40:13 +05:00
|
|
|
return TCL_OK;
|
|
|
|
}
|
2009-01-31 03:12:17 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
|
|
|
|
int Ng_Exit (ClientData clientData,
|
|
|
|
Tcl_Interp * interp,
|
|
|
|
int argc, tcl_const char *argv[])
|
|
|
|
{
|
2012-06-13 17:37:13 +06:00
|
|
|
/*
|
2009-01-13 04:40:13 +05:00
|
|
|
#ifdef PARALLEL
|
|
|
|
int id, rc, ntasks;
|
|
|
|
MPI_Comm_size(MPI_COMM_WORLD, &ntasks);
|
|
|
|
MPI_Comm_rank(MPI_COMM_WORLD, &id);
|
|
|
|
if ( id != 0 )
|
|
|
|
return TCL_OK;
|
|
|
|
#endif
|
2012-06-13 17:37:13 +06:00
|
|
|
*/
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
/*
|
|
|
|
if (ngsolve_handle)
|
|
|
|
{
|
|
|
|
void (*ngs_exit)();
|
|
|
|
ngs_exit = ( void (*)() ) dlsym (ngsolve_handle, "NGSolve_Exit");
|
|
|
|
if (ngs_exit) (*ngs_exit)();
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef NGSOLVE
|
|
|
|
NGSolve_Exit ();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef ACIS
|
|
|
|
outcome res;
|
|
|
|
res = api_terminate_faceter();
|
|
|
|
if(!res.ok())
|
|
|
|
cerr << "problem with terminating acis faceter" << endl;
|
|
|
|
res = api_terminate_constructors();
|
|
|
|
if(!res.ok())
|
|
|
|
cerr << "problem with terminating acis constructors" << endl;
|
|
|
|
res = api_terminate_kernel();
|
|
|
|
if(!res.ok())
|
|
|
|
cerr << "problem with terminating acis kernel" << endl;
|
|
|
|
res = api_stop_modeller();
|
|
|
|
if(!res.ok())
|
|
|
|
cerr << "problem with terminating acis modeller" << endl;
|
|
|
|
|
|
|
|
//cout << "stopped acis, outcome = " << res.ok() << endl;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef PARALLEL
|
2012-06-13 17:37:13 +06:00
|
|
|
if (id == 0) MyMPI_SendCmd ("end");
|
|
|
|
MPI_Finalize();
|
2009-01-13 04:40:13 +05:00
|
|
|
#endif
|
2009-01-24 18:35:44 +05:00
|
|
|
|
2014-09-08 21:21:09 +06:00
|
|
|
mesh.reset();
|
|
|
|
ng_geometry.reset();
|
2011-06-30 18:49:38 +06:00
|
|
|
|
2009-01-24 18:35:44 +05:00
|
|
|
if (testout != &cout)
|
|
|
|
delete testout;
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-01-31 03:12:17 +05:00
|
|
|
#ifdef SOCKETS
|
2009-01-13 04:40:13 +05:00
|
|
|
void * ServerSocketManagerRunDummy ( void * nix )
|
|
|
|
{
|
|
|
|
serversocketmanager.Run();
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" int Ng_ServerSocketManagerRun( void );
|
|
|
|
int Ng_ServerSocketManagerRun( void )
|
|
|
|
{
|
|
|
|
if(mparam.parthread)
|
|
|
|
RunParallel(ServerSocketManagerRunDummy,NULL);
|
|
|
|
else
|
|
|
|
serversocketmanager.Run();
|
|
|
|
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" int Ng_ServerSocketManagerInit(int port);
|
|
|
|
int Ng_ServerSocketManagerInit(int port)
|
|
|
|
{
|
|
|
|
serversocketmanager.Init(port);
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
#endif //SOCKETS
|
|
|
|
|
|
|
|
|
|
|
|
extern "C" int Ng_Init (Tcl_Interp * interp);
|
2011-01-11 01:18:01 +05:00
|
|
|
extern "C" int Ng_CSG_Init (Tcl_Interp * interp);
|
2011-03-03 02:50:49 +05:00
|
|
|
|
|
|
|
extern "C" int Ng_stl_Init (Tcl_Interp * interp);
|
|
|
|
extern "C" int Ng_geom2d_Init (Tcl_Interp * interp);
|
2012-06-12 16:01:59 +06:00
|
|
|
#ifdef OCCGEOMETRY
|
|
|
|
extern "C" int Ng_occ_Init (Tcl_Interp * interp);
|
2011-01-14 22:03:35 +05:00
|
|
|
#endif
|
|
|
|
|
2012-06-12 16:01:59 +06:00
|
|
|
|
2011-03-07 21:38:43 +05:00
|
|
|
// extern "C" int Ng_Geom2d_Init (Tcl_Interp * interp);
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
// int main_Eero (ClientData clientData,
|
|
|
|
// Tcl_Interp * interp,
|
|
|
|
// int argc, tcl_const char *argv[]);
|
|
|
|
|
|
|
|
|
|
|
|
int Ng_Init (Tcl_Interp * interp)
|
|
|
|
{
|
|
|
|
#ifdef SOCKETS
|
|
|
|
if(serversocketmanager.Good())
|
|
|
|
serversocketusernetgen.Reset(new ServerSocketUserNetgen (serversocketmanager, mesh, geometry));
|
|
|
|
#endif
|
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
Ng_CSG_Init(interp);
|
2011-03-03 02:50:49 +05:00
|
|
|
Ng_stl_Init(interp);
|
|
|
|
Ng_geom2d_Init (interp);
|
2012-08-20 20:10:50 +06:00
|
|
|
#ifdef OCCGEOMETRY
|
|
|
|
Ng_occ_Init (interp);
|
2012-06-12 16:01:59 +06:00
|
|
|
#endif
|
2011-01-14 22:03:35 +05:00
|
|
|
|
|
|
|
|
2011-02-28 17:59:27 +05:00
|
|
|
// Ng_Geom2d_Init(interp);
|
2011-01-11 01:18:01 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
tcl_interp = interp;
|
|
|
|
|
|
|
|
// Tcl_CreateCommand (interp, "Ng_Eero", main_Eero,
|
|
|
|
// (ClientData)NULL,
|
|
|
|
// (Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_New", Ng_New,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
// Tcl_CreateCommand (interp, "Ng_Lock", Ng_Lock,
|
|
|
|
// (ClientData)NULL,
|
|
|
|
// (Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_LoadGeometry", Ng_LoadGeometry,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_SaveGeometry", Ng_SaveGeometry,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_LoadMesh", Ng_LoadMesh,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_SaveMesh", Ng_SaveMesh,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_MergeMesh", Ng_MergeMesh,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_ExportMesh", Ng_ExportMesh,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_ImportMesh", Ng_ImportMesh,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_ImportSolution", Ng_ImportSolution,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_ShowDemo", Ng_ShowDemo,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_DemoSetTime", Ng_DemoSetTime,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_SaveSolution", Ng_SaveSolution,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
|
2009-01-31 03:12:17 +05:00
|
|
|
|
2010-08-10 00:03:25 +06:00
|
|
|
|
2009-03-15 17:25:09 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
// meshing
|
|
|
|
Tcl_CreateCommand (interp, "Ng_GenerateMesh", Ng_GenerateMesh,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_StopMeshing", Ng_StopMeshing,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_MeshInfo", Ng_MeshInfo,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_MeshQuality", Ng_MeshQuality,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_CheckSurfaceMesh", Ng_CheckSurfaceMesh,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_CheckVolumeMesh", Ng_CheckVolumeMesh,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_DeleteVolMesh", Ng_DeleteVolMesh,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_SplitSeparatedFaces", Ng_SplitSeparatedFaces,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_SetNextTimeStamp", Ng_SetNextTimeStamp,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_Refine", Ng_Refine,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_SecondOrder", Ng_SecondOrder,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_HighOrder", Ng_HighOrder,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_ValidateSecondOrder", Ng_ValidateSecondOrder,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_RestrictH", Ng_RestrictH,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_Anisotropy", Ng_Anisotropy,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_Bisect", Ng_Bisect,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
// Tcl_CreateCommand (interp, "Ng_BisectCopyMesh", Ng_BisectCopyMesh,
|
|
|
|
// (ClientData)NULL,
|
|
|
|
// (Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_Split2Tets", Ng_Split2Tets,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_ZRefinement", Ng_ZRefinement,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_HPRefinement", Ng_HPRefinement,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_LoadMeshSize", Ng_LoadMeshSize,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_MeshSizeFromSurfaceMesh", Ng_MeshSizeFromSurfaceMesh,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
|
2009-06-19 11:41:22 +06:00
|
|
|
Tcl_CreateCommand (interp, "Ng_GenerateBoundaryLayer", Ng_GenerateBoundaryLayer,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
Tcl_CreateCommand (interp, "Ng_InsertVirtualBL", Ng_InsertVirtualBL,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_CutOffAndCombine", Ng_CutOffAndCombine,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_HelmholtzMesh", Ng_HelmholtzMesh,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_ReadStatus", Ng_ReadStatus,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_MemInfo", Ng_MemInfo,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_MeshDoctor", Ng_MeshDoctor,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_BCProp", Ng_BCProp,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-01-31 03:12:17 +05:00
|
|
|
Tcl_CreateCommand (interp, "Ng_ACISCommand",
|
2009-01-13 04:40:13 +05:00
|
|
|
Ng_ACISCommand,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_MouseMove", Ng_MouseMove,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_MouseDblClick", Ng_MouseDblClick,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_ZoomAll", Ng_ZoomAll,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_Center", Ng_Center,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_StandardRotation", Ng_StandardRotation,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_ArbitraryRotation", Ng_ArbitraryRotation,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_SetVisParameters", Ng_SetVisParameters,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
2009-01-31 03:12:17 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
Tcl_CreateCommand (interp, "Ng_SetMeshingParameters", Ng_SetMeshingParameters,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
Tcl_CreateCommand (interp, "Ng_SetDebugParameters", Ng_SetDebugParameters,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
2009-01-31 03:12:17 +05:00
|
|
|
Tcl_CreateCommand (interp, "Ng_GetCommandLineParameter",
|
2009-01-13 04:40:13 +05:00
|
|
|
Ng_GetCommandLineParameter,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
2009-01-31 03:12:17 +05:00
|
|
|
Tcl_CreateCommand (interp, "Ng_Exit",
|
2009-01-13 04:40:13 +05:00
|
|
|
Ng_Exit,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
2009-01-31 03:12:17 +05:00
|
|
|
Tcl_CreateCommand (interp, "Ng_Metis",
|
2009-01-13 04:40:13 +05:00
|
|
|
Ng_Metis,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
|
2009-01-31 03:12:17 +05:00
|
|
|
Tcl_CreateCommand (interp, "Ng_BuildFieldLines",
|
2009-01-13 04:40:13 +05:00
|
|
|
Ng_BuildFieldLines,
|
|
|
|
(ClientData)NULL,
|
|
|
|
(Tcl_CmdDeleteProc*) NULL);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Specify the C callback functions for widget creation, display,
|
|
|
|
* and reshape.
|
|
|
|
*/
|
2016-02-08 19:53:16 +05:00
|
|
|
Tcl_CreateObjCommand(interp, "Ng_GetToglVersion", Ng_ToglVersion, NULL, NULL);
|
|
|
|
|
2009-09-09 04:14:23 +06:00
|
|
|
if (!nodisplay)
|
2009-09-09 03:54:32 +06:00
|
|
|
{
|
2009-09-09 04:14:23 +06:00
|
|
|
if (Togl_Init(interp) == TCL_ERROR)
|
|
|
|
return TCL_ERROR;
|
|
|
|
|
|
|
|
|
2009-09-09 03:54:32 +06:00
|
|
|
Tcl_CreateObjCommand(interp, "init", init, NULL, NULL);
|
|
|
|
Tcl_CreateObjCommand(interp, "zap", zap, NULL, NULL);
|
|
|
|
Tcl_CreateObjCommand(interp, "draw", draw, NULL, NULL);
|
|
|
|
Tcl_CreateObjCommand(interp, "reshape", reshape, NULL, NULL);
|
2009-09-09 04:14:23 +06:00
|
|
|
|
2009-09-09 03:54:32 +06:00
|
|
|
// Togl_TimerFunc( idle );
|
2017-05-22 20:24:17 +05:00
|
|
|
Tcl_CreateObjCommand(interp, "Ng_SnapShot", Ng_SnapShot, NULL, NULL);
|
2017-02-03 19:28:59 +05:00
|
|
|
Tcl_CreateObjCommand(interp, "Ng_VideoClip", Ng_VideoClip, NULL, NULL);
|
2009-09-09 03:54:32 +06:00
|
|
|
}
|
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
|
|
|
|
multithread.pause = 0;
|
|
|
|
multithread.testmode = 0;
|
|
|
|
multithread.redraw = 0;
|
|
|
|
multithread.drawing = 1;
|
|
|
|
multithread.terminate = 0;
|
|
|
|
multithread.running = 0;
|
2009-01-31 03:12:17 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
multithread.task = "";
|
|
|
|
multithread.percent = 20;
|
|
|
|
|
2009-01-31 03:12:17 +05:00
|
|
|
|
|
|
|
Tcl_LinkVar (interp, "multithread_pause",
|
2009-01-13 04:40:13 +05:00
|
|
|
(char*)&multithread.pause, TCL_LINK_INT);
|
2009-01-31 03:12:17 +05:00
|
|
|
Tcl_LinkVar (interp, "multithread_testmode",
|
2009-01-13 04:40:13 +05:00
|
|
|
(char*)&multithread.testmode, TCL_LINK_INT);
|
2009-01-31 03:12:17 +05:00
|
|
|
Tcl_LinkVar (interp, "multithread_redraw",
|
2009-01-13 04:40:13 +05:00
|
|
|
(char*)&multithread.redraw, TCL_LINK_INT);
|
2009-01-31 03:12:17 +05:00
|
|
|
Tcl_LinkVar (interp, "multithread_drawing",
|
2009-01-13 04:40:13 +05:00
|
|
|
(char*)&multithread.drawing, TCL_LINK_INT);
|
2009-01-31 03:12:17 +05:00
|
|
|
Tcl_LinkVar (interp, "multithread_terminate",
|
2009-01-13 04:40:13 +05:00
|
|
|
(char*)&multithread.terminate, TCL_LINK_INT);
|
2009-01-31 03:12:17 +05:00
|
|
|
Tcl_LinkVar (interp, "multithread_running",
|
2009-01-13 04:40:13 +05:00
|
|
|
(char*)&multithread.running, TCL_LINK_INT);
|
|
|
|
|
|
|
|
|
|
|
|
//testout->setstate(ios_base::badbit);
|
|
|
|
|
|
|
|
myerr = &cerr;
|
|
|
|
extern ostream * mycout;
|
|
|
|
mycout = &cout;
|
2009-01-31 03:12:17 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
testmode = 0;
|
|
|
|
|
2011-01-11 01:18:01 +05:00
|
|
|
|
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
#ifdef ACIS
|
|
|
|
outcome res;
|
|
|
|
res = api_start_modeller (0);
|
|
|
|
if(!res.ok())
|
|
|
|
cerr << "problem with starting acis modeller" << endl;
|
2009-01-31 03:12:17 +05:00
|
|
|
|
2009-01-13 04:40:13 +05:00
|
|
|
#ifdef ACIS_R17
|
|
|
|
unlock_spatial_products_661();
|
2009-01-31 03:12:17 +05:00
|
|
|
#endif
|
2009-01-13 04:40:13 +05:00
|
|
|
res = api_initialize_kernel();
|
|
|
|
if(!res.ok())
|
|
|
|
cerr << "problem with starting acis kernel" << endl;
|
|
|
|
res = api_initialize_constructors();
|
|
|
|
if(!res.ok())
|
|
|
|
cerr << "problem with starting acis constructors" << endl;
|
|
|
|
res = api_initialize_faceter();
|
|
|
|
if(!res.ok())
|
|
|
|
cerr << "problem with starting acis faceter" << endl;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|