diff --git a/Documentation/ProjectFile/material/solid/constitutive_relation/CreepBGRa/t_a.md b/Documentation/ProjectFile/material/solid/constitutive_relation/CreepBGRa/t_a.md
index eb91479048b7c6aa8f8f594e6bdad3791a707d55..6e92bae96e856c5ad46773fa5e4abb34af9a34d6 100644
--- a/Documentation/ProjectFile/material/solid/constitutive_relation/CreepBGRa/t_a.md
+++ b/Documentation/ProjectFile/material/solid/constitutive_relation/CreepBGRa/t_a.md
@@ -1 +1 @@
-Parameter A.
\ No newline at end of file
+A parameter determined by experiments. Its unit is 1/[time unit].
diff --git a/Documentation/ProjectFile/material/solid/constitutive_relation/CreepBGRa/t_n.md b/Documentation/ProjectFile/material/solid/constitutive_relation/CreepBGRa/t_n.md
index cc6cbcb615423dd4d56b399ea02f18176ca8cfb1..75b3ca57e8225a4f889767085619a3af2f03ae1a 100644
--- a/Documentation/ProjectFile/material/solid/constitutive_relation/CreepBGRa/t_n.md
+++ b/Documentation/ProjectFile/material/solid/constitutive_relation/CreepBGRa/t_n.md
@@ -1 +1 @@
-Parameter n.
\ No newline at end of file
+A dimensionless parameter determined by experiments.
diff --git a/Documentation/ProjectFile/material/solid/constitutive_relation/CreepBGRa/t_q.md b/Documentation/ProjectFile/material/solid/constitutive_relation/CreepBGRa/t_q.md
index fdb36e43e266950e2d7f35cac53acbcd4a7653ef..e1e42ef1cbec03f5709e578d2869e878cc152ed3 100644
--- a/Documentation/ProjectFile/material/solid/constitutive_relation/CreepBGRa/t_q.md
+++ b/Documentation/ProjectFile/material/solid/constitutive_relation/CreepBGRa/t_q.md
@@ -1 +1 @@
-Parameter Q.
\ No newline at end of file
+Activation energy. Its unit is J/mol.
diff --git a/Documentation/ProjectFile/material/solid/constitutive_relation/CreepBGRa/t_sigma0.md b/Documentation/ProjectFile/material/solid/constitutive_relation/CreepBGRa/t_sigma0.md
index 83bb2b19834876f80406c05ea4b2318d35bb434b..36c16a59730eb48bfe527b14f8735f325924e28f 100644
--- a/Documentation/ProjectFile/material/solid/constitutive_relation/CreepBGRa/t_sigma0.md
+++ b/Documentation/ProjectFile/material/solid/constitutive_relation/CreepBGRa/t_sigma0.md
@@ -1 +1 @@
-Parameter sigma_0.
+A stress scaling factor. Its unit is the stress unit.
diff --git a/MaterialLib/SolidModels/CreepBGRa.cpp b/MaterialLib/SolidModels/CreepBGRa.cpp
index 166ca3c3d13ca7c7e6253e26a5fb80cd01fb7c5a..2d0356b1daf353de1bf2b35206f94cf28587c3f6 100644
--- a/MaterialLib/SolidModels/CreepBGRa.cpp
+++ b/MaterialLib/SolidModels/CreepBGRa.cpp
@@ -45,7 +45,7 @@ CreepBGRa<DisplacementDim>::integrateStress(
 
     const double b =
         dt * _coef *
-        std::exp(-_Q / (MaterialLib::PhysicalConstant::IdealGasConstant * T));
+        std::exp(-_q / (MaterialLib::PhysicalConstant::IdealGasConstant * T));
     auto const& deviatoric_matrix = Invariants::deviatoric_projection;
 
     double pow_norm_s_n1_n_minus_one_2b_G = 0.;
@@ -101,10 +101,10 @@ double CreepBGRa<DisplacementDim>::getTemperatureRelatedCoefficient(
     double const T, double const deviatoric_stress_norm) const
 {
     return 2.0 * _coef *
-           std::exp(-_Q /
+           std::exp(-_q /
                     (MaterialLib::PhysicalConstant::IdealGasConstant * T)) *
            this->_mp.mu(t, x) * std::pow(deviatoric_stress_norm, _n - 1) * dt *
-           _Q / (MaterialLib::PhysicalConstant::IdealGasConstant * T * T);
+           _q / (MaterialLib::PhysicalConstant::IdealGasConstant * T * T);
 }
 
 template class CreepBGRa<2>;
diff --git a/MaterialLib/SolidModels/CreepBGRa.h b/MaterialLib/SolidModels/CreepBGRa.h
index 6375ce797cb98179dfb63c62eb5e36ddc5ab0a9d..84c7afdeb954ce5cc64231e0caea41d9a9b33060 100644
--- a/MaterialLib/SolidModels/CreepBGRa.h
+++ b/MaterialLib/SolidModels/CreepBGRa.h
@@ -52,7 +52,7 @@ public:
 
     std::unique_ptr<
         typename MechanicsBase<DisplacementDim>::MaterialStateVariables>
-    createMaterialStateVariables() override
+    createMaterialStateVariables()
     {
         return LinearElasticIsotropic<
             DisplacementDim>::createMaterialStateVariables();
@@ -66,7 +66,7 @@ public:
           _nonlinear_solver_parameters(std::move(nonlinear_solver_parameters)),
           _n(n),
           _coef(A * std::pow(1.5, 0.5 * (1 + _n)) / std::pow(sigma0, _n)),
-          _Q(Q)
+          _q(Q)
     {
     }
 
@@ -93,10 +93,10 @@ public:
 private:
     NumLib::NewtonRaphsonSolverParameters const _nonlinear_solver_parameters;
 
-    const double _n;
+    const double _n; /// parameter determined by experiments.
     /// $fA\left(\frac{3}{2}\right)^{n/2+1}/\sigma_{eff}^n $f
     const double _coef;
-    const double _Q;
+    const double _q; /// Activation energy
 };
 
 extern template class CreepBGRa<2>;
diff --git a/web/content/docs/benchmarks/CreepBGRa/CreepBRGa.md b/web/content/docs/benchmarks/CreepBGRa/CreepBRGa.md
index d329b441255f34947ca8a9d497a731bcfd7c491d..15d4c673016bc43034468745b9ad07746f421dd8 100644
--- a/web/content/docs/benchmarks/CreepBGRa/CreepBRGa.md
+++ b/web/content/docs/benchmarks/CreepBGRa/CreepBRGa.md
@@ -72,10 +72,10 @@ $$\begin{gathered}
 where
 $\mathbf{C}:= \lambda \mathcal{J} + 2G \mathbf I \otimes \mathbf I  $ 
 with $\mathcal{J}$ the forth order identity, $\mathbf I$ the second order identity,
-$\lambda$ the Lame constant,  $G$ the shear module, and $\otimes$  the tensor
+$\lambda$ the Lamé constant,  $G$ the shear modulus, and $\otimes$  the tensor
 product notation.
 
-is a forth order tensor. Substituting equation and the expression of $C$
+is a fourth order tensor. Substituting equation and the expression of $C$
 into the stress rate expression, equation , we have
  $$\begin{gathered}
 \dot { \mathbf \sigma}=  \mathbf{C} \dot { \mathbf \epsilon}- 2bG {\left\Vert{\mathbf s}\right\Vert}^{m-1}