If TSS is 0, it won't effect NSE and it's own NSE will set to 'nan' and you won't see it in web frontend. So a single point and a horizontal straight line won't get a Weight NSE result.
Variable Volume will be saved into Reslut.xlsx file.
If auto plot is True, it will open the figure automatically.
Changed
ODE solver:
Change Euler_Forward to Forward_Euler.
Change Euler_Backward to Improved_Euler.
Forward_Euler will follow the ASM1 to find the stepsize in each iteration, it becomes MUCH MUCH QUICKER than before (and of cource Improved_Euler).
Improved_Euler will find the next stepsize base on the same ASM1 rules, but this method cannot find the stepsize in advanced, so it will try in each iteration and rollback if cannot match the condition.
Forward_Euler is much quicker and less precise method, while Improved_Euler is more precise but slower.
The default solver is Forward_Euler.
Project Build change to small piece to much the client programe.