diff --git a/src/OpenFOAM/db/functionObjects/timeControl/timeControl.C b/src/OpenFOAM/db/functionObjects/timeControl/timeControl.C
index 9550509a6b7db19ceea9f057a0062c1681235c74..c02461a9ce38ef90cd63fe45e348c95a4f671d6e 100644
--- a/src/OpenFOAM/db/functionObjects/timeControl/timeControl.C
+++ b/src/OpenFOAM/db/functionObjects/timeControl/timeControl.C
@@ -6,7 +6,7 @@
      \\/     M anipulation  |
 -------------------------------------------------------------------------------
     Copyright (C) 2011-2016 OpenFOAM Foundation
-    Copyright (C) 2016-2019 OpenCFD Ltd.
+    Copyright (C) 2016-2019, 2025 OpenCFD Ltd.
 -------------------------------------------------------------------------------
 License
     This file is part of OpenFOAM.
@@ -47,6 +47,7 @@ Foam::timeControl::controlNames_
     { timeControl::ocAdjustableRunTime, "adjustableRunTime" },
     { timeControl::ocClockTime, "clockTime" },
     { timeControl::ocCpuTime, "cpuTime" },
+    { timeControl::ocOnStart, "onStart" },
     { timeControl::ocOnEnd, "onEnd" },
 });
 
@@ -257,6 +258,12 @@ bool Foam::timeControl::execute()
             break;
         }
 
+        case ocOnStart:
+        {
+            return time_.timeIndex() == 1;
+            break;
+        }
+
         case ocOnEnd:
         {
             scalar endTime = time_.endTime().value() - 0.5*time_.deltaTValue();
diff --git a/src/OpenFOAM/db/functionObjects/timeControl/timeControl.H b/src/OpenFOAM/db/functionObjects/timeControl/timeControl.H
index 660176be4eea6a6acdeae55b7bfb7987f15ce278..3f63e1ecff9745281dea887b9237dcb48d1dac4b 100644
--- a/src/OpenFOAM/db/functionObjects/timeControl/timeControl.H
+++ b/src/OpenFOAM/db/functionObjects/timeControl/timeControl.H
@@ -6,7 +6,7 @@
      \\/     M anipulation  |
 -------------------------------------------------------------------------------
     Copyright (C) 2011-2016 OpenFOAM Foundation
-    Copyright (C) 2019 OpenCFD Ltd.
+    Copyright (C) 2019, 2025 OpenCFD Ltd.
 -------------------------------------------------------------------------------
 License
     This file is part of OpenFOAM.
@@ -74,6 +74,7 @@ public:
         ocAdjustableRunTime,  //!< Currently identical to "runTime"
         ocClockTime,          //!< Use clock time for execution
         ocCpuTime,            //!< Use CPU time for execution
+        ocOnStart,            //!< Execute on first step of run
         ocOnEnd               //!< Execute on end of run
     };