Salome HOME
Typo-fix by Kunda
authoreap <eap@opencascade.com>
Fri, 15 Jan 2021 08:57:29 +0000 (11:57 +0300)
committereap <eap@opencascade.com>
Fri, 15 Jan 2021 08:57:29 +0000 (11:57 +0300)
https://www.salome-platform.org/forum/forum_9/875695368/351290391

doc/dev/sphinx/fr/medcalc-userguide-api.rst
doc/dev/sphinx/medcalc-userguide-gui.rst
doc/tut/addfields/operations.py
idl/MEDDataManager.idl
src/MEDCalc/cmp/MEDCalculator_i.cxx
src/MEDCalc/test/gui/README.txt
src/MEDCouplingCorba/Test/MEDCouplingMeshFieldFactoryComponent.cxx
src/MEDCouplingCorba_Swig/MEDCouplingCorbaSwigTest.py

index 45ddab2483c8f2e73cf213b93365e7b10b1aae27..dd246eb59e0935cf898c2595cd474269378f202d 100644 (file)
@@ -42,7 +42,7 @@ installed together with this module by the installation process of
 SALOME. Nevertheless, it is possible for low-weight deployment to
 install only the MEDMEM library from the source files embedded in the
 SALOME FIELDS module. Keep in mind that the MEDMEM library is designed to
-be a self-consistent library with very few third party softwares (only
+be a self-consistent library with very few third party software (only
 med-file, glibc and mpi typically). In particular, it is strictly
 independent from the SALOME framework even if it distributed with
 SALOME for convenience reasons.
index 4e6497af640fb25450ed763bd20354856fde5222..d85194a38486682e5be5fd862e3e5dd9c13c4129 100644 (file)
@@ -650,4 +650,4 @@ The following TUI commands need to work in graphical environment:
 * ``medcalc.MakeVectorField``
 
 
-..  LocalWords:  softwares
+..  LocalWords:  software
index eb24e7b5f982b7932a407dcb2959f79c5d390e88..0872cf0deb5eaa2b94072b2ffadbfeeb3684d902 100644 (file)
@@ -73,7 +73,7 @@ p4.setMesh(mesh)
 result = p3+p4
 result.setName("p3+p4")
 
-# We can finally save the result together with the operandes fields
+# We can finally save the result together with the operands fields
 outfilename = "addition.med"
 MEDLoader.WriteField(outfilename,result,True)
 MEDLoader.WriteField(outfilename,p3,False)
index 8fa024d3436b86845b82408493ca3bcd7b1c13a6..20596ce5d7aaef950b821722c95d20b93800b439 100644 (file)
@@ -45,17 +45,17 @@ module MEDCALC
   typedef sequence<MeshHandler> MeshHandlerList;
 
   /**
-   * The Fieldseries is a virtal object that does not exist in the MED
+   * The Fieldseries is a virtual object that does not exist in the MED
    * data model (at least in the MEDCoupling data model). It is just a
-   * point that aggregate a list of fields that relie on the same mesh
+   * point that aggregates a list of fields that rely on the same mesh
    * with the same type (the fields in a timeseries differ by their
    * time step).
    *
    * Then you could have a field with no fieldseries associated but
    * directly associated to a mesh. That is typically the case of
-   * fields created by MED operations: if you operate tow fields
+   * fields created by MED operations: if you operate two fields
    * coming from 2 different timeseries (and relying on the same
-   * mesh), you obtain a field that can not be associate to the
+   * mesh), you obtain a field that can not be associated to the
    * original timeseries. Then this new created field must be directly
    * associated to its underlying mesh (as defined in the MEDCoupling
    * data model).
index a7b71cabb94d033700a8e8633547257fae4a3dc1..d8f4ca7cb536811e257b42fa0a3f342755a0511d 100644 (file)
@@ -59,13 +59,13 @@ MEDCalculator_i::~MEDCalculator_i()
 MEDCALC::FieldHandler * MEDCalculator_i::add(const MEDCALC::FieldHandler & f1_hdl,
              const MEDCALC::FieldHandler & f2_hdl)
 {
-  // We first check that both operandes share the same mesh id. Note
+  // We first check that both operands share the same mesh id. Note
   // that it's not strictly required because the MEDCoupling operation
   // would raise an exception if the fields does not share the same
   // mesh support.
   if ( f1_hdl.meshid != f2_hdl.meshid ) {
     std::string message =
-      std::string("ERROR: Mesh ids are different for the field operandes ") +
+      std::string("ERROR: Mesh ids are different for the field operands ") +
       std::string(f1_hdl.fieldname) + std::string(" and ") + std::string(f2_hdl.fieldname);
     throw KERNEL::createSalomeException(message.c_str());
   }
@@ -103,7 +103,7 @@ MEDCALC::FieldHandler * MEDCalculator_i::add(const MEDCALC::FieldHandler & f1_hd
 
   // >>>>>>>>>
   // _GBO_ We should test here if the iteration and order of the input
-  // files are identical for both operandes. A convention has to be
+  // files are identical for both operands. A convention has to be
   // defined here. By default, we let the iteration and order be
   // determined by the resulting MEDCouplingFieldDouble instance (see
   // function addField of the data manager).
@@ -126,7 +126,7 @@ MEDCALC::FieldHandler * MEDCalculator_i::sub(const MEDCALC::FieldHandler & f1_hd
 {
   if ( f1_hdl.meshid != f2_hdl.meshid ) {
     std::string message =
-      std::string("ERROR: Mesh ids are different for the field operandes ") +
+      std::string("ERROR: Mesh ids are different for the field operands ") +
       std::string(f1_hdl.fieldname) + std::string(" and ") + std::string(f2_hdl.fieldname);
     throw KERNEL::createSalomeException(message.c_str());
   }
@@ -165,7 +165,7 @@ MEDCALC::FieldHandler * MEDCalculator_i::mul(const MEDCALC::FieldHandler & f1_hd
 {
   if ( f1_hdl.meshid != f2_hdl.meshid ) {
     std::string message =
-      std::string("ERROR: Mesh ids are different for the field operandes ") +
+      std::string("ERROR: Mesh ids are different for the field operands ") +
       std::string(f1_hdl.fieldname) + std::string(" and ") + std::string(f2_hdl.fieldname);
     throw KERNEL::createSalomeException(message.c_str());
   }
@@ -203,7 +203,7 @@ MEDCALC::FieldHandler * MEDCalculator_i::div(const MEDCALC::FieldHandler & f1_hd
 {
   if ( f1_hdl.meshid != f2_hdl.meshid ) {
     std::string message =
-      std::string("ERROR: Mesh ids are different for the field operandes ") +
+      std::string("ERROR: Mesh ids are different for the field operands ") +
       std::string(f1_hdl.fieldname) + std::string(" and ") + std::string(f2_hdl.fieldname);
     throw KERNEL::createSalomeException(message.c_str());
   }
index ad68b0df12895106e96dd8ba7f6f18e27e47aad8..b0f15f11a14cfd457392922481b82a5955364f57 100644 (file)
@@ -5,7 +5,7 @@ Tests based on QtTesting framework from ParaView.
 Main entry point is test_qttesting.py.
 Each scenario is described in a XML file and can be recorded directly in the GUI via the "Record test" button. 
 
-A scneario must save a final screenshot of the ParaView view in a file located in the temp directory (TODO: review
+A scenario must save a final screenshot of the ParaView view in a file located in the temp directory (TODO: review
 this). This file is compared against a baseline saved in the baselines subdirectory.
 
 
index 9a884d897dc2ff6fb58f8bc82bca937717862c54..ca9b21a3e100208e0f200f3b410bc6074a32483c 100644 (file)
@@ -244,7 +244,7 @@ namespace SALOME_TEST
     MEDCoupling::MEDCouplingCurveLinearMesh *targetMesh=MEDCoupling::MEDCouplingCurveLinearMesh::New();
     targetMesh->setTime(2.3,4,5);
     targetMesh->setTimeUnit("us");
-    targetMesh->setName("Example of Cuve linear mesh");
+    targetMesh->setName("Example of Curve linear mesh");
     targetMesh->setDescription("buildCLMesh");
     MEDCoupling::DataArrayDouble *a1=MEDCoupling::DataArrayDouble::New();
     a1->alloc(3*20,1);
index c31cd604aa9e6294f56e07cb4315660202e3fac2..8ecafbcfe1f293a63c240362f16f96f23986b294 100644 (file)
@@ -194,7 +194,7 @@ class MEDCouplingCorbaServBasicsTest:
         targetMesh=MEDCouplingCurveLinearMesh();
         targetMesh.setTime(2.3,4,5);
         targetMesh.setTimeUnit("us");
-        targetMesh.setName("Example of Cuve linear mesh");
+        targetMesh.setName("Example of Curve linear mesh");
         targetMesh.setDescription("buildCLMesh");
         a1=DataArrayDouble(3*20,1);
         a1.iota(7.) ; a1.rearrange(3);