diff --git a/src/OpenFOAM/db/functionObjects/timeControl/timeControl.C b/src/OpenFOAM/db/functionObjects/timeControl/timeControl.C
index d49251683b6ab21a8f3f019d96843c32a0c87f8b..2dadbbc181fbd5882a5b60e0caa5b34ac7860c74 100644
--- a/src/OpenFOAM/db/functionObjects/timeControl/timeControl.C
+++ b/src/OpenFOAM/db/functionObjects/timeControl/timeControl.C
@@ -81,7 +81,7 @@ Foam::timeControl::timeControl
 }
 
 
-// * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
+// * * * * * * * * * * * * * Static Member Functions * * * * * * * * * * * * //
 
 bool Foam::timeControl::entriesPresent
 (
@@ -95,27 +95,47 @@ bool Foam::timeControl::entriesPresent
 }
 
 
+// * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
+
+void Foam::timeControl::clear()
+{
+    timeControl_ = ocAlways;
+    intervalSteps_ = 0;
+    interval_ = -1;
+    executionIndex_ = 0;
+}
+
+
 void Foam::timeControl::read(const dictionary& dict)
 {
+    // Default is timeStep
+    timeControl_ = ocTimeStep;
+
     word controlName(prefix_ + "Control");
     word intervalName(prefix_ + "Interval");
 
-    // For backward compatibility support the deprecated 'outputControl' option
-    // now superseded by 'writeControl' for compatibility with Time
-    if (prefix_ == "write" && dict.found("outputControl"))
+    if (prefix_ == "write")
     {
-        IOWarningInFunction(dict)
-            << "Using deprecated 'outputControl'" << nl
-            << "    Please use 'writeControl' with 'writeInterval'"
-            << endl;
-        error::warnAboutAge("outputControl", 1606);
-
-        // Change to the old names for this option
-        controlName = "outputControl";
-        intervalName = "outputInterval";
+        // TBD: Could have   timeControl_ = ocWriteTime;
+
+        if (dict.found("outputControl"))
+        {
+            // Accept deprecated 'outputControl' instead of 'writeControl'
+
+            IOWarningInFunction(dict)
+                << "Using deprecated 'outputControl'" << nl
+                << "    Please use 'writeControl' with 'writeInterval'"
+                << endl;
+            error::warnAboutAge("outputControl", 1606);
+
+            // Change to the old names for this option
+            controlName = "outputControl";
+            intervalName = "outputInterval";
+        }
     }
 
-    timeControl_ = controlNames_.getOrDefault(controlName, dict, ocTimeStep);
+
+    timeControl_ = controlNames_.getOrDefault(controlName, dict, timeControl_);
 
     switch (timeControl_)
     {
diff --git a/src/OpenFOAM/db/functionObjects/timeControl/timeControl.H b/src/OpenFOAM/db/functionObjects/timeControl/timeControl.H
index a32f767cb8b368bde6ec91c69f621a60ffb2dc8e..d8e69be5ebc1678d664a47afc3f578382368f1e2 100644
--- a/src/OpenFOAM/db/functionObjects/timeControl/timeControl.H
+++ b/src/OpenFOAM/db/functionObjects/timeControl/timeControl.H
@@ -156,6 +156,9 @@ public:
         //- Return the named control enumeration as its 'type'
         inline const word& type() const;
 
+        //- Reset control to 'always' - ie, no intervention
+        void clear();
+
         //- Return the control enumeration
         inline timeControls control() const;