diff --git a/documentation/gaia/user/latex/HowTos.tex b/documentation/gaia/user/latex/HowTos.tex
index 2012ae809e2d912222c9da4f59ca807a070cf06e..fe905bc633ff2abf1e1c979570e8717142625ca7 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 087cd1ab8d2283ff4dcca51127c692bd22c3677a..de95c941c965af5bee49fe22d7c1e1fc6075f1ec 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 8fec3980b5b012814c13630084845d2819505f94..100436d8d2d8fe5e87262952b22eaf10bf7c67e4 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()