From: asl Date: Wed, 23 Nov 2016 05:33:27 +0000 (+0300) Subject: help for interpolz X-Git-Tag: v1.6~2^2~2 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=05af9455a2576883bdafdf6c77e9b2f3b4f40c7d;p=modules%2Fhydrosolver.git help for interpolz --- diff --git a/src/salome_hydro/interpolz_gui.py b/src/salome_hydro/interpolz_gui.py index c499d90..b76ce95 100644 --- a/src/salome_hydro/interpolz_gui.py +++ b/src/salome_hydro/interpolz_gui.py @@ -161,5 +161,31 @@ class InterpolzDlg( QtGui.QDialog ): def onClose( self ): self.close() + """Shows help page""" def onHelp( self ): - pass + msg = """ +

Interpolz dialog

+ + This dialog is a tool for automation the writing of the script interpolz.py. + +

Calculation case

+ The name of the calculation case. It can be filled automatically on the base of selection or can be input by user. + +

Output path

+ The path for the output, i.e. the path of the target script interpolz. + +

MED file

+ The path to MED file where MED groups are extracted. + +

Method

+ The interpolation method (interpolation at the nearest point and linear interpolation from a triangulation of the cloud of points). + +

Undefined Z

+ The Z value for nodes outside the regions. + +

Table

+ The table with MED groups and regions names. + + When the data is input, the user clicks on "Apply" or "Apply and Close" button to perform the script generation. + """ + QtGui.QMessageBox.about(self, self.tr("About boundary conditions dialog"), msg);