diff --git a/examples/MHDTests/FastRotor/README.md b/examples/MHDTests/FastRotor/README.md
index 05f5d1f5a8bd0084e1eb339bb9ac6542c1a20c57..2fa79cb9fabf8667f2f840556a58191a68f47763 100644
--- a/examples/MHDTests/FastRotor/README.md
+++ b/examples/MHDTests/FastRotor/README.md
@@ -1,10 +1,21 @@
 Fast Rotor in MHD
 Lodrillo, P. & Del Zanna, L., 2000ApJ..530...508
 Stasyszyn et al , 2013MNRAS.428...13S
+Following also Seo & Ryu, 2023
 ##############################
-previous run TestAllMHD.sh in the ~/swiftsim root directory
-
-./runSchemes.sh #will generate the ICs for the fast rotor and run all the schemes
-#if not wanted, one comment which schemes one wants to run 
+# Basically the folloing script compiles and run the test in different 
+# folders for each scheme. usefull for testing
+./runSchemes.sh [what Scheme] [FOLDER_TAIL]
+[what scheme]: 
+vep: vector potentials
+odi: Oresti's direct induction
+fdi: simple direct induction
+[FOLDER_TAIL]: 
+the trailing name for the folders created
 ##############################
 
+TODO>
+-check for symmetry with the between half of the domain
+-make a cut
+-upload reference runs or values
+
diff --git a/examples/MHDTests/FastRotor/makeIC_VP.py b/examples/MHDTests/FastRotor/makeIC.py
similarity index 100%
rename from examples/MHDTests/FastRotor/makeIC_VP.py
rename to examples/MHDTests/FastRotor/makeIC.py
diff --git a/examples/MHDTests/FastRotor/plot_all.py b/examples/MHDTests/FastRotor/plot_all.py
index 4c223489c8baf217b9d39f61a2d813641cfe8fe3..62466c28968ac376393d8280225e9171990572f1 100644
--- a/examples/MHDTests/FastRotor/plot_all.py
+++ b/examples/MHDTests/FastRotor/plot_all.py
@@ -34,18 +34,41 @@ for ii in range(nini,nfin):
     data = load(filename)
     #print(data.metadata.gas_properties.field_names)
     boxsize = data.metadata.boxsize
-    extent = [0, boxsize[0].v, 0, boxsize[1].v]
+    extent = [0, 1.0 , 0, 1.0]
+    # cut the domian in half 
+    data.metadata.boxsize*=[1.0,0.5,1.0]
     
+    gas_gamma = data.metadata.gas_gamma
+    print("Gas Gamma:",gas_gamma)
+    if gas_gamma != 7./5.:
+        print("WRONG GAS GAMMA")
+        exit()
+
     mhdflavour = data.metadata.hydro_scheme["MHD Flavour"]
-    # dedhyp = data.metadata.hydro_scheme["Dedner Hyperbolic Constant"]
-    # dedpar = data.metadata.hydro_scheme["Dedner Parabolic Constant"]
+    mhd_scheme = data.metadata.hydro_scheme["MHD Scheme"]
     mhdeta = data.metadata.hydro_scheme["Resistive Eta"]
     git = data.metadata.code["Git Revision"]
     gitBranch = data.metadata.code["Git Branch"]
     scheme = data.metadata.hydro_scheme["Scheme"]
     kernel = data.metadata.hydro_scheme["Kernel function"]
     neighbours = data.metadata.hydro_scheme["Kernel target N_ngb"]
-
+    
+    try:
+        dedhyp = data.metadata.hydro_scheme["Dedner Hyperbolic Constant"]
+        dedpar = data.metadata.hydro_scheme["Dedner Parabolic Constant"]
+    except:
+        dedhyp = 0.0
+        dedpar = 0.0
+
+    try:
+        deddivV = data.metadata.hydro_scheme["Dedner Hyperbolic div(v) Constant"]
+        tensile = data.metadata.hydro_scheme["MHD Tensile Instability Correction Prefactor"]
+        artdiff = data.metadata.hydro_scheme["Artificial Diffusion Constant"]
+    except:
+        deddivV = 0.0
+        artdiff = 0.0
+        tensile = 1.0
+ 
     # First create a mass-weighted temperature dataset
     
     B = data.gas.magnetic_flux_densities
@@ -71,7 +94,7 @@ for ii in range(nini,nfin):
 
     # Then create a mass-weighted speed dataset
     v = data.gas.velocities
-    data.gas.mass_weighted_speeds = data.gas.masses * np.sqrt(
+    data.gas.mass_weighted_speeds = data.gas.masses * (
         v[:, 0] ** 2 + v[:, 1] ** 2 + v[:, 2] ** 2
     )
     # Then create a mass-weighted densities dataset
@@ -116,25 +139,26 @@ for ii in range(nini,nfin):
     ErrDivB_map = mw_ErrDivB_map / mass_map
     #plasma_beta_map
 
-    fig = plt.figure(figsize=(12, 11), dpi=100)
+    #fig = plt.figure(figsize=(12, 11), dpi=100)
+    fig = plt.figure(figsize=(12, 8), dpi=100)
     
     ax1 = fig.add_subplot(231)
-    im1 = ax1.imshow(rho_map.T, origin="lower", extent=extent, cmap="inferno", norm=LogNorm(vmax=10,vmin=1))
+    im1 = ax1.imshow(rho_map.T, origin="lower", extent=extent, cmap="inferno", norm=LogNorm(vmax=14,vmin=1))
     ax1.set_title("Density")
     set_colorbar(ax1, im1)
     
     ax2 = fig.add_subplot(232)
-    im2 = ax2.imshow(magnetic_pressure_map.T, origin="lower", extent=extent, cmap="plasma", norm=LogNorm(vmax=10,vmin=0.1))
+    im2 = ax2.imshow(magnetic_pressure_map.T, origin="lower", extent=extent, cmap="plasma", norm=Normalize(vmax=3,vmin=0.1))
     ax2.set_title("Magnetic Pressure")
     set_colorbar(ax2, im2)
     
     ax3 = fig.add_subplot(233)
-    im3 = ax3.imshow(speed_map.T, origin="lower", extent=extent, cmap="cividis", norm=LogNorm(vmax=10,vmin=0.1))
-    ax3.set_title("Speed")
+    im3 = ax3.imshow(speed_map.T, origin="lower", extent=extent, cmap="cividis", norm=Normalize(vmax=1.6,vmin=0.1))
+    ax3.set_title("v^2")
     set_colorbar(ax3, im3)
     
     ax4 = fig.add_subplot(234)
-    im4 = ax4.imshow(pressure_map.T, origin="lower", extent=extent, cmap="viridis", norm=LogNorm(vmax=10,vmin=0.1))
+    im4 = ax4.imshow(pressure_map.T, origin="lower", extent=extent, cmap="viridis", norm=Normalize(vmax=2.1,vmin=0.1))
     ax4.set_title("Internal Pressure")
     set_colorbar(ax4, im4)
     
@@ -154,7 +178,7 @@ for ii in range(nini,nfin):
     
     ax6 = fig.add_subplot(236)
     
-    text_fontsize = 10
+    text_fontsize = 8
     ax6.text(
         0.1,
         0.9,
@@ -165,14 +189,18 @@ for ii in range(nini,nfin):
     ax6.text(0.1, 0.8, "$Branch$ %s" % gitBranch.decode("utf-8"), fontsize=text_fontsize)
     ax6.text(0.1, 0.75, scheme.decode("utf-8"), fontsize=text_fontsize)
     ax6.text(0.1, 0.7, kernel.decode("utf-8"), fontsize=text_fontsize)
-    ax6.text(0.1, 0.6, "$%.2f$ neighbours" % (neighbours), fontsize=text_fontsize)
+    ax6.text(0.1, 0.65, "$%.2f$ neighbours" % (neighbours), fontsize=text_fontsize)
     ax6.text(
         0.1,
-        0.5,
-        "$Flavour: $ %s" % mhdflavour.decode("utf-8")[0:30],
+        0.55,
+        "$Flavour: $ %s" % mhdflavour.decode("utf-8")[0:25],
         fontsize=text_fontsize,
     )
-    ax6.text(0.1, 0.45, "$Resitivity_\\eta:%.4f$ " % (mhdeta), fontsize=text_fontsize)
+    ax6.text(0.1, 0.5, "$Resitivity_\\eta:%.4f$ " % (mhdeta), fontsize=text_fontsize)
+    ax6.text(0.1, 0.45, "$Dedner Parameters: $", fontsize=text_fontsize)
+    ax6.text(0.1, 0.4, "$[hyp, par, div] [:%.3f,%.3f,%.3f]$ " % (dedhyp,dedpar,deddivV), fontsize=text_fontsize)
+    ax6.text(0.1, 0.35, "$Tensile Prefactor:%.4f$ " % (tensile), fontsize=text_fontsize)
+    ax6.text(0.1, 0.3, "$Art. Diffusion:%.4f$ " % (artdiff), fontsize=text_fontsize)
     ax6.tick_params(left=False, right=False, labelleft=False, labelbottom=False, bottom=False)
     #ax6.set_xlabel("")
     #ax6.plot(frameon=False)
diff --git a/examples/MHDTests/FastRotor/runSchemes.sh b/examples/MHDTests/FastRotor/runSchemes.sh
index c778433dea0c9f6fb8953b0ad2aef6e4e5e93547..d4e99fb498f6bebebd76278b6bb1ca7d3a08cdbc 100755
--- a/examples/MHDTests/FastRotor/runSchemes.sh
+++ b/examples/MHDTests/FastRotor/runSchemes.sh
@@ -6,14 +6,88 @@ then
     echo "Fetching Glass Files..."
     ./getGlass.sh
     echo "Generating the ICs"
-    python ./makeIC_VP.py 
+    python ./makeIC.py 
 fi
 
-cd VeP
-./run.sh &
-cd ../ODI
-./run.sh &
-cd ../FDI
-./run.sh &
-cd ..
-echo "RUNING .... "
+SCHEME_ID=("VeP" "ODI" "FDI")
+SCHEME_IDD=("vp" "odi" "fdi")
+####################
+case $# in
+	1)
+	   echo "Using Dirs as TEST"
+	   DIRS="TEST"
+	   WHAT=$1
+        ;;
+	2) 
+	   DIRS=$2
+	   WHAT=$1
+	   echo "Using Dirs as $DIRS"
+	;;
+        *)
+	   echo "Usage $0 [which] [DIRECTORY]"
+	   echo "[what scheme]:"
+	   echo "vep: vector potentials"
+           echo "odi: Oresti's direct induction"
+           echo "fdi: simple direct induction"
+           echo "[FOLDER_TAIL]:"
+           echo "trailer naming of folders"
+	   echo ""
+	   exit 
+	;;
+esac
+#####################
+case $WHAT in
+	vep)
+	  SCHEME_Nr=0
+	;;
+	odi)
+	  SCHEME_Nr=1
+	;;
+	fdi)
+	  SCHEME_Nr=2
+	;;
+	all)
+	  SCHEME_Nr=( 0 1 2 )
+	;;
+	*)
+	  echo $WHAT" wrong scheme"
+	  exit 2
+	;;
+esac
+
+SCHEME_DIRS=("VeP_$DIRS" "ODI_$DIRS" "FDI_$DIRS")
+
+for J in ${SCHEME_Nr[@]}
+do
+   echo $J
+   ID=${SCHEME_ID[$J]}
+   IDD=${SCHEME_IDD[$J]}
+   DIR=${SCHEME_DIRS[$J]}
+   if [ ! -e $DIR ]
+   then 
+      echo "Folder $DIR does not exist"
+      mkdir $DIR
+   fi
+   cd $DIR
+   if [ ! -e sw_$ID ]
+   then 
+      cur_dir=`pwd`
+      cd ../../../../
+      pwd
+      ./TestAllMHD.sh $IDD "--with-adiabatic-index=7/5"
+      cd $cur_dir
+      cp ../../../../sw_$ID .
+   fi
+   cat <<-EOF > ./run.sh
+	#!/bin/bash
+	# Run SWIFT
+	./sw_$ID --hydro --threads=16 ../FR_schemes.yml 2>&1 > out.log 
+	
+	# Plot the evolution
+	python3 ../plot_all.py 0 61 2>&1 > plot.log
+	EOF
+   chmod u+x ./run.sh
+   ./run.sh &
+   cd ..
+done
+
diff --git a/examples/MHDTests/MagneticBlastWave/README.md b/examples/MHDTests/MagneticBlastWave/README.md
index 9bfcd49ba0d4ab2b5b8f921fcd0ea9d800fe3411..e9fecb8cd90602415fd8a7605f8ce10b3c2b6d2c 100644
--- a/examples/MHDTests/MagneticBlastWave/README.md
+++ b/examples/MHDTests/MagneticBlastWave/README.md
@@ -1,4 +1,17 @@
 Blast wave folloing Seo & Ryu, 2023.
+##############################
+# Basically the folloing script compiles and run the test in different 
+# folders for each scheme. usefull for testing
+./runSchemes.sh [what Scheme] [FOLDER_TAIL]
+[what scheme]: 
+vep: vector potentials
+odi: Oresti's direct induction
+fdi: simple direct induction
+[FOLDER_TAIL]: 
+the trailing name for the folders created
+##############################
+
 TODO>
 -check for symmetry with the between half of the domain
 -make a cut
+-upload reference runs or values
diff --git a/examples/MHDTests/MagneticBlastWave/runSchemes.sh b/examples/MHDTests/MagneticBlastWave/runSchemes.sh
index db37a352114dfbe9ec0d9ce97762ac97925b2d61..f7fc1a0f1035b4b1005945002e1a76b63e17c859 100755
--- a/examples/MHDTests/MagneticBlastWave/runSchemes.sh
+++ b/examples/MHDTests/MagneticBlastWave/runSchemes.sh
@@ -25,6 +25,12 @@ case $# in
 	;;
         *)
 	   echo "Usage $0 [which] [DIRECTORY]"
+	   echo "[what scheme]:"
+	   echo "vep: vector potentials"
+           echo "odi: Oresti's direct induction"
+           echo "fdi: simple direct induction"
+           echo "[FOLDER_TAIL]:"
+           echo "trailer naming of folders"
 	   echo ""
 	   exit 
 	;;
@@ -78,8 +84,8 @@ do
 	# Run SWIFT
 	./sw_$ID --hydro --threads=16 ../BW_schemes.yml 2>&1 > out.log 
 	
-	# Plot the temperature evolution
-	python3 ../plot_all.py 0 41 > plot.log
+	# Plot the evolution
+	python3 ../plot_all.py 0 41 2>&1 > plot.log
 	EOF
    chmod u+x ./run.sh
    ./run.sh &