diff --git a/examples/EAGLE_25/eagle_25.yml b/examples/EAGLE_25/eagle_25.yml
index e5550d3b141b1c91d1819dae06b2966688682405..eb434fa07343369e371c1a7bbbf1f51c5b9f4b4c 100644
--- a/examples/EAGLE_25/eagle_25.yml
+++ b/examples/EAGLE_25/eagle_25.yml
@@ -9,18 +9,12 @@ InternalUnitSystem:
 # Structure finding options
 StructureFinding:
   config_file_name:     stf_input.cfg    # Name of the STF config file.
-  basename:             ./halo_vel_pot/stf       # Common part of the name of output files.
-  output_time_format:   0                # Specifies format of delta_time. 0 for simulation steps and 1 for simulation time intervals.
-  time_first:           0.               # Time of the first structure finding output (in internal units).
-  delta_time:           250                # Time difference between consecutive structure finding outputs (in internal units). Can either be given in simulation steps or simulation time intervals.
-
-# Define the system of units to use int VELOCIraptor. 
-VelociraptorUnitSystem:
-  UnitMass_in_cgs:     1.989e33      # M_sun in grams
-  UnitLength_in_cgs:   3.085678e21   # kpc in centimeters
-  UnitVelocity_in_cgs: 1e5           # km/s in centimeters per second
-  UnitCurrent_in_cgs:  1             # Amperes
-  UnitTemp_in_cgs:     1             # Kelvin
+  basename:             ./stf         # Common part of the name of output files.
+  output_time_format:   0             # Specifies the frequency format of structure finding. 0 for simulation steps (delta_step) and 1 for simulation time intervals (delta_time).
+  scale_factor_first:   0.92          # Scale-factor of the first snaphot (cosmological run)
+  time_first:           0.01        # Time of the first structure finding output (in internal units).
+  delta_step:           1000          # Time difference between consecutive structure finding outputs (in internal units) in simulation steps.
+  delta_time:           1e-4          # Time difference between consecutive structure finding outputs (in internal units) in simulation time intervals.
 
 # Cosmological parameters
 Cosmology:
diff --git a/examples/EAGLE_6/eagle_6.yml b/examples/EAGLE_6/eagle_6.yml
index 45390015854528073e19c577fdc6ccf97e05d811..807e5392d17f2ed2dc4198da1efc71d15e9bf6ce 100644
--- a/examples/EAGLE_6/eagle_6.yml
+++ b/examples/EAGLE_6/eagle_6.yml
@@ -12,7 +12,7 @@ StructureFinding:
   basename:             ./stf         # Common part of the name of output files.
   output_time_format:   0             # Specifies the frequency format of structure finding. 0 for simulation steps (delta_step) and 1 for simulation time intervals (delta_time).
   scale_factor_first:   0.92          # Scale-factor of the first snaphot (cosmological run)
-  time_first:           1000.0        # Time of the first structure finding output (in internal units).
+  time_first:           0.01        # Time of the first structure finding output (in internal units).
   delta_step:           1000          # Time difference between consecutive structure finding outputs (in internal units) in simulation steps.
   delta_time:           1e-4          # Time difference between consecutive structure finding outputs (in internal units) in simulation time intervals.
 
diff --git a/examples/SmallCosmoVolume/small_cosmo_volume.yml b/examples/SmallCosmoVolume/small_cosmo_volume.yml
index f00f336ba79a0fbd9fc57109b0baaf60be105e9b..db00e6c2e5310e5761677eda99131aa91e31b904 100644
--- a/examples/SmallCosmoVolume/small_cosmo_volume.yml
+++ b/examples/SmallCosmoVolume/small_cosmo_volume.yml
@@ -12,7 +12,7 @@ StructureFinding:
   basename:             ./stf                           # Common part of the name of output files.
   output_time_format:   0                               # Specifies the frequency format of structure finding. 0 for simulation steps (delta_step) and 1 for simulation time intervals (delta_time).
   scale_factor_first:   0.92                            # Scale-factor of the first snaphot (cosmological run)
-  time_first:           0.                              # Time of the first structure finding output (in internal units).
+  time_first:           0.01                            # Time of the first structure finding output (in internal units).
   delta_step:           1000                            # Time difference between consecutive structure finding outputs (in internal units) in simulation steps.
   delta_time:           1e-4                            # Time difference between consecutive structure finding outputs (in internal units) in simulation time intervals.
 
diff --git a/src/physical_constants.c b/src/physical_constants.c
index d6480c37e0aa1ed8f330f4dbac6e46b586df141d..3936d07f4207263a4c391715ab0a8dd9ded6fa6d 100644
--- a/src/physical_constants.c
+++ b/src/physical_constants.c
@@ -48,8 +48,8 @@ void phys_const_init(const struct unit_system *us, struct swift_params *params,
       const_newton_G_cgs / units_general_cgs_conversion_factor(us, dimension_G);
 
   /* Overwrite G if present in the file */
-  //internal_const->const_newton_G = parser_get_opt_param_double(
-  //    params, "PhysicalConstants:G", internal_const->const_newton_G);
+  internal_const->const_newton_G = parser_get_opt_param_double(
+      params, "PhysicalConstants:G", internal_const->const_newton_G);
 
   const float dimension_c[5] = {0, 1, -1, 0, 0}; /* [cm s^-1] */
   internal_const->const_speed_light_c =