typo-fix by Kunda

http://www.salome-platform.org/forum/forum_9/370845364
This commit is contained in:
eap 2017-11-30 14:16:01 +03:00
parent a80e8833b2
commit 2b555e17ee
5 changed files with 9 additions and 9 deletions

4
README
View File

@ -35,8 +35,8 @@ Installation
Pre-requisites Pre-requisites
-------------- --------------
SALOME platform relies on a set of third-party softwares; some of them are needed SALOME platform relies on a set of third-party software; some of them are needed
at build time only, while other ones are needed in runtime also. at build time only, while other ones are needed at runtime as well.
For more information about the pre-requisites please visit SALOME platform web For more information about the pre-requisites please visit SALOME platform web
site: site:

View File

@ -1,6 +1,6 @@
# - Config file for the @PROJECT_NAME@ package # - Config file for the @PROJECT_NAME@ package
# It defines the following variables. # It defines the following variables.
# Specific to the pacakge @PROJECT_NAME@ itself: # Specific to the package @PROJECT_NAME@ itself:
# @PROJECT_NAME_UC@_ROOT_DIR_EXP - the root path of the installation providing this CMake file # @PROJECT_NAME_UC@_ROOT_DIR_EXP - the root path of the installation providing this CMake file
# #

View File

@ -5,7 +5,7 @@
\n <b>Additional Hypotheses</b> can be applied as a supplement to \n <b>Additional Hypotheses</b> can be applied as a supplement to
introducing additional concepts to mesh creation. introducing additional concepts to mesh creation.
Following additional hypotheses can be used together with NETGEN algoritm: Following additional hypotheses can be used together with NETGEN algorithm:
<ul> <ul>
<li><b>Viscous Layers</b> additional hypothesis can be used together <li><b>Viscous Layers</b> additional hypothesis can be used together

View File

@ -136,7 +136,7 @@ module NETGENPlugin
}; };
/*! /*!
* interface of "NETGEN 2D parameters" hypothesis used by NETGENPlugin_NETGEN_2D_ONLY algoritm * interface of "NETGEN 2D parameters" hypothesis used by NETGENPlugin_NETGEN_2D_ONLY algorithm
*/ */
interface NETGENPlugin_Hypothesis_2D_ONLY : NETGENPlugin_Hypothesis_2D interface NETGENPlugin_Hypothesis_2D_ONLY : NETGENPlugin_Hypothesis_2D
{ {
@ -150,7 +150,7 @@ module NETGENPlugin
}; };
/*! /*!
* interface of "NETGEN Remesher parameters" hypothesis used by NETGENPlugin_Remesher_2D algoritm * interface of "NETGEN Remesher parameters" hypothesis used by NETGENPlugin_Remesher_2D algorithm
*/ */
interface NETGENPlugin_RemesherHypothesis_2D : NETGENPlugin_Hypothesis_2D interface NETGENPlugin_RemesherHypothesis_2D : NETGENPlugin_Hypothesis_2D
{ {

View File

@ -2324,7 +2324,7 @@ NETGENPlugin_Mesher::AddSegmentsToMesh(netgen::Mesh& ngMesh,
netgen::Segment& prevSeg = ngMesh.LineSegment( i-1 ); netgen::Segment& prevSeg = ngMesh.LineSegment( i-1 );
if ( seg[0] == prevSeg[1] && seg[1] == prevSeg[0] ) if ( seg[0] == prevSeg[1] && seg[1] == prevSeg[0] )
{ {
cout << "Segment: " << seg.edgenr << endl << "\tis REVRESE of the previous one" << endl; cout << "Segment: " << seg.edgenr << endl << "\tis REVERSE of the previous one" << endl;
continue; continue;
} }
} }
@ -2386,8 +2386,8 @@ int NETGENPlugin_Mesher::FillSMesh(const netgen::OCCGeometry& occgeo,
SMESHDS_Mesh* meshDS = sMesh.GetMeshDS(); SMESHDS_Mesh* meshDS = sMesh.GetMeshDS();
// quadHelper is used for either // quadHelper is used for either
// 1) making quadratic elements when a lower dimention mesh is loaded // 1) making quadratic elements when a lower dimension mesh is loaded
// to SMESH before convertion to quadratic by NETGEN // to SMESH before conversion to quadratic by NETGEN
// 2) sewing of quadratic elements with quadratic elements of sub-meshes // 2) sewing of quadratic elements with quadratic elements of sub-meshes
if ( quadHelper && !quadHelper->GetIsQuadratic() && quadHelper->GetTLinkNodeMap().empty() ) if ( quadHelper && !quadHelper->GetIsQuadratic() && quadHelper->GetTLinkNodeMap().empty() )
quadHelper = 0; quadHelper = 0;