From 1d57a297cb52acdb0df48e0e1f3bd54292c7eebe Mon Sep 17 00:00:00 2001
From: Boris Basic <boris.basic@edf.fr>
Date: Tue, 20 Jun 2023 10:25:12 +0200
Subject: [PATCH] [fix] Cleaning up some remaining traces of SISYPHE

---
 documentation/gaia/user/latex/HowTos.tex      |  2 +-
 documentation/telapy/user/latex/chap2.tex     |  1 -
 examples/gaia/littoral-t2d-tom/vnv_tel2tom.py | 16 ++++++++--------
 3 files changed, 9 insertions(+), 10 deletions(-)

diff --git a/documentation/gaia/user/latex/HowTos.tex b/documentation/gaia/user/latex/HowTos.tex
index 2012ae809e..fe905bc633 100644
--- a/documentation/gaia/user/latex/HowTos.tex
+++ b/documentation/gaia/user/latex/HowTos.tex
@@ -20,7 +20,7 @@ Typically, these files are contained in a folder, for example in the folder simu
 simulation\bc_bifurcation_tel.cli
 simulation\geo_bifurcation.slf
 simulation\res_bifurcation_hotstart_tel.slf
-simulation\run_bifurcation_sis.cas
+simulation\run_bifurcation_gai.cas
 simulation\run_bifurcation_tel.cas
 \end{verbatim}
 \end{footnotesize}
diff --git a/documentation/telapy/user/latex/chap2.tex b/documentation/telapy/user/latex/chap2.tex
index 087cd1ab8d..de95c941c9 100644
--- a/documentation/telapy/user/latex/chap2.tex
+++ b/documentation/telapy/user/latex/chap2.tex
@@ -109,7 +109,6 @@ by the API\@. The definition of the ``instance'' structure is made in a
 %Automatically generated by python list of variables
 \input{latex/var_list_t2d.tex}
 \input{latex/var_list_t3d.tex}
-\input{latex/var_list_sis.tex}
 \input{latex/var_list_art.tex}
 \input{latex/var_list_wac.tex}
 
diff --git a/examples/gaia/littoral-t2d-tom/vnv_tel2tom.py b/examples/gaia/littoral-t2d-tom/vnv_tel2tom.py
index 8fec3980b5..100436d8d2 100644
--- a/examples/gaia/littoral-t2d-tom/vnv_tel2tom.py
+++ b/examples/gaia/littoral-t2d-tom/vnv_tel2tom.py
@@ -299,8 +299,8 @@ class VnvStudy(AbstractVnvStudy):
         # Getting files
         vnv_1_wacres = self.get_study_file('vnv_1:WACRES')
         res_vnv_1_wacres = TelemacFile(vnv_1_wacres)
-        vnv_1_sisres = self.get_study_file('vnv_1:GAIRES')
-        res_vnv_1_sisres = TelemacFile(vnv_1_sisres)
+        vnv_1_gaires = self.get_study_file('vnv_1:GAIRES')
+        res_vnv_1_gaires = TelemacFile(vnv_1_gaires)
         vnv_1_t2dgeo = self.get_study_file('vnv_1:T2DGEO')
         res_vnv_1_t2dgeo = TelemacFile(vnv_1_t2dgeo)
         vnv_1_t2dres = self.get_study_file('vnv_1:T2DRES')
@@ -312,8 +312,8 @@ class VnvStudy(AbstractVnvStudy):
         res_vnv_3_tomgeo = TelemacFile(vnv_3_tomgeo)
         vnv_3_wacres = self.get_study_file('vnv_3:WACRES')
         res_vnv_3_wacres = TelemacFile(vnv_3_wacres)
-        vnv_3_sisres = self.get_study_file('vnv_3:GAIRES')
-        res_vnv_3_sisres = TelemacFile(vnv_3_sisres)
+        vnv_3_gaires = self.get_study_file('vnv_3:GAIRES')
+        res_vnv_3_gaires = TelemacFile(vnv_3_gaires)
         vnv_3_t2dres = self.get_study_file('vnv_3:T2DRES')
         res_vnv_3_t2dres = TelemacFile(vnv_3_t2dres)
 
@@ -334,7 +334,7 @@ class VnvStudy(AbstractVnvStudy):
 
         # Plotting BED SHEAR STRESS at -1
         vnv_plot2d('BED SHEAR STRESS',
-                   res_vnv_1_sisres,
+                   res_vnv_1_gaires,
                    record=-1,
                    filled_contours=True,
                    fig_size=(12, 7),
@@ -375,7 +375,7 @@ class VnvStudy(AbstractVnvStudy):
 
         # Plotting BED SHEAR STRESS at -1
         vnv_plot2d('BED SHEAR STRESS',
-                   res_vnv_1_sisres,
+                   res_vnv_1_gaires,
                    record=-1,
                    filled_contours=True,
                    fig_size=(12, 7),
@@ -399,7 +399,7 @@ class VnvStudy(AbstractVnvStudy):
 
         # Plotting BED SHEAR STRESS at -1
         vnv_plot2d('BED SHEAR STRESS',
-                   res_vnv_3_sisres,
+                   res_vnv_3_gaires,
                    record=-1,
                    filled_contours=True,
                    fig_size=(12, 7),
@@ -415,5 +415,5 @@ class VnvStudy(AbstractVnvStudy):
 
         # Closing files
         res_vnv_1_wacres.close()
-        res_vnv_1_sisres.close()
+        res_vnv_1_gaires.close()
         res_vnv_1_t2dres.close()
-- 
GitLab