Community Tip - Stay updated on what is happening on the PTC Community by subscribing to PTC Community Announcements. X
I have run into similar problem again where I am not able to evaluate the value stating it cannot assign value greater than 10^307 what is missing in here?
Your exponential terms ... they're of the form e-a*t+b, where a and b are large numbers. The -a isn't so bad, but as ea+b = ea·eb, that eb is smashing it out of the 64-bit park.
Stuart
So there is no possible way I can evaluate those?
Apart from my suggestion to use symbolic evaluation to get a numeric result I played around because I hoped that Prime would be able to simplify the symbolic expression so that it could be evaluated numerically as well.
What I found instead is what I would call a severe bug!
Using "simplify" changes the error message when trying to evaluate numerically (now "m" is said to be unknown/not defined) but also the numeric values in symbolic evaluations!!!
Without 'simplify'
now with 'simplify' added
EDIT: Further investigation showed that the bug has to do with the symbolics being forced to float mode by using floating point numbers.
When we change the definition of R.E from 0.01 to 1/100 and replace the two 0.2 in the definition Y.i(s) tp 1/5, the bug does not show when simplify is used (but numeric evaluation still would fail).
Nonetheless a severe bug. Someone should report it to R&D