Hi I get the error: 'Invalid floating point operation'

What is wrong? :?: :?: :?: :?: :?: L=98 U0=0.1 NJM=99
Welcome to our forums
Hi I get the error: 'Invalid floating point operation'

What is wrong? :?: :?: :?: :?: :?: L=98 U0=0.1 NJM=99
I cannot see anything obviously wrong with this so try breaking up the assignment into smaller parts so that the error is localised.
Use 4.0 etc for real constants if you are multiplying reals. Also, if L is an integer then you are relying on the numerator being real to get real rather than integer division.
Quoted from PPPO
What is wrong? :?: :?: :?: :?: :?: L=98 U0=0.1 NJM=99
I would guess these variables don't have these values in the expression you think they have. You should use the debugger to pause execution at this point and check the values are what you expect.
If they are different from what you expect, you need to trace backwards and find out how they got the values they have.
Paul's suggestion is a good one too. But as FTN95 has a brilliant debugger SBDG it would be shame not to use it to find your bug.