Well, I never had to show something like this which is why I'm having quite a hard time to get this one done. I basically know what I have to do but I am not capable of solving it properly.
Given for example: $U = 0.25, F = 0.01, \Delta t = 0.1$
$ \begin{align*} u_k &= U + \underbrace{u_{k-1}(1-U)}_\text{A} \,\underbrace{e^{-\Delta t /F}}_\text{B} \end{align*} $
Well, since $U$ is constant, the only interesting things are $A$ and $B$.
I know that $A$ itself converges to $0$. The problem is I don't know how I can show that analytically. $B$ also would regulate the whole term that is added to $U$ so in the end it will determine the value where $u_k$ will converge to.
As far as I understood it $u_0 = U$.
Could someone explain to me a technique that would allow me to solve such an equation?
So basically, what is $\lim_{k\rightarrow\infty} u_k$.
General Formula for an Arithmetico-Geometric Sequence
Since $U$, $\Delta t$ and $F$ are constant, your recursion reduces to an arithmetico-geometric sequence: $$u_k=a\cdot u_{k-1}+b$$ If we let $r=\dfrac{b}{1-a}$, we get: $$u_n=a^n(u_o-r)+r$$
Specific Example
In your particular case, we have: $a=\dfrac{0.75}{e^{10}}$ and $b=u_0=0.25$, such that: $$u_n=\left(\dfrac{0.75}{e^{10}}\right)^n\left(0.25-\dfrac{0.25}{1-\frac{0.75}{e^{10}}}\right)+\dfrac{0.25}{1-\frac{0.75}{e^{10}}}$$ Since $0<\dfrac{0.75}{e^{10}}<1$, we have: $$\lim_{n\to\infty}u_n=0+\dfrac{0.25}{1-\frac{0.75}{e^{10}}}\simeq 0.250009$$
Proof of the General Formula
Consider the sequence: $$u_k=a\cdot u_{k-1}+b$$ and let $w_{k-1}=u_k-u_{k-1}$, such that: $$w_k=u_{k+1}-u_k=(a\cdot u_k+b)-(a\cdot u_{k-1}+b)=a(u_k-u_{k-1})=a\cdot w_{k-1}$$ Thus $w_n$ is a geometric sequence of ratio $a$ and first term $w_0=u_1-u_0=(a-1)u_0+b$. From the definition of $w_k$ as the difference of $u_k$ and $u_{k-1}$, we have that: $$\sum_{k=0}^{k=n}w_k=u_n-u_0$$ And from the definition of $w_k$ as a geometric sequence: $$\sum_{k=0}^{k=n}w_k=w_0\dfrac{a^n-1}{a-1}=\dfrac{(a-1)u_0+b}{a-1}(a^n-1)$$ Let $r=\dfrac{b}{1-a}$, and equate the two sums above: $$u_n-u_0=(u_0-r)(a^n-1)$$ And finally we recover the general formula: $$u_n=a^n(u_0-r)+r$$