Context()->variables->set(t=>{limits=>[300,400]});
The problem is most likely that $V is too big and $t is too small. Try setting the limits for the variable t to be something like [300,400], that will make expressions like $V + $t significantly different than $V-$t. I'll bet that something like the line below should fix the problem.