Integration of PAL/SALOME V2.1.0c from OCC
9
INSTALL
@ -1,6 +1,5 @@
|
||||
This is SMESH V2.0.0
|
||||
|
||||
This is the version 2.1.0 of SMESH
|
||||
Compatible with :
|
||||
GEOM V2_0_0
|
||||
KERNEL V2_0_0
|
||||
MED V2_0_0
|
||||
- KERNEL 2.1.0
|
||||
- GEOM 2.1.0
|
||||
- MED 2.1.0
|
||||
|
28
Makefile.in
@ -86,13 +86,39 @@ mesh_wrap.png \
|
||||
mesh_tree_group.png \
|
||||
mesh_edit_group.png \
|
||||
mesh_make_group.png \
|
||||
mesh_union2tri.png \
|
||||
mesh_uniontri.png \
|
||||
mesh_cutquad.png \
|
||||
mesh_smoothing.png \
|
||||
mesh_renumbering_nodes.png \
|
||||
mesh_renumbering_elements.png \
|
||||
mesh_extrusion.png \
|
||||
mesh_revolution.png \
|
||||
ModuleMesh.png \
|
||||
mesh_unionGroups.png \
|
||||
mesh_intersectGroups.png \
|
||||
mesh_cutGroups.png \
|
||||
mesh_deleteGroups.png \
|
||||
mesh_translation_vector.png \
|
||||
mesh_translation_points.png \
|
||||
mesh_rotation.png \
|
||||
mesh_symmetry_point.png \
|
||||
mesh_symmetry_axis.png \
|
||||
mesh_symmetry_plane.png \
|
||||
mesh_sew_freeborders.png \
|
||||
mesh_sew_conform_freeborders.png \
|
||||
mesh_sew_bordertoside.png \
|
||||
mesh_sew_sideelements.png \
|
||||
mesh_merge_nodes.png \
|
||||
select1.png \
|
||||
SMESH_en.xml \
|
||||
SMESH.config \
|
||||
StdMeshers.xml \
|
||||
SMESHCatalog.xml \
|
||||
flight_solid.brep
|
||||
flight_solid.brep \
|
||||
mesh_pattern.png \
|
||||
pattern_sample_2d.png \
|
||||
pattern_sample_3D.png
|
||||
|
||||
BIN_SCRIPT= \
|
||||
VERSION
|
||||
|
@ -22,20 +22,11 @@ if test "x$GEOM_DIR" == "x" ; then
|
||||
# GEOM_ROOT_DIR environment variable defined
|
||||
GEOM_DIR=$GEOM_ROOT_DIR
|
||||
|
||||
else
|
||||
|
||||
# search Geom binaries in PATH variable
|
||||
AC_PATH_PROG(TEMP, libGEOM_Swig.py)
|
||||
if test "x$TEMP" != "x" ; then
|
||||
GEOM_BIN_DIR=`dirname $TEMP`
|
||||
GEOM_DIR=`dirname $GEOM_BIN_DIR`
|
||||
fi
|
||||
|
||||
fi
|
||||
#
|
||||
fi
|
||||
|
||||
if test -f ${GEOM_DIR}/bin/salome/libGEOM_Swig.py ; then
|
||||
if test -f ${GEOM_DIR}/lib/salome/libGEOMClient.so ; then
|
||||
Geom_ok=yes
|
||||
AC_MSG_RESULT(Using Geom module distribution in ${GEOM_DIR})
|
||||
|
||||
|
@ -22,20 +22,11 @@ if test "x$MED_DIR" == "x" ; then
|
||||
# MED_ROOT_DIR environment variable defined
|
||||
MED_DIR=$MED_ROOT_DIR
|
||||
|
||||
else
|
||||
|
||||
# search Med binaries in PATH variable
|
||||
AC_PATH_PROG(TEMP, libMEDMEM_Swig.py)
|
||||
if test "x$TEMP" != "x" ; then
|
||||
MED_BIN_DIR=`dirname $TEMP`
|
||||
MED_DIR=`dirname $MED_BIN_DIR`
|
||||
fi
|
||||
|
||||
fi
|
||||
#
|
||||
fi
|
||||
|
||||
if test -f ${MED_DIR}/bin/salome/libMEDMEM_Swig.py ; then
|
||||
if test -f ${MED_DIR}/idl/salome/MED.idl ; then
|
||||
Med_ok=yes
|
||||
AC_MSG_RESULT(Using Med module distribution in ${MED_DIR})
|
||||
|
||||
|
@ -1,126 +0,0 @@
|
||||
AC_DEFUN([CHECK_NETGEN],[
|
||||
|
||||
AC_REQUIRE([AC_PROG_CXX])dnl
|
||||
AC_REQUIRE([AC_PROG_CXXCPP])dnl
|
||||
|
||||
AC_CHECKING(for Netgen Libraries)
|
||||
|
||||
AC_LANG_SAVE
|
||||
AC_LANG_CPLUSPLUS
|
||||
|
||||
AC_ARG_WITH(netgen,
|
||||
[ --with-netgen=DIR root directory path of NETGEN installation],
|
||||
WITHNETGEN="yes",WITHNETGEN="no")
|
||||
|
||||
NETGEN_INCLUDES=""
|
||||
NETGEN_LIBS=""
|
||||
|
||||
Netgen_ok=no
|
||||
|
||||
if test "$WITHNETGEN" = yes; then
|
||||
|
||||
echo
|
||||
echo
|
||||
echo -------------------------------------------------
|
||||
echo You are about to choose to use somehow the
|
||||
echo Netgen Library to generate Tetrahedric mesh.
|
||||
echo
|
||||
echo WARNING
|
||||
echo ----------------------------------------------------------
|
||||
echo ----------------------------------------------------------
|
||||
echo You are strongly advised to consult the file
|
||||
echo SMESH_SRC/src/NETGEN/ReadMeForNgUsers, particularly about
|
||||
echo assumptions made on the installation of the Netgen
|
||||
echo application and libraries.
|
||||
echo Ask your system administrator for those details.
|
||||
echo ----------------------------------------------------------
|
||||
echo ----------------------------------------------------------
|
||||
echo
|
||||
echo
|
||||
|
||||
NETGEN_HOME=$withval
|
||||
|
||||
if test "$NETGEN_HOME"; then
|
||||
NETGEN_INCLUDES="-I$NETGEN_HOME/include"
|
||||
NETGEN_LIBS_DIR="$NETGEN_HOME/lib/LINUX"
|
||||
NETGEN_LIBS="-L$NETGEN_LIBS_DIR"
|
||||
fi
|
||||
|
||||
CPPFLAGS_old="$CPPFLAGS"
|
||||
CPPFLAGS="$NETGEN_INCLUDES $CPPFLAGS"
|
||||
CXXFLAGS_old="$CXXFLAGS"
|
||||
CXXFLAGS="$NETGEN_INCLUDES $CXXFLAGS"
|
||||
|
||||
AC_MSG_CHECKING(for Netgen header file)
|
||||
|
||||
AC_CHECK_HEADER(nglib.h,Netgen_ok=yes,Netgen_ok=no)
|
||||
CPPFLAGS="$CPPFLAGS_old"
|
||||
CXXFLAGS="$CXXFLAGS_old"
|
||||
|
||||
if test "$WITHNETGEN" = "yes";then
|
||||
NETGEN_LIBS="-L. -lNETGEN"
|
||||
|
||||
AC_MSG_CHECKING(for Netgen libraries)
|
||||
|
||||
CPPFLAGS_old="$CPPFLAGS"
|
||||
CPPFLAGS="$NETGEN_INCLUDES $CPPFLAGS"
|
||||
CXXFLAGS_old="$CXXFLAGS"
|
||||
CXXFLAGS="$NETGEN_INCLUDES $CXXFLAGS"
|
||||
|
||||
LDFLAGS_old="$LDFLAGS"
|
||||
LDFLAGS="$NETGEN_LIBS $LDFLAGS"
|
||||
|
||||
AC_TRY_COMPILE(#include <iostream.h>
|
||||
#include <fstream.h>
|
||||
#include "nglib.h"
|
||||
,Ng_Init();
|
||||
Ng_Exit();,Netgen_ok=yes;ar x "$NETGEN_LIBS_DIR/libnginterface.a";
|
||||
ar x "$NETGEN_LIBS_DIR/libcsg.a";
|
||||
ar x "$NETGEN_LIBS_DIR/libgprim.a";
|
||||
ar x "$NETGEN_LIBS_DIR/libmesh.a";
|
||||
ar x "$NETGEN_LIBS_DIR/libopti.a";
|
||||
ar x "$NETGEN_LIBS_DIR/libgen.a";
|
||||
ar x "$NETGEN_LIBS_DIR/libla.a";
|
||||
ar x "$NETGEN_LIBS_DIR/libstlgeom.a";
|
||||
ar x "$NETGEN_LIBS_DIR/libgeom2d.a";
|
||||
$CXX -shared linopt.o bfgs.o linsearch.o global.o bisect.o meshtool.o refine.o ruler3.o improve3.o adfront3.o tetrarls.o prism2rls.o pyramidrls.o pyramid2rls.o netrule3.o ruler2.o meshclass.o improve2.o adfront2.o netrule2.o triarls.o geomsearch.o secondorder.o meshtype.o parser3.o quadrls.o specials.o parser2.o meshing2.o meshing3.o meshfunc.o localh.o improve2gen.o delaunay.o boundarylayer.o msghandler.o meshfunc2d.o smoothing2.o smoothing3.o topology.o curvedelems.o clusters.o zrefine.o ngexception.o geomtest3d.o geom2d.o geom3d.o adtree.o transform3d.o geomfuncs.o polynomial.o densemat.o vector.o basemat.o sparsmat.o algprim.o brick.o manifold.o bspline2d.o meshsurf.o csgeom.o polyhedra.o curve2d.o singularref.o edgeflw.o solid.o explicitcurve2d.o specpoin.o gencyl.o revolution.o genmesh.o spline3d.o surface.o identify.o triapprox.o meshstlsurface.o stlline.o stltopology.o stltool.o stlgeom.o stlgeomchart.o stlgeommesh.o table.o optmem.o spbita2d.o hashtabl.o sort.o flags.o seti.o bitarray.o array.o symbolta.o mystring.o moveablemem.o spline2d.o splinegeometry2.o ngnewdelete.o nglib.o -o libNETGEN.so;
|
||||
rm -rf adfront2.o adfront3.o adtree.o algprim.o array.o basemat.o bfgs.o bisect.o bitarray.o boundarylayer.o brick.o bspline2d.o clusters.o csgeom.o csgparser.o curve2d.o curvedelems.o delaunay.o densemat.o dynamicmem.o edgeflw.o explicitcurve2d.o extrusion.o flags.o gencyl.o genmesh.o geom2dmesh.o geom2d.o geom3d.o geomfuncs.o geomsearch.o geomtest3d.o global.o hashtabl.o hprefinement.o identify.o importsolution.o improve2gen.o improve2.o improve3.o linopt.o linsearch.o localh.o manifold.o meshclass.o meshfunc2d.o meshfunc.o meshing2.o meshing3.o meshstlsurface.o meshsurf.o meshtool.o meshtype.o moveablemem.o msghandler.o mystring.o netrule2.o netrule3.o ngexception.o nglib.o ngnewdelete.o optmem.o parser2.o parser3.o parthreads.o polyhedra.o polynomial.o prism2rls.o pyramid2rls.o pyramidrls.o quadrls.o readuser.o refine.o revolution.o ruler2.o ruler3.o secondorder.o seti.o singularref.o smoothing2.o smoothing3.o solid.o sort.o sparsmat.o spbita2d.o specials.o specpoin.o spline2d.o spline3d.o splinegeometry2.o stlgeomchart.o stlgeommesh.o stlgeom.o stlline.o stltool.o stltopology.o surface.o symbolta.o table.o tetrarls.o topology.o transform3d.o triapprox.o triarls.o vector.o writeabaqus.o writediffpack.o writefeap.o writefluent.o writepermas.o writetecplot.o writetochnog.o writeuser.o wuchemnitz.o zrefine.o,
|
||||
Netgen_ok=no)
|
||||
|
||||
AC_CACHE_VAL(salome_netgen_lib,[
|
||||
AC_TRY_LINK(
|
||||
#include <iostream.h>
|
||||
#include <fstream.h>
|
||||
#include "nglib.h"
|
||||
,Ng_Init();
|
||||
Ng_Exit();,
|
||||
eval "salome_netgen_lib=yes";rm -rf libNETGEN.so,eval "salome_netgen_lib=no";rm -rf libNETGEN.so)
|
||||
])
|
||||
Netgen_ok="$salome_netgen_lib"
|
||||
|
||||
|
||||
LDFLAGS="$LDFLAGS_old"
|
||||
CPPFLAGS="$CPPFLAGS_old"
|
||||
CXXFLAGS="$CXXFLAGS_old"
|
||||
fi
|
||||
|
||||
|
||||
if test "x$Netgen_ok" = xno ; then
|
||||
AC_MSG_RESULT(no)
|
||||
AC_MSG_WARN(Netgen libraries not found or not properly installed)
|
||||
else
|
||||
AC_MSG_RESULT(yes)
|
||||
NETGEN_LIBS="-lNETGEN"
|
||||
CPPFLAGS="${CPPFLAGS} -DHAVE_NETGEN"
|
||||
IDLCXXFLAGS="${IDLCXXFLAGS} -DHAVE_NETGEN"
|
||||
OMNIORB_IDLPYFLAGS="${OMNIORB_IDLPYFLAGS} -DHAVE_NETGEN"
|
||||
fi
|
||||
fi
|
||||
AC_SUBST(NETGEN_INCLUDES)
|
||||
AC_SUBST(NETGEN_LIBS)
|
||||
AC_SUBST(NETGEN_LIBS_DIR)
|
||||
AC_SUBST(WITHNETGEN)
|
||||
|
||||
AC_LANG_RESTORE
|
||||
|
||||
])dnl
|
@ -10,9 +10,12 @@ HAVE_SSTREAM=@HAVE_SSTREAM@
|
||||
|
||||
|
||||
LIBS=@LIBS@
|
||||
LIBSFORBIN=@LIBS@
|
||||
LDFLAGS=@LDFLAGS@ -L$(top_builddir)/lib/salome -Xlinker -rpath-link -Xlinker -L$(top_builddir)/lib/salome
|
||||
LDFLAGSFORBIN=@LDFLAGS@ -L$(top_builddir)/lib/salome -Xlinker -rpath-link -Xlinker -L$(top_builddir)/lib/salome
|
||||
# add libstdc++ to link c++ library with libtool !
|
||||
LDFLAGS+= -lstdc++
|
||||
LDFLAGSFORBIN+= -lstdc++
|
||||
|
||||
CP=@CP@
|
||||
|
||||
|
346
adm_local/unix/make_conclude.in
Normal file
@ -0,0 +1,346 @@
|
||||
#=======================================================================
|
||||
# This section of this makefile comes from the file
|
||||
# 'adm/unix/make_conclude' which was generated with config.status
|
||||
# from file adm/unix/make_conclude.in
|
||||
#=======================================================================
|
||||
# -* Makefile *-
|
||||
#
|
||||
# Authors : Patrick GOLDBRONN (CEA) - Marc Tajchman (CEA)
|
||||
# Date : 6/07/2001
|
||||
# $Header$
|
||||
#
|
||||
|
||||
# ORB Specifics rules
|
||||
@CORBA@
|
||||
|
||||
# transform idl reference in appropriate obj file
|
||||
LIB_CLIENT_SRC = $(LIB_CLIENT_IDL:%.idl=%$(IDL_CLN_CXX))
|
||||
LIB_SERVER_SRC = $(LIB_SERVER_IDL:%.idl=%$(IDL_SRV_CXX))
|
||||
LIB_MOC_SRC = $(LIB_MOC:%.h=%_moc.cxx)
|
||||
LIB_SRC+=$(LIB_MOC_SRC)
|
||||
LIB_SWIG_SRC = $(SWIG_DEF:%.i=%_wrap.cxx)
|
||||
LIB_DEP= $(LIB_SRC) $(LIB_CLIENT_SRC) $(LIB_SERVER_SRC) $(LIB_SWIG_SRC)
|
||||
|
||||
LIB_CLIENT_OBJ = $(LIB_CLIENT_IDL:%.idl=%$(IDL_CLN_OBJ))
|
||||
LIB_SERVER_OBJ = $(LIB_SERVER_IDL:%.idl=%$(IDL_SRV_OBJ))
|
||||
|
||||
|
||||
# transform c file in appropriate libtool obj file (.c, .cc and .cxx)
|
||||
LIB_OBJ_C = $(patsubst %.c, %.lo, $(filter %.c, $(LIB_SRC)))
|
||||
LIB_OBJ_CC = $(patsubst %.cc, %.lo, $(filter %.cc, $(LIB_SRC)))
|
||||
LIB_OBJ_CXX = $(patsubst %.cxx, %.lo, $(filter %.cxx, $(LIB_SRC)))
|
||||
LIB_SWIG_OBJ = $(LIB_SWIG_SRC:%.cxx=%.lo)
|
||||
LIB_OBJ_F = $(patsubst %.f, %.lo, $(filter %.f, $(LIB_SRC)))
|
||||
|
||||
# all libtool obj file in library
|
||||
LIB_OBJ = $(LIB_OBJ_CXX) $(LIB_OBJ_CC) $(LIB_OBJ_C) $(LIB_CLIENT_OBJ:%.o=%.lo) $(LIB_SERVER_OBJ:%.o=%.lo) $(LIB_SWIG_OBJ) $(LIB_OBJ_F)
|
||||
|
||||
# LIB_BUILD = $(LIB:%.la=$(top_builddir)/lib/salome/%.la)
|
||||
LIB_BUILD = $(patsubst %.la, $(top_builddir)/lib/salome/%.la, $(filter %.la, $(LIB)))
|
||||
LIB_BUILD_A = $(patsubst %.a, $(top_builddir)/lib/salome/%.a, $(filter %.a, $(LIB)))
|
||||
|
||||
ifneq ($(findstring cmodule.la,$(filter %.la, $(LIB))),)
|
||||
LIB_SWIG = $(patsubst %cmodule.la,%.so, $(filter %.la, $(LIB)))
|
||||
else
|
||||
LIB_SWIG =
|
||||
endif
|
||||
|
||||
lib: $(LIB_BUILD) $(LIB_CLIENT_PY)
|
||||
# we don't build static library !
|
||||
|
||||
$(LIB_BUILD): $(top_builddir)/lib/salome/%.la: %.la
|
||||
-$(RM) $@
|
||||
-$(RM) $(patsubst %.la, %.so, $@)
|
||||
-$(RM) $(patsubst %.la, %.a, $@)
|
||||
ln -sf $(CURDIR)/$< $@ || true
|
||||
ln -sf $(patsubst %.la, %.so, $(CURDIR)/.libs/$<) \
|
||||
$(patsubst %.la, %.so, $@) || true
|
||||
ln -sf $(patsubst %.la, %.so, $(CURDIR)/.libs/$<).0 \
|
||||
$(patsubst %.la, %.so, $@).0 || true
|
||||
|
||||
if ! test -z $(LIB_SWIG) ; then \
|
||||
ln -sf $(patsubst %.la,%.so, $(CURDIR)/.libs/$<) $(top_builddir)/lib/salome/_$(LIB_SWIG) || true;\
|
||||
fi;
|
||||
|
||||
$(LIB_BUILD_A): $(top_builddir)/lib/salome/%.a: %.a
|
||||
-$(RM) $@
|
||||
ln -sf $(CURDIR)/$< $@ || true
|
||||
|
||||
$(LIB): $(LIB_OBJ)
|
||||
@$(LT) --mode=link $(CXX) -rpath $(libdir) -o $@ $(CXXFLAGS) $(LIB_OBJ) $(LDFLAGS) $(LIBS)
|
||||
|
||||
# transform idl reference in appropriate obj file
|
||||
BIN_CLIENT_SRC = $(BIN_CLIENT_IDL:%.idl=%$(IDL_CLN_CXX))
|
||||
BIN_SERVER_SRC = $(BIN_SERVER_IDL:%.idl=%$(IDL_SRV_CXX))
|
||||
BIN_MOC_SRC = $(BIN_MOC:%.h=%_moc.cxx)
|
||||
BIN_SRC+=$(BIN_MOC_SRC)
|
||||
BIN_DEP=$(BIN:%=%.cxx) $(BIN_SRC) $(BIN_CLIENT_SRC) $(BIN_SERVER_SRC)
|
||||
|
||||
BIN_CLIENT_OBJ = $(BIN_CLIENT_IDL:%.idl=%$(IDL_CLN_OBJ))
|
||||
BIN_SERVER_OBJ = $(BIN_SERVER_IDL:%.idl=%$(IDL_SRV_OBJ))
|
||||
# transform c file in appropriate libtool obj file (.c)
|
||||
BIN_OBJ_C = $(patsubst %.c, %.o, $(filter %.c, $(BIN_SRC)))
|
||||
# transform c++ file in appropriate libtool obj file (.cc and .cxx)
|
||||
BIN_OBJ_CC = $(patsubst %.cc, %.o, $(filter %.cc, $(BIN_SRC)))
|
||||
BIN_OBJ_CXX = $(patsubst %.cxx, %.o, $(filter %.cxx, $(BIN_SRC)))
|
||||
# all obj file in bin target
|
||||
BIN_OBJ = $(BIN_OBJ_CC) $(BIN_OBJ_CXX) $(BIN_OBJ_C) $(BIN_CLIENT_OBJ) $(BIN_SERVER_OBJ)
|
||||
|
||||
bin: $(BIN:%=$(top_builddir)/bin/salome/%) $(BIN) $(LIB) pyscripts sharedpyscripts
|
||||
|
||||
BIN_LIB=$(LIB:lib%.la=-l%)
|
||||
|
||||
$(BIN:%=$(top_builddir)/bin/salome/%) $(TEST_PROGS:%=$(top_builddir)/bin/salome/%): $(top_builddir)/bin/salome/%: %
|
||||
-$(RM) $@
|
||||
ln -sf $(CURDIR)/$< $@
|
||||
|
||||
$(BIN) $(TEST_PROGS): %: %.lo $(BIN_OBJ)
|
||||
$(CXX) $(CXXFLAGS) -o $@ $^ $(BIN_LIB) $(LDFLAGSFORBIN) $(LIBSFORBIN)
|
||||
|
||||
# copy python scripts in $(top_builddir)/bin/salome
|
||||
#
|
||||
DEST_PYSCRIPTS = $(EXPORT_PYSCRIPTS:%=$(top_builddir)/bin/salome/%)
|
||||
pyscripts: $(DEST_PYSCRIPTS)
|
||||
$(DEST_PYSCRIPTS): $(top_builddir)/bin/salome/%: %
|
||||
cp -f $< $@
|
||||
|
||||
# copy pyqt files in $(PYTHON_SHARED_SITE)
|
||||
#
|
||||
PYTHON_SHARED_SITE=$(top_builddir)/lib/python$(PYTHON_VERSION)/site-packages/salome/shared_modules
|
||||
|
||||
$(PYTHON_SHARED_SITE):
|
||||
$(INSTALL) -d $@
|
||||
|
||||
DEST_SHAREDPYSCRIPTS = $(EXPORT_SHAREDPYSCRIPTS:%=$(PYTHON_SHARED_SITE)/%)
|
||||
sharedpyscripts: $(PYTHON_SHARED_SITE) $(DEST_SHAREDPYSCRIPTS)
|
||||
$(DEST_SHAREDPYSCRIPTS): $(PYTHON_SHARED_SITE)/%: %
|
||||
cp -f $< $@
|
||||
|
||||
check: test
|
||||
|
||||
tests: test
|
||||
|
||||
test: $(LIB) $(TEST_PROGS:%=$(top_builddir)/bin/salome/%)
|
||||
|
||||
|
||||
# copy header file in $(inc_builddir)
|
||||
#
|
||||
DEST_HEADERS = $(EXPORT_HEADERS:%=$(inc_builddir)/%)
|
||||
inc: $(DEST_HEADERS)
|
||||
$(DEST_HEADERS): $(inc_builddir)/%: %
|
||||
cp -f $< $@
|
||||
|
||||
# build resources file (icons and messages) : .qm file from .po file
|
||||
resources: $(PO_FILES:%.po=$(top_builddir)/share/salome/resources/%.qm)
|
||||
|
||||
# Make installation directories if they don't exist.
|
||||
$(libdir) $(includedir) $(bindir) $(datadir) $(idldir) $(sharedpydir):
|
||||
$(INSTALL) -d $@ && chmod 755 $@
|
||||
|
||||
# Install the library, the public header files, and programs.
|
||||
install: $(LIB) $(BIN) $(TEST_PROGS) $(libdir) $(includedir) $(bindir) $(datadir) $(idldir) install-python install-sharedpyqt install-qm
|
||||
@for f in X $(LIB); do \
|
||||
if test $$f != X; then \
|
||||
($(LT_INSTALL_LIB) $$f $(libdir)/. || exit 1); \
|
||||
fi; \
|
||||
done
|
||||
@if ! test -z $(LIB_SWIG) ; then \
|
||||
(cd $(libdir); ln -sf $(patsubst %.so, %cmodule.so, $(LIB_SWIG)) _$(LIB_SWIG) || true); \
|
||||
fi;
|
||||
@for f in X $(BIN); do \
|
||||
if test $$f != X; then \
|
||||
($(LT_INSTALL_PROG) $$f $(bindir)/. || exit 1); \
|
||||
fi; \
|
||||
done
|
||||
# Install tests programmes in bindir
|
||||
@for f in X $(TEST_PROGS); do \
|
||||
if test $$f != X; then \
|
||||
($(LT_INSTALL_PROG) $$f $(bindir)/. || exit 1); \
|
||||
fi; \
|
||||
done
|
||||
# Install exported includes in includedir
|
||||
@for f in X $(EXPORT_HEADERS:%=$(srcdir)/%); do \
|
||||
if test $$f != X; then \
|
||||
(cp -p -f $$f $(includedir) || exit 1); \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Install python script in $(bindir)
|
||||
install-python: $(bindir) $(EXPORT_PYSCRIPTS:%=install-%)
|
||||
|
||||
$(EXPORT_PYSCRIPTS:%=install-%): install-%: %
|
||||
$(INSTALL_PROGRAM) $< $(bindir)/.
|
||||
|
||||
#install-python: $(bindir) $(EXPORT_PYSCRIPTS)
|
||||
# @for f in X $(EXPORT_PYSCRIPTS); do \
|
||||
# if test $$f != X; then \
|
||||
# ($(INSTALL_PROGRAM) $$f $(bindir)/. || exit 1); \
|
||||
# fi; \
|
||||
# done
|
||||
|
||||
# Install pyqt script in $(install-sharedpyqt)
|
||||
install-sharedpyqt: $(sharedpydir) $(EXPORT_SHAREDPYSCRIPTS:%=install-%)
|
||||
|
||||
$(EXPORT_SHAREDPYSCRIPTS:%=install-%): install-%: %
|
||||
$(INSTALL_PROGRAM) $< $(sharedpydir)/.
|
||||
|
||||
|
||||
# generic rule to install .qm files :
|
||||
install-qm: resources
|
||||
$(INSTALL) -d $(datadir)/resources
|
||||
@for f in X $(PO_FILES:%.po=$(top_builddir)/share/salome/resources/%.qm); do \
|
||||
if test $$f != X; then \
|
||||
($(INSTALL_DATA) $$f $(datadir)/resources/. || exit 1); \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Removes those things that `make install' (would have) installed.
|
||||
uninstall:
|
||||
@if test "X$(LIB)" != X; then \
|
||||
for f in $(LIB); do \
|
||||
$(LT_UNINSTALL) $(libdir)/$$f; \
|
||||
done; \
|
||||
fi
|
||||
@if test "X$(BIN)" != X; then \
|
||||
for f in $(BIN); do \
|
||||
$(LT_UNINSTALL) $(bindir)/$$f; \
|
||||
done; \
|
||||
fi
|
||||
@for f in X $(TEST_PROGS); do \
|
||||
if test $$f != X; then \
|
||||
$(LT_UNINSTALL) $(bindir)/$$f; \
|
||||
fi; \
|
||||
done
|
||||
# Uninstall exported includes in includedir
|
||||
@for f in X $(EXPORT_HEADERS); do \
|
||||
if test $$f != X; then \
|
||||
$(LT_UNINSTALL) $(includedir)/$$f; \
|
||||
fi; \
|
||||
done
|
||||
# Uninstall python script in $(bindir)
|
||||
@for f in X $(EXPORT_PYSCRIPTS); do \
|
||||
if test $$f != X; then \
|
||||
$(LT_UNINSTALL) $(bindir)/$$f ; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Uninstall pyqt script in $(sharedpydir)
|
||||
@for f in X $(EXPORT_SHAREDPYSCRIPTS); do \
|
||||
if test $$f != X; then \
|
||||
$(LT_UNINSTALL) $(sharedpydir)/$$f ; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# Uninstall qm files
|
||||
@for f in X $(PO_FILES:%.po=%.qm); do \
|
||||
if test $$f != X; then \
|
||||
$(LT_UNINSTALL) $(datadir)/resources/$$f ; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
# remove all dependencies files
|
||||
#
|
||||
cleandep:
|
||||
-$(RM) .dep*
|
||||
|
||||
# Removes temporary files without removing the final target files. That is,
|
||||
# remove things like object files but not libraries or executables.
|
||||
#
|
||||
mostlyclean: cleandep
|
||||
-$(RM) $(LIB_OBJ) $(LIB_OBJ:.lo=.o)
|
||||
-$(RM) $(BIN_OBJ) $(BIN:%=%.o)
|
||||
-$(RM) $(TEST_OBJ) $(TEST_OBJ:.lo=.o)
|
||||
-$(RM) $(PROG_OBJ) $(PROG_OBJ:.lo=.o) $(MOSTLYCLEAN)
|
||||
|
||||
# Like `mostlyclean' except it also removes the final targets: things like
|
||||
# libraries and executables. This target doesn't remove any file that
|
||||
# is part of the SALOME distribution.
|
||||
#
|
||||
clean: mostlyclean
|
||||
-$(RM) $(LIB) $(TEST_PROGS) $(BIN) $(CLEAN)
|
||||
-$(RM) TAGS *~ *# core *.core
|
||||
-$(RM) -r .libs
|
||||
-$(RM) $(top_builddir)/lib/salome/$(LIB)
|
||||
-$(RM) $(patsubst %,$(top_builddir)/bin/salome/%, $(BIN))
|
||||
-$(RM) $(patsubst %.la, %.so, $(top_builddir)/lib/salome/$(LIB))
|
||||
-$(RM) $(patsubst %.la, %.a, $(top_builddir)/lib/salome/$(LIB))
|
||||
# remove idl generated files (sources)
|
||||
-$(RM) $(LIB_CLIENT_SRC) $(LIB_SERVER_SRC) $(BIN_CLIENT_SRC) $(BIN_SERVER_SRC)
|
||||
# remove idl generated files (headers)
|
||||
-$(RM) $(LIB_CLIENT_IDL:%.idl=%$(IDL_CLN_H)) $(LIB_SERVER_IDL:%.idl=%$(IDL_SRV_H))
|
||||
-$(RM) $(BIN_CLIENT_IDL:%.idl=%$(IDL_CLN_H)) $(BIN_SERVER_IDL:%.idl=%$(IDL_SRV_H))
|
||||
-$(RM) $(LIB_MOC_SRC) $(BIN_MOC_SRC)
|
||||
-$(RM) $(LIB_SWIG_SRC)
|
||||
|
||||
# Like `clean' except it also removes files that were created by running
|
||||
# configure. If you've unpacked the source and built without creating
|
||||
# any other files, then `make distclean' will leave only the files that were
|
||||
# in the distribution.
|
||||
#
|
||||
distclean: clean
|
||||
#remove qm file !
|
||||
-$(RM) $(PO_FILES:%.po=%.qm) $(PO_FILES:%.po=$(top_builddir)/share/salome/resources/%.qm)
|
||||
#remove include files
|
||||
-$(RM) $(DEST_HEADERS)
|
||||
-$(RM) $(DISTCLEAN) *.bak *.old *.new .dep*
|
||||
@if test -f $(srcdir)/Makefile.in; then \
|
||||
(@SETX@; $(RM) Makefile); \
|
||||
fi
|
||||
|
||||
|
||||
#implicits rules
|
||||
.cc.o:
|
||||
$(CXX) $(CXXFLAGS) $(CPPFLAGS) -c $<
|
||||
|
||||
.cc.lo:
|
||||
$(LT) --mode=compile $(CXX) $(CXXFLAGS) $(CPPFLAGS) -c $<
|
||||
|
||||
.cxx.o:
|
||||
$(CXX) $(CXXFLAGS) $(CPPFLAGS) -c $<
|
||||
|
||||
.cxx.lo:
|
||||
$(LT) --mode=compile $(CXX) $(CXXFLAGS) $(CPPFLAGS) -c $<
|
||||
|
||||
.c.o:
|
||||
$(CC) $(CFLAGS) $(CPPFLAGS) -c $<
|
||||
|
||||
.c.lo:
|
||||
$(LT_COMPILE) $(CFLAGS) $(CPPFLAGS) -c $<
|
||||
|
||||
.f.o:
|
||||
$(FC) $(FFLAGS) -c $< -o $@
|
||||
|
||||
.f.lo:
|
||||
$(LT) --mode=compile $(FC) $(FFLAGS) -c $<
|
||||
|
||||
.ui.h:
|
||||
$(UIC) -o $@ $<
|
||||
|
||||
.ui.cxx:
|
||||
$(UIC) -o $@ -i $*.h $<
|
||||
|
||||
#pattern rules
|
||||
%_moc.cxx : %.h
|
||||
$(MOC) $< -o $@
|
||||
|
||||
%_wrap.cxx : %.i
|
||||
$(SWIG) $(SWIG_FLAGS) -o $@ $<
|
||||
|
||||
$(top_builddir)/share/salome/resources/%.qm: %.po
|
||||
if test -e ${KERNEL_ROOT_DIR}/bin/salome/msg2qm ; then \
|
||||
${KERNEL_ROOT_DIR}/bin/salome/msg2qm $< $@ ; \
|
||||
else \
|
||||
$(top_builddir)/bin/salome/msg2qm $< $@ ; \
|
||||
fi
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
# The following section of this makefile contains dependencies between the
|
||||
# source files and the header files. If GNU make and GCC are being used then
|
||||
# the dependencies are in the form of rules that cause the information to
|
||||
# be kept updated automatically. Otherwise the dependencies are listed
|
||||
# explicitly and come from the `.distdep' files in the various directories.
|
||||
# These files are part of the distribution and are generated automatically on
|
||||
# GNU/GCC systems.
|
||||
#------------------------------------------------------------------------------
|
||||
|
||||
@DEPEND@
|
@ -1,2 +1,2 @@
|
||||
THIS IS SALOME - SMESH VERSION: 2.0.0
|
||||
THIS IS SALOME - SMESH VERSION: 2.1.0
|
||||
|
||||
|
@ -128,7 +128,7 @@ echo " ./salome_adm/unix/depend \\" >> configure.in_tmp1
|
||||
echo " ./adm_local/unix/make_omniorb \\" >> configure.in_tmp1
|
||||
echo " ./salome_adm/unix/envScript \\" >> configure.in_tmp1
|
||||
echo " ./adm_local/unix/make_commence \\" >> configure.in_tmp1
|
||||
echo " ./salome_adm/unix/make_conclude \\" >> configure.in_tmp1
|
||||
echo " ./adm_local/unix/make_conclude \\" >> configure.in_tmp1
|
||||
echo " ./salome_adm/unix/make_module \\" >> configure.in_tmp1
|
||||
|
||||
\rm -f configure.in_tmp2 configure.in_tmp3
|
||||
|
@ -303,7 +303,7 @@ echo
|
||||
dnl generals files which could be included in every makefile
|
||||
|
||||
AC_SUBST_FILE(COMMENCE) COMMENCE=adm_local/unix/make_commence
|
||||
AC_SUBST_FILE(CONCLUDE) CONCLUDE=salome_adm/unix/make_conclude
|
||||
AC_SUBST_FILE(CONCLUDE) CONCLUDE=adm_local/unix/make_conclude
|
||||
AC_SUBST_FILE(MODULE) MODULE=salome_adm/unix/make_module
|
||||
|
||||
dnl les dependences
|
||||
|
@ -1,5 +1,5 @@
|
||||
|SourceProjectName:SMESH.hpr
|
||||
|DestinationProjectName:smesh.html
|
||||
|DestinationProjectName:smesh.htm
|
||||
whhost.js
|
||||
whmsg.js
|
||||
whmozemu.js
|
||||
@ -138,12 +138,14 @@ files\about_modification_of_meshes.htm
|
||||
files\about_quality_controls.htm
|
||||
files\adding_nodes_and_elements.htm
|
||||
files\area_of_elements.htm
|
||||
files\arithmetic_1d.htm
|
||||
files\aspect_ratio.htm
|
||||
files\changing_orientation_of_elements.htm
|
||||
files\computing_meshes.htm
|
||||
files\connectivity.htm
|
||||
files\constructing_meshes.htm
|
||||
files\constructing_submeshes.htm
|
||||
files\deflection_1d.htm
|
||||
files\diagonal_iversion_of_elements.htm
|
||||
files\displacing_nodes.htm
|
||||
files\displaying_elements_numbers.htm
|
||||
@ -151,12 +153,15 @@ files\displaying_nodes_numbers.htm
|
||||
files\editing_hypotheses.htm
|
||||
files\importing_and_exporting_meshes.htm
|
||||
files\introduction_to_smesh.htm
|
||||
files\length_from_edges.htm
|
||||
files\length_of_edges.htm
|
||||
files\local_length_hypothesis.htm
|
||||
files\max._element_area_hypothesis.htm
|
||||
files\max._element_volume_hypothsis.htm
|
||||
files\minimum_angle.htm
|
||||
files\non_conform_mesh_allowed_hypothesis.htm
|
||||
files\number_of_segments_hypothesis.htm
|
||||
files\propagation_of_1d_hypothesis_on_opposite_edges.htm
|
||||
files\reassigning_hypotheses_and_algorithms.htm
|
||||
files\removing_nodes_and_elements.htm
|
||||
files\running_smesh_module.htm
|
||||
@ -164,6 +169,7 @@ files\scalar_bar_properties.htm
|
||||
files\shading.htm
|
||||
files\shrink.htm
|
||||
files\skew.htm
|
||||
files\start_and_end_length_hypothesis.htm
|
||||
files\taper.htm
|
||||
files\tetrahedron_(netgen)_meshing_algorithm.htm
|
||||
files\using_smesh_module.htm
|
||||
@ -173,60 +179,65 @@ files\visualization_modes.htm
|
||||
files\visualization_properties.htm
|
||||
files\warp.htm
|
||||
files\wireframe.htm
|
||||
texture_horiz_ltbluebubbles.jpg
|
||||
tetrahedron_(ghs3d)_meshing_algorithm.htm
|
||||
ehlpdhtm.js
|
||||
texture_horiz_ltbluebubbles.jpg
|
||||
smesh.glo
|
||||
default.css
|
||||
image3.jpg
|
||||
image55.gif
|
||||
image44.gif
|
||||
image33.gif
|
||||
image22.gif
|
||||
image25.jpg
|
||||
image4.jpg
|
||||
image56.gif
|
||||
image45.gif
|
||||
image12.gif
|
||||
image3.jpg
|
||||
image34.gif
|
||||
image26.jpg
|
||||
image2.gif
|
||||
image13.gif
|
||||
image16.jpg
|
||||
image4.jpg
|
||||
image46.gif
|
||||
image35.gif
|
||||
image27.jpg
|
||||
image24.gif
|
||||
image6.jpg
|
||||
image47.gif
|
||||
image14.gif
|
||||
image17.jpg
|
||||
image2.gif
|
||||
image36.gif
|
||||
image28.jpg
|
||||
image25.gif
|
||||
image4.gif
|
||||
image7.jpg
|
||||
image15.gif
|
||||
image18.jpg
|
||||
image6.jpg
|
||||
image48.gif
|
||||
image37.gif
|
||||
image29.jpg
|
||||
image26.gif
|
||||
image8.jpg
|
||||
note1.gif
|
||||
image16.gif
|
||||
image4.gif
|
||||
image7.jpg
|
||||
image49.gif
|
||||
image38.gif
|
||||
image27.gif
|
||||
note1.gif
|
||||
image6.gif
|
||||
image9.jpg
|
||||
image8.jpg
|
||||
image39.gif
|
||||
image28.gif
|
||||
image6.gif
|
||||
image9.jpg
|
||||
pics\exemple.gif
|
||||
image29.gif
|
||||
image7.gif
|
||||
i_blue.jpg
|
||||
image50.gif
|
||||
image8.gif
|
||||
image9.gif
|
||||
pics\new.jpg
|
||||
image20.jpg
|
||||
image21.jpg
|
||||
image10.jpg
|
||||
image51.gif
|
||||
image40.gif
|
||||
image11.jpg
|
||||
image52.gif
|
||||
image41.gif
|
||||
image12.jpg
|
||||
pics\exemple.gif
|
||||
image53.gif
|
||||
image42.gif
|
||||
image31.gif
|
||||
image43.gif
|
||||
image32.gif
|
||||
@ -282,7 +293,8 @@ whgdata\whlstf0.htm
|
||||
whgdata\whlstf1.htm
|
||||
whgdata\whlstf2.htm
|
||||
whgdata\whlstf3.htm
|
||||
whgdata\whlstf4.htm
|
||||
whgdata\whlstg0.htm
|
||||
smesh.html
|
||||
smesh_csh.html
|
||||
smesh_rhc.html
|
||||
smesh.htm
|
||||
smesh_csh.htm
|
||||
smesh_rhc.htm
|
||||
|
@ -19,8 +19,8 @@
|
||||
<meta name=filetype content=kadov>
|
||||
<meta name=filetype-version content=1>
|
||||
<meta name=page-count content=1>
|
||||
<meta name=layout-height content=380>
|
||||
<meta name=layout-width content=700>
|
||||
<meta name=layout-height content=397>
|
||||
<meta name=layout-width content=547>
|
||||
|
||||
|
||||
<!--(Links)=========================================================-->
|
||||
@ -36,7 +36,7 @@ if (navigator.appName !="Netscape")
|
||||
<!--
|
||||
img_whs1 {border-style: none; border: none; width: 30px; height: 30px; float: none;}
|
||||
p.whs2 {margin-left: 40px;}
|
||||
img_whs3 {border-style: none; border: none; width: 27px; height: 24px;}
|
||||
img_whs3 {border-style: none; border: none; width: 22px; height: 22px;}
|
||||
-->
|
||||
</style>
|
||||
<script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">
|
||||
@ -88,7 +88,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
@ -112,8 +112,9 @@ else
|
||||
<p class=TODO> </p>
|
||||
|
||||
<p class="whs2">From the <span style="font-weight: bold;"><B>Hypotheses
|
||||
</B></span>menu select <span style="font-weight: bold;"><B>Wire discretization
|
||||
</B></span>or click <img src="../image51.gif" width="27px" height="24px" border="0" class="img_whs3"> button in the toolbar.</p>
|
||||
</B></span>menu select <span style="font-weight: bold;"><B>Create Algorithms
|
||||
></B></span> <img src="../image16.gif" width="22px" height="22px" border="0" class="img_whs3"> <span style="font-weight: bold;"><B>Wire discretization
|
||||
</B></span>and click <span style="font-weight: bold;"><B>Create</B></span>.</p>
|
||||
|
||||
<script type="text/javascript" language="javascript1.2">
|
||||
<!--
|
||||
|
@ -19,8 +19,8 @@
|
||||
<meta name=filetype content=kadov>
|
||||
<meta name=filetype-version content=1>
|
||||
<meta name=page-count content=1>
|
||||
<meta name=layout-height content=380>
|
||||
<meta name=layout-width content=700>
|
||||
<meta name=layout-height content=397>
|
||||
<meta name=layout-width content=547>
|
||||
|
||||
|
||||
<!--(Links)=========================================================-->
|
||||
@ -36,7 +36,7 @@ if (navigator.appName !="Netscape")
|
||||
<!--
|
||||
img_whs1 {border-style: none; border: none; width: 30px; height: 30px; float: none;}
|
||||
p.whs2 {margin-left: 40px;}
|
||||
img_whs3 {border-style: none; border: none; width: 26px; height: 27px;}
|
||||
img_whs3 {border-style: none; border: none; width: 22px; height: 21px;}
|
||||
-->
|
||||
</style>
|
||||
<script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">
|
||||
@ -88,7 +88,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
@ -112,8 +112,8 @@ else
|
||||
<p class=TODO> </p>
|
||||
|
||||
<p class="whs2">From the <span style="font-weight: bold;"><B>Hypotheses
|
||||
</B></span>menu select <span style="font-weight: bold;"><B>Quadrangle (Mapping)
|
||||
</B></span>or click <img src="../image56.gif" width="26px" height="27px" border="0" class="img_whs3"> button in the toolbar.</p>
|
||||
</B></span>menu select <span style="font-weight: bold;"><B>Create Algorithms
|
||||
> <img src="../image14.gif" width="22px" height="21px" border="0" class="img_whs3"> Quadrangle (Mapping) </B></span>and click <span style="font-weight: bold;"><B>Create</B></span>.</p>
|
||||
|
||||
<script type="text/javascript" language="javascript1.2">
|
||||
<!--
|
||||
|
@ -19,8 +19,8 @@
|
||||
<meta name=filetype content=kadov>
|
||||
<meta name=filetype-version content=1>
|
||||
<meta name=page-count content=1>
|
||||
<meta name=layout-height content=380>
|
||||
<meta name=layout-width content=700>
|
||||
<meta name=layout-height content=397>
|
||||
<meta name=layout-width content=553>
|
||||
|
||||
|
||||
<!--(Links)=========================================================-->
|
||||
@ -36,7 +36,7 @@ if (navigator.appName !="Netscape")
|
||||
<!--
|
||||
img_whs1 {border-style: none; border: none; width: 30px; height: 30px; float: none;}
|
||||
p.whs2 {margin-left: 40px;}
|
||||
img_whs3 {border-style: none; border: none; width: 27px; height: 24px;}
|
||||
img_whs3 {border-style: none; border: none; width: 22px; height: 22px;}
|
||||
-->
|
||||
</style>
|
||||
<script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">
|
||||
@ -88,7 +88,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
@ -112,8 +112,9 @@ else
|
||||
<p class=TODO> </p>
|
||||
|
||||
<p class="whs2">From the <span style="font-weight: bold;"><B>Hypotheses
|
||||
</B></span>menu select <span style="font-weight: bold;"><B>Triangle (Mefisto)
|
||||
</B></span>or click <img src="../image55.gif" width="27px" height="24px" border="0" class="img_whs3"> button in the toolbar.</p>
|
||||
</B></span>menu select <span style="font-weight: bold;"><B>Create Algorithms
|
||||
></B></span> <img src="../image15.gif" width="22px" height="22px" border="0" class="img_whs3"> <span style="font-weight: bold;"><B>Triangle
|
||||
(Mefisto) </B></span>and click <span style="font-weight: bold;"><B>Create</B></span>.</p>
|
||||
|
||||
<script type="text/javascript" language="javascript1.2">
|
||||
<!--
|
||||
|
@ -19,8 +19,8 @@
|
||||
<meta name=filetype content=kadov>
|
||||
<meta name=filetype-version content=1>
|
||||
<meta name=page-count content=1>
|
||||
<meta name=layout-height content=380>
|
||||
<meta name=layout-width content=700>
|
||||
<meta name=layout-height content=397>
|
||||
<meta name=layout-width content=547>
|
||||
|
||||
|
||||
<!--(Links)=========================================================-->
|
||||
@ -36,7 +36,7 @@ if (navigator.appName !="Netscape")
|
||||
<!--
|
||||
img_whs1 {border-style: none; border: none; width: 30px; height: 30px; float: none;}
|
||||
p.whs2 {margin-left: 40px;}
|
||||
img_whs3 {border-style: none; border: none; width: 26px; height: 24px;}
|
||||
img_whs3 {border-style: none; border: none; width: 23px; height: 21px;}
|
||||
-->
|
||||
</style>
|
||||
<script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">
|
||||
@ -88,7 +88,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
@ -112,9 +112,10 @@ else
|
||||
<p class=TODO> </p>
|
||||
|
||||
<p class="whs2">From the <span style="font-weight: bold;"><B>Hypotheses
|
||||
</B></span>menu select <span style="font-weight: bold;"><B>Hexahedron (i,j,k)
|
||||
</B></span>or
|
||||
click <img src="../image53.gif" width="26px" height="24px" border="0" class="img_whs3"> button in the toolbar.</p>
|
||||
</B></span>menu select <span style="font-weight: bold;"><B>Create Algorithms
|
||||
></B></span> <img src="../image13.gif" width="23px" height="21px" border="0" class="img_whs3"> <span style="font-weight: bold;"><B>Hexahedron
|
||||
(i,j,k) </B></span>and
|
||||
click <span style="font-weight: bold;"><B>Create</B></span>.</p>
|
||||
|
||||
<script type="text/javascript" language="javascript1.2">
|
||||
<!--
|
||||
|
@ -19,8 +19,8 @@
|
||||
<meta name=filetype content=kadov>
|
||||
<meta name=filetype-version content=1>
|
||||
<meta name=page-count content=1>
|
||||
<meta name=layout-height content=479>
|
||||
<meta name=layout-width content=700>
|
||||
<meta name=layout-height content=1162>
|
||||
<meta name=layout-width content=473>
|
||||
|
||||
|
||||
<!--(Links)=========================================================-->
|
||||
@ -36,9 +36,23 @@ if (navigator.appName !="Netscape")
|
||||
<!--
|
||||
img_whs1 {border-style: none; border: none; width: 30px; height: 30px; float: none;}
|
||||
ul.whs2 {list-style: disc;}
|
||||
ol.whs3 {list-style: disc;}
|
||||
p.whs3 {background-color: Transparent; color: #000000;}
|
||||
p.whs4 {font-style: italic; font-size: 12pt; font-family: 'Arial Black', sans-serif;}
|
||||
img_whs5 {border-style: none; border: none; width: 22px; height: 22px;}
|
||||
img_whs6 {border-style: none; border: none; width: 448px; height: 367px;}
|
||||
-->
|
||||
</style>
|
||||
<script type="text/javascript" language="JavaScript">
|
||||
<!--
|
||||
if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4))
|
||||
{
|
||||
var strNSS = "<style type='text/css'>";
|
||||
strNSS += "p.whs3 {background-color:white; }";
|
||||
strNSS +="</style>";
|
||||
document.write(strNSS);
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">
|
||||
<!--
|
||||
function reDo() {
|
||||
@ -68,7 +82,7 @@ onerror = null;
|
||||
<!--(Body)==========================================================-->
|
||||
|
||||
|
||||
<body>
|
||||
<body page-style ="x-size: Letter;">
|
||||
|
||||
<script type="text/javascript" language="javascript1.2">
|
||||
<!--
|
||||
@ -88,7 +102,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
@ -117,38 +131,49 @@ else
|
||||
|
||||
<li style="list-style: circle;"
|
||||
type=circle
|
||||
class=kadov-p><p>For meshing of <span style="font-weight: bold;"><B>edges</B></span>:</p></li>
|
||||
class=kadov-p><p class="whs3">For
|
||||
meshing of <span style="font-weight: bold;"><B>edges</B></span>:</p></li>
|
||||
|
||||
<ul type="disc" class="whs2">
|
||||
|
||||
<li class=kadov-p><p><a href="local_length_hypothesis.htm">Local
|
||||
Length</a> </p></li>
|
||||
<li class=kadov-p><p class="whs3"><a href="arithmetic_1d.htm">Arithmetic 1D</a></p></li>
|
||||
|
||||
<li class=kadov-p><p><a href="number_of_segments_hypothesis.htm">Number
|
||||
of segments</a></p></li>
|
||||
<li class=kadov-p><p class="whs3"><a href="local_length_hypothesis.htm">Average Length</a></p></li>
|
||||
|
||||
<li class=kadov-p><p class="whs3"><a href="deflection_1d.htm">Deflection 1D</a> </p></li>
|
||||
|
||||
<li class=kadov-p><p class="whs3"><a href="number_of_segments_hypothesis.htm">Number of segments</a></p></li>
|
||||
|
||||
<li class=kadov-p><p class="whs3"><a href="propagation_of_1d_hypothesis_on_opposite_edges.htm">Propagation
|
||||
of 1D Hypothesis on opposite edges</a></p></li>
|
||||
|
||||
<li class=kadov-p><p class="whs3"><a href="start_and_end_length_hypothesis.htm">Start and end length</a></p></li>
|
||||
</ul>
|
||||
|
||||
<li style="list-style: circle;"
|
||||
type=circle
|
||||
class=kadov-p><p>For meshing of <span style="font-weight: bold;"><B>faces</B></span>:
|
||||
</p></li>
|
||||
class=kadov-p><p class="whs3">For
|
||||
meshing of <span style="font-weight: bold;"><B>faces</B></span>: </p></li>
|
||||
</ul>
|
||||
|
||||
<ol type="disc" class="whs3">
|
||||
<ul type="disc" class="whs2">
|
||||
|
||||
<ul type="disc" class="whs2">
|
||||
|
||||
<li class=kadov-p><p><a href="max._element_area_hypothesis.htm">Max
|
||||
Element Area</a></p></li>
|
||||
<li class=kadov-p><p class="whs3"><a href="length_from_edges.htm">Length from edges</a></p></li>
|
||||
|
||||
<li class=kadov-p><p class="whs3"><a href="max._element_area_hypothesis.htm">Max Element Area</a></p></li>
|
||||
|
||||
<li class=kadov-p><p class="whs3"><a href="non_conform_mesh_allowed_hypothesis.htm">Non conform mesh allowed</a></p></li>
|
||||
</ul>
|
||||
</ol>
|
||||
</ul>
|
||||
|
||||
<ul type="disc" class="whs2">
|
||||
|
||||
<li style="list-style: circle;"
|
||||
type=circle
|
||||
class=kadov-p><p>For meshing of <span style="font-weight: bold;"><B>volumes</B></span>:
|
||||
</p></li>
|
||||
class=kadov-p><p class="whs3">For
|
||||
meshing of <span style="font-weight: bold;"><B>volumes</B></span>: </p></li>
|
||||
|
||||
<ul type="disc" class="whs2">
|
||||
|
||||
@ -175,6 +200,24 @@ else
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p class="whs4">To create a hypothesis
|
||||
</p>
|
||||
|
||||
<p><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">In the main menu select</font></span><span style="font-style: italic;
|
||||
font-size: 12pt;
|
||||
font-family: 'Arial Black', sans-serif;"> <font size=3 style="font-size:12pt;"><I></I></font></span><span style="font-weight: bold;"><B>Hypotheses
|
||||
> </B></span><img src="../image7.gif" width="22px" height="22px" border="0" class="img_whs5"> <span style="font-weight: bold;"><B>Create hypotheses</B></span></p>
|
||||
|
||||
<p>The following menu will appear:</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><img src="../image21.jpg" width="448px" height="367px" border="0" class="img_whs6"></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>Select one of the menu items and click <span style="font-weight: bold;"><B>Create</B></span>.</p>
|
||||
|
||||
<script type="text/javascript" language="javascript1.2">
|
||||
<!--
|
||||
if (window.writeIntopicBar)
|
||||
|
@ -93,7 +93,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
|
@ -19,8 +19,8 @@
|
||||
<meta name=filetype content=kadov>
|
||||
<meta name=filetype-version content=1>
|
||||
<meta name=page-count content=1>
|
||||
<meta name=layout-height content=422>
|
||||
<meta name=layout-width content=700>
|
||||
<meta name=layout-height content=891>
|
||||
<meta name=layout-width content=486>
|
||||
|
||||
|
||||
<!--(Links)=========================================================-->
|
||||
@ -36,7 +36,11 @@ if (navigator.appName !="Netscape")
|
||||
<!--
|
||||
img_whs1 {border-style: none; border: none; width: 30px; height: 30px; float: none;}
|
||||
ul.whs2 {list-style: disc;}
|
||||
ul.whs3 {list-style: circle;}
|
||||
ol.whs3 {list-style: disc;}
|
||||
ul.whs4 {list-style: circle;}
|
||||
p.whs5 {font-style: italic; font-size: 12pt; font-family: 'Arial Black', sans-serif;}
|
||||
img_whs6 {border-style: none; border: none; width: 23px; height: 22px;}
|
||||
img_whs7 {border-style: none; border: none; width: 464px; height: 324px;}
|
||||
-->
|
||||
</style>
|
||||
<script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">
|
||||
@ -88,7 +92,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
@ -114,7 +118,7 @@ else
|
||||
|
||||
<p> </p>
|
||||
|
||||
<ul type="disc" class="whs2">
|
||||
<ol type="disc" class="whs3">
|
||||
|
||||
<ul type="disc" class="whs2">
|
||||
|
||||
@ -123,7 +127,7 @@ else
|
||||
class=kadov-p><p><a href="1d_meshing_algorithm.htm">Wire discretization
|
||||
meshing algorithm</a></p></li>
|
||||
</ul>
|
||||
</ul>
|
||||
</ol>
|
||||
|
||||
<p> </p>
|
||||
|
||||
@ -134,9 +138,9 @@ else
|
||||
|
||||
<p> </p>
|
||||
|
||||
<ul type="disc" class="whs2">
|
||||
<ol type="disc" class="whs3">
|
||||
|
||||
<ul type="circle" class="whs3">
|
||||
<ul type="circle" class="whs4">
|
||||
|
||||
<li class=kadov-p><p><a href="2d_meshing_algorithm.htm">Triangle
|
||||
meshing algorithm</a></p></li>
|
||||
@ -144,7 +148,7 @@ else
|
||||
<li class=kadov-p><p><a href="2d_(quadrangle)_meshing_algorithm.htm">Quadrangle
|
||||
meshing algorithm</a></p></li>
|
||||
</ul>
|
||||
</ul>
|
||||
</ol>
|
||||
|
||||
<p> </p>
|
||||
|
||||
@ -156,9 +160,9 @@ else
|
||||
|
||||
<p> </p>
|
||||
|
||||
<ul type="disc" class="whs2">
|
||||
<ol type="disc" class="whs3">
|
||||
|
||||
<ul type="circle" class="whs3">
|
||||
<ul type="circle" class="whs4">
|
||||
|
||||
<li class=kadov-p><p><a href="3d_meshing_algorithm.htm">Hexahedron
|
||||
meshing algorithm</a></p></li>
|
||||
@ -166,10 +170,30 @@ else
|
||||
<li class=kadov-p><p><a href="tetrahedron_(netgen)_meshing_algorithm.htm">Tetrahedron
|
||||
meshing algorithm</a></p></li>
|
||||
</ul>
|
||||
</ul>
|
||||
</ol>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p class="whs5"><span style="font-style: italic;
|
||||
font-size: 12pt;
|
||||
font-family: 'Arial Black', sans-serif;"><font size=3 style="font-size:12pt;"><I>To apply a meshing algorithm
|
||||
</I></font></span></p>
|
||||
|
||||
<p><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">In the main menu select</font></span><span style="font-style: italic;
|
||||
font-size: 12pt;
|
||||
font-family: 'Arial Black', sans-serif;"> <font size=3 style="font-size:12pt;"><I></I></font></span><span style="font-weight: bold;"><B>Hypotheses
|
||||
> </B></span><img src="../image8.gif" width="23px" height="22px" border="0" class="img_whs6"> <span style="font-weight: bold;"><B>Create Algorithms</B></span></p>
|
||||
|
||||
<p>The following menu will appear:</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><img src="../image20.jpg" width="464px" height="324px" border="0" class="img_whs7"></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>Select one of the menu items and click <span style="font-weight: bold;"><B>Create</B></span>.</p>
|
||||
|
||||
<script type="text/javascript" language="javascript1.2">
|
||||
<!--
|
||||
if (window.writeIntopicBar)
|
||||
|
@ -81,7 +81,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
|
@ -88,7 +88,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
|
@ -81,7 +81,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
|
@ -89,7 +89,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
|
164
doc/salome/gui/SMESH/files/arithmetic_1d.htm
Executable file
@ -0,0 +1,164 @@
|
||||
<!doctype HTML public "-//W3C//DTD HTML 4.0 Frameset//EN">
|
||||
|
||||
<html>
|
||||
|
||||
<!--(==============================================================)-->
|
||||
<!--(Document created with RoboEditor. )============================-->
|
||||
<!--(==============================================================)-->
|
||||
|
||||
<head>
|
||||
|
||||
<title>Arithmetic 1D</title>
|
||||
|
||||
<!--(Meta)==========================================================-->
|
||||
|
||||
<meta http-equiv=content-type content="text/html; charset=windows-1252">
|
||||
<meta name=generator content="RoboHELP by eHelp Corporation - www.ehelp.com">
|
||||
<meta name=generator-major-version content=0.1>
|
||||
<meta name=generator-minor-version content=1>
|
||||
<meta name=filetype content=kadov>
|
||||
<meta name=filetype-version content=1>
|
||||
<meta name=page-count content=1>
|
||||
<meta name=layout-height content=690>
|
||||
<meta name=layout-width content=402>
|
||||
|
||||
|
||||
<!--(Links)=========================================================-->
|
||||
|
||||
<link rel='stylesheet' href='../default_ns.css'>
|
||||
<script type="text/javascript" language="JavaScript" title="WebHelpSplitCss">
|
||||
<!--
|
||||
if (navigator.appName !="Netscape")
|
||||
{ document.write("<link rel='stylesheet' href='../default.css'>");}
|
||||
//-->
|
||||
</script>
|
||||
<style type="text/css">
|
||||
<!--
|
||||
img_whs1 {border-style: none; border: none; width: 30px; height: 30px; float: none;}
|
||||
p.whs2 {margin-left: 40px;}
|
||||
img_whs3 {border-style: none; border: none; width: 319px; height: 222px;}
|
||||
p.whs4 {margin-left: 0px;}
|
||||
ul.whs5 {list-style: disc;}
|
||||
-->
|
||||
</style>
|
||||
<script type="text/javascript" language="JavaScript">
|
||||
<!--
|
||||
if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4))
|
||||
{
|
||||
var strNSS = "<style type='text/css'>";
|
||||
strNSS += "p.whs4 {margin-left:1; }";
|
||||
strNSS +="</style>";
|
||||
document.write(strNSS);
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">
|
||||
<!--
|
||||
function reDo() {
|
||||
if (innerWidth != origWidth || innerHeight != origHeight)
|
||||
location.reload();
|
||||
}
|
||||
if ((parseInt(navigator.appVersion) == 4) && (navigator.appName == "Netscape")) {
|
||||
origWidth = innerWidth;
|
||||
origHeight = innerHeight;
|
||||
onresize = reDo;
|
||||
}
|
||||
onerror = null;
|
||||
//-->
|
||||
</script>
|
||||
<style type="text/css">
|
||||
<!--
|
||||
div.WebHelpPopupMenu {position:absolute; left:0px; top:0px; z-index:4; visibility:hidden;}
|
||||
-->
|
||||
</style>
|
||||
<script type="text/javascript" language="javascript1.2" src="../whmsg.js"></script>
|
||||
<script type="text/javascript" language="javascript" src="../whver.js"></script>
|
||||
<script type="text/javascript" language="javascript1.2" src="../whproxy.js"></script>
|
||||
<script type="text/javascript" language="javascript1.2" src="../whutils.js"></script>
|
||||
<script type="text/javascript" language="javascript1.2" src="../whtopic.js"></script>
|
||||
</head>
|
||||
|
||||
<!--(Body)==========================================================-->
|
||||
|
||||
|
||||
<body>
|
||||
|
||||
<script type="text/javascript" language="javascript1.2">
|
||||
<!--
|
||||
if (window.gbWhTopic)
|
||||
{
|
||||
if (window.addTocInfo)
|
||||
{
|
||||
addTocInfo("SMESH module\nCreating meshes\nDefining hypotheses\nArithmetic 1D hypothesis");
|
||||
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
}
|
||||
if (window.writeBtnStyle)
|
||||
writeBtnStyle();
|
||||
|
||||
if (window.writeIntopicBar)
|
||||
writeIntopicBar(1);
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
sendAveInfoOut();
|
||||
}
|
||||
}
|
||||
else
|
||||
document.location.reload();
|
||||
//-->
|
||||
</script>
|
||||
<h1>Arithmetic 1D hypothesis</h1>
|
||||
|
||||
<p><img src="../i_blue.jpg" x-maintain-ratio="TRUE" width="30px" height="30px" border="0" class="img_whs1"> <span style="font-weight: bold;"><B>Arithmetic 1D</B></span>
|
||||
- hypothesis for the Regular 1D algorithm. It allows to split edges into
|
||||
segments with a length that changes in arithmetic progression (Lk = Lk-1
|
||||
+ d) beginning from a given starting length and up to a given end length.</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>Similar to Start and End Length.</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p class=TODO>To define the Arithmetic 1D hypothesis:</p>
|
||||
|
||||
<p class=TODO> </p>
|
||||
|
||||
<p class="whs2">From the <span style="font-weight: bold;"><B>Create
|
||||
Hypotheses </B></span>menu select <span style="font-weight: bold;"><B>Arithmetic
|
||||
1D </B></span>and click <span style="font-weight: bold;"><B>Create</B></span>. The
|
||||
following dialog box will appear:</p>
|
||||
|
||||
<p class="whs2"> </p>
|
||||
|
||||
<p class="whs2"><img src="../image16.jpg" width="319px" height="222px" border="0" class="img_whs3"></p>
|
||||
|
||||
<p class="whs4"> </p>
|
||||
|
||||
<p class="whs4">In this dialog box you can set:</p>
|
||||
|
||||
<p class="whs4"> </p>
|
||||
|
||||
<ul type="disc" class="whs5">
|
||||
|
||||
<li class=kadov-p><p class="whs4"><span style="font-weight: bold;"><B>Name
|
||||
</B></span>of your Arithmetic 1D hypothesis;</p></li>
|
||||
|
||||
<li class=kadov-p><p><span style="font-weight: bold;"><B>Start</B></span>
|
||||
and <span style="font-weight: bold;"><B>End length</B></span> values</p></li>
|
||||
</ul>
|
||||
|
||||
<script type="text/javascript" language="javascript1.2">
|
||||
<!--
|
||||
if (window.writeIntopicBar)
|
||||
writeIntopicBar(0);
|
||||
//-->
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
@ -105,7 +105,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
|
@ -81,7 +81,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
|
@ -87,7 +87,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
|
@ -80,7 +80,7 @@ if (window.gbWhTopic)
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
|
@ -102,7 +102,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
|
@ -102,7 +102,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
|
163
doc/salome/gui/SMESH/files/deflection_1d.htm
Executable file
@ -0,0 +1,163 @@
|
||||
<!doctype HTML public "-//W3C//DTD HTML 4.0 Frameset//EN">
|
||||
|
||||
<html>
|
||||
|
||||
<!--(==============================================================)-->
|
||||
<!--(Document created with RoboEditor. )============================-->
|
||||
<!--(==============================================================)-->
|
||||
|
||||
<head>
|
||||
|
||||
<title>Deflection 1D</title>
|
||||
|
||||
<!--(Meta)==========================================================-->
|
||||
|
||||
<meta http-equiv=content-type content="text/html; charset=windows-1252">
|
||||
<meta name=generator content="RoboHELP by eHelp Corporation - www.ehelp.com">
|
||||
<meta name=generator-major-version content=0.1>
|
||||
<meta name=generator-minor-version content=1>
|
||||
<meta name=filetype content=kadov>
|
||||
<meta name=filetype-version content=1>
|
||||
<meta name=page-count content=1>
|
||||
<meta name=layout-height content=663>
|
||||
<meta name=layout-width content=402>
|
||||
|
||||
|
||||
<!--(Links)=========================================================-->
|
||||
|
||||
<link rel='stylesheet' href='../default_ns.css'>
|
||||
<script type="text/javascript" language="JavaScript" title="WebHelpSplitCss">
|
||||
<!--
|
||||
if (navigator.appName !="Netscape")
|
||||
{ document.write("<link rel='stylesheet' href='../default.css'>");}
|
||||
//-->
|
||||
</script>
|
||||
<style type="text/css">
|
||||
<!--
|
||||
img_whs1 {border-style: none; border: none; width: 30px; height: 30px; float: none;}
|
||||
p.whs2 {margin-left: 40px;}
|
||||
img_whs3 {border-style: none; border: none; width: 318px; height: 195px;}
|
||||
p.whs4 {margin-left: 0px;}
|
||||
ul.whs5 {list-style: disc;}
|
||||
p.whs6 {font-weight: bold;}
|
||||
-->
|
||||
</style>
|
||||
<script type="text/javascript" language="JavaScript">
|
||||
<!--
|
||||
if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4))
|
||||
{
|
||||
var strNSS = "<style type='text/css'>";
|
||||
strNSS += "p.whs4 {margin-left:1; }";
|
||||
strNSS +="</style>";
|
||||
document.write(strNSS);
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">
|
||||
<!--
|
||||
function reDo() {
|
||||
if (innerWidth != origWidth || innerHeight != origHeight)
|
||||
location.reload();
|
||||
}
|
||||
if ((parseInt(navigator.appVersion) == 4) && (navigator.appName == "Netscape")) {
|
||||
origWidth = innerWidth;
|
||||
origHeight = innerHeight;
|
||||
onresize = reDo;
|
||||
}
|
||||
onerror = null;
|
||||
//-->
|
||||
</script>
|
||||
<style type="text/css">
|
||||
<!--
|
||||
div.WebHelpPopupMenu {position:absolute; left:0px; top:0px; z-index:4; visibility:hidden;}
|
||||
-->
|
||||
</style>
|
||||
<script type="text/javascript" language="javascript1.2" src="../whmsg.js"></script>
|
||||
<script type="text/javascript" language="javascript" src="../whver.js"></script>
|
||||
<script type="text/javascript" language="javascript1.2" src="../whproxy.js"></script>
|
||||
<script type="text/javascript" language="javascript1.2" src="../whutils.js"></script>
|
||||
<script type="text/javascript" language="javascript1.2" src="../whtopic.js"></script>
|
||||
</head>
|
||||
|
||||
<!--(Body)==========================================================-->
|
||||
|
||||
|
||||
<body>
|
||||
|
||||
<script type="text/javascript" language="javascript1.2">
|
||||
<!--
|
||||
if (window.gbWhTopic)
|
||||
{
|
||||
if (window.addTocInfo)
|
||||
{
|
||||
addTocInfo("SMESH module\nCreating meshes\nDefining hypotheses\nDeflection 1D hypothesis");
|
||||
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
}
|
||||
if (window.writeBtnStyle)
|
||||
writeBtnStyle();
|
||||
|
||||
if (window.writeIntopicBar)
|
||||
writeIntopicBar(1);
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
sendAveInfoOut();
|
||||
}
|
||||
}
|
||||
else
|
||||
document.location.reload();
|
||||
//-->
|
||||
</script>
|
||||
<h1>Deflection 1D hypothesis</h1>
|
||||
|
||||
<p><span style="font-weight: bold;"><B><img src="../i_blue.jpg" x-maintain-ratio="TRUE" width="30px" height="30px" border="0" class="img_whs1"> Deflection 1D</B></span>
|
||||
hypothesis is used to build 1D mesh on geometrical edges.</p>
|
||||
|
||||
<p>A geometrical edge is divided into equal segments so that the maximum
|
||||
distance between the edge curve and the line connecting segment ends is
|
||||
not more than the specified deflection value. Then mesh nodes are constructed
|
||||
at segment ends location and 1D mesh elements are constructed on them.</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p class=TODO>To define the Deflection 1D hypothesis:</p>
|
||||
|
||||
<p class=TODO> </p>
|
||||
|
||||
<p class="whs2">From the <span style="font-weight: bold;"><B>Create
|
||||
Hypotheses </B></span>menu select <span style="font-weight: bold;"><B>Deflection
|
||||
1D </B></span>and click <span style="font-weight: bold;"><B>Create</B></span>. The
|
||||
following dialog box will appear:</p>
|
||||
|
||||
<p class="whs2"> </p>
|
||||
|
||||
<p class="whs2"><img src="../image17.jpg" width="318px" height="195px" border="0" class="img_whs3"></p>
|
||||
|
||||
<p class="whs4"> </p>
|
||||
|
||||
<p class="whs4">In this dialog box you can set:</p>
|
||||
|
||||
<p class="whs4"> </p>
|
||||
|
||||
<ul type="disc" class="whs5">
|
||||
|
||||
<li class=kadov-p><p class="whs4"><span style="font-weight: bold;"><B>Name
|
||||
</B></span>of your Deflection 1D hypothesis;</p></li>
|
||||
|
||||
<li class=kadov-p><p class="whs6">Deflection <span style="font-weight: normal;">value</span></p></li>
|
||||
</ul>
|
||||
|
||||
<script type="text/javascript" language="javascript1.2">
|
||||
<!--
|
||||
if (window.writeIntopicBar)
|
||||
writeIntopicBar(0);
|
||||
//-->
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
@ -81,7 +81,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
|
@ -81,7 +81,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
|
@ -99,7 +99,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
|
@ -99,7 +99,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
|
@ -81,7 +81,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
|
@ -87,7 +87,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
|
@ -90,7 +90,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
|
127
doc/salome/gui/SMESH/files/length_from_edges.htm
Executable file
@ -0,0 +1,127 @@
|
||||
<!doctype HTML public "-//W3C//DTD HTML 4.0 Frameset//EN">
|
||||
|
||||
<html>
|
||||
|
||||
<!--(==============================================================)-->
|
||||
<!--(Document created with RoboEditor. )============================-->
|
||||
<!--(==============================================================)-->
|
||||
|
||||
<head>
|
||||
|
||||
<title>Length from edges</title>
|
||||
|
||||
<!--(Meta)==========================================================-->
|
||||
|
||||
<meta http-equiv=content-type content="text/html; charset=windows-1252">
|
||||
<meta name=generator content="RoboHELP by eHelp Corporation - www.ehelp.com">
|
||||
<meta name=generator-major-version content=0.1>
|
||||
<meta name=generator-minor-version content=1>
|
||||
<meta name=filetype content=kadov>
|
||||
<meta name=filetype-version content=1>
|
||||
<meta name=page-count content=1>
|
||||
<meta name=layout-height content=287>
|
||||
<meta name=layout-width content=557>
|
||||
|
||||
|
||||
<!--(Links)=========================================================-->
|
||||
|
||||
<link rel='stylesheet' href='../default_ns.css'>
|
||||
<script type="text/javascript" language="JavaScript" title="WebHelpSplitCss">
|
||||
<!--
|
||||
if (navigator.appName !="Netscape")
|
||||
{ document.write("<link rel='stylesheet' href='../default.css'>");}
|
||||
//-->
|
||||
</script>
|
||||
<style type="text/css">
|
||||
<!--
|
||||
img_whs1 {border-style: none; border: none; width: 30px; height: 30px; float: none;}
|
||||
p.whs2 {margin-left: 40px;}
|
||||
-->
|
||||
</style>
|
||||
<script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">
|
||||
<!--
|
||||
function reDo() {
|
||||
if (innerWidth != origWidth || innerHeight != origHeight)
|
||||
location.reload();
|
||||
}
|
||||
if ((parseInt(navigator.appVersion) == 4) && (navigator.appName == "Netscape")) {
|
||||
origWidth = innerWidth;
|
||||
origHeight = innerHeight;
|
||||
onresize = reDo;
|
||||
}
|
||||
onerror = null;
|
||||
//-->
|
||||
</script>
|
||||
<style type="text/css">
|
||||
<!--
|
||||
div.WebHelpPopupMenu {position:absolute; left:0px; top:0px; z-index:4; visibility:hidden;}
|
||||
-->
|
||||
</style>
|
||||
<script type="text/javascript" language="javascript1.2" src="../whmsg.js"></script>
|
||||
<script type="text/javascript" language="javascript" src="../whver.js"></script>
|
||||
<script type="text/javascript" language="javascript1.2" src="../whproxy.js"></script>
|
||||
<script type="text/javascript" language="javascript1.2" src="../whutils.js"></script>
|
||||
<script type="text/javascript" language="javascript1.2" src="../whtopic.js"></script>
|
||||
</head>
|
||||
|
||||
<!--(Body)==========================================================-->
|
||||
|
||||
|
||||
<body>
|
||||
|
||||
<script type="text/javascript" language="javascript1.2">
|
||||
<!--
|
||||
if (window.gbWhTopic)
|
||||
{
|
||||
if (window.addTocInfo)
|
||||
{
|
||||
addTocInfo("SMESH module\nCreating meshes\nDefining hypotheses\nLength from edges hypothesis");
|
||||
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
}
|
||||
if (window.writeBtnStyle)
|
||||
writeBtnStyle();
|
||||
|
||||
if (window.writeIntopicBar)
|
||||
writeIntopicBar(1);
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
sendAveInfoOut();
|
||||
}
|
||||
}
|
||||
else
|
||||
document.location.reload();
|
||||
//-->
|
||||
</script>
|
||||
<h1>Length from edges (2D hypothesis for Triangulator) hypothesis</h1>
|
||||
|
||||
<p><span style="font-weight: bold;"><B><img src="../i_blue.jpg" x-maintain-ratio="TRUE" width="30px" height="30px" border="0" class="img_whs1"> Length from edges</B></span>
|
||||
hypothesis builds 1D mesh segments having a length calculated as an average
|
||||
edge length for a given wire. </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>This hypothesis has no parameters.</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p class="whs2"> </p>
|
||||
|
||||
<p class="whs2"> </p>
|
||||
|
||||
<p class="whs2"> </p>
|
||||
|
||||
<script type="text/javascript" language="javascript1.2">
|
||||
<!--
|
||||
if (window.writeIntopicBar)
|
||||
writeIntopicBar(0);
|
||||
//-->
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
@ -89,7 +89,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
|
@ -19,8 +19,8 @@
|
||||
<meta name=filetype content=kadov>
|
||||
<meta name=filetype-version content=1>
|
||||
<meta name=page-count content=1>
|
||||
<meta name=layout-height content=896>
|
||||
<meta name=layout-width content=700>
|
||||
<meta name=layout-height content=963>
|
||||
<meta name=layout-width content=429>
|
||||
|
||||
|
||||
<!--(Links)=========================================================-->
|
||||
@ -38,11 +38,10 @@ img_whs1 {border-style: none; border: none; width: 30px; height: 30px; float: no
|
||||
p.whs2 {font-weight: bold; margin-left: 40px;}
|
||||
img_whs3 {border-style: none; border: none; width: 367px; height: 224px;}
|
||||
p.whs4 {margin-left: 40px;}
|
||||
img_whs5 {border-style: none; border: none; width: 26px; height: 24px;}
|
||||
p.whs6 {margin-left: 80px;}
|
||||
img_whs7 {border-style: none; border: none; width: 304px; height: 233px;}
|
||||
p.whs8 {margin-left: 0px;}
|
||||
ul.whs9 {list-style: disc;}
|
||||
p.whs5 {margin-left: 80px;}
|
||||
img_whs6 {border-style: none; border: none; width: 304px; height: 233px;}
|
||||
p.whs7 {margin-left: 0px;}
|
||||
ul.whs8 {list-style: disc;}
|
||||
-->
|
||||
</style>
|
||||
<script type="text/javascript" language="JavaScript">
|
||||
@ -50,7 +49,7 @@ ul.whs9 {list-style: disc;}
|
||||
if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4))
|
||||
{
|
||||
var strNSS = "<style type='text/css'>";
|
||||
strNSS += "p.whs8 {margin-left:1; }";
|
||||
strNSS += "p.whs7 {margin-left:1; }";
|
||||
strNSS +="</style>";
|
||||
document.write(strNSS);
|
||||
}
|
||||
@ -93,7 +92,7 @@ if (window.gbWhTopic)
|
||||
{
|
||||
if (window.addTocInfo)
|
||||
{
|
||||
addTocInfo("SMESH module\nCreating meshes\nDefining hypotheses\nLocal Length hypothesis");
|
||||
addTocInfo("SMESH module\nCreating meshes\nDefining hypotheses\nAverage Length hypothesis");
|
||||
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
}
|
||||
@ -105,7 +104,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
@ -116,9 +115,9 @@ else
|
||||
document.location.reload();
|
||||
//-->
|
||||
</script>
|
||||
<h1>Local Length hypothesis</h1>
|
||||
<h1>Average Length hypothesis</h1>
|
||||
|
||||
<p><img src="../i_blue.jpg" x-maintain-ratio="TRUE" width="30px" height="30px" border="0" class="img_whs1"> <span style="font-weight: bold;"><B>Local Length </B></span>hypothesis
|
||||
<p><img src="../i_blue.jpg" x-maintain-ratio="TRUE" width="30px" height="30px" border="0" class="img_whs1"> <span style="font-weight: bold;"><B>Average Length </B></span>hypothesis
|
||||
can be applied for meshing of edges composing your geometrical object.
|
||||
Definition of this hypothesis consists of setting the <span style="font-weight: bold;"><B>length</B></span>
|
||||
of segments, which will split these edges. The points on the edges generated
|
||||
@ -131,34 +130,35 @@ else
|
||||
|
||||
<p class="whs2"> </p>
|
||||
|
||||
<p class=TODO>To define the Local Length hypothesis:</p>
|
||||
<p class=TODO>To define the Average Length hypothesis:</p>
|
||||
|
||||
<p class=TODO> </p>
|
||||
|
||||
<p class="whs4">From the <span style="font-weight: bold;"><B>Hypotheses
|
||||
</B></span>menu select <span style="font-weight: bold;"><B>Average Length </B></span>or
|
||||
<img src="../image42.gif" width="26px" height="24px" border="0" class="img_whs5"> click button. The following dialog box will appear:</p>
|
||||
<p class="whs4">From the <span style="font-weight: bold;"><B>Create
|
||||
Hypotheses </B></span>menu select <span style="font-weight: bold;"><B>Average
|
||||
Length </B></span>and click <span style="font-weight: bold;"><B>Create</B></span>.
|
||||
The following dialog box will appear:</p>
|
||||
|
||||
<p class="whs4"> </p>
|
||||
|
||||
<p class="whs6"><img src="../image43.gif" width="304px" height="233px" border="0" class="img_whs7"></p>
|
||||
<p class="whs5"><img src="../image43.gif" width="304px" height="233px" border="0" class="img_whs6"></p>
|
||||
|
||||
<p class="whs6"> </p>
|
||||
<p class="whs5"> </p>
|
||||
|
||||
<p class="whs8">In this dialog box you can set:</p>
|
||||
<p class="whs7">In this dialog box you can set:</p>
|
||||
|
||||
<p class="whs8"> </p>
|
||||
<p class="whs7"> </p>
|
||||
|
||||
<ul type="disc" class="whs9">
|
||||
<ul type="disc" class="whs8">
|
||||
|
||||
<li class=kadov-p><p class="whs8"><span style="font-weight: bold;"><B>Name
|
||||
</B></span>of your Local Length hypothesis</p></li>
|
||||
<li class=kadov-p><p class="whs7"><span style="font-weight: bold;"><B>Name
|
||||
</B></span>of your Average Length hypothesis</p></li>
|
||||
|
||||
<li class=kadov-p><p class="whs8"><span style="font-weight: bold;"><B>Length
|
||||
<li class=kadov-p><p class="whs7"><span style="font-weight: bold;"><B>Length
|
||||
</B></span>of segments which will split the edges of your geometrical object</p></li>
|
||||
</ul>
|
||||
|
||||
<p class="whs8"> </p>
|
||||
<p class="whs7"> </p>
|
||||
|
||||
<script type="text/javascript" language="javascript1.2">
|
||||
<!--
|
||||
|
@ -19,8 +19,8 @@
|
||||
<meta name=filetype content=kadov>
|
||||
<meta name=filetype-version content=1>
|
||||
<meta name=page-count content=1>
|
||||
<meta name=layout-height content=634>
|
||||
<meta name=layout-width content=700>
|
||||
<meta name=layout-height content=644>
|
||||
<meta name=layout-width content=557>
|
||||
|
||||
|
||||
<!--(Links)=========================================================-->
|
||||
@ -36,11 +36,10 @@ if (navigator.appName !="Netscape")
|
||||
<!--
|
||||
img_whs1 {border-style: none; border: none; width: 30px; height: 30px; float: none;}
|
||||
p.whs2 {margin-left: 40px;}
|
||||
img_whs3 {border-style: none; border: none; width: 25px; height: 24px;}
|
||||
p.whs4 {margin-left: 80px;}
|
||||
img_whs5 {border-style: none; border: none; width: 304px; height: 233px;}
|
||||
p.whs6 {margin-left: 0px;}
|
||||
ul.whs7 {list-style: disc;}
|
||||
p.whs3 {margin-left: 80px;}
|
||||
img_whs4 {border-style: none; border: none; width: 304px; height: 233px;}
|
||||
p.whs5 {margin-left: 0px;}
|
||||
ul.whs6 {list-style: disc;}
|
||||
-->
|
||||
</style>
|
||||
<script type="text/javascript" language="JavaScript">
|
||||
@ -48,7 +47,7 @@ ul.whs7 {list-style: disc;}
|
||||
if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4))
|
||||
{
|
||||
var strNSS = "<style type='text/css'>";
|
||||
strNSS += "p.whs6 {margin-left:1; }";
|
||||
strNSS += "p.whs5 {margin-left:1; }";
|
||||
strNSS +="</style>";
|
||||
document.write(strNSS);
|
||||
}
|
||||
@ -103,7 +102,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
@ -130,30 +129,31 @@ else
|
||||
<p class=TODO> </p>
|
||||
|
||||
<p class="whs2">From the <span style="font-weight: bold;"><B>Hypotheses
|
||||
</B></span>menu select <span style="font-weight: bold;"><B>Max Element Area </B></span>or
|
||||
<img src="../image47.gif" width="25px" height="24px" border="0" class="img_whs3"> click button. The following dialog box will appear:</p>
|
||||
</B></span>menu select <span style="font-weight: bold;"><B>Max Element Area </B></span>and<span
|
||||
style="font-weight: bold;"> <B></B></span>click <span style="font-weight: bold;"><B>Create</B></span>.
|
||||
The following dialog box will appear:</p>
|
||||
|
||||
<p class="whs2"> </p>
|
||||
|
||||
<p class="whs4"><img src="../image48.gif" width="304px" height="233px" border="0" class="img_whs5"></p>
|
||||
<p class="whs3"><img src="../image48.gif" width="304px" height="233px" border="0" class="img_whs4"></p>
|
||||
|
||||
<p class="whs4"> </p>
|
||||
<p class="whs3"> </p>
|
||||
|
||||
<p class="whs6">In this dialog box you can set:</p>
|
||||
<p class="whs5">In this dialog box you can set:</p>
|
||||
|
||||
<p class="whs6"> </p>
|
||||
<p class="whs5"> </p>
|
||||
|
||||
<ul type="disc" class="whs7">
|
||||
<ul type="disc" class="whs6">
|
||||
|
||||
<li class=kadov-p><p class="whs6"><span style="font-weight: bold;"><B>Name
|
||||
<li class=kadov-p><p class="whs5"><span style="font-weight: bold;"><B>Name
|
||||
</B></span>of your Max Element Area hypothesis</p></li>
|
||||
|
||||
<li class=kadov-p><p class="whs6"><span style="font-weight: bold;"><B>Max.
|
||||
<li class=kadov-p><p class="whs5"><span style="font-weight: bold;"><B>Max.
|
||||
Area</B></span>:<span style="font-weight: bold;"> <B></B></span>the maximum area<span
|
||||
style="font-weight: bold;"> <B></B></span>of meshing elements</p></li>
|
||||
</ul>
|
||||
|
||||
<p class="whs6"> </p>
|
||||
<p class="whs5"> </p>
|
||||
|
||||
<script type="text/javascript" language="javascript1.2">
|
||||
<!--
|
||||
|
@ -19,8 +19,8 @@
|
||||
<meta name=filetype content=kadov>
|
||||
<meta name=filetype-version content=1>
|
||||
<meta name=page-count content=1>
|
||||
<meta name=layout-height content=653>
|
||||
<meta name=layout-width content=700>
|
||||
<meta name=layout-height content=663>
|
||||
<meta name=layout-width content=557>
|
||||
|
||||
|
||||
<!--(Links)=========================================================-->
|
||||
@ -36,11 +36,10 @@ if (navigator.appName !="Netscape")
|
||||
<!--
|
||||
img_whs1 {border-style: none; border: none; width: 30px; height: 30px; float: none;}
|
||||
p.whs2 {margin-left: 40px;}
|
||||
img_whs3 {border-style: none; border: none; width: 25px; height: 24px;}
|
||||
p.whs4 {margin-left: 80px;}
|
||||
img_whs5 {border-style: none; border: none; width: 304px; height: 233px;}
|
||||
p.whs6 {margin-left: 0px;}
|
||||
ul.whs7 {list-style: disc;}
|
||||
p.whs3 {margin-left: 80px;}
|
||||
img_whs4 {border-style: none; border: none; width: 304px; height: 233px;}
|
||||
p.whs5 {margin-left: 0px;}
|
||||
ul.whs6 {list-style: disc;}
|
||||
-->
|
||||
</style>
|
||||
<script type="text/javascript" language="JavaScript">
|
||||
@ -48,7 +47,7 @@ ul.whs7 {list-style: disc;}
|
||||
if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4))
|
||||
{
|
||||
var strNSS = "<style type='text/css'>";
|
||||
strNSS += "p.whs6 {margin-left:1; }";
|
||||
strNSS += "p.whs5 {margin-left:1; }";
|
||||
strNSS +="</style>";
|
||||
document.write(strNSS);
|
||||
}
|
||||
@ -103,7 +102,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
@ -132,29 +131,30 @@ else
|
||||
|
||||
<p class="whs2">From the <span style="font-weight: bold;"><B>Hypotheses
|
||||
</B></span>menu select <span style="font-weight: bold;"><B>Max Element Volume
|
||||
</B></span>or <img src="../image50.gif" width="25px" height="24px" border="0" class="img_whs3"> click button. The following dialog box will appear:</p>
|
||||
</B></span>and click <span style="font-weight: bold;"><B>Create</B></span>. The following
|
||||
dialog box will appear:</p>
|
||||
|
||||
<p class="whs2"> </p>
|
||||
|
||||
<p class="whs4"><img src="../image49.gif" width="304px" height="233px" border="0" class="img_whs5"></p>
|
||||
<p class="whs3"><img src="../image49.gif" width="304px" height="233px" border="0" class="img_whs4"></p>
|
||||
|
||||
<p class="whs4"> </p>
|
||||
<p class="whs3"> </p>
|
||||
|
||||
<p class="whs6">In this dialog box you can set:</p>
|
||||
<p class="whs5">In this dialog box you can set:</p>
|
||||
|
||||
<p class="whs6"> </p>
|
||||
<p class="whs5"> </p>
|
||||
|
||||
<ul type="disc" class="whs7">
|
||||
<ul type="disc" class="whs6">
|
||||
|
||||
<li class=kadov-p><p class="whs6"><span style="font-weight: bold;"><B>Name
|
||||
<li class=kadov-p><p class="whs5"><span style="font-weight: bold;"><B>Name
|
||||
</B></span>of your Max Element Volume hypothesis</p></li>
|
||||
|
||||
<li class=kadov-p><p class="whs6"><span style="font-weight: bold;"><B>Max.
|
||||
<li class=kadov-p><p class="whs5"><span style="font-weight: bold;"><B>Max.
|
||||
Volume</B></span>:<span style="font-weight: bold;"> <B></B></span>the maximum volume
|
||||
of 3D meshing elements</p></li>
|
||||
</ul>
|
||||
|
||||
<p class="whs6"> </p>
|
||||
<p class="whs5"> </p>
|
||||
|
||||
<script type="text/javascript" language="javascript1.2">
|
||||
<!--
|
||||
|
@ -89,7 +89,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
|
118
doc/salome/gui/SMESH/files/non_conform_mesh_allowed_hypothesis.htm
Executable file
@ -0,0 +1,118 @@
|
||||
<!doctype HTML public "-//W3C//DTD HTML 4.0 Frameset//EN">
|
||||
|
||||
<html>
|
||||
|
||||
<!--(==============================================================)-->
|
||||
<!--(Document created with RoboEditor. )============================-->
|
||||
<!--(==============================================================)-->
|
||||
|
||||
<head>
|
||||
|
||||
<title>Non conform mesh allowed hypothesis</title>
|
||||
|
||||
<!--(Meta)==========================================================-->
|
||||
|
||||
<meta http-equiv=content-type content="text/html; charset=windows-1252">
|
||||
<meta name=generator content="RoboHELP by eHelp Corporation - www.ehelp.com">
|
||||
<meta name=generator-major-version content=0.1>
|
||||
<meta name=generator-minor-version content=1>
|
||||
<meta name=filetype content=kadov>
|
||||
<meta name=filetype-version content=1>
|
||||
<meta name=page-count content=1>
|
||||
<meta name=layout-height content=246>
|
||||
<meta name=layout-width content=560>
|
||||
|
||||
|
||||
<!--(Links)=========================================================-->
|
||||
|
||||
<link rel='stylesheet' href='../default_ns.css'>
|
||||
<script type="text/javascript" language="JavaScript" title="WebHelpSplitCss">
|
||||
<!--
|
||||
if (navigator.appName !="Netscape")
|
||||
{ document.write("<link rel='stylesheet' href='../default.css'>");}
|
||||
//-->
|
||||
</script>
|
||||
<style type="text/css">
|
||||
<!--
|
||||
img_whs1 {border-style: none; border: none; width: 30px; height: 30px; float: none;}
|
||||
-->
|
||||
</style>
|
||||
<script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">
|
||||
<!--
|
||||
function reDo() {
|
||||
if (innerWidth != origWidth || innerHeight != origHeight)
|
||||
location.reload();
|
||||
}
|
||||
if ((parseInt(navigator.appVersion) == 4) && (navigator.appName == "Netscape")) {
|
||||
origWidth = innerWidth;
|
||||
origHeight = innerHeight;
|
||||
onresize = reDo;
|
||||
}
|
||||
onerror = null;
|
||||
//-->
|
||||
</script>
|
||||
<style type="text/css">
|
||||
<!--
|
||||
div.WebHelpPopupMenu {position:absolute; left:0px; top:0px; z-index:4; visibility:hidden;}
|
||||
-->
|
||||
</style>
|
||||
<script type="text/javascript" language="javascript1.2" src="../whmsg.js"></script>
|
||||
<script type="text/javascript" language="javascript" src="../whver.js"></script>
|
||||
<script type="text/javascript" language="javascript1.2" src="../whproxy.js"></script>
|
||||
<script type="text/javascript" language="javascript1.2" src="../whutils.js"></script>
|
||||
<script type="text/javascript" language="javascript1.2" src="../whtopic.js"></script>
|
||||
</head>
|
||||
|
||||
<!--(Body)==========================================================-->
|
||||
|
||||
|
||||
<body>
|
||||
|
||||
<script type="text/javascript" language="javascript1.2">
|
||||
<!--
|
||||
if (window.gbWhTopic)
|
||||
{
|
||||
if (window.addTocInfo)
|
||||
{
|
||||
addTocInfo("SMESH module\nCreating meshes\nDefining hypotheses\nNon conform mesh allowed hypothesis");
|
||||
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
}
|
||||
if (window.writeBtnStyle)
|
||||
writeBtnStyle();
|
||||
|
||||
if (window.writeIntopicBar)
|
||||
writeIntopicBar(1);
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
sendAveInfoOut();
|
||||
}
|
||||
}
|
||||
else
|
||||
document.location.reload();
|
||||
//-->
|
||||
</script>
|
||||
<h1>Non conform mesh allowed hypothesis</h1>
|
||||
|
||||
<p><span style="font-weight: bold;"><B><img src="../i_blue.jpg" x-maintain-ratio="TRUE" width="30px" height="30px" border="0" class="img_whs1"> Non Conform mesh allowed</B></span>
|
||||
hypothesis allows to generate non-conform meshes (that is, meshes having
|
||||
some edges ending on an edge or face of adjacent elements). </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>This hypothesis has no parameters.</p>
|
||||
|
||||
<script type="text/javascript" language="javascript1.2">
|
||||
<!--
|
||||
if (window.writeIntopicBar)
|
||||
writeIntopicBar(0);
|
||||
//-->
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
@ -19,8 +19,8 @@
|
||||
<meta name=filetype content=kadov>
|
||||
<meta name=filetype-version content=1>
|
||||
<meta name=page-count content=1>
|
||||
<meta name=layout-height content=905>
|
||||
<meta name=layout-width content=700>
|
||||
<meta name=layout-height content=934>
|
||||
<meta name=layout-width content=557>
|
||||
|
||||
|
||||
<!--(Links)=========================================================-->
|
||||
@ -37,11 +37,10 @@ if (navigator.appName !="Netscape")
|
||||
img_whs1 {border-style: none; border: none; width: 30px; height: 30px; float: none;}
|
||||
p.whs2 {margin-left: 40px;}
|
||||
img_whs3 {border-style: none; border: none; width: 431px; height: 233px;}
|
||||
img_whs4 {border-style: none; border: none; width: 25px; height: 24px;}
|
||||
p.whs5 {margin-left: 80px;}
|
||||
img_whs6 {border-style: none; border: none; width: 304px; height: 233px;}
|
||||
p.whs7 {margin-left: 0px;}
|
||||
ul.whs8 {list-style: disc;}
|
||||
p.whs4 {margin-left: 80px;}
|
||||
img_whs5 {border-style: none; border: none; width: 304px; height: 233px;}
|
||||
p.whs6 {margin-left: 0px;}
|
||||
ul.whs7 {list-style: disc;}
|
||||
-->
|
||||
</style>
|
||||
<script type="text/javascript" language="JavaScript">
|
||||
@ -49,7 +48,7 @@ ul.whs8 {list-style: disc;}
|
||||
if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4))
|
||||
{
|
||||
var strNSS = "<style type='text/css'>";
|
||||
strNSS += "p.whs7 {margin-left:1; }";
|
||||
strNSS += "p.whs6 {margin-left:1; }";
|
||||
strNSS +="</style>";
|
||||
document.write(strNSS);
|
||||
}
|
||||
@ -104,7 +103,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
@ -135,30 +134,31 @@ else
|
||||
<p class=TODO> </p>
|
||||
|
||||
<p class="whs2">From the <span style="font-weight: bold;"><B>Hypotheses
|
||||
</B></span>menu select <span style="font-weight: bold;"><B>Nb. Segments </B></span>or
|
||||
<img src="../image45.gif" width="25px" height="24px" border="0" class="img_whs4"> click button. The following dialog box will appear:</p>
|
||||
</B></span>menu select <span style="font-weight: bold;"><B>Nb. Segments </B></span>and
|
||||
click <span style="font-weight: bold;"><B>Create</B></span>. The following dialog
|
||||
box will appear:</p>
|
||||
|
||||
<p class="whs2"> </p>
|
||||
|
||||
<p class="whs5"><img src="../image44.gif" width="304px" height="233px" border="0" class="img_whs6"></p>
|
||||
<p class="whs4"><img src="../image44.gif" width="304px" height="233px" border="0" class="img_whs5"></p>
|
||||
|
||||
<p class="whs5"> </p>
|
||||
<p class="whs4"> </p>
|
||||
|
||||
<p class="whs7">In this dialog box you can set:</p>
|
||||
<p class="whs6">In this dialog box you can set:</p>
|
||||
|
||||
<p class="whs7"> </p>
|
||||
<p class="whs6"> </p>
|
||||
|
||||
<ul type="disc" class="whs8">
|
||||
<ul type="disc" class="whs7">
|
||||
|
||||
<li class=kadov-p><p class="whs7"><span style="font-weight: bold;"><B>Name
|
||||
<li class=kadov-p><p class="whs6"><span style="font-weight: bold;"><B>Name
|
||||
</B></span>of your Local Length hypothesis</p></li>
|
||||
|
||||
<li class=kadov-p><p class="whs7"><span style="font-weight: bold;"><B>Segments</B></span>:<span
|
||||
<li class=kadov-p><p class="whs6"><span style="font-weight: bold;"><B>Segments</B></span>:<span
|
||||
style="font-weight: bold;"> <B></B></span>the number<span style="font-weight: bold;">
|
||||
<B></B></span>of segments which will split the edges of your geometrical object</p></li>
|
||||
</ul>
|
||||
|
||||
<p class="whs7"> </p>
|
||||
<p class="whs6"> </p>
|
||||
|
||||
<script type="text/javascript" language="javascript1.2">
|
||||
<!--
|
||||
|
132
doc/salome/gui/SMESH/files/propagation_of_1d_hypothesis_on_opposite_edges.htm
Executable file
@ -0,0 +1,132 @@
|
||||
<!doctype HTML public "-//W3C//DTD HTML 4.0 Frameset//EN">
|
||||
|
||||
<html>
|
||||
|
||||
<!--(==============================================================)-->
|
||||
<!--(Document created with RoboEditor. )============================-->
|
||||
<!--(==============================================================)-->
|
||||
|
||||
<head>
|
||||
|
||||
<title>Propagation of 1D Hypothesis on opposite edges</title>
|
||||
|
||||
<!--(Meta)==========================================================-->
|
||||
|
||||
<meta http-equiv=content-type content="text/html; charset=windows-1252">
|
||||
<meta name=generator content="RoboHELP by eHelp Corporation - www.ehelp.com">
|
||||
<meta name=generator-major-version content=0.1>
|
||||
<meta name=generator-minor-version content=1>
|
||||
<meta name=filetype content=kadov>
|
||||
<meta name=filetype-version content=1>
|
||||
<meta name=page-count content=1>
|
||||
<meta name=layout-height content=397>
|
||||
<meta name=layout-width content=547>
|
||||
|
||||
|
||||
<!--(Links)=========================================================-->
|
||||
|
||||
<link rel='stylesheet' href='../default_ns.css'>
|
||||
<script type="text/javascript" language="JavaScript" title="WebHelpSplitCss">
|
||||
<!--
|
||||
if (navigator.appName !="Netscape")
|
||||
{ document.write("<link rel='stylesheet' href='../default.css'>");}
|
||||
//-->
|
||||
</script>
|
||||
<style type="text/css">
|
||||
<!--
|
||||
img_whs1 {border-style: none; border: none; width: 30px; height: 30px; float: none;}
|
||||
p.whs2 {margin-left: 0px;}
|
||||
-->
|
||||
</style>
|
||||
<script type="text/javascript" language="JavaScript">
|
||||
<!--
|
||||
if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4))
|
||||
{
|
||||
var strNSS = "<style type='text/css'>";
|
||||
strNSS += "p.whs2 {margin-left:1; }";
|
||||
strNSS +="</style>";
|
||||
document.write(strNSS);
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">
|
||||
<!--
|
||||
function reDo() {
|
||||
if (innerWidth != origWidth || innerHeight != origHeight)
|
||||
location.reload();
|
||||
}
|
||||
if ((parseInt(navigator.appVersion) == 4) && (navigator.appName == "Netscape")) {
|
||||
origWidth = innerWidth;
|
||||
origHeight = innerHeight;
|
||||
onresize = reDo;
|
||||
}
|
||||
onerror = null;
|
||||
//-->
|
||||
</script>
|
||||
<style type="text/css">
|
||||
<!--
|
||||
div.WebHelpPopupMenu {position:absolute; left:0px; top:0px; z-index:4; visibility:hidden;}
|
||||
-->
|
||||
</style>
|
||||
<script type="text/javascript" language="javascript1.2" src="../whmsg.js"></script>
|
||||
<script type="text/javascript" language="javascript" src="../whver.js"></script>
|
||||
<script type="text/javascript" language="javascript1.2" src="../whproxy.js"></script>
|
||||
<script type="text/javascript" language="javascript1.2" src="../whutils.js"></script>
|
||||
<script type="text/javascript" language="javascript1.2" src="../whtopic.js"></script>
|
||||
</head>
|
||||
|
||||
<!--(Body)==========================================================-->
|
||||
|
||||
|
||||
<body>
|
||||
|
||||
<script type="text/javascript" language="javascript1.2">
|
||||
<!--
|
||||
if (window.gbWhTopic)
|
||||
{
|
||||
if (window.addTocInfo)
|
||||
{
|
||||
addTocInfo("SMESH module\nCreating meshes\nDefining hypotheses\nPropagation of 1D Hypothesis on opposite edges");
|
||||
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
}
|
||||
if (window.writeBtnStyle)
|
||||
writeBtnStyle();
|
||||
|
||||
if (window.writeIntopicBar)
|
||||
writeIntopicBar(1);
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
sendAveInfoOut();
|
||||
}
|
||||
}
|
||||
else
|
||||
document.location.reload();
|
||||
//-->
|
||||
</script>
|
||||
<h1>Propagation of 1D Hypothesis on opposite edges</h1>
|
||||
|
||||
<p><img src="../i_blue.jpg" x-maintain-ratio="TRUE" width="30px" height="30px" border="0" class="img_whs1"> <span style="font-weight: bold;"><B>Propagation of 1D Hypothesis
|
||||
on opposite edges </B></span>allows to propagate a set hypothesis onto an
|
||||
opposite edge. If a local hypothesis and propagation are set on one of
|
||||
edges of a quadrangular face, the opposite edge will have the same hypothesis,
|
||||
unless another hypothesis has been locally set on such opposite edge.</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p class="whs2"> </p>
|
||||
|
||||
<script type="text/javascript" language="javascript1.2">
|
||||
<!--
|
||||
if (window.writeIntopicBar)
|
||||
writeIntopicBar(0);
|
||||
//-->
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
@ -81,7 +81,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
|
@ -81,7 +81,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
|
@ -95,7 +95,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
|
@ -81,7 +81,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
|
@ -85,7 +85,7 @@ if (window.gbWhTopic)
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
|
@ -85,7 +85,7 @@ if (window.gbWhTopic)
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
|
@ -102,7 +102,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
|
165
doc/salome/gui/SMESH/files/start_and_end_length_hypothesis.htm
Executable file
@ -0,0 +1,165 @@
|
||||
<!doctype HTML public "-//W3C//DTD HTML 4.0 Frameset//EN">
|
||||
|
||||
<html>
|
||||
|
||||
<!--(==============================================================)-->
|
||||
<!--(Document created with RoboEditor. )============================-->
|
||||
<!--(==============================================================)-->
|
||||
|
||||
<head>
|
||||
|
||||
<title>Start and End Length hypothesis</title>
|
||||
|
||||
<!--(Meta)==========================================================-->
|
||||
|
||||
<meta http-equiv=content-type content="text/html; charset=windows-1252">
|
||||
<meta name=generator content="RoboHELP by eHelp Corporation - www.ehelp.com">
|
||||
<meta name=generator-major-version content=0.1>
|
||||
<meta name=generator-minor-version content=1>
|
||||
<meta name=filetype content=kadov>
|
||||
<meta name=filetype-version content=1>
|
||||
<meta name=page-count content=1>
|
||||
<meta name=layout-height content=633>
|
||||
<meta name=layout-width content=557>
|
||||
|
||||
|
||||
<!--(Links)=========================================================-->
|
||||
|
||||
<link rel='stylesheet' href='../default_ns.css'>
|
||||
<script type="text/javascript" language="JavaScript" title="WebHelpSplitCss">
|
||||
<!--
|
||||
if (navigator.appName !="Netscape")
|
||||
{ document.write("<link rel='stylesheet' href='../default.css'>");}
|
||||
//-->
|
||||
</script>
|
||||
<style type="text/css">
|
||||
<!--
|
||||
img_whs1 {border-style: none; border: none; width: 30px; height: 30px; float: none;}
|
||||
p.whs2 {margin-left: 40px;}
|
||||
p.whs3 {margin-left: 80px;}
|
||||
img_whs4 {border-style: none; border: none; width: 319px; height: 222px;}
|
||||
p.whs5 {margin-left: 0px;}
|
||||
ul.whs6 {list-style: disc;}
|
||||
-->
|
||||
</style>
|
||||
<script type="text/javascript" language="JavaScript">
|
||||
<!--
|
||||
if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4))
|
||||
{
|
||||
var strNSS = "<style type='text/css'>";
|
||||
strNSS += "p.whs5 {margin-left:1; }";
|
||||
strNSS +="</style>";
|
||||
document.write(strNSS);
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">
|
||||
<!--
|
||||
function reDo() {
|
||||
if (innerWidth != origWidth || innerHeight != origHeight)
|
||||
location.reload();
|
||||
}
|
||||
if ((parseInt(navigator.appVersion) == 4) && (navigator.appName == "Netscape")) {
|
||||
origWidth = innerWidth;
|
||||
origHeight = innerHeight;
|
||||
onresize = reDo;
|
||||
}
|
||||
onerror = null;
|
||||
//-->
|
||||
</script>
|
||||
<style type="text/css">
|
||||
<!--
|
||||
div.WebHelpPopupMenu {position:absolute; left:0px; top:0px; z-index:4; visibility:hidden;}
|
||||
-->
|
||||
</style>
|
||||
<script type="text/javascript" language="javascript1.2" src="../whmsg.js"></script>
|
||||
<script type="text/javascript" language="javascript" src="../whver.js"></script>
|
||||
<script type="text/javascript" language="javascript1.2" src="../whproxy.js"></script>
|
||||
<script type="text/javascript" language="javascript1.2" src="../whutils.js"></script>
|
||||
<script type="text/javascript" language="javascript1.2" src="../whtopic.js"></script>
|
||||
</head>
|
||||
|
||||
<!--(Body)==========================================================-->
|
||||
|
||||
|
||||
<body>
|
||||
|
||||
<script type="text/javascript" language="javascript1.2">
|
||||
<!--
|
||||
if (window.gbWhTopic)
|
||||
{
|
||||
if (window.addTocInfo)
|
||||
{
|
||||
addTocInfo("SMESH module\nCreating meshes\nDefining hypotheses\nStart and End Length hypothesis");
|
||||
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
}
|
||||
if (window.writeBtnStyle)
|
||||
writeBtnStyle();
|
||||
|
||||
if (window.writeIntopicBar)
|
||||
writeIntopicBar(1);
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
sendAveInfoOut();
|
||||
}
|
||||
}
|
||||
else
|
||||
document.location.reload();
|
||||
//-->
|
||||
</script>
|
||||
<h1>Start and End Length hypothesis</h1>
|
||||
|
||||
<p><img src="../i_blue.jpg" x-maintain-ratio="TRUE" width="30px" height="30px" border="0" class="img_whs1"> <span style="font-weight: bold;"><B>Start and End Length</B></span>
|
||||
hypothesis is used to build 1D mesh on geometrical edges.</p>
|
||||
|
||||
<p>A geometrical edge is divided into segments so that the first and the
|
||||
last segments have a specified length. Length of each but the first segment
|
||||
differs from length of the previous one by a constant factor. Then mesh
|
||||
nodes are constructed at segment ends location and 1D mesh elements are
|
||||
constructed on them.</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p class=TODO>To define the Average Length hypothesis:</p>
|
||||
|
||||
<p class=TODO> </p>
|
||||
|
||||
<p class="whs2">From the <span style="font-weight: bold;"><B>Create
|
||||
Hypotheses </B></span>menu select <span style="font-weight: bold;"><B>Start and
|
||||
End Length </B></span>and click <span style="font-weight: bold;"><B>Create</B></span>.
|
||||
The following dialog box will appear:</p>
|
||||
|
||||
<p class="whs2"> </p>
|
||||
|
||||
<p class="whs3"><img src="../image18.jpg" width="319px" height="222px" border="0" class="img_whs4"></p>
|
||||
|
||||
<p class="whs3"> </p>
|
||||
|
||||
<p class="whs5">In this dialog box you can set:</p>
|
||||
|
||||
<p class="whs5"> </p>
|
||||
|
||||
<ul type="disc" class="whs6">
|
||||
|
||||
<li class=kadov-p><p class="whs5"><span style="font-weight: bold;"><B>Name
|
||||
</B></span>of your Start and End Length hypothesis</p></li>
|
||||
|
||||
<li class=kadov-p><p class="whs5"><span style="font-weight: bold;"><B>Start
|
||||
and End Length </B></span>of segments</p></li>
|
||||
</ul>
|
||||
|
||||
<script type="text/javascript" language="javascript1.2">
|
||||
<!--
|
||||
if (window.writeIntopicBar)
|
||||
writeIntopicBar(0);
|
||||
//-->
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
@ -90,7 +90,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
|
@ -19,8 +19,8 @@
|
||||
<meta name=filetype content=kadov>
|
||||
<meta name=filetype-version content=1>
|
||||
<meta name=page-count content=1>
|
||||
<meta name=layout-height content=380>
|
||||
<meta name=layout-width content=700>
|
||||
<meta name=layout-height content=755>
|
||||
<meta name=layout-width content=473>
|
||||
|
||||
|
||||
<!--(Links)=========================================================-->
|
||||
@ -36,9 +36,24 @@ if (navigator.appName !="Netscape")
|
||||
<!--
|
||||
img_whs1 {border-style: none; border: none; width: 30px; height: 30px; float: none;}
|
||||
p.whs2 {margin-left: 40px;}
|
||||
img_whs3 {border-style: none; border: none; width: 26px; height: 24px;}
|
||||
img_whs3 {border-style: none; border: none; width: 23px; height: 23px;}
|
||||
p.whs4 {margin-left: 0px;}
|
||||
p.whs5 {margin-left: 0px; font-weight: bold;}
|
||||
img_whs6 {border-style: none; border: none; width: 386px; height: 414px;}
|
||||
-->
|
||||
</style>
|
||||
<script type="text/javascript" language="JavaScript">
|
||||
<!--
|
||||
if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4))
|
||||
{
|
||||
var strNSS = "<style type='text/css'>";
|
||||
strNSS += "p.whs4 {margin-left:1; }";
|
||||
strNSS += "p.whs5 {margin-left:1; }";
|
||||
strNSS +="</style>";
|
||||
document.write(strNSS);
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">
|
||||
<!--
|
||||
function reDo() {
|
||||
@ -88,7 +103,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
@ -112,8 +127,17 @@ else
|
||||
<p class=TODO> </p>
|
||||
|
||||
<p class="whs2">From the <span style="font-weight: bold;"><B>Hypotheses
|
||||
</B></span>menu select <span style="font-weight: bold;"><B>Tetrahedron (Netgen)
|
||||
</B></span>or click <img src="../image52.gif" width="26px" height="24px" border="0" class="img_whs3"> button in the toolbar.</p>
|
||||
</B></span>menu select <span style="font-weight: bold;"><B>Create Algorithms
|
||||
></B></span> <img src="../image12.gif" width="23px" height="23px" border="0" class="img_whs3"><span style="font-weight: bold;"><B>Tetrahedron
|
||||
(Netgen) </B></span>and click <span style="font-weight: bold;"><B>Create</B></span>..</p>
|
||||
|
||||
<p class="whs4"> </p>
|
||||
|
||||
<p class="whs4"> </p>
|
||||
|
||||
<p class="whs5">Example:</p>
|
||||
|
||||
<p class="whs2"><img src="../image9.gif" width="386px" height="414px" border="0" class="img_whs6"></p>
|
||||
|
||||
<script type="text/javascript" language="javascript1.2">
|
||||
<!--
|
||||
|
@ -80,7 +80,7 @@ if (window.gbWhTopic)
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
|
@ -86,7 +86,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
|
@ -20,7 +20,7 @@
|
||||
<meta name=filetype-version content=1>
|
||||
<meta name=page-count content=1>
|
||||
<meta name=layout-height content=588>
|
||||
<meta name=layout-width content=700>
|
||||
<meta name=layout-width content=547>
|
||||
|
||||
|
||||
<!--(Links)=========================================================-->
|
||||
@ -101,7 +101,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
|
@ -37,6 +37,7 @@ if (navigator.appName !="Netscape")
|
||||
img_whs1 {border-style: none; border: none; float: none; width: 30px; height: 30px;}
|
||||
ul.whs2 {list-style: disc;}
|
||||
p.whs3 {font-weight: bold;}
|
||||
p.whs4 {margin-left: 40px;}
|
||||
-->
|
||||
</style>
|
||||
<script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">
|
||||
@ -88,7 +89,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
@ -142,6 +143,21 @@ kadovFilePopupInit('a3');
|
||||
//--></script></p></li>
|
||||
</ul>
|
||||
|
||||
<p class="whs3"> </p>
|
||||
|
||||
<p class=TODO>To set the visualization mode for displaying of your mesh:</p>
|
||||
|
||||
<p class=TODO> </p>
|
||||
|
||||
<p class="whs4">1. Select your mesh in the <span style="font-weight: bold;"><B>Object
|
||||
Browser</B></span>.</p>
|
||||
|
||||
<p class="whs4"> </p>
|
||||
|
||||
<p class="whs4">2. Right-click on the mesh in the viewer
|
||||
and from the pop-up menu select <span style="font-weight: bold;"><B>Properties
|
||||
> Display mode</B></span></p>
|
||||
|
||||
<script type="text/javascript" language="javascript1.2">
|
||||
<!--
|
||||
if (window.writeIntopicBar)
|
||||
|
@ -81,7 +81,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
|
@ -102,7 +102,7 @@ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
|
@ -85,7 +85,7 @@ if (window.gbWhTopic)
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("../smesh.html");
|
||||
setRelStartPage("../smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
|
BIN
doc/salome/gui/SMESH/image12.gif
Executable file
After Width: | Height: | Size: 983 B |
BIN
doc/salome/gui/SMESH/image13.gif
Executable file
After Width: | Height: | Size: 950 B |
BIN
doc/salome/gui/SMESH/image14.gif
Executable file
After Width: | Height: | Size: 978 B |
BIN
doc/salome/gui/SMESH/image15.gif
Executable file
After Width: | Height: | Size: 998 B |
BIN
doc/salome/gui/SMESH/image16.gif
Executable file
After Width: | Height: | Size: 1.0 KiB |
BIN
doc/salome/gui/SMESH/image16.jpg
Executable file
After Width: | Height: | Size: 20 KiB |
BIN
doc/salome/gui/SMESH/image17.jpg
Executable file
After Width: | Height: | Size: 18 KiB |
BIN
doc/salome/gui/SMESH/image18.jpg
Executable file
After Width: | Height: | Size: 21 KiB |
BIN
doc/salome/gui/SMESH/image20.jpg
Executable file
After Width: | Height: | Size: 31 KiB |
BIN
doc/salome/gui/SMESH/image21.jpg
Executable file
After Width: | Height: | Size: 38 KiB |
BIN
doc/salome/gui/SMESH/image7.gif
Executable file
After Width: | Height: | Size: 1.0 KiB |
BIN
doc/salome/gui/SMESH/image8.gif
Executable file
After Width: | Height: | Size: 998 B |
BIN
doc/salome/gui/SMESH/image9.gif
Executable file
After Width: | Height: | Size: 29 KiB |
150
doc/salome/gui/SMESH/smesh.htm
Executable file
@ -0,0 +1,150 @@
|
||||
|
||||
<html>
|
||||
<head><script language="javascript">
|
||||
<!--
|
||||
var sIcon="whstart.ico";
|
||||
var sPath=document.location.href;
|
||||
if (sPath.indexOf("http")!= -1)
|
||||
document.write("<link REL=\"SHORTCUT ICON\" href=\""+ sIcon +"\">");
|
||||
//-->
|
||||
</script>
|
||||
<title>SMESH reference manual</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
|
||||
<meta name="generator" content="RoboHelp by eHelp Corporation www.ehelp.com">
|
||||
<meta name "description" content="WebHelp 2002">
|
||||
</head>
|
||||
<script type="text/javascript" language="javascript" src="whver.js"></script>
|
||||
<script type="text/javascript" language="javascript" src="whutils.js"></script>
|
||||
<script type="text/javascript" language="javascript" src="whmsg.js"></script>
|
||||
<script type="text/javascript" language="javascript" >
|
||||
<!--
|
||||
if (!window.gbWhVer||!window.gbWhUtil||!window.gbWhMsg)
|
||||
document.location.reload();
|
||||
//-->
|
||||
</script>
|
||||
|
||||
<script type="text/javascript" language="javascript" src="whstub.js"></script>
|
||||
<script language="javascript">
|
||||
<!--
|
||||
var nWebhelpNavPaneMode = 1; //1: DHTML 2:Applet 3:PureHTML 4:NoframeAt all
|
||||
var strPaneDHTML = "whskin_pdhtml.htm"; //whd_nvp10.htm if tab enabled, whnframe.htm if tab disabled.
|
||||
var strPaneApplet = "whskin_papplet.htm";
|
||||
var strPaneList = "whskin_plist.htm";
|
||||
var bNoApplet = false;
|
||||
|
||||
var strPane = "";
|
||||
|
||||
var nViewFrameType = nWebhelpNavPaneMode;
|
||||
|
||||
if (!window.gAgent)
|
||||
{
|
||||
// low end browser, we don't even try to determine it.
|
||||
document.location = "whnjs.htm";
|
||||
}
|
||||
else
|
||||
{
|
||||
if (!gbNav4 && !gbIE4)
|
||||
document.location = "whnjs.htm";
|
||||
if (gbNav4 && !gbNav6 && ((gnVerMinor <= 4.06)))
|
||||
document.location = "whnjs.htm";
|
||||
if (gbMac && gbIE4 && !gbIE5)
|
||||
document.location = "whnjs.htm";
|
||||
//figure out which mode is the best
|
||||
if ((nWebhelpNavPaneMode == 1) ||
|
||||
(nWebhelpNavPaneMode == 2))
|
||||
{
|
||||
var gbDHTML = (nWebhelpNavPaneMode == 1);
|
||||
if (nWebhelpNavPaneMode == 2) nViewFrameType = 2;
|
||||
if (gbNav4) nViewFrameType = 2;
|
||||
if (gbNav4 && (gnVerMinor < 4.1)) nViewFrameType = 3;
|
||||
if (gbNav4 && (gnVerMinor == 4.6)) nViewFrameType = 3;
|
||||
if (gbIE4 && gbDHTML) nViewFrameType = 1;
|
||||
if (gbIE4 && gbSunOS && nWebhelpNavPaneMode == 2) nViewFrameType = 3;
|
||||
if (gbNav6 && gbDHTML) nViewFrameType = 1;
|
||||
if (gbNav6 && !gbNav61 && nWebhelpNavPaneMode == 2) nViewFrameType = 3;
|
||||
if (gbMac) nViewFrameType = 3;
|
||||
if ((bNoApplet) && (nViewFrameType == 2)) nViewFrameType = 3;
|
||||
if (gbOpera) nViewFrameType = 3;
|
||||
}
|
||||
}
|
||||
|
||||
var gbWindows = ((gAgent.indexOf("win") != -1) || (gAgent.indexOf("16bit") != -1));
|
||||
//The colordepth of the 16 color on Windows is 1.
|
||||
if ((gbWindows) && (gbNav4) && (window.screen) && (window.screen.colorDepth <= 4))
|
||||
{
|
||||
alert("WebHelp has detected that your display is set to 16 colors. For full WebHelp support, please set your display to use 256 or more colors.");
|
||||
nViewFrameType = 3;
|
||||
}
|
||||
|
||||
//figure out which one is navpane
|
||||
// ReplaceMark:nViewFrameType = 1
|
||||
if (nViewFrameType == 1)
|
||||
{
|
||||
if (gbNav4 && !gbNav6)
|
||||
strPane = strPaneList;
|
||||
else
|
||||
strPane = strPaneDHTML;
|
||||
}
|
||||
else if (nViewFrameType == 2)
|
||||
strPane = strPaneApplet;
|
||||
else
|
||||
strPane = strPaneList;
|
||||
//-->
|
||||
</script>
|
||||
<script type="text/javascript" language="javascript" src="whstart.js"></script>
|
||||
<script type="text/javascript" language="javascript">
|
||||
<!--
|
||||
if (!gbIE4 && !gbNav4)
|
||||
document.location = "whnjs.htm";
|
||||
|
||||
function CMRAgent( strID, strURL, strLabel, strFrameAttr )
|
||||
{
|
||||
this.m_strID = strID;
|
||||
this.m_strURL = strURL;
|
||||
this.m_strLabel = strLabel;
|
||||
this.m_strFrameAttr = strFrameAttr;
|
||||
}
|
||||
|
||||
function CMRServer()
|
||||
{
|
||||
this.m_strVersion;
|
||||
this.m_strDefAgent;
|
||||
this.m_strAgentList;
|
||||
this.m_bTrial;
|
||||
this.m_bExpired;
|
||||
this.m_bSinglePane;
|
||||
this.m_strProduct;
|
||||
this.m_strWindow;
|
||||
this.m_strProject;
|
||||
this.m_strContextID;
|
||||
this.m_strCaption;
|
||||
this.m_strURLSkinFile;
|
||||
this.m_strURLResource;
|
||||
this.m_strURLLogoImg;
|
||||
this.m_strURLTopic;
|
||||
this.m_strURLBase;
|
||||
this.m_bShowSync;
|
||||
this.m_bShowBrowseSequences;
|
||||
this.m_bShowSearchInput;
|
||||
this.m_cAgents = new Array;
|
||||
}
|
||||
var cMRServer = new CMRServer;
|
||||
// GetServerInfo
|
||||
// Registry the agent array handled by webhelp
|
||||
// ReplaceMark:MRServer.strServerData
|
||||
//-->
|
||||
</script>
|
||||
|
||||
<script type="text/javascript" language="javascript">
|
||||
<!--
|
||||
var strHTML = "<frameset rows=\"32,*\" hostof=\"parent:toolbar!startpage:yes\" frameborder=\"no\" border=\"0\"><frame src=\"whskin_tbars.htm\" id=\"toolbar\" frameborder=\"no\" border=\"0\" scrolling=\"no\" noresize marginheight=\"0\" marginwidth=\"0\" title=\"Toolbar\"></frame><frame src=\"whskin_frmset01.htm\" frameborder=\"yes\" border=\"1\" scrolling=\"auto\" marginheight=\"0\" marginwidth=\"0\"></frame></frameset>";
|
||||
document.write(strHTML);
|
||||
//-->
|
||||
</script>
|
||||
|
||||
<frameset cols="100%,*" frameborder=no border=0>
|
||||
<frame src="whnjs.htm">
|
||||
<frame src="whskin_blank.htm" noresize>
|
||||
</frameset>
|
||||
|
||||
</html>
|
100
doc/salome/gui/SMESH/smesh_csh.htm
Executable file
@ -0,0 +1,100 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>SMESH reference manual</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
|
||||
<meta name="generator" content="RoboHelp by eHelp Corporation www.ehelp.com">
|
||||
<meta name "description" content="WebHelp 2002">
|
||||
<script language="javascript" src="whutils.js"></script>
|
||||
<script language="javascript">
|
||||
<!--
|
||||
var gCSHFileName = "whc_data.htm";
|
||||
var gCSHSuffixName1 = "_csh.html";
|
||||
var gCSHSuffixName2 = "_csh.htm";
|
||||
//-->
|
||||
</script>
|
||||
<script language="javascript">
|
||||
<!--
|
||||
gCSHFileName="cshdat_webhelp.htm";
|
||||
//-->
|
||||
</script>
|
||||
<script language="javascript">
|
||||
<!--
|
||||
var gasProj = new Array();
|
||||
gasProj[0] = _getPath(document.location.href);
|
||||
var gCurrent = 0;
|
||||
|
||||
function addProject(strProj)
|
||||
{
|
||||
var len = gasProj.length;
|
||||
var strPPath = _getFullPath(_getPath(document.location.href), strProj);
|
||||
var bFound = false;
|
||||
for (var i = 0; i < len; i ++)
|
||||
{
|
||||
if (isSamePath(gasProj[i], strPPath))
|
||||
{
|
||||
bFound = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (!bFound)
|
||||
gasProj[len] = strPPath;
|
||||
}
|
||||
|
||||
function isSamePath(strPath1, strPath2)
|
||||
{
|
||||
return strPath1.toLowerCase() == strPath2.toLowerCase();
|
||||
}
|
||||
|
||||
function goNext()
|
||||
{
|
||||
gCurrent ++;
|
||||
var len = gasProj.length;
|
||||
if (gCurrent >= len)
|
||||
return getHomePage()
|
||||
else
|
||||
frames["csh"].location = gasProj[gCurrent] + gCSHFileName;
|
||||
return "";
|
||||
}
|
||||
|
||||
function getRelHomePage(strLocation)
|
||||
{
|
||||
var strCurPPath = _getPath(strLocation);
|
||||
var strOriPPath = _getPath(getHomePage());
|
||||
var strRelPath = _getRelativeFileName(strOriPPath, strCurPPath);
|
||||
var strURL = getHomePage() + "#" + strRelPath;
|
||||
return strURL;
|
||||
}
|
||||
|
||||
function getHomePage()
|
||||
{
|
||||
var strHomePage;
|
||||
var strTmp = location.toString();
|
||||
var nPos = strTmp.indexOf("#");
|
||||
if (nPos != -1)
|
||||
{
|
||||
strHomePage = strTmp.substring(0, nPos);
|
||||
}
|
||||
else
|
||||
{
|
||||
strHomePage = strTmp;
|
||||
}
|
||||
var nPos1 = strHomePage.indexOf(gCSHSuffixName1);
|
||||
var nPos = strHomePage.indexOf(gCSHSuffixName2);
|
||||
if (nPos != -1)
|
||||
{
|
||||
strHomePage = strHomePage.substring(0,nPos);
|
||||
if (nPos1 != -1)
|
||||
strHomePage += ".html";
|
||||
else
|
||||
strHomePage += ".htm";
|
||||
}
|
||||
return strHomePage;
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
</head>
|
||||
<frameset rows="1,*">
|
||||
<frame name="dumb" src="about:blank"></frame>
|
||||
<frame name="csh" src="cshdat_webhelp.htm"></frame>
|
||||
</frameset>
|
||||
</html>
|
100
doc/salome/gui/SMESH/smesh_rhc.htm
Executable file
@ -0,0 +1,100 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>SMESH reference manual</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
|
||||
<meta name="generator" content="RoboHelp by eHelp Corporation www.ehelp.com">
|
||||
<meta name "description" content="WebHelp 2002">
|
||||
<script language="javascript" src="whutils.js"></script>
|
||||
<script language="javascript">
|
||||
<!--
|
||||
var gCSHFileName = "whc_data.htm";
|
||||
var gCSHSuffixName1 = "_rhc.html";
|
||||
var gCSHSuffixName2 = "_rhc.htm";
|
||||
//-->
|
||||
</script>
|
||||
<script language="javascript">
|
||||
<!--
|
||||
gCSHFileName="cshdat_robohelp.htm";
|
||||
//-->
|
||||
</script>
|
||||
<script language="javascript">
|
||||
<!--
|
||||
var gasProj = new Array();
|
||||
gasProj[0] = _getPath(document.location.href);
|
||||
var gCurrent = 0;
|
||||
|
||||
function addProject(strProj)
|
||||
{
|
||||
var len = gasProj.length;
|
||||
var strPPath = _getFullPath(_getPath(document.location.href), strProj);
|
||||
var bFound = false;
|
||||
for (var i = 0; i < len; i ++)
|
||||
{
|
||||
if (isSamePath(gasProj[i], strPPath))
|
||||
{
|
||||
bFound = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (!bFound)
|
||||
gasProj[len] = strPPath;
|
||||
}
|
||||
|
||||
function isSamePath(strPath1, strPath2)
|
||||
{
|
||||
return strPath1.toLowerCase() == strPath2.toLowerCase();
|
||||
}
|
||||
|
||||
function goNext()
|
||||
{
|
||||
gCurrent ++;
|
||||
var len = gasProj.length;
|
||||
if (gCurrent >= len)
|
||||
return getHomePage()
|
||||
else
|
||||
frames["csh"].location = gasProj[gCurrent] + gCSHFileName;
|
||||
return "";
|
||||
}
|
||||
|
||||
function getRelHomePage(strLocation)
|
||||
{
|
||||
var strCurPPath = _getPath(strLocation);
|
||||
var strOriPPath = _getPath(getHomePage());
|
||||
var strRelPath = _getRelativeFileName(strOriPPath, strCurPPath);
|
||||
var strURL = getHomePage() + "#" + strRelPath;
|
||||
return strURL;
|
||||
}
|
||||
|
||||
function getHomePage()
|
||||
{
|
||||
var strHomePage;
|
||||
var strTmp = location.toString();
|
||||
var nPos = strTmp.indexOf("#");
|
||||
if (nPos != -1)
|
||||
{
|
||||
strHomePage = strTmp.substring(0, nPos);
|
||||
}
|
||||
else
|
||||
{
|
||||
strHomePage = strTmp;
|
||||
}
|
||||
var nPos1 = strHomePage.indexOf(gCSHSuffixName1);
|
||||
var nPos = strHomePage.indexOf(gCSHSuffixName2);
|
||||
if (nPos != -1)
|
||||
{
|
||||
strHomePage = strHomePage.substring(0,nPos);
|
||||
if (nPos1 != -1)
|
||||
strHomePage += ".html";
|
||||
else
|
||||
strHomePage += ".htm";
|
||||
}
|
||||
return strHomePage;
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
</head>
|
||||
<frameset rows="1,*">
|
||||
<frame name="dumb" src="about:blank"></frame>
|
||||
<frame name="csh" src="cshdat_robohelp.htm"></frame>
|
||||
</frameset>
|
||||
</html>
|
132
doc/salome/gui/SMESH/tetrahedron_(ghs3d)_meshing_algorithm.htm
Executable file
@ -0,0 +1,132 @@
|
||||
<!doctype HTML public "-//W3C//DTD HTML 4.0 Frameset//EN">
|
||||
|
||||
<html>
|
||||
|
||||
<!--(==============================================================)-->
|
||||
<!--(Document created with RoboEditor. )============================-->
|
||||
<!--(==============================================================)-->
|
||||
|
||||
<head>
|
||||
|
||||
<title>Tetrahedron (GHS3D) meshing algorithm</title>
|
||||
|
||||
<!--(Meta)==========================================================-->
|
||||
|
||||
<meta http-equiv=content-type content="text/html; charset=windows-1252">
|
||||
<meta name=generator content="RoboHELP by eHelp Corporation - www.ehelp.com">
|
||||
<meta name=generator-major-version content=0.1>
|
||||
<meta name=generator-minor-version content=1>
|
||||
<meta name=filetype content=kadov>
|
||||
<meta name=filetype-version content=1>
|
||||
<meta name=page-count content=1>
|
||||
<meta name=layout-height content=397>
|
||||
<meta name=layout-width content=473>
|
||||
|
||||
|
||||
<!--(Links)=========================================================-->
|
||||
|
||||
<link rel='stylesheet' href='default_ns.css'>
|
||||
<script type="text/javascript" language="JavaScript" title="WebHelpSplitCss">
|
||||
<!--
|
||||
if (navigator.appName !="Netscape")
|
||||
{ document.write("<link rel='stylesheet' href='default.css'>");}
|
||||
//-->
|
||||
</script>
|
||||
<style type="text/css">
|
||||
<!--
|
||||
img_whs1 {border-style: none; border: none; width: 30px; height: 30px; float: none;}
|
||||
p.whs2 {margin-left: 40px;}
|
||||
img_whs3 {border-style: none; border: none; width: 23px; height: 23px;}
|
||||
-->
|
||||
</style>
|
||||
<script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">
|
||||
<!--
|
||||
function reDo() {
|
||||
if (innerWidth != origWidth || innerHeight != origHeight)
|
||||
location.reload();
|
||||
}
|
||||
if ((parseInt(navigator.appVersion) == 4) && (navigator.appName == "Netscape")) {
|
||||
origWidth = innerWidth;
|
||||
origHeight = innerHeight;
|
||||
onresize = reDo;
|
||||
}
|
||||
onerror = null;
|
||||
//-->
|
||||
</script>
|
||||
<style type="text/css">
|
||||
<!--
|
||||
div.WebHelpPopupMenu {position:absolute; left:0px; top:0px; z-index:4; visibility:hidden;}
|
||||
-->
|
||||
</style>
|
||||
<script type="text/javascript" language="javascript1.2" src="whmsg.js"></script>
|
||||
<script type="text/javascript" language="javascript" src="whver.js"></script>
|
||||
<script type="text/javascript" language="javascript1.2" src="whproxy.js"></script>
|
||||
<script type="text/javascript" language="javascript1.2" src="whutils.js"></script>
|
||||
<script type="text/javascript" language="javascript1.2" src="whtopic.js"></script>
|
||||
</head>
|
||||
|
||||
<!--(Body)==========================================================-->
|
||||
|
||||
|
||||
<body>
|
||||
|
||||
<script type="text/javascript" language="javascript1.2">
|
||||
<!--
|
||||
if (window.gbWhTopic)
|
||||
{
|
||||
if (window.addTocInfo)
|
||||
{
|
||||
addTocInfo("SMESH module\nCreating meshes\nDefining meshing algorithms\n3D meshing algorithms\nTetrahedron (GHS3D) meshing algorithm");
|
||||
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
|
||||
|
||||
}
|
||||
if (window.writeBtnStyle)
|
||||
writeBtnStyle();
|
||||
|
||||
if (window.writeIntopicBar)
|
||||
writeIntopicBar(1);
|
||||
|
||||
if (window.setRelStartPage)
|
||||
{
|
||||
setRelStartPage("smesh.htm");
|
||||
|
||||
autoSync(0);
|
||||
sendSyncInfo();
|
||||
sendAveInfoOut();
|
||||
}
|
||||
}
|
||||
else
|
||||
document.location.reload();
|
||||
//-->
|
||||
</script>
|
||||
<h1>Tetrahedron (GHS3D) meshing algorithm</h1>
|
||||
|
||||
<p><img src="i_blue.jpg" x-maintain-ratio="TRUE" width="30px" height="30px" border="0" class="img_whs1"> This algorithm is used for meshing of 3D entities of
|
||||
geometrical objects - <span style="font-weight: bold;"><B>volume objects</B></span>.
|
||||
While <a href="files/tetrahedron_(netgen)_meshing_algorithm.htm">NETGEN</a>
|
||||
generates 3D elements having a volume less than the one specified by hypothesis,
|
||||
GHS3D does not need any hypotheses, all it needs is a surface mesh built
|
||||
in advance</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p class=TODO>To apply the Tetrahedron GHS3D meshing algorithm:</p>
|
||||
|
||||
<p class=TODO> </p>
|
||||
|
||||
<p class="whs2">From the <span style="font-weight: bold;"><B>Hypotheses
|
||||
</B></span>menu select <span style="font-weight: bold;"><B>Create Algorithms</B></span>
|
||||
> <img src="image12.gif" width="23px" height="23px" border="0" class="img_whs3"><span style="font-weight: bold;"><B>Tetrahedron (GHS3D) </B></span>and
|
||||
click <span style="font-weight: bold;"><B>Create</B></span>.</p>
|
||||
|
||||
<script type="text/javascript" language="javascript1.2">
|
||||
<!--
|
||||
if (window.writeIntopicBar)
|
||||
writeIntopicBar(0);
|
||||
//-->
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
@ -21,12 +21,14 @@ aTE("About modification of meshes","files/about_modification_of_meshes.htm");
|
||||
aTE("About quality controls","files/about_quality_controls.htm");
|
||||
aTE("Adding nodes and elements","files/adding_nodes_and_elements.htm");
|
||||
aTE("Area of elements","files/area_of_elements.htm");
|
||||
aTE("Arithmetic 1D","files/arithmetic_1d.htm");
|
||||
aTE("Aspect Ratio","files/aspect_ratio.htm");
|
||||
aTE("Changing orientation of elements","files/changing_orientation_of_elements.htm");
|
||||
aTE("Computing meshes","files/computing_meshes.htm");
|
||||
aTE("Connectivity","files/connectivity.htm");
|
||||
aTE("Constructing meshes","files/constructing_meshes.htm");
|
||||
aTE("Constructing submeshes","files/constructing_submeshes.htm");
|
||||
aTE("Deflection 1D","files/deflection_1d.htm");
|
||||
aTE("Diagonal iversion of elements","files/diagonal_iversion_of_elements.htm");
|
||||
aTE("Displacing nodes","files/displacing_nodes.htm");
|
||||
aTE("Displaying elements numbers","files/displaying_elements_numbers.htm");
|
||||
@ -34,17 +36,21 @@ aTE("Displaying nodes numbers","files/displaying_nodes_numbers.htm");
|
||||
aTE("Editing hypotheses","files/editing_hypotheses.htm");
|
||||
aTE("Importing and exporting meshes","files/importing_and_exporting_meshes.htm");
|
||||
aTE("Introduction to SMESH","files/introduction_to_smesh.htm");
|
||||
aTE("Length from edges","files/length_from_edges.htm");
|
||||
aTE("Length of edges","files/length_of_edges.htm");
|
||||
aTE("Local Length hypothesis","files/local_length_hypothesis.htm");
|
||||
aTE("Max. Element Area hypothesis","files/max._element_area_hypothesis.htm");
|
||||
aTE("Max. Element volume hypothsis","files/max._element_volume_hypothsis.htm");
|
||||
aTE("Minimum angle","files/minimum_angle.htm");
|
||||
aTE("Non conform mesh allowed hypothesis","files/non_conform_mesh_allowed_hypothesis.htm");
|
||||
aTE("Number of segments hypothesis","files/number_of_segments_hypothesis.htm");
|
||||
aTE("Propagation of 1D Hypothesis on opposite edges","files/propagation_of_1d_hypothesis_on_opposite_edges.htm");
|
||||
aTE("Reassigning hypotheses and algorithms","files/reassigning_hypotheses_and_algorithms.htm");
|
||||
aTE("Removing nodes and elements","files/removing_nodes_and_elements.htm");
|
||||
aTE("Running SMESH module","files/running_smesh_module.htm");
|
||||
aTE("Scalar Bar properties","files/scalar_bar_properties.htm");
|
||||
aTE("Skew","files/skew.htm");
|
||||
aTE("Start and End Length hypothesis","files/start_and_end_length_hypothesis.htm");
|
||||
aTE("Taper","files/taper.htm");
|
||||
aTE("Tetrahedron (Netgen) meshing algorithm","files/tetrahedron_(netgen)_meshing_algorithm.htm");
|
||||
aTE("Using SMESH module","files/using_smesh_module.htm");
|
||||
@ -53,6 +59,7 @@ aTE("Viewing mesh info","files/viewing_mesh_info.htm");
|
||||
aTE("Visualization modes","files/visualization_modes.htm");
|
||||
aTE("Visualization properties","files/visualization_properties.htm");
|
||||
aTE("Warp","files/warp.htm");
|
||||
aTE("Tetrahedron (GHS3D) meshing algorithm","tetrahedron_(ghs3d)_meshing_algorithm.htm");
|
||||
|
||||
//-->
|
||||
</script>
|
||||
|
@ -11,12 +11,14 @@
|
||||
<topic name="About quality controls" url="files/about_quality_controls.htm" />
|
||||
<topic name="Adding nodes and elements" url="files/adding_nodes_and_elements.htm" />
|
||||
<topic name="Area of elements" url="files/area_of_elements.htm" />
|
||||
<topic name="Arithmetic 1D" url="files/arithmetic_1d.htm" />
|
||||
<topic name="Aspect Ratio" url="files/aspect_ratio.htm" />
|
||||
<topic name="Changing orientation of elements" url="files/changing_orientation_of_elements.htm" />
|
||||
<topic name="Computing meshes" url="files/computing_meshes.htm" />
|
||||
<topic name="Connectivity" url="files/connectivity.htm" />
|
||||
<topic name="Constructing meshes" url="files/constructing_meshes.htm" />
|
||||
<topic name="Constructing submeshes" url="files/constructing_submeshes.htm" />
|
||||
<topic name="Deflection 1D" url="files/deflection_1d.htm" />
|
||||
<topic name="Diagonal iversion of elements" url="files/diagonal_iversion_of_elements.htm" />
|
||||
<topic name="Displacing nodes" url="files/displacing_nodes.htm" />
|
||||
<topic name="Displaying elements numbers" url="files/displaying_elements_numbers.htm" />
|
||||
@ -24,17 +26,21 @@
|
||||
<topic name="Editing hypotheses" url="files/editing_hypotheses.htm" />
|
||||
<topic name="Importing and exporting meshes" url="files/importing_and_exporting_meshes.htm" />
|
||||
<topic name="Introduction to SMESH" url="files/introduction_to_smesh.htm" />
|
||||
<topic name="Length from edges" url="files/length_from_edges.htm" />
|
||||
<topic name="Length of edges" url="files/length_of_edges.htm" />
|
||||
<topic name="Local Length hypothesis" url="files/local_length_hypothesis.htm" />
|
||||
<topic name="Max. Element Area hypothesis" url="files/max._element_area_hypothesis.htm" />
|
||||
<topic name="Max. Element volume hypothsis" url="files/max._element_volume_hypothsis.htm" />
|
||||
<topic name="Minimum angle" url="files/minimum_angle.htm" />
|
||||
<topic name="Non conform mesh allowed hypothesis" url="files/non_conform_mesh_allowed_hypothesis.htm" />
|
||||
<topic name="Number of segments hypothesis" url="files/number_of_segments_hypothesis.htm" />
|
||||
<topic name="Propagation of 1D Hypothesis on opposite edges" url="files/propagation_of_1d_hypothesis_on_opposite_edges.htm" />
|
||||
<topic name="Reassigning hypotheses and algorithms" url="files/reassigning_hypotheses_and_algorithms.htm" />
|
||||
<topic name="Removing nodes and elements" url="files/removing_nodes_and_elements.htm" />
|
||||
<topic name="Running SMESH module" url="files/running_smesh_module.htm" />
|
||||
<topic name="Scalar Bar properties" url="files/scalar_bar_properties.htm" />
|
||||
<topic name="Skew" url="files/skew.htm" />
|
||||
<topic name="Start and End Length hypothesis" url="files/start_and_end_length_hypothesis.htm" />
|
||||
<topic name="Taper" url="files/taper.htm" />
|
||||
<topic name="Tetrahedron (Netgen) meshing algorithm" url="files/tetrahedron_(netgen)_meshing_algorithm.htm" />
|
||||
<topic name="Using SMESH module" url="files/using_smesh_module.htm" />
|
||||
@ -43,5 +49,6 @@
|
||||
<topic name="Visualization modes" url="files/visualization_modes.htm" />
|
||||
<topic name="Visualization properties" url="files/visualization_properties.htm" />
|
||||
<topic name="Warp" url="files/warp.htm" />
|
||||
<topic name="Tetrahedron (GHS3D) meshing algorithm" url="tetrahedron_(ghs3d)_meshing_algorithm.htm" />
|
||||
|
||||
</ftstdata>
|
||||
|
@ -8,7 +8,7 @@
|
||||
<!--
|
||||
iWM("0","z","whfwdata0.htm");
|
||||
|
||||
iTM(0,42,"whftdata0.htm");
|
||||
iTM(0,49,"whftdata0.htm");
|
||||
|
||||
-->
|
||||
</script>
|
||||
|
@ -2,6 +2,6 @@
|
||||
<fts>
|
||||
<chunkinfo url="whfwdata0.xml" first="0" last="z"/>
|
||||
|
||||
<tchunkinfo first="0" last="42" url="whftdata0.xml" />
|
||||
<tchunkinfo first="0" last="49" url="whftdata0.xml" />
|
||||
|
||||
</fts>
|
||||
|
@ -12,343 +12,384 @@
|
||||
<!--
|
||||
aWE("0",5);
|
||||
aWE("0d",5);
|
||||
aWE("1",10,11,13,19,20,22,24,28,34,35,39,42);
|
||||
aWE("1d",0,5,6,23);
|
||||
aWE("2",10,11,13,19,20,22,24,28,34,35,39,42);
|
||||
aWE("2d",1,2,5,6,10,11,23,26,28,42);
|
||||
aWE("3",5,10,11,22,32,34,42);
|
||||
aWE("3d",3,5,6,23,27,36);
|
||||
aWE("1",10,11,12,14,21,22,24,27,31,39,41,45,46,48);
|
||||
aWE("1d",0,4,5,6,11,18,25,26,34,40);
|
||||
aWE("2",10,12,14,21,22,24,27,31,39,41,45,46,48);
|
||||
aWE("2d",1,2,5,6,10,12,25,26,29,31,48);
|
||||
aWE("3",5,10,12,24,37,39,48);
|
||||
aWE("3d",3,5,6,25,30,49,42);
|
||||
aWE("3rd",5);
|
||||
aWE("4",5,10,11,34,35,42);
|
||||
aWE("4",5,10,12,39,41,48);
|
||||
aWE("5th",5);
|
||||
aWE("abut",25,29);
|
||||
aWE("accord",8,10,11,24,28,34,35,42);
|
||||
aWE("abut",28,33);
|
||||
aWE("accord",8,10,12,27,31,39,41,48);
|
||||
aWE("account",4);
|
||||
aWE("ad",9);
|
||||
aWE("addition",23);
|
||||
aWE("additional",5,32);
|
||||
aWE("adjacent",28);
|
||||
aWE("algorithm",0,1,2,3,4,5,6,8,10,15,16,23,26,27,30,36);
|
||||
aWE("allow",4,22,23);
|
||||
aWE("angl",8,23,28,34,42);
|
||||
aWE("any",5);
|
||||
aWE("ap",0,1,2,3,10,11,23,24,28,34,35,36,42);
|
||||
aWE("appear",15,16,25,26,27,29,32);
|
||||
aWE("appli",10,11,24,25,26,27,28,29,34,35,42);
|
||||
aWE("addition",25);
|
||||
aWE("additional",5,37);
|
||||
aWE("adjacent",31,32);
|
||||
aWE("advanc",49);
|
||||
aWE("algorithm",0,1,2,3,4,5,6,8,10,11,16,17,25,29,30,35,49,42);
|
||||
aWE("allow",4,11,24,25,32,34);
|
||||
aWE("angl",8,25,31,39,48);
|
||||
aWE("anoth",34);
|
||||
aWE("any",5,49);
|
||||
aWE("ap",0,1,2,3,6,10,12,25,27,31,39,41,49,42,48);
|
||||
aWE("appear",4,6,11,16,17,18,28,29,30,33,37,40);
|
||||
aWE("appli",10,12,27,28,29,30,31,33,39,41,48);
|
||||
aWE("application",8);
|
||||
aWE("apply",4,15,16);
|
||||
aWE("approximate",29);
|
||||
aWE("arcsin",42);
|
||||
aWE("area",4,8,10,23,26,27,35);
|
||||
aWE("aspect",8,11,23);
|
||||
aWE("assign",42);
|
||||
aWE("averag",25,42);
|
||||
aWE("axi",42);
|
||||
aWE("bar",8,33);
|
||||
aWE("bas",4,10,23,42);
|
||||
aWE("apply",4,16,17);
|
||||
aWE("approximate",33);
|
||||
aWE("arcsin",48);
|
||||
aWE("area",4,8,10,25,29,30,41);
|
||||
aWE("arithmetic",4,11);
|
||||
aWE("aspect",8,12,25);
|
||||
aWE("assign",48);
|
||||
aWE("averag",4,26,28,40,48);
|
||||
aWE("axi",48);
|
||||
aWE("bar",8,38);
|
||||
aWE("bas",4,10,25,48);
|
||||
aWE("basi",5);
|
||||
aWE("basic",4);
|
||||
aWE("befor",32);
|
||||
aWE("bisect",42);
|
||||
aWE("bisector",42);
|
||||
aWE("border",23);
|
||||
aWE("bottom",32);
|
||||
aWE("befor",37);
|
||||
aWE("begin",11);
|
||||
aWE("bisect",48);
|
||||
aWE("bisector",48);
|
||||
aWE("border",25);
|
||||
aWE("bottom",37);
|
||||
aWE("bound",5);
|
||||
aWE("boundary",4);
|
||||
aWE("box",15,16,22,25,26,27,29,32);
|
||||
aWE("brows",13,39);
|
||||
aWE("button",0,1,2,3,10,11,13,15,16,22,24,25,26,27,28,29,34,35,36,39,42);
|
||||
aWE("box",11,16,17,18,24,28,29,30,33,37,40);
|
||||
aWE("brows",14,45,46);
|
||||
aWE("build",18,26,40);
|
||||
aWE("built",49);
|
||||
aWE("button",10,12,14,16,17,24,27,31,39,41,45,48);
|
||||
aWE("cad",5);
|
||||
aWE("calculat",8,11,35);
|
||||
aWE("calculation",4,10,24,28);
|
||||
aWE("chang",12);
|
||||
aWE("calculat",8,12,26,41);
|
||||
aWE("calculation",4,10,27,31);
|
||||
aWE("chang",11,13);
|
||||
aWE("characteristic",8);
|
||||
aWE("characteriz",5);
|
||||
aWE("choic",4);
|
||||
aWE("choos",10,11,22,24,28,32,34,35,42);
|
||||
aWE("chosen",26,27);
|
||||
aWE("click",0,1,2,3,10,11,13,15,16,22,24,25,26,27,28,29,32,34,35,36,39,42);
|
||||
aWE("choos",10,12,24,27,31,37,39,41,48);
|
||||
aWE("chosen",29,30);
|
||||
aWE("click",0,1,2,3,4,6,10,11,12,14,16,17,18,24,27,28,29,30,31,33,37,39,40,41,49,42,45,46,48);
|
||||
aWE("clos",5);
|
||||
aWE("color",8,10,11,24,28,34,35,42);
|
||||
aWE("combin",24);
|
||||
aWE("component",23,32);
|
||||
aWE("compos",4,5,6,8,19,25,26,27,29,34);
|
||||
aWE("comput",13);
|
||||
aWE("computation",13,15,16);
|
||||
aWE("color",8,10,12,27,31,39,41,48);
|
||||
aWE("combin",27);
|
||||
aWE("component",25,37);
|
||||
aWE("compos",4,5,6,8,21,28,29,30,33,39);
|
||||
aWE("comput",14);
|
||||
aWE("computation",14,16,17);
|
||||
aWE("condition",4);
|
||||
aWE("connection",5,23);
|
||||
aWE("connectivity",14);
|
||||
aWE("conform",4,32);
|
||||
aWE("connect",18);
|
||||
aWE("connection",5,25);
|
||||
aWE("connectivity",15);
|
||||
aWE("consider",5);
|
||||
aWE("consist",8,10,11,15,16,24,25,26,27,28,29,35);
|
||||
aWE("construct",15,16);
|
||||
aWE("construction",15,16);
|
||||
aWE("contain",5,6,22);
|
||||
aWE("consist",8,10,12,16,17,27,28,29,30,31,33,41);
|
||||
aWE("constant",40);
|
||||
aWE("construct",16,17,18,40);
|
||||
aWE("construction",16,17);
|
||||
aWE("contain",5,6,24);
|
||||
aWE("contour",5);
|
||||
aWE("control",8,10,11,23,24,28,34,35,42);
|
||||
aWE("control",8,10,12,25,27,31,39,41,48);
|
||||
aWE("coordinat",5);
|
||||
aWE("corn",42);
|
||||
aWE("corner",42);
|
||||
aWE("correspond",5,8,22);
|
||||
aWE("corn",48);
|
||||
aWE("corner",48);
|
||||
aWE("correspond",5,8,24);
|
||||
aWE("could",5);
|
||||
aWE("creat",5,23,32,42);
|
||||
aWE("creation",5,32);
|
||||
aWE("criteria",23);
|
||||
aWE("criterion",10,11,24,28,34,35,42);
|
||||
aWE("cros",42);
|
||||
aWE("curv",5);
|
||||
aWE("creat",0,1,2,3,4,5,6,11,18,25,28,29,30,33,37,40,49,42,48);
|
||||
aWE("creation",5,37);
|
||||
aWE("criteria",25);
|
||||
aWE("criterion",10,12,27,31,39,41,48);
|
||||
aWE("cros",48);
|
||||
aWE("curv",5,18);
|
||||
aWE("d",11);
|
||||
aWE("deal",5);
|
||||
aWE("default",32);
|
||||
aWE("defin",5,11,25,26,27,29);
|
||||
aWE("definit",5,8,23,29);
|
||||
aWE("definition",25,26,27,29);
|
||||
aWE("deletion",23);
|
||||
aWE("depend",4,5,26,27);
|
||||
aWE("default",37);
|
||||
aWE("defin",5,11,12,18,28,29,30,33,40);
|
||||
aWE("definit",5,8,25,33);
|
||||
aWE("definition",28,29,30,33);
|
||||
aWE("deflection",4,18);
|
||||
aWE("deletion",25);
|
||||
aWE("depend",4,5,29,30);
|
||||
aWE("describ",5);
|
||||
aWE("desktop",32);
|
||||
aWE("destin",5,8,23);
|
||||
aWE("desktop",37);
|
||||
aWE("destin",5,8,25);
|
||||
aWE("detail",4);
|
||||
aWE("diagonal",17,35);
|
||||
aWE("dialog",15,16,22,25,26,27,29);
|
||||
aWE("diagonal",19,41);
|
||||
aWE("dialog",11,16,17,18,24,28,29,30,33,40);
|
||||
aWE("differ",40);
|
||||
aWE("different",4);
|
||||
aWE("dimension",5);
|
||||
aWE("direct",5);
|
||||
aWE("direction",42);
|
||||
aWE("direction",48);
|
||||
aWE("discretization",0,5,6);
|
||||
aWE("displac",18);
|
||||
aWE("display",8,10,11,19,20,24,28,34,35,39,40,42);
|
||||
aWE("displac",20);
|
||||
aWE("display",8,10,12,21,22,27,31,39,41,45,46,48);
|
||||
aWE("disposal",8);
|
||||
aWE("distanc",42);
|
||||
aWE("distanc",18,48);
|
||||
aWE("divid",18,40);
|
||||
aWE("do",49);
|
||||
aWE("don",5);
|
||||
aWE("edg",0,4,5,6,8,11,23,24,25,29,42);
|
||||
aWE("edit",21);
|
||||
aWE("element",4,5,8,9,10,11,12,17,19,23,24,26,27,28,31,34,35,42);
|
||||
aWE("encapsulat",16);
|
||||
aWE("ent",22);
|
||||
aWE("entiti",0,1,2,3,5,6,36);
|
||||
aWE("edg",0,4,5,6,8,11,12,18,25,26,27,28,32,33,34,40,48);
|
||||
aWE("edit",23);
|
||||
aWE("element",4,5,8,9,10,12,13,18,19,21,25,27,29,30,31,32,36,39,40,41,49,48);
|
||||
aWE("encapsulat",17);
|
||||
aWE("end",4,11,18,32,40);
|
||||
aWE("ent",24);
|
||||
aWE("entiti",0,1,2,3,5,6,49,42);
|
||||
aWE("entity",5);
|
||||
aWE("equal",11);
|
||||
aWE("equilateral",11);
|
||||
aWE("equal",12,18);
|
||||
aWE("equilateral",12);
|
||||
aWE("etc",8);
|
||||
aWE("every",42);
|
||||
aWE("exampl",5);
|
||||
aWE("export",22,23);
|
||||
aWE("exportation",22);
|
||||
aWE("extend",42);
|
||||
aWE("fac",1,2,4,5,6,23,25,26,29,42);
|
||||
aWE("fil",22);
|
||||
aWE("final",13);
|
||||
aWE("find",22);
|
||||
aWE("every",48);
|
||||
aWE("exampl",5,42);
|
||||
aWE("export",24,25);
|
||||
aWE("exportation",24);
|
||||
aWE("extend",48);
|
||||
aWE("fac",1,2,4,5,6,25,28,29,32,33,34,48);
|
||||
aWE("factor",40);
|
||||
aWE("fil",24);
|
||||
aWE("final",14);
|
||||
aWE("find",24);
|
||||
aWE("first",40);
|
||||
aWE("fix",5);
|
||||
aWE("follow",4,5,6,8,11,15,16,19,20,25,26,27,29,32,39);
|
||||
aWE("format",22,23);
|
||||
aWE("four",5,42);
|
||||
aWE("fre",5,23);
|
||||
aWE("follow",4,5,6,8,11,12,16,17,18,21,22,28,29,30,33,37,40,45);
|
||||
aWE("format",24,25);
|
||||
aWE("four",5,48);
|
||||
aWE("fre",5,25);
|
||||
aWE("function",5);
|
||||
aWE("functionality",5,22);
|
||||
aWE("generat",4,5,8,23,25,29,32);
|
||||
aWE("generation",13);
|
||||
aWE("geom",5,23);
|
||||
aWE("functionality",5,24);
|
||||
aWE("generat",4,5,8,25,28,32,33,37,49);
|
||||
aWE("generation",14);
|
||||
aWE("geom",5,25);
|
||||
aWE("geometric",5,8);
|
||||
aWE("geometrical",0,1,2,3,4,5,6,15,16,23,25,26,27,29,36);
|
||||
aWE("global",15);
|
||||
aWE("group",23);
|
||||
aWE("h",42);
|
||||
aWE("h1",11);
|
||||
aWE("h2",11);
|
||||
aWE("half",42);
|
||||
aWE("height",11,42);
|
||||
aWE("geometrical",0,1,2,3,4,5,6,16,17,18,25,28,29,30,33,40,49,42);
|
||||
aWE("ghs3d",49);
|
||||
aWE("given",11,26);
|
||||
aWE("global",16);
|
||||
aWE("group",25);
|
||||
aWE("h",48);
|
||||
aWE("h1",12);
|
||||
aWE("h2",12);
|
||||
aWE("half",48);
|
||||
aWE("hav",26,32,49);
|
||||
aWE("height",12,48);
|
||||
aWE("help",8);
|
||||
aWE("her",5,7,9,12,14,17,18,31,33,41);
|
||||
aWE("hexahedron",3,5,6,27);
|
||||
aWE("her",5,7,9,13,15,19,20,36,38,47);
|
||||
aWE("hexahedron",3,5,6,30);
|
||||
aWE("high",5);
|
||||
aWE("hyp",15,16);
|
||||
aWE("hypothes",0,1,2,3,4,15,16,21,23,25,26,27,29,30,36);
|
||||
aWE("hypothesi",4,25,26,27,29);
|
||||
aWE("hyp",16,17);
|
||||
aWE("hypothes",0,1,2,3,4,6,11,16,17,18,23,25,28,29,30,33,35,40,49,42);
|
||||
aWE("hypothesi",4,11,18,26,28,29,30,32,33,34,40,49);
|
||||
aWE("i",3);
|
||||
aWE("icon",32);
|
||||
aWE("id",19,20);
|
||||
aWE("if",5);
|
||||
aWE("icon",37);
|
||||
aWE("id",21,22);
|
||||
aWE("if",5,34);
|
||||
aWE("imp",5);
|
||||
aWE("import",22,23);
|
||||
aWE("importation",22);
|
||||
aWE("import",24,25);
|
||||
aWE("importation",24);
|
||||
aWE("includ",5);
|
||||
aWE("indicat",42);
|
||||
aWE("info",39);
|
||||
aWE("information",5,39);
|
||||
aWE("initial",32);
|
||||
aWE("indicat",48);
|
||||
aWE("info",45);
|
||||
aWE("information",5,45);
|
||||
aWE("initial",37);
|
||||
aWE("interest",5);
|
||||
aWE("introduction",23);
|
||||
aWE("introduction",25);
|
||||
aWE("invers",5);
|
||||
aWE("inversion",17);
|
||||
aWE("item",22);
|
||||
aWE("inversion",19);
|
||||
aWE("item",4,6,24);
|
||||
aWE("j",3);
|
||||
aWE("join",34);
|
||||
aWE("join",39);
|
||||
aWE("k",3);
|
||||
aWE("kind",6);
|
||||
aWE("l",42);
|
||||
aWE("largest",11);
|
||||
aWE("launch",32);
|
||||
aWE("length",4,8,11,23,24,25,29,42);
|
||||
aWE("l",48);
|
||||
aWE("largest",12);
|
||||
aWE("last",40);
|
||||
aWE("launch",37);
|
||||
aWE("length",4,8,11,12,25,26,27,28,33,40,48);
|
||||
aWE("les",49);
|
||||
aWE("level",4);
|
||||
aWE("lik",19,20,32);
|
||||
aWE("lin",5,34);
|
||||
aWE("local",4,16,23,25,29);
|
||||
aWE("location",22);
|
||||
aWE("longest",11);
|
||||
aWE("look",19,20,32);
|
||||
aWE("lik",21,22,37);
|
||||
aWE("lin",5,18,39);
|
||||
aWE("lk",11);
|
||||
aWE("local",17,25,33,34);
|
||||
aWE("location",18,24,40);
|
||||
aWE("longest",12);
|
||||
aWE("look",21,22,37);
|
||||
aWE("low",5);
|
||||
aWE("main",32);
|
||||
aWE("main",4,6,37);
|
||||
aWE("manag",4);
|
||||
aWE("map",1);
|
||||
aWE("max",4,23,26,27);
|
||||
aWE("maximum",26,27,34);
|
||||
aWE("max",4,25,29,30);
|
||||
aWE("maximum",18,29,30,39);
|
||||
aWE("mean",5);
|
||||
aWE("meaningful",5);
|
||||
aWE("measur",42);
|
||||
aWE("measur",48);
|
||||
aWE("mefisto",2);
|
||||
aWE("menu",0,1,2,3,13,15,16,19,20,22,25,26,27,29,32,36,39);
|
||||
aWE("mesh",0,1,2,3,4,5,6,7,8,10,11,13,15,16,19,20,22,23,24,25,26,27,28,29,32,34,35,36,39,40,42);
|
||||
aWE("minimum",8,23,28);
|
||||
aWE("mod",40);
|
||||
aWE("model",5,23);
|
||||
aWE("modification",5,7,23);
|
||||
aWE("modul",5,6,23,32);
|
||||
aWE("mov",23);
|
||||
aWE("multi",23);
|
||||
aWE("multipli",11);
|
||||
aWE("nam",22,25,26,27,29);
|
||||
aWE("nb",29);
|
||||
aWE("netgen",36);
|
||||
aWE("new",32);
|
||||
aWE("nod",5,9,10,11,18,20,23,25,29,31,34,35,42);
|
||||
aWE("normal",42);
|
||||
aWE("menu",0,1,2,3,4,6,11,14,16,17,18,21,22,24,28,29,30,33,37,40,49,42,45,46);
|
||||
aWE("mesh",0,1,2,3,4,5,6,7,8,10,12,14,16,17,18,21,22,24,25,26,27,28,29,30,31,32,33,37,39,40,41,49,42,45,46,48);
|
||||
aWE("minimum",8,25,31);
|
||||
aWE("mod",46);
|
||||
aWE("model",5,25);
|
||||
aWE("modification",5,7,25);
|
||||
aWE("modul",5,6,25,37);
|
||||
aWE("mov",25);
|
||||
aWE("multi",25);
|
||||
aWE("multipli",12);
|
||||
aWE("nam",11,18,24,28,29,30,33,40);
|
||||
aWE("nb",33);
|
||||
aWE("ne",49);
|
||||
aWE("need",49);
|
||||
aWE("netgen",49,42);
|
||||
aWE("new",37);
|
||||
aWE("nod",5,9,10,12,18,20,22,25,28,33,36,39,40,41,48);
|
||||
aWE("normal",48);
|
||||
aWE("notic",5);
|
||||
aWE("numb",4,5,23,29);
|
||||
aWE("number",19,20);
|
||||
aWE("object",0,1,2,3,4,6,13,15,16,25,26,27,29,36,39);
|
||||
aWE("ok",22);
|
||||
aWE("on",5,15,16);
|
||||
aWE("operation",23);
|
||||
aWE("opposit",34);
|
||||
aWE("numb",4,5,25,33);
|
||||
aWE("number",21,22);
|
||||
aWE("object",0,1,2,3,4,6,14,16,17,28,29,30,33,49,42,45,46);
|
||||
aWE("ok",24);
|
||||
aWE("on",4,5,6,16,17,34,40,49);
|
||||
aWE("onto",34);
|
||||
aWE("operation",25);
|
||||
aWE("opposit",4,34,39);
|
||||
aWE("option",5);
|
||||
aWE("ord",5);
|
||||
aWE("orientation",12);
|
||||
aWE("origin",42);
|
||||
aWE("orientation",13);
|
||||
aWE("origin",48);
|
||||
aWE("own",5);
|
||||
aWE("paramet",5);
|
||||
aWE("parameter",4);
|
||||
aWE("parameter",4,26,32);
|
||||
aWE("parametric",5);
|
||||
aWE("particularity",5);
|
||||
aWE("perfect",11);
|
||||
aWE("perform",23);
|
||||
aWE("plan",42);
|
||||
aWE("planar",42);
|
||||
aWE("platform",32);
|
||||
aWE("point",5,25,29,42);
|
||||
aWE("perfect",12);
|
||||
aWE("perform",25);
|
||||
aWE("plan",48);
|
||||
aWE("planar",48);
|
||||
aWE("platform",37);
|
||||
aWE("point",5,28,33,48);
|
||||
aWE("pop",46);
|
||||
aWE("position",5);
|
||||
aWE("possibl",4);
|
||||
aWE("present",5);
|
||||
aWE("presentation",8);
|
||||
aWE("preset",4);
|
||||
aWE("previous",15,16,23);
|
||||
aWE("procedur",11);
|
||||
aWE("previou",40);
|
||||
aWE("previous",16,17,25);
|
||||
aWE("procedur",12);
|
||||
aWE("produc",5);
|
||||
aWE("product",42);
|
||||
aWE("projection",42);
|
||||
aWE("properti",33,41);
|
||||
aWE("quad",42);
|
||||
aWE("quadrangl",1,5,6,10,11,24,26,28,34);
|
||||
aWE("quality",8,10,11,23,24,28,34,35,42);
|
||||
aWE("product",48);
|
||||
aWE("progression",11);
|
||||
aWE("projection",48);
|
||||
aWE("propagat",34);
|
||||
aWE("propagation",4,34);
|
||||
aWE("properti",38,46,47);
|
||||
aWE("quad",48);
|
||||
aWE("quadrangl",1,5,6,10,12,27,29,31,39);
|
||||
aWE("quadrangular",34);
|
||||
aWE("quality",8,10,12,25,27,31,39,41,48);
|
||||
aWE("quantity",4);
|
||||
aWE("ratio",8,11,23,35,42);
|
||||
aWE("reassign",30);
|
||||
aWE("ratio",8,12,25,41,48);
|
||||
aWE("reassign",35);
|
||||
aWE("referenc",5,8);
|
||||
aWE("refin",4);
|
||||
aWE("reflect",34);
|
||||
aWE("relat",32);
|
||||
aWE("reflect",39);
|
||||
aWE("regular",11);
|
||||
aWE("relat",37);
|
||||
aWE("relation",5);
|
||||
aWE("relationship",5);
|
||||
aWE("remain",11);
|
||||
aWE("remov",31);
|
||||
aWE("repeat",11);
|
||||
aWE("represent",4,5,25,29,35);
|
||||
aWE("remain",12);
|
||||
aWE("remov",36);
|
||||
aWE("repeat",12);
|
||||
aWE("represent",4,5,28,33,41);
|
||||
aWE("representation",5);
|
||||
aWE("restrict",5);
|
||||
aWE("result",4);
|
||||
aWE("retain",11);
|
||||
aWE("retain",12);
|
||||
aWE("retriev",5);
|
||||
aWE("right",46);
|
||||
aWE("rough",4);
|
||||
aWE("run",32);
|
||||
aWE("s",11);
|
||||
aWE("salom",23,32);
|
||||
aWE("sam",5,29);
|
||||
aWE("scalar",8,33);
|
||||
aWE("run",37);
|
||||
aWE("s",12);
|
||||
aWE("salom",25,37);
|
||||
aWE("sam",5,33,34);
|
||||
aWE("scalar",8,38);
|
||||
aWE("se",5);
|
||||
aWE("search",22);
|
||||
aWE("segment",4,23,25,29);
|
||||
aWE("select",0,1,2,3,4,13,15,16,19,20,22,25,26,27,29,32,36,39);
|
||||
aWE("search",24);
|
||||
aWE("segment",4,11,18,25,26,28,33,40);
|
||||
aWE("select",0,1,2,3,4,6,11,14,16,17,18,21,22,24,28,29,30,33,37,40,49,42,45,46);
|
||||
aWE("sens",5);
|
||||
aWE("separat",35);
|
||||
aWE("set",5,6,23,25,26,27,29,32);
|
||||
aWE("shad",40);
|
||||
aWE("shap",4,5,11);
|
||||
aWE("shortest",11,42);
|
||||
aWE("should",32);
|
||||
aWE("separat",41);
|
||||
aWE("set",5,6,11,18,25,28,29,30,33,34,37,40,46);
|
||||
aWE("shad",46);
|
||||
aWE("shap",4,5,12);
|
||||
aWE("shortest",12,48);
|
||||
aWE("should",37);
|
||||
aWE("shown",8);
|
||||
aWE("shrink",40);
|
||||
aWE("sid",11,28,34);
|
||||
aWE("shrink",46);
|
||||
aWE("sid",12,31,39);
|
||||
aWE("similar",11);
|
||||
aWE("simpl",5);
|
||||
aWE("skew",8,23,34);
|
||||
aWE("smesh",4,5,6,8,19,20,22,23,32,37,40);
|
||||
aWE("so",4,11,35);
|
||||
aWE("skew",8,25,39);
|
||||
aWE("smesh",4,5,6,8,21,22,24,25,37,43,46);
|
||||
aWE("so",4,12,18,40,41);
|
||||
aWE("spac",5);
|
||||
aWE("split",25,29);
|
||||
aWE("standard",22,32);
|
||||
aWE("start",32);
|
||||
aWE("step",13);
|
||||
aWE("study",32);
|
||||
aWE("sub",22);
|
||||
aWE("submesh",4,16);
|
||||
aWE("surfac",5);
|
||||
aWE("specifi",18,40,49);
|
||||
aWE("split",11,28,33);
|
||||
aWE("standard",24,37);
|
||||
aWE("start",4,11,37,40);
|
||||
aWE("step",14);
|
||||
aWE("study",37);
|
||||
aWE("sub",24);
|
||||
aWE("submesh",4,17);
|
||||
aWE("surfac",5,49);
|
||||
aWE("surround",5);
|
||||
aWE("t",5);
|
||||
aWE("taken",4);
|
||||
aWE("tap",8,23,35);
|
||||
aWE("tetrahedron",5,6,27,36);
|
||||
aWE("text",7,9,12,14,17,18,31,33,41);
|
||||
aWE("thre",5,40);
|
||||
aWE("toolbar",0,1,2,3,11,13,15,16,24,32,34,35,36,39,42);
|
||||
aWE("topic",7,9,12,14,17,18,31,33,41);
|
||||
aWE("tap",8,25,41);
|
||||
aWE("tetrahedron",5,6,30,49,42);
|
||||
aWE("text",7,9,13,15,19,20,36,38,47);
|
||||
aWE("them",18,40);
|
||||
aWE("thre",5,46);
|
||||
aWE("toolbar",12,14,16,17,27,37,39,41,45,48);
|
||||
aWE("topic",7,9,13,15,19,20,36,38,47);
|
||||
aWE("topological",5);
|
||||
aWE("topology",5);
|
||||
aWE("triangl",2,5,6,10,11,24,26,28,34,35);
|
||||
aWE("two",5,11,28,35);
|
||||
aWE("typ",5,7,9,12,14,17,18,31,33,41);
|
||||
aWE("triangl",2,5,6,10,12,27,29,31,39,41);
|
||||
aWE("triangulator",26);
|
||||
aWE("two",5,12,31,41);
|
||||
aWE("typ",5,7,9,13,15,19,20,36,38,47);
|
||||
aWE("u",5);
|
||||
aWE("unv",22);
|
||||
aWE("updat",32,38);
|
||||
aWE("us",0,1,2,3,5,6,15,16,25,29,36,37);
|
||||
aWE("unles",34);
|
||||
aWE("unv",24);
|
||||
aWE("up",11,46);
|
||||
aWE("updat",37,44);
|
||||
aWE("us",0,1,2,3,5,6,16,17,18,28,33,40,49,42,43);
|
||||
aWE("usag",8);
|
||||
aWE("v",5);
|
||||
aWE("valu",8,11,28,34);
|
||||
aWE("vector",42);
|
||||
aWE("valu",8,11,12,18,31,39);
|
||||
aWE("vector",48);
|
||||
aWE("vertex",5);
|
||||
aWE("view",10,11,19,20,24,28,32,34,35,38,39,40,42);
|
||||
aWE("view",10,12,21,22,27,31,37,39,41,44,45,46,48);
|
||||
aWE("visual",8);
|
||||
aWE("visualization",40,41);
|
||||
aWE("volum",3,4,5,6,23,27,36);
|
||||
aWE("vtk",32);
|
||||
aWE("warp",8,23,42);
|
||||
aWE("visualization",46,47);
|
||||
aWE("volum",3,4,5,6,25,30,49,42);
|
||||
aWE("vtk",37);
|
||||
aWE("warp",8,25,48);
|
||||
aWE("way",5);
|
||||
aWE("will",4,5,10,11,15,16,19,20,22,24,25,26,27,28,29,32,34,35,39,42);
|
||||
aWE("window",32);
|
||||
aWE("wir",0,6);
|
||||
aWE("wirefram",40);
|
||||
aWE("word",29);
|
||||
aWE("work",32);
|
||||
aWE("x",5,42);
|
||||
aWE("whil",49);
|
||||
aWE("will",4,5,6,10,11,12,16,17,18,21,22,24,27,28,29,30,31,33,34,37,39,40,41,45,48);
|
||||
aWE("window",37);
|
||||
aWE("wir",0,6,26);
|
||||
aWE("wirefram",46);
|
||||
aWE("word",33);
|
||||
aWE("work",37);
|
||||
aWE("x",5,48);
|
||||
aWE("y",5);
|
||||
aWE("your",4,5,8,10,11,13,16,19,20,22,24,25,26,27,28,29,34,35,39,42);
|
||||
aWE("your",4,5,8,10,11,12,14,17,18,21,22,24,27,28,29,30,31,33,39,40,41,45,46,48);
|
||||
aWE("z",5);
|
||||
|
||||
//-->
|
||||
|
@ -2,343 +2,384 @@
|
||||
<ftswdata>
|
||||
<key name="0"> 5, </key>
|
||||
<key name="0d"> 5, </key>
|
||||
<key name="1"> 10,11,13,19,20,22,24,28,34,35,39,42, </key>
|
||||
<key name="1d"> 0,5,6,23, </key>
|
||||
<key name="2"> 10,11,13,19,20,22,24,28,34,35,39,42, </key>
|
||||
<key name="2d"> 1,2,5,6,10,11,23,26,28,42, </key>
|
||||
<key name="3"> 5,10,11,22,32,34,42, </key>
|
||||
<key name="3d"> 3,5,6,23,27,36, </key>
|
||||
<key name="1"> 10,11,12,14,21,22,24,27,31,39,41,45,46,48, </key>
|
||||
<key name="1d"> 0,4,5,6,11,18,25,26,34,40, </key>
|
||||
<key name="2"> 10,12,14,21,22,24,27,31,39,41,45,46,48, </key>
|
||||
<key name="2d"> 1,2,5,6,10,12,25,26,29,31,48, </key>
|
||||
<key name="3"> 5,10,12,24,37,39,48, </key>
|
||||
<key name="3d"> 3,5,6,25,30,49,42, </key>
|
||||
<key name="3rd"> 5, </key>
|
||||
<key name="4"> 5,10,11,34,35,42, </key>
|
||||
<key name="4"> 5,10,12,39,41,48, </key>
|
||||
<key name="5th"> 5, </key>
|
||||
<key name="abut"> 25,29, </key>
|
||||
<key name="accord"> 8,10,11,24,28,34,35,42, </key>
|
||||
<key name="abut"> 28,33, </key>
|
||||
<key name="accord"> 8,10,12,27,31,39,41,48, </key>
|
||||
<key name="account"> 4, </key>
|
||||
<key name="ad"> 9, </key>
|
||||
<key name="addition"> 23, </key>
|
||||
<key name="additional"> 5,32, </key>
|
||||
<key name="adjacent"> 28, </key>
|
||||
<key name="algorithm"> 0,1,2,3,4,5,6,8,10,15,16,23,26,27,30,36, </key>
|
||||
<key name="allow"> 4,22,23, </key>
|
||||
<key name="angl"> 8,23,28,34,42, </key>
|
||||
<key name="any"> 5, </key>
|
||||
<key name="ap"> 0,1,2,3,10,11,23,24,28,34,35,36,42, </key>
|
||||
<key name="appear"> 15,16,25,26,27,29,32, </key>
|
||||
<key name="appli"> 10,11,24,25,26,27,28,29,34,35,42, </key>
|
||||
<key name="addition"> 25, </key>
|
||||
<key name="additional"> 5,37, </key>
|
||||
<key name="adjacent"> 31,32, </key>
|
||||
<key name="advanc"> 49, </key>
|
||||
<key name="algorithm"> 0,1,2,3,4,5,6,8,10,11,16,17,25,29,30,35,49,42, </key>
|
||||
<key name="allow"> 4,11,24,25,32,34, </key>
|
||||
<key name="angl"> 8,25,31,39,48, </key>
|
||||
<key name="anoth"> 34, </key>
|
||||
<key name="any"> 5,49, </key>
|
||||
<key name="ap"> 0,1,2,3,6,10,12,25,27,31,39,41,49,42,48, </key>
|
||||
<key name="appear"> 4,6,11,16,17,18,28,29,30,33,37,40, </key>
|
||||
<key name="appli"> 10,12,27,28,29,30,31,33,39,41,48, </key>
|
||||
<key name="application"> 8, </key>
|
||||
<key name="apply"> 4,15,16, </key>
|
||||
<key name="approximate"> 29, </key>
|
||||
<key name="arcsin"> 42, </key>
|
||||
<key name="area"> 4,8,10,23,26,27,35, </key>
|
||||
<key name="aspect"> 8,11,23, </key>
|
||||
<key name="assign"> 42, </key>
|
||||
<key name="averag"> 25,42, </key>
|
||||
<key name="axi"> 42, </key>
|
||||
<key name="bar"> 8,33, </key>
|
||||
<key name="bas"> 4,10,23,42, </key>
|
||||
<key name="apply"> 4,16,17, </key>
|
||||
<key name="approximate"> 33, </key>
|
||||
<key name="arcsin"> 48, </key>
|
||||
<key name="area"> 4,8,10,25,29,30,41, </key>
|
||||
<key name="arithmetic"> 4,11, </key>
|
||||
<key name="aspect"> 8,12,25, </key>
|
||||
<key name="assign"> 48, </key>
|
||||
<key name="averag"> 4,26,28,40,48, </key>
|
||||
<key name="axi"> 48, </key>
|
||||
<key name="bar"> 8,38, </key>
|
||||
<key name="bas"> 4,10,25,48, </key>
|
||||
<key name="basi"> 5, </key>
|
||||
<key name="basic"> 4, </key>
|
||||
<key name="befor"> 32, </key>
|
||||
<key name="bisect"> 42, </key>
|
||||
<key name="bisector"> 42, </key>
|
||||
<key name="border"> 23, </key>
|
||||
<key name="bottom"> 32, </key>
|
||||
<key name="befor"> 37, </key>
|
||||
<key name="begin"> 11, </key>
|
||||
<key name="bisect"> 48, </key>
|
||||
<key name="bisector"> 48, </key>
|
||||
<key name="border"> 25, </key>
|
||||
<key name="bottom"> 37, </key>
|
||||
<key name="bound"> 5, </key>
|
||||
<key name="boundary"> 4, </key>
|
||||
<key name="box"> 15,16,22,25,26,27,29,32, </key>
|
||||
<key name="brows"> 13,39, </key>
|
||||
<key name="button"> 0,1,2,3,10,11,13,15,16,22,24,25,26,27,28,29,34,35,36,39,42, </key>
|
||||
<key name="box"> 11,16,17,18,24,28,29,30,33,37,40, </key>
|
||||
<key name="brows"> 14,45,46, </key>
|
||||
<key name="build"> 18,26,40, </key>
|
||||
<key name="built"> 49, </key>
|
||||
<key name="button"> 10,12,14,16,17,24,27,31,39,41,45,48, </key>
|
||||
<key name="cad"> 5, </key>
|
||||
<key name="calculat"> 8,11,35, </key>
|
||||
<key name="calculation"> 4,10,24,28, </key>
|
||||
<key name="chang"> 12, </key>
|
||||
<key name="calculat"> 8,12,26,41, </key>
|
||||
<key name="calculation"> 4,10,27,31, </key>
|
||||
<key name="chang"> 11,13, </key>
|
||||
<key name="characteristic"> 8, </key>
|
||||
<key name="characteriz"> 5, </key>
|
||||
<key name="choic"> 4, </key>
|
||||
<key name="choos"> 10,11,22,24,28,32,34,35,42, </key>
|
||||
<key name="chosen"> 26,27, </key>
|
||||
<key name="click"> 0,1,2,3,10,11,13,15,16,22,24,25,26,27,28,29,32,34,35,36,39,42, </key>
|
||||
<key name="choos"> 10,12,24,27,31,37,39,41,48, </key>
|
||||
<key name="chosen"> 29,30, </key>
|
||||
<key name="click"> 0,1,2,3,4,6,10,11,12,14,16,17,18,24,27,28,29,30,31,33,37,39,40,41,49,42,45,46,48, </key>
|
||||
<key name="clos"> 5, </key>
|
||||
<key name="color"> 8,10,11,24,28,34,35,42, </key>
|
||||
<key name="combin"> 24, </key>
|
||||
<key name="component"> 23,32, </key>
|
||||
<key name="compos"> 4,5,6,8,19,25,26,27,29,34, </key>
|
||||
<key name="comput"> 13, </key>
|
||||
<key name="computation"> 13,15,16, </key>
|
||||
<key name="color"> 8,10,12,27,31,39,41,48, </key>
|
||||
<key name="combin"> 27, </key>
|
||||
<key name="component"> 25,37, </key>
|
||||
<key name="compos"> 4,5,6,8,21,28,29,30,33,39, </key>
|
||||
<key name="comput"> 14, </key>
|
||||
<key name="computation"> 14,16,17, </key>
|
||||
<key name="condition"> 4, </key>
|
||||
<key name="connection"> 5,23, </key>
|
||||
<key name="connectivity"> 14, </key>
|
||||
<key name="conform"> 4,32, </key>
|
||||
<key name="connect"> 18, </key>
|
||||
<key name="connection"> 5,25, </key>
|
||||
<key name="connectivity"> 15, </key>
|
||||
<key name="consider"> 5, </key>
|
||||
<key name="consist"> 8,10,11,15,16,24,25,26,27,28,29,35, </key>
|
||||
<key name="construct"> 15,16, </key>
|
||||
<key name="construction"> 15,16, </key>
|
||||
<key name="contain"> 5,6,22, </key>
|
||||
<key name="consist"> 8,10,12,16,17,27,28,29,30,31,33,41, </key>
|
||||
<key name="constant"> 40, </key>
|
||||
<key name="construct"> 16,17,18,40, </key>
|
||||
<key name="construction"> 16,17, </key>
|
||||
<key name="contain"> 5,6,24, </key>
|
||||
<key name="contour"> 5, </key>
|
||||
<key name="control"> 8,10,11,23,24,28,34,35,42, </key>
|
||||
<key name="control"> 8,10,12,25,27,31,39,41,48, </key>
|
||||
<key name="coordinat"> 5, </key>
|
||||
<key name="corn"> 42, </key>
|
||||
<key name="corner"> 42, </key>
|
||||
<key name="correspond"> 5,8,22, </key>
|
||||
<key name="corn"> 48, </key>
|
||||
<key name="corner"> 48, </key>
|
||||
<key name="correspond"> 5,8,24, </key>
|
||||
<key name="could"> 5, </key>
|
||||
<key name="creat"> 5,23,32,42, </key>
|
||||
<key name="creation"> 5,32, </key>
|
||||
<key name="criteria"> 23, </key>
|
||||
<key name="criterion"> 10,11,24,28,34,35,42, </key>
|
||||
<key name="cros"> 42, </key>
|
||||
<key name="curv"> 5, </key>
|
||||
<key name="creat"> 0,1,2,3,4,5,6,11,18,25,28,29,30,33,37,40,49,42,48, </key>
|
||||
<key name="creation"> 5,37, </key>
|
||||
<key name="criteria"> 25, </key>
|
||||
<key name="criterion"> 10,12,27,31,39,41,48, </key>
|
||||
<key name="cros"> 48, </key>
|
||||
<key name="curv"> 5,18, </key>
|
||||
<key name="d"> 11, </key>
|
||||
<key name="deal"> 5, </key>
|
||||
<key name="default"> 32, </key>
|
||||
<key name="defin"> 5,11,25,26,27,29, </key>
|
||||
<key name="definit"> 5,8,23,29, </key>
|
||||
<key name="definition"> 25,26,27,29, </key>
|
||||
<key name="deletion"> 23, </key>
|
||||
<key name="depend"> 4,5,26,27, </key>
|
||||
<key name="default"> 37, </key>
|
||||
<key name="defin"> 5,11,12,18,28,29,30,33,40, </key>
|
||||
<key name="definit"> 5,8,25,33, </key>
|
||||
<key name="definition"> 28,29,30,33, </key>
|
||||
<key name="deflection"> 4,18, </key>
|
||||
<key name="deletion"> 25, </key>
|
||||
<key name="depend"> 4,5,29,30, </key>
|
||||
<key name="describ"> 5, </key>
|
||||
<key name="desktop"> 32, </key>
|
||||
<key name="destin"> 5,8,23, </key>
|
||||
<key name="desktop"> 37, </key>
|
||||
<key name="destin"> 5,8,25, </key>
|
||||
<key name="detail"> 4, </key>
|
||||
<key name="diagonal"> 17,35, </key>
|
||||
<key name="dialog"> 15,16,22,25,26,27,29, </key>
|
||||
<key name="diagonal"> 19,41, </key>
|
||||
<key name="dialog"> 11,16,17,18,24,28,29,30,33,40, </key>
|
||||
<key name="differ"> 40, </key>
|
||||
<key name="different"> 4, </key>
|
||||
<key name="dimension"> 5, </key>
|
||||
<key name="direct"> 5, </key>
|
||||
<key name="direction"> 42, </key>
|
||||
<key name="direction"> 48, </key>
|
||||
<key name="discretization"> 0,5,6, </key>
|
||||
<key name="displac"> 18, </key>
|
||||
<key name="display"> 8,10,11,19,20,24,28,34,35,39,40,42, </key>
|
||||
<key name="displac"> 20, </key>
|
||||
<key name="display"> 8,10,12,21,22,27,31,39,41,45,46,48, </key>
|
||||
<key name="disposal"> 8, </key>
|
||||
<key name="distanc"> 42, </key>
|
||||
<key name="distanc"> 18,48, </key>
|
||||
<key name="divid"> 18,40, </key>
|
||||
<key name="do"> 49, </key>
|
||||
<key name="don"> 5, </key>
|
||||
<key name="edg"> 0,4,5,6,8,11,23,24,25,29,42, </key>
|
||||
<key name="edit"> 21, </key>
|
||||
<key name="element"> 4,5,8,9,10,11,12,17,19,23,24,26,27,28,31,34,35,42, </key>
|
||||
<key name="encapsulat"> 16, </key>
|
||||
<key name="ent"> 22, </key>
|
||||
<key name="entiti"> 0,1,2,3,5,6,36, </key>
|
||||
<key name="edg"> 0,4,5,6,8,11,12,18,25,26,27,28,32,33,34,40,48, </key>
|
||||
<key name="edit"> 23, </key>
|
||||
<key name="element"> 4,5,8,9,10,12,13,18,19,21,25,27,29,30,31,32,36,39,40,41,49,48, </key>
|
||||
<key name="encapsulat"> 17, </key>
|
||||
<key name="end"> 4,11,18,32,40, </key>
|
||||
<key name="ent"> 24, </key>
|
||||
<key name="entiti"> 0,1,2,3,5,6,49,42, </key>
|
||||
<key name="entity"> 5, </key>
|
||||
<key name="equal"> 11, </key>
|
||||
<key name="equilateral"> 11, </key>
|
||||
<key name="equal"> 12,18, </key>
|
||||
<key name="equilateral"> 12, </key>
|
||||
<key name="etc"> 8, </key>
|
||||
<key name="every"> 42, </key>
|
||||
<key name="exampl"> 5, </key>
|
||||
<key name="export"> 22,23, </key>
|
||||
<key name="exportation"> 22, </key>
|
||||
<key name="extend"> 42, </key>
|
||||
<key name="fac"> 1,2,4,5,6,23,25,26,29,42, </key>
|
||||
<key name="fil"> 22, </key>
|
||||
<key name="final"> 13, </key>
|
||||
<key name="find"> 22, </key>
|
||||
<key name="every"> 48, </key>
|
||||
<key name="exampl"> 5,42, </key>
|
||||
<key name="export"> 24,25, </key>
|
||||
<key name="exportation"> 24, </key>
|
||||
<key name="extend"> 48, </key>
|
||||
<key name="fac"> 1,2,4,5,6,25,28,29,32,33,34,48, </key>
|
||||
<key name="factor"> 40, </key>
|
||||
<key name="fil"> 24, </key>
|
||||
<key name="final"> 14, </key>
|
||||
<key name="find"> 24, </key>
|
||||
<key name="first"> 40, </key>
|
||||
<key name="fix"> 5, </key>
|
||||
<key name="follow"> 4,5,6,8,11,15,16,19,20,25,26,27,29,32,39, </key>
|
||||
<key name="format"> 22,23, </key>
|
||||
<key name="four"> 5,42, </key>
|
||||
<key name="fre"> 5,23, </key>
|
||||
<key name="follow"> 4,5,6,8,11,12,16,17,18,21,22,28,29,30,33,37,40,45, </key>
|
||||
<key name="format"> 24,25, </key>
|
||||
<key name="four"> 5,48, </key>
|
||||
<key name="fre"> 5,25, </key>
|
||||
<key name="function"> 5, </key>
|
||||
<key name="functionality"> 5,22, </key>
|
||||
<key name="generat"> 4,5,8,23,25,29,32, </key>
|
||||
<key name="generation"> 13, </key>
|
||||
<key name="geom"> 5,23, </key>
|
||||
<key name="functionality"> 5,24, </key>
|
||||
<key name="generat"> 4,5,8,25,28,32,33,37,49, </key>
|
||||
<key name="generation"> 14, </key>
|
||||
<key name="geom"> 5,25, </key>
|
||||
<key name="geometric"> 5,8, </key>
|
||||
<key name="geometrical"> 0,1,2,3,4,5,6,15,16,23,25,26,27,29,36, </key>
|
||||
<key name="global"> 15, </key>
|
||||
<key name="group"> 23, </key>
|
||||
<key name="h"> 42, </key>
|
||||
<key name="h1"> 11, </key>
|
||||
<key name="h2"> 11, </key>
|
||||
<key name="half"> 42, </key>
|
||||
<key name="height"> 11,42, </key>
|
||||
<key name="geometrical"> 0,1,2,3,4,5,6,16,17,18,25,28,29,30,33,40,49,42, </key>
|
||||
<key name="ghs3d"> 49, </key>
|
||||
<key name="given"> 11,26, </key>
|
||||
<key name="global"> 16, </key>
|
||||
<key name="group"> 25, </key>
|
||||
<key name="h"> 48, </key>
|
||||
<key name="h1"> 12, </key>
|
||||
<key name="h2"> 12, </key>
|
||||
<key name="half"> 48, </key>
|
||||
<key name="hav"> 26,32,49, </key>
|
||||
<key name="height"> 12,48, </key>
|
||||
<key name="help"> 8, </key>
|
||||
<key name="her"> 5,7,9,12,14,17,18,31,33,41, </key>
|
||||
<key name="hexahedron"> 3,5,6,27, </key>
|
||||
<key name="her"> 5,7,9,13,15,19,20,36,38,47, </key>
|
||||
<key name="hexahedron"> 3,5,6,30, </key>
|
||||
<key name="high"> 5, </key>
|
||||
<key name="hyp"> 15,16, </key>
|
||||
<key name="hypothes"> 0,1,2,3,4,15,16,21,23,25,26,27,29,30,36, </key>
|
||||
<key name="hypothesi"> 4,25,26,27,29, </key>
|
||||
<key name="hyp"> 16,17, </key>
|
||||
<key name="hypothes"> 0,1,2,3,4,6,11,16,17,18,23,25,28,29,30,33,35,40,49,42, </key>
|
||||
<key name="hypothesi"> 4,11,18,26,28,29,30,32,33,34,40,49, </key>
|
||||
<key name="i"> 3, </key>
|
||||
<key name="icon"> 32, </key>
|
||||
<key name="id"> 19,20, </key>
|
||||
<key name="if"> 5, </key>
|
||||
<key name="icon"> 37, </key>
|
||||
<key name="id"> 21,22, </key>
|
||||
<key name="if"> 5,34, </key>
|
||||
<key name="imp"> 5, </key>
|
||||
<key name="import"> 22,23, </key>
|
||||
<key name="importation"> 22, </key>
|
||||
<key name="import"> 24,25, </key>
|
||||
<key name="importation"> 24, </key>
|
||||
<key name="includ"> 5, </key>
|
||||
<key name="indicat"> 42, </key>
|
||||
<key name="info"> 39, </key>
|
||||
<key name="information"> 5,39, </key>
|
||||
<key name="initial"> 32, </key>
|
||||
<key name="indicat"> 48, </key>
|
||||
<key name="info"> 45, </key>
|
||||
<key name="information"> 5,45, </key>
|
||||
<key name="initial"> 37, </key>
|
||||
<key name="interest"> 5, </key>
|
||||
<key name="introduction"> 23, </key>
|
||||
<key name="introduction"> 25, </key>
|
||||
<key name="invers"> 5, </key>
|
||||
<key name="inversion"> 17, </key>
|
||||
<key name="item"> 22, </key>
|
||||
<key name="inversion"> 19, </key>
|
||||
<key name="item"> 4,6,24, </key>
|
||||
<key name="j"> 3, </key>
|
||||
<key name="join"> 34, </key>
|
||||
<key name="join"> 39, </key>
|
||||
<key name="k"> 3, </key>
|
||||
<key name="kind"> 6, </key>
|
||||
<key name="l"> 42, </key>
|
||||
<key name="largest"> 11, </key>
|
||||
<key name="launch"> 32, </key>
|
||||
<key name="length"> 4,8,11,23,24,25,29,42, </key>
|
||||
<key name="l"> 48, </key>
|
||||
<key name="largest"> 12, </key>
|
||||
<key name="last"> 40, </key>
|
||||
<key name="launch"> 37, </key>
|
||||
<key name="length"> 4,8,11,12,25,26,27,28,33,40,48, </key>
|
||||
<key name="les"> 49, </key>
|
||||
<key name="level"> 4, </key>
|
||||
<key name="lik"> 19,20,32, </key>
|
||||
<key name="lin"> 5,34, </key>
|
||||
<key name="local"> 4,16,23,25,29, </key>
|
||||
<key name="location"> 22, </key>
|
||||
<key name="longest"> 11, </key>
|
||||
<key name="look"> 19,20,32, </key>
|
||||
<key name="lik"> 21,22,37, </key>
|
||||
<key name="lin"> 5,18,39, </key>
|
||||
<key name="lk"> 11, </key>
|
||||
<key name="local"> 17,25,33,34, </key>
|
||||
<key name="location"> 18,24,40, </key>
|
||||
<key name="longest"> 12, </key>
|
||||
<key name="look"> 21,22,37, </key>
|
||||
<key name="low"> 5, </key>
|
||||
<key name="main"> 32, </key>
|
||||
<key name="main"> 4,6,37, </key>
|
||||
<key name="manag"> 4, </key>
|
||||
<key name="map"> 1, </key>
|
||||
<key name="max"> 4,23,26,27, </key>
|
||||
<key name="maximum"> 26,27,34, </key>
|
||||
<key name="max"> 4,25,29,30, </key>
|
||||
<key name="maximum"> 18,29,30,39, </key>
|
||||
<key name="mean"> 5, </key>
|
||||
<key name="meaningful"> 5, </key>
|
||||
<key name="measur"> 42, </key>
|
||||
<key name="measur"> 48, </key>
|
||||
<key name="mefisto"> 2, </key>
|
||||
<key name="menu"> 0,1,2,3,13,15,16,19,20,22,25,26,27,29,32,36,39, </key>
|
||||
<key name="mesh"> 0,1,2,3,4,5,6,7,8,10,11,13,15,16,19,20,22,23,24,25,26,27,28,29,32,34,35,36,39,40,42, </key>
|
||||
<key name="minimum"> 8,23,28, </key>
|
||||
<key name="mod"> 40, </key>
|
||||
<key name="model"> 5,23, </key>
|
||||
<key name="modification"> 5,7,23, </key>
|
||||
<key name="modul"> 5,6,23,32, </key>
|
||||
<key name="mov"> 23, </key>
|
||||
<key name="multi"> 23, </key>
|
||||
<key name="multipli"> 11, </key>
|
||||
<key name="nam"> 22,25,26,27,29, </key>
|
||||
<key name="nb"> 29, </key>
|
||||
<key name="netgen"> 36, </key>
|
||||
<key name="new"> 32, </key>
|
||||
<key name="nod"> 5,9,10,11,18,20,23,25,29,31,34,35,42, </key>
|
||||
<key name="normal"> 42, </key>
|
||||
<key name="menu"> 0,1,2,3,4,6,11,14,16,17,18,21,22,24,28,29,30,33,37,40,49,42,45,46, </key>
|
||||
<key name="mesh"> 0,1,2,3,4,5,6,7,8,10,12,14,16,17,18,21,22,24,25,26,27,28,29,30,31,32,33,37,39,40,41,49,42,45,46,48, </key>
|
||||
<key name="minimum"> 8,25,31, </key>
|
||||
<key name="mod"> 46, </key>
|
||||
<key name="model"> 5,25, </key>
|
||||
<key name="modification"> 5,7,25, </key>
|
||||
<key name="modul"> 5,6,25,37, </key>
|
||||
<key name="mov"> 25, </key>
|
||||
<key name="multi"> 25, </key>
|
||||
<key name="multipli"> 12, </key>
|
||||
<key name="nam"> 11,18,24,28,29,30,33,40, </key>
|
||||
<key name="nb"> 33, </key>
|
||||
<key name="ne"> 49, </key>
|
||||
<key name="need"> 49, </key>
|
||||
<key name="netgen"> 49,42, </key>
|
||||
<key name="new"> 37, </key>
|
||||
<key name="nod"> 5,9,10,12,18,20,22,25,28,33,36,39,40,41,48, </key>
|
||||
<key name="normal"> 48, </key>
|
||||
<key name="notic"> 5, </key>
|
||||
<key name="numb"> 4,5,23,29, </key>
|
||||
<key name="number"> 19,20, </key>
|
||||
<key name="object"> 0,1,2,3,4,6,13,15,16,25,26,27,29,36,39, </key>
|
||||
<key name="ok"> 22, </key>
|
||||
<key name="on"> 5,15,16, </key>
|
||||
<key name="operation"> 23, </key>
|
||||
<key name="opposit"> 34, </key>
|
||||
<key name="numb"> 4,5,25,33, </key>
|
||||
<key name="number"> 21,22, </key>
|
||||
<key name="object"> 0,1,2,3,4,6,14,16,17,28,29,30,33,49,42,45,46, </key>
|
||||
<key name="ok"> 24, </key>
|
||||
<key name="on"> 4,5,6,16,17,34,40,49, </key>
|
||||
<key name="onto"> 34, </key>
|
||||
<key name="operation"> 25, </key>
|
||||
<key name="opposit"> 4,34,39, </key>
|
||||
<key name="option"> 5, </key>
|
||||
<key name="ord"> 5, </key>
|
||||
<key name="orientation"> 12, </key>
|
||||
<key name="origin"> 42, </key>
|
||||
<key name="orientation"> 13, </key>
|
||||
<key name="origin"> 48, </key>
|
||||
<key name="own"> 5, </key>
|
||||
<key name="paramet"> 5, </key>
|
||||
<key name="parameter"> 4, </key>
|
||||
<key name="parameter"> 4,26,32, </key>
|
||||
<key name="parametric"> 5, </key>
|
||||
<key name="particularity"> 5, </key>
|
||||
<key name="perfect"> 11, </key>
|
||||
<key name="perform"> 23, </key>
|
||||
<key name="plan"> 42, </key>
|
||||
<key name="planar"> 42, </key>
|
||||
<key name="platform"> 32, </key>
|
||||
<key name="point"> 5,25,29,42, </key>
|
||||
<key name="perfect"> 12, </key>
|
||||
<key name="perform"> 25, </key>
|
||||
<key name="plan"> 48, </key>
|
||||
<key name="planar"> 48, </key>
|
||||
<key name="platform"> 37, </key>
|
||||
<key name="point"> 5,28,33,48, </key>
|
||||
<key name="pop"> 46, </key>
|
||||
<key name="position"> 5, </key>
|
||||
<key name="possibl"> 4, </key>
|
||||
<key name="present"> 5, </key>
|
||||
<key name="presentation"> 8, </key>
|
||||
<key name="preset"> 4, </key>
|
||||
<key name="previous"> 15,16,23, </key>
|
||||
<key name="procedur"> 11, </key>
|
||||
<key name="previou"> 40, </key>
|
||||
<key name="previous"> 16,17,25, </key>
|
||||
<key name="procedur"> 12, </key>
|
||||
<key name="produc"> 5, </key>
|
||||
<key name="product"> 42, </key>
|
||||
<key name="projection"> 42, </key>
|
||||
<key name="properti"> 33,41, </key>
|
||||
<key name="quad"> 42, </key>
|
||||
<key name="quadrangl"> 1,5,6,10,11,24,26,28,34, </key>
|
||||
<key name="quality"> 8,10,11,23,24,28,34,35,42, </key>
|
||||
<key name="product"> 48, </key>
|
||||
<key name="progression"> 11, </key>
|
||||
<key name="projection"> 48, </key>
|
||||
<key name="propagat"> 34, </key>
|
||||
<key name="propagation"> 4,34, </key>
|
||||
<key name="properti"> 38,46,47, </key>
|
||||
<key name="quad"> 48, </key>
|
||||
<key name="quadrangl"> 1,5,6,10,12,27,29,31,39, </key>
|
||||
<key name="quadrangular"> 34, </key>
|
||||
<key name="quality"> 8,10,12,25,27,31,39,41,48, </key>
|
||||
<key name="quantity"> 4, </key>
|
||||
<key name="ratio"> 8,11,23,35,42, </key>
|
||||
<key name="reassign"> 30, </key>
|
||||
<key name="ratio"> 8,12,25,41,48, </key>
|
||||
<key name="reassign"> 35, </key>
|
||||
<key name="referenc"> 5,8, </key>
|
||||
<key name="refin"> 4, </key>
|
||||
<key name="reflect"> 34, </key>
|
||||
<key name="relat"> 32, </key>
|
||||
<key name="reflect"> 39, </key>
|
||||
<key name="regular"> 11, </key>
|
||||
<key name="relat"> 37, </key>
|
||||
<key name="relation"> 5, </key>
|
||||
<key name="relationship"> 5, </key>
|
||||
<key name="remain"> 11, </key>
|
||||
<key name="remov"> 31, </key>
|
||||
<key name="repeat"> 11, </key>
|
||||
<key name="represent"> 4,5,25,29,35, </key>
|
||||
<key name="remain"> 12, </key>
|
||||
<key name="remov"> 36, </key>
|
||||
<key name="repeat"> 12, </key>
|
||||
<key name="represent"> 4,5,28,33,41, </key>
|
||||
<key name="representation"> 5, </key>
|
||||
<key name="restrict"> 5, </key>
|
||||
<key name="result"> 4, </key>
|
||||
<key name="retain"> 11, </key>
|
||||
<key name="retain"> 12, </key>
|
||||
<key name="retriev"> 5, </key>
|
||||
<key name="right"> 46, </key>
|
||||
<key name="rough"> 4, </key>
|
||||
<key name="run"> 32, </key>
|
||||
<key name="s"> 11, </key>
|
||||
<key name="salom"> 23,32, </key>
|
||||
<key name="sam"> 5,29, </key>
|
||||
<key name="scalar"> 8,33, </key>
|
||||
<key name="run"> 37, </key>
|
||||
<key name="s"> 12, </key>
|
||||
<key name="salom"> 25,37, </key>
|
||||
<key name="sam"> 5,33,34, </key>
|
||||
<key name="scalar"> 8,38, </key>
|
||||
<key name="se"> 5, </key>
|
||||
<key name="search"> 22, </key>
|
||||
<key name="segment"> 4,23,25,29, </key>
|
||||
<key name="select"> 0,1,2,3,4,13,15,16,19,20,22,25,26,27,29,32,36,39, </key>
|
||||
<key name="search"> 24, </key>
|
||||
<key name="segment"> 4,11,18,25,26,28,33,40, </key>
|
||||
<key name="select"> 0,1,2,3,4,6,11,14,16,17,18,21,22,24,28,29,30,33,37,40,49,42,45,46, </key>
|
||||
<key name="sens"> 5, </key>
|
||||
<key name="separat"> 35, </key>
|
||||
<key name="set"> 5,6,23,25,26,27,29,32, </key>
|
||||
<key name="shad"> 40, </key>
|
||||
<key name="shap"> 4,5,11, </key>
|
||||
<key name="shortest"> 11,42, </key>
|
||||
<key name="should"> 32, </key>
|
||||
<key name="separat"> 41, </key>
|
||||
<key name="set"> 5,6,11,18,25,28,29,30,33,34,37,40,46, </key>
|
||||
<key name="shad"> 46, </key>
|
||||
<key name="shap"> 4,5,12, </key>
|
||||
<key name="shortest"> 12,48, </key>
|
||||
<key name="should"> 37, </key>
|
||||
<key name="shown"> 8, </key>
|
||||
<key name="shrink"> 40, </key>
|
||||
<key name="sid"> 11,28,34, </key>
|
||||
<key name="shrink"> 46, </key>
|
||||
<key name="sid"> 12,31,39, </key>
|
||||
<key name="similar"> 11, </key>
|
||||
<key name="simpl"> 5, </key>
|
||||
<key name="skew"> 8,23,34, </key>
|
||||
<key name="smesh"> 4,5,6,8,19,20,22,23,32,37,40, </key>
|
||||
<key name="so"> 4,11,35, </key>
|
||||
<key name="skew"> 8,25,39, </key>
|
||||
<key name="smesh"> 4,5,6,8,21,22,24,25,37,43,46, </key>
|
||||
<key name="so"> 4,12,18,40,41, </key>
|
||||
<key name="spac"> 5, </key>
|
||||
<key name="split"> 25,29, </key>
|
||||
<key name="standard"> 22,32, </key>
|
||||
<key name="start"> 32, </key>
|
||||
<key name="step"> 13, </key>
|
||||
<key name="study"> 32, </key>
|
||||
<key name="sub"> 22, </key>
|
||||
<key name="submesh"> 4,16, </key>
|
||||
<key name="surfac"> 5, </key>
|
||||
<key name="specifi"> 18,40,49, </key>
|
||||
<key name="split"> 11,28,33, </key>
|
||||
<key name="standard"> 24,37, </key>
|
||||
<key name="start"> 4,11,37,40, </key>
|
||||
<key name="step"> 14, </key>
|
||||
<key name="study"> 37, </key>
|
||||
<key name="sub"> 24, </key>
|
||||
<key name="submesh"> 4,17, </key>
|
||||
<key name="surfac"> 5,49, </key>
|
||||
<key name="surround"> 5, </key>
|
||||
<key name="t"> 5, </key>
|
||||
<key name="taken"> 4, </key>
|
||||
<key name="tap"> 8,23,35, </key>
|
||||
<key name="tetrahedron"> 5,6,27,36, </key>
|
||||
<key name="text"> 7,9,12,14,17,18,31,33,41, </key>
|
||||
<key name="thre"> 5,40, </key>
|
||||
<key name="toolbar"> 0,1,2,3,11,13,15,16,24,32,34,35,36,39,42, </key>
|
||||
<key name="topic"> 7,9,12,14,17,18,31,33,41, </key>
|
||||
<key name="tap"> 8,25,41, </key>
|
||||
<key name="tetrahedron"> 5,6,30,49,42, </key>
|
||||
<key name="text"> 7,9,13,15,19,20,36,38,47, </key>
|
||||
<key name="them"> 18,40, </key>
|
||||
<key name="thre"> 5,46, </key>
|
||||
<key name="toolbar"> 12,14,16,17,27,37,39,41,45,48, </key>
|
||||
<key name="topic"> 7,9,13,15,19,20,36,38,47, </key>
|
||||
<key name="topological"> 5, </key>
|
||||
<key name="topology"> 5, </key>
|
||||
<key name="triangl"> 2,5,6,10,11,24,26,28,34,35, </key>
|
||||
<key name="two"> 5,11,28,35, </key>
|
||||
<key name="typ"> 5,7,9,12,14,17,18,31,33,41, </key>
|
||||
<key name="triangl"> 2,5,6,10,12,27,29,31,39,41, </key>
|
||||
<key name="triangulator"> 26, </key>
|
||||
<key name="two"> 5,12,31,41, </key>
|
||||
<key name="typ"> 5,7,9,13,15,19,20,36,38,47, </key>
|
||||
<key name="u"> 5, </key>
|
||||
<key name="unv"> 22, </key>
|
||||
<key name="updat"> 32,38, </key>
|
||||
<key name="us"> 0,1,2,3,5,6,15,16,25,29,36,37, </key>
|
||||
<key name="unles"> 34, </key>
|
||||
<key name="unv"> 24, </key>
|
||||
<key name="up"> 11,46, </key>
|
||||
<key name="updat"> 37,44, </key>
|
||||
<key name="us"> 0,1,2,3,5,6,16,17,18,28,33,40,49,42,43, </key>
|
||||
<key name="usag"> 8, </key>
|
||||
<key name="v"> 5, </key>
|
||||
<key name="valu"> 8,11,28,34, </key>
|
||||
<key name="vector"> 42, </key>
|
||||
<key name="valu"> 8,11,12,18,31,39, </key>
|
||||
<key name="vector"> 48, </key>
|
||||
<key name="vertex"> 5, </key>
|
||||
<key name="view"> 10,11,19,20,24,28,32,34,35,38,39,40,42, </key>
|
||||
<key name="view"> 10,12,21,22,27,31,37,39,41,44,45,46,48, </key>
|
||||
<key name="visual"> 8, </key>
|
||||
<key name="visualization"> 40,41, </key>
|
||||
<key name="volum"> 3,4,5,6,23,27,36, </key>
|
||||
<key name="vtk"> 32, </key>
|
||||
<key name="warp"> 8,23,42, </key>
|
||||
<key name="visualization"> 46,47, </key>
|
||||
<key name="volum"> 3,4,5,6,25,30,49,42, </key>
|
||||
<key name="vtk"> 37, </key>
|
||||
<key name="warp"> 8,25,48, </key>
|
||||
<key name="way"> 5, </key>
|
||||
<key name="will"> 4,5,10,11,15,16,19,20,22,24,25,26,27,28,29,32,34,35,39,42, </key>
|
||||
<key name="window"> 32, </key>
|
||||
<key name="wir"> 0,6, </key>
|
||||
<key name="wirefram"> 40, </key>
|
||||
<key name="word"> 29, </key>
|
||||
<key name="work"> 32, </key>
|
||||
<key name="x"> 5,42, </key>
|
||||
<key name="whil"> 49, </key>
|
||||
<key name="will"> 4,5,6,10,11,12,16,17,18,21,22,24,27,28,29,30,31,33,34,37,39,40,41,45,48, </key>
|
||||
<key name="window"> 37, </key>
|
||||
<key name="wir"> 0,6,26, </key>
|
||||
<key name="wirefram"> 46, </key>
|
||||
<key name="word"> 33, </key>
|
||||
<key name="work"> 37, </key>
|
||||
<key name="x"> 5,48, </key>
|
||||
<key name="y"> 5, </key>
|
||||
<key name="your"> 4,5,8,10,11,13,16,19,20,22,24,25,26,27,28,29,34,35,39,42, </key>
|
||||
<key name="your"> 4,5,8,10,11,12,14,17,18,21,22,24,27,28,29,30,31,33,39,40,41,45,46,48, </key>
|
||||
<key name="z"> 5, </key>
|
||||
|
||||
</ftswdata>
|
||||
|
@ -6,28 +6,35 @@
|
||||
<script LANGUAGE="JavaScript" SRC="whtdata.js"></script>
|
||||
<script language="javascript">
|
||||
<!--
|
||||
aTE(1,52,"SMESH module");
|
||||
aTE(1,59,"SMESH module");
|
||||
aTE(2,0,"Introduction to SMESH","files/introduction_to_smesh.htm");
|
||||
aTE(2,0,"Running SMESH module","files/running_smesh_module.htm");
|
||||
aTE(1,21,"Creating meshes");
|
||||
aTE(1,28,"Creating meshes");
|
||||
aTE(2,0,"About meshes","files/about_meshes.htm");
|
||||
aTE(2,0,"Importing and exporting meshes","files/importing_and_exporting_meshes.htm");
|
||||
aTE(1,5,"Defining hypotheses");
|
||||
aTE(1,11,"Defining hypotheses");
|
||||
aTE(2,0,"About hypotheses","files/about_hypotheses.htm");
|
||||
aTE(2,0,"Local Length hypothesis","files/local_length_hypothesis.htm");
|
||||
aTE(2,0,"Number of segments hypothesis","files/number_of_segments_hypothesis.htm");
|
||||
aTE(2,0,"Arithmetic 1D hypothesis","files/arithmetic_1d.htm");
|
||||
aTE(2,0,"Average Length hypothesis","files/local_length_hypothesis.htm");
|
||||
aTE(2,0,"Deflection 1D hypothesis","files/deflection_1d.htm");
|
||||
aTE(2,0,"Length from edges hypothesis","files/length_from_edges.htm");
|
||||
aTE(2,0,"Max Element Area hypothesis","files/max._element_area_hypothesis.htm");
|
||||
aTE(2,0,"Max Element Volume hypothesis","files/max._element_volume_hypothsis.htm");
|
||||
aTE(1,9,"Defining meshing algorithms");
|
||||
aTE(2,0,"Number of segments hypothesis","files/number_of_segments_hypothesis.htm");
|
||||
aTE(2,0,"Non conform mesh allowed hypothesis","files/non_conform_mesh_allowed_hypothesis.htm");
|
||||
aTE(2,0,"Propagation of 1D Hypothesis on opposite edges","files/propagation_of_1d_hypothesis_on_opposite_edges.htm");
|
||||
aTE(2,0,"Start and End Length hypothesis","files/start_and_end_length_hypothesis.htm");
|
||||
aTE(1,10,"Defining meshing algorithms");
|
||||
aTE(2,0,"About meshing algorithms","files/about_meshing_algorithms.htm");
|
||||
aTE(1,1,"1D meshing algorithms");
|
||||
aTE(2,0,"Wire discretization","files/1d_meshing_algorithm.htm");
|
||||
aTE(1,2,"2D meshing algorithms");
|
||||
aTE(2,0,"Triangle meshing algorithm","files/2d_meshing_algorithm.htm");
|
||||
aTE(2,0,"Quadrangle meshing algorithm","files/2d_(quadrangle)_meshing_algorithm.htm");
|
||||
aTE(1,2,"3D meshing algorithms");
|
||||
aTE(1,3,"3D meshing algorithms");
|
||||
aTE(2,0,"Hexahedron meshing algorithm","files/3d_meshing_algorithm.htm");
|
||||
aTE(2,0,"Tetrahedron (Netgen) meshing algorithm","files/tetrahedron_(netgen)_meshing_algorithm.htm");
|
||||
aTE(2,0,"Tetrahedron (GHS3D) meshing algorithm","tetrahedron_(ghs3d)_meshing_algorithm.htm");
|
||||
aTE(2,0,"Constructing meshes","files/constructing_meshes.htm");
|
||||
aTE(2,0,"Constructing submeshes","files/constructing_submeshes.htm");
|
||||
aTE(2,0,"Computing meshes","files/computing_meshes.htm");
|
||||
|
@ -8,10 +8,16 @@
|
||||
<item name="Importing and exporting meshes" url="files/importing_and_exporting_meshes.htm" />
|
||||
<book name="Defining hypotheses" >
|
||||
<item name="About hypotheses" url="files/about_hypotheses.htm" />
|
||||
<item name="Local Length hypothesis" url="files/local_length_hypothesis.htm" />
|
||||
<item name="Number of segments hypothesis" url="files/number_of_segments_hypothesis.htm" />
|
||||
<item name="Arithmetic 1D hypothesis" url="files/arithmetic_1d.htm" />
|
||||
<item name="Average Length hypothesis" url="files/local_length_hypothesis.htm" />
|
||||
<item name="Deflection 1D hypothesis" url="files/deflection_1d.htm" />
|
||||
<item name="Length from edges hypothesis" url="files/length_from_edges.htm" />
|
||||
<item name="Max Element Area hypothesis" url="files/max._element_area_hypothesis.htm" />
|
||||
<item name="Max Element Volume hypothesis" url="files/max._element_volume_hypothsis.htm" />
|
||||
<item name="Number of segments hypothesis" url="files/number_of_segments_hypothesis.htm" />
|
||||
<item name="Non conform mesh allowed hypothesis" url="files/non_conform_mesh_allowed_hypothesis.htm" />
|
||||
<item name="Propagation of 1D Hypothesis on opposite edges" url="files/propagation_of_1d_hypothesis_on_opposite_edges.htm" />
|
||||
<item name="Start and End Length hypothesis" url="files/start_and_end_length_hypothesis.htm" />
|
||||
</book>
|
||||
<book name="Defining meshing algorithms" >
|
||||
<item name="About meshing algorithms" url="files/about_meshing_algorithms.htm" />
|
||||
@ -25,6 +31,7 @@
|
||||
<book name="3D meshing algorithms" >
|
||||
<item name="Hexahedron meshing algorithm" url="files/3d_meshing_algorithm.htm" />
|
||||
<item name="Tetrahedron (Netgen) meshing algorithm" url="files/tetrahedron_(netgen)_meshing_algorithm.htm" />
|
||||
<item name="Tetrahedron (GHS3D) meshing algorithm" url="tetrahedron_(ghs3d)_meshing_algorithm.htm" />
|
||||
</book>
|
||||
</book>
|
||||
<item name="Constructing meshes" url="files/constructing_meshes.htm" />
|
||||
|
46
doc/salome/gui/SMESH/whgdata/whlstf4.htm
Executable file
@ -0,0 +1,46 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Search Words List</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
|
||||
<meta name="generator" content="RoboHelp by eHelp Corporation www.ehelp.com">
|
||||
<meta name "description" content="WebHelp 2002">
|
||||
<base target="bsscright">
|
||||
<style>
|
||||
<!--
|
||||
body {margin-left:1pt; margin-top:1pt; margin-right:1pt;font-family:Arial; font-size:9pt;}
|
||||
|
||||
A:link {font-family:Arial; font-size:9pt; color:#000000; font-style:normal; text-decoration:none; }
|
||||
A:visited {font-family:Arial; font-size:9pt; color:#000000; font-style:normal; text-decoration:none; }
|
||||
A:active {background-color:#cccccc;}
|
||||
A:hover {font-family:Arial; font-size:9pt; color:#007f00; font-style:normal; text-decoration:underline; }
|
||||
|
||||
.tabs {background-color:#c0c0c0;}
|
||||
.ftsheader {margin-left:10pt; margin-top:0pt;}
|
||||
.ftsbody {margin-left:10pt; margin-top:0pt;}
|
||||
.inactive {color:#666666;}
|
||||
.ftsheader {background-color:White; }
|
||||
|
||||
body {background-color:White; }
|
||||
p {color:Black; } p {font-family:Tahoma; } p {font-size:8pt; } p {font-style:Normal; } p {text-decoration:none; }
|
||||
A:link {color:Black; } A:link {font-family:Tahoma; } A:link {font-size:8pt; } A:link {font-style:Normal; } A:link {text-decoration:none; }
|
||||
A:visited {color:Black; } A:visited {font-family:Tahoma; } A:visited {font-size:8pt; } A:visited {font-style:Normal; } A:visited {text-decoration:none; }
|
||||
A:active {background-color:Silver; }
|
||||
A:hover {color:Navy; } A:hover {font-family:Tahoma; } A:hover {font-size:8pt; } A:hover {font-style:Normal; } A:hover {text-decoration:underline; }
|
||||
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
<body marginheight="0" marginwidth="0">
|
||||
<p class="ftsbody" align="center"><a href="whlstf3.htm" target="_self" title="previous search group"><b><<</b></a><br><br></p>
|
||||
<p class="ftsbody">
|
||||
<nobr><a name="bms_WI"></a><a name="subkey_WI"></a>will <a href="../files/aspect_ratio.htm"><b>1</b></a> <a href="../files/arithmetic_1d.htm"><b>2</b></a> <a href="../files/area_of_elements.htm"><b>3</b></a> <a href="../files/about_meshing_algorithms.htm"><b>4</b></a> <a href="../files/about_meshes.htm"><b>5</b></a> <a href="../files/about_hypotheses.htm"><b>6</b></a> <a href="../files/minimum_angle.htm"><b>7</b></a> <a href="../files/max._element_volume_hypothsis.htm"><b>8</b></a> <a href="../files/max._element_area_hypothesis.htm"><b>9</b></a> <a href="../files/local_length_hypothesis.htm"><b>10</b></a> <a href="../files/length_of_edges.htm"><b>11</b></a> <a href="../files/importing_and_exporting_meshes.htm"><b>12</b></a> <a href="../files/displaying_nodes_numbers.htm"><b>13</b></a> <a href="../files/displaying_elements_numbers.htm"><b>14</b></a> <a href="../files/deflection_1d.htm"><b>15</b></a> <a href="../files/constructing_submeshes.htm"><b>16</b></a> <a href="../files/constructing_meshes.htm"><b>17</b></a> <a href="../files/viewing_mesh_info.htm"><b>18</b></a> <a href="../files/taper.htm"><b>19</b></a> <a href="../files/start_and_end_length_hypothesis.htm"><b>20</b></a> <a href="../files/skew.htm"><b>21</b></a> <a href="../files/running_smesh_module.htm"><b>22</b></a> <a href="../files/propagation_of_1d_hypothesis_on_opposite_edges.htm"><b>23</b></a> <a href="../files/number_of_segments_hypothesis.htm"><b>24</b></a> <a href="../files/warp.htm"><b>25</b></a> </nobr><br><a href="../files/running_smesh_module.htm"><b>window</b></a> <br><nobr>wire <a href="../files/about_meshing_algorithms.htm"><b>1</b></a> <a href="../files/1d_meshing_algorithm.htm"><b>2</b></a> <a href="../files/length_from_edges.htm"><b>3</b></a> </nobr><br><a href="../files/visualization_modes.htm"><b>wireframe</b></a> <br><a name="bms_WO"></a><a name="subkey_WO"></a><a href="../files/number_of_segments_hypothesis.htm"><b>words</b></a> <br><a href="../files/running_smesh_module.htm"><b>work</b></a> <br>
|
||||
<br><br>
|
||||
<nobr><a name="bm_X"></a><a name="subkey_X{"></a>x <a href="../files/about_meshes.htm"><b>1</b></a> <a href="../files/warp.htm"><b>2</b></a> </nobr><br>
|
||||
<br><br>
|
||||
<a name="bm_Y"></a><a name="subkey_Y{"></a><a href="../files/about_meshes.htm"><b>y</b></a> <br><nobr><a name="bms_YO"></a><a name="subkey_YO"></a>your <a href="../files/computing_meshes.htm"><b>1</b></a> <a href="../files/aspect_ratio.htm"><b>2</b></a> <a href="../files/arithmetic_1d.htm"><b>3</b></a> <a href="../files/area_of_elements.htm"><b>4</b></a> <a href="../files/about_quality_controls.htm"><b>5</b></a> <a href="../files/about_meshes.htm"><b>6</b></a> <a href="../files/about_hypotheses.htm"><b>7</b></a> <a href="../files/minimum_angle.htm"><b>8</b></a> <a href="../files/max._element_volume_hypothsis.htm"><b>9</b></a> <a href="../files/max._element_area_hypothesis.htm"><b>10</b></a> <a href="../files/local_length_hypothesis.htm"><b>11</b></a> <a href="../files/length_of_edges.htm"><b>12</b></a> <a href="../files/importing_and_exporting_meshes.htm"><b>13</b></a> <a href="../files/displaying_nodes_numbers.htm"><b>14</b></a> <a href="../files/displaying_elements_numbers.htm"><b>15</b></a> <a href="../files/deflection_1d.htm"><b>16</b></a> <a href="../files/constructing_submeshes.htm"><b>17</b></a> <a href="../files/visualization_modes.htm"><b>18</b></a> <a href="../files/viewing_mesh_info.htm"><b>19</b></a> <a href="../files/taper.htm"><b>20</b></a> <a href="../files/start_and_end_length_hypothesis.htm"><b>21</b></a> <a href="../files/skew.htm"><b>22</b></a> <a href="../files/number_of_segments_hypothesis.htm"><b>23</b></a> <a href="../files/warp.htm"><b>24</b></a> </nobr><br>
|
||||
<br><br>
|
||||
<a name="bm_Z"></a><a name="subkey_Z{"></a><a href="../files/about_meshes.htm"><b>z</b></a> <br><br><br></p>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
@ -37,7 +37,7 @@ body {background-color:White; }
|
||||
</head>
|
||||
<body marginheight="0" marginwidth="0">
|
||||
|
||||
<p class="ftsheader"><a name="subkey_K"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf1.htm#bm_K" target="ftslist" title="search letter K "><b>K </b></a> <a href="whlstf1.htm#bms_KI" target="ftslist" title="search letter KI"><b>KI</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>
|
||||
<p class="ftsheader"><a name="subkey_K"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf2.htm#bm_K" target="ftslist" title="search letter K "><b>K </b></a> <a href="whlstf2.htm#bms_KI" target="ftslist" title="search letter KI"><b>KI</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>
|
||||
|
||||
</body>
|
||||
|
||||
|
@ -37,7 +37,7 @@ body {background-color:White; }
|
||||
</head>
|
||||
<body marginheight="0" marginwidth="0">
|
||||
|
||||
<p class="ftsheader"><a name="subkey_L"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf1.htm#bm_L" target="ftslist" title="search letter L "><b>L </b></a> <a href="whlstf1.htm#bms_LA" target="ftslist" title="search letter LA"><b>LA</b></a> <a href="whlstf1.htm#bms_LE" target="ftslist" title="search letter LE"><b>LE</b></a> <a href="whlstf1.htm#bms_LI" target="ftslist" title="search letter LI"><b>LI</b></a> <a href="whlstf1.htm#bms_LO" target="ftslist" title="search letter LO"><b>LO</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>
|
||||
<p class="ftsheader"><a name="subkey_L"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf2.htm#bm_L" target="ftslist" title="search letter L "><b>L </b></a> <a href="whlstf2.htm#bms_LA" target="ftslist" title="search letter LA"><b>LA</b></a> <a href="whlstf2.htm#bms_LE" target="ftslist" title="search letter LE"><b>LE</b></a> <a href="whlstf2.htm#bms_LI" target="ftslist" title="search letter LI"><b>LI</b></a> <a href="whlstf2.htm#bms_LK" target="ftslist" title="search letter LK"><b>LK</b></a> <a href="whlstf2.htm#bms_LO" target="ftslist" title="search letter LO"><b>LO</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>
|
||||
|
||||
</body>
|
||||
|
||||
|
@ -37,7 +37,7 @@ body {background-color:White; }
|
||||
</head>
|
||||
<body marginheight="0" marginwidth="0">
|
||||
|
||||
<p class="ftsheader"><a name="subkey_M"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf1.htm#bm_M" target="ftslist" title="search letter MA"><b>MA</b></a> <a href="whlstf1.htm#bms_ME" target="ftslist" title="search letter ME"><b>ME</b></a> <a href="whlstf2.htm#bms_MI" target="ftslist" title="search letter MI"><b>MI</b></a> <a href="whlstf2.htm#bms_MO" target="ftslist" title="search letter MO"><b>MO</b></a> <a href="whlstf2.htm#bms_MU" target="ftslist" title="search letter MU"><b>MU</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>
|
||||
<p class="ftsheader"><a name="subkey_M"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf2.htm#bm_M" target="ftslist" title="search letter MA"><b>MA</b></a> <a href="whlstf2.htm#bms_ME" target="ftslist" title="search letter ME"><b>ME</b></a> <a href="whlstf2.htm#bms_MI" target="ftslist" title="search letter MI"><b>MI</b></a> <a href="whlstf2.htm#bms_MO" target="ftslist" title="search letter MO"><b>MO</b></a> <a href="whlstf2.htm#bms_MU" target="ftslist" title="search letter MU"><b>MU</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>
|
||||
|
||||
</body>
|
||||
|
||||
|
@ -37,7 +37,7 @@ body {background-color:White; }
|
||||
</head>
|
||||
<body marginheight="0" marginwidth="0">
|
||||
|
||||
<p class="ftsheader"><a name="subkey_R"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf2.htm#bm_R" target="ftslist" title="search letter RA"><b>RA</b></a> <a href="whlstf2.htm#bms_RE" target="ftslist" title="search letter RE"><b>RE</b></a> <a href="whlstf2.htm#bms_RO" target="ftslist" title="search letter RO"><b>RO</b></a> <a href="whlstf2.htm#bms_RU" target="ftslist" title="search letter RU"><b>RU</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>
|
||||
<p class="ftsheader"><a name="subkey_R"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf3.htm#bm_R" target="ftslist" title="search letter RA"><b>RA</b></a> <a href="whlstf3.htm#bms_RE" target="ftslist" title="search letter RE"><b>RE</b></a> <a href="whlstf3.htm#bms_RI" target="ftslist" title="search letter RI"><b>RI</b></a> <a href="whlstf3.htm#bms_RO" target="ftslist" title="search letter RO"><b>RO</b></a> <a href="whlstf3.htm#bms_RU" target="ftslist" title="search letter RU"><b>RU</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>
|
||||
|
||||
</body>
|
||||
|
||||
|
@ -37,7 +37,7 @@ body {background-color:White; }
|
||||
</head>
|
||||
<body marginheight="0" marginwidth="0">
|
||||
|
||||
<p class="ftsheader"><a name="subkey_S"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf2.htm#bm_S" target="ftslist" title="search letter S "><b>S </b></a> <a href="whlstf2.htm#bms_SA" target="ftslist" title="search letter SA"><b>SA</b></a> <a href="whlstf2.htm#bms_SC" target="ftslist" title="search letter SC"><b>SC</b></a> <a href="whlstf2.htm#bms_SE" target="ftslist" title="search letter SE"><b>SE</b></a> <a href="whlstf2.htm#bms_SH" target="ftslist" title="search letter SH"><b>SH</b></a> <a href="whlstf2.htm#bms_SI" target="ftslist" title="search letter SI"><b>SI</b></a> <a href="whlstf2.htm#bms_SK" target="ftslist" title="search letter SK"><b>SK</b></a> <a href="whlstf2.htm#bms_SM" target="ftslist" title="search letter SM"><b>SM</b></a> <a href="whlstf2.htm#bms_SO" target="ftslist" title="search letter SO"><b>SO</b></a> <a href="whlstf2.htm#bms_SP" target="ftslist" title="search letter SP"><b>SP</b></a> <a href="whlstf2.htm#bms_ST" target="ftslist" title="search letter ST"><b>ST</b></a> <a href="whlstf2.htm#bms_SU" target="ftslist" title="search letter SU"><b>SU</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>
|
||||
<p class="ftsheader"><a name="subkey_S"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf3.htm#bm_S" target="ftslist" title="search letter S "><b>S </b></a> <a href="whlstf3.htm#bms_SA" target="ftslist" title="search letter SA"><b>SA</b></a> <a href="whlstf3.htm#bms_SC" target="ftslist" title="search letter SC"><b>SC</b></a> <a href="whlstf3.htm#bms_SE" target="ftslist" title="search letter SE"><b>SE</b></a> <a href="whlstf3.htm#bms_SH" target="ftslist" title="search letter SH"><b>SH</b></a> <a href="whlstf3.htm#bms_SI" target="ftslist" title="search letter SI"><b>SI</b></a> <a href="whlstf3.htm#bms_SK" target="ftslist" title="search letter SK"><b>SK</b></a> <a href="whlstf3.htm#bms_SM" target="ftslist" title="search letter SM"><b>SM</b></a> <a href="whlstf3.htm#bms_SO" target="ftslist" title="search letter SO"><b>SO</b></a> <a href="whlstf3.htm#bms_SP" target="ftslist" title="search letter SP"><b>SP</b></a> <a href="whlstf3.htm#bms_ST" target="ftslist" title="search letter ST"><b>ST</b></a> <a href="whlstf3.htm#bms_SU" target="ftslist" title="search letter SU"><b>SU</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>
|
||||
|
||||
</body>
|
||||
|
||||
|
@ -37,7 +37,7 @@ body {background-color:White; }
|
||||
</head>
|
||||
<body marginheight="0" marginwidth="0">
|
||||
|
||||
<p class="ftsheader"><a name="subkey_T"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf2.htm#bm_T" target="ftslist" title="search letter T "><b>T </b></a> <a href="whlstf2.htm#bms_TA" target="ftslist" title="search letter TA"><b>TA</b></a> <a href="whlstf2.htm#bms_TE" target="ftslist" title="search letter TE"><b>TE</b></a> <a href="whlstf2.htm#bms_TH" target="ftslist" title="search letter TH"><b>TH</b></a> <a href="whlstf2.htm#bms_TO" target="ftslist" title="search letter TO"><b>TO</b></a> <a href="whlstf3.htm#bms_TR" target="ftslist" title="search letter TR"><b>TR</b></a> <a href="whlstf3.htm#bms_TW" target="ftslist" title="search letter TW"><b>TW</b></a> <a href="whlstf3.htm#bms_TY" target="ftslist" title="search letter TY"><b>TY</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>
|
||||
<p class="ftsheader"><a name="subkey_T"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf3.htm#bm_T" target="ftslist" title="search letter T "><b>T </b></a> <a href="whlstf3.htm#bms_TA" target="ftslist" title="search letter TA"><b>TA</b></a> <a href="whlstf3.htm#bms_TE" target="ftslist" title="search letter TE"><b>TE</b></a> <a href="whlstf3.htm#bms_TH" target="ftslist" title="search letter TH"><b>TH</b></a> <a href="whlstf3.htm#bms_TO" target="ftslist" title="search letter TO"><b>TO</b></a> <a href="whlstf3.htm#bms_TR" target="ftslist" title="search letter TR"><b>TR</b></a> <a href="whlstf3.htm#bms_TW" target="ftslist" title="search letter TW"><b>TW</b></a> <a href="whlstf3.htm#bms_TY" target="ftslist" title="search letter TY"><b>TY</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>
|
||||
|
||||
</body>
|
||||
|
||||
|
@ -37,7 +37,7 @@ body {background-color:White; }
|
||||
</head>
|
||||
<body marginheight="0" marginwidth="0">
|
||||
|
||||
<p class="ftsheader"><a name="subkey_C"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf0.htm#bm_C" target="ftslist" title="search letter CA"><b>CA</b></a> <a href="whlstf0.htm#bms_CH" target="ftslist" title="search letter CH"><b>CH</b></a> <a href="whlstf0.htm#bms_CL" target="ftslist" title="search letter CL"><b>CL</b></a> <a href="whlstf0.htm#bms_CO" target="ftslist" title="search letter CO"><b>CO</b></a> <a href="whlstf0.htm#bms_CR" target="ftslist" title="search letter CR"><b>CR</b></a> <a href="whlstf0.htm#bms_CU" target="ftslist" title="search letter CU"><b>CU</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>
|
||||
<p class="ftsheader"><a name="subkey_C"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf0.htm#bm_C" target="ftslist" title="search letter CA"><b>CA</b></a> <a href="whlstf0.htm#bms_CH" target="ftslist" title="search letter CH"><b>CH</b></a> <a href="whlstf0.htm#bms_CL" target="ftslist" title="search letter CL"><b>CL</b></a> <a href="whlstf0.htm#bms_CO" target="ftslist" title="search letter CO"><b>CO</b></a> <a href="whlstf1.htm#bms_CR" target="ftslist" title="search letter CR"><b>CR</b></a> <a href="whlstf1.htm#bms_CU" target="ftslist" title="search letter CU"><b>CU</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>
|
||||
|
||||
</body>
|
||||
|
||||
|