Python command to add "NoValue" to the Field Output value.

 

 

Hi Members!

Sometimes you will notice "NoValue" in the Probe tool in Abaqus/Viewer while probing a field output at a particular element/node. If you wish to  create an output database using a ODB API script and add data to the field output as "NoValue" you can use the number "FLT_MAX". You will have to import a module as shown below and add FLT_MAX to the field output. The Probe tool in Abaqus/Viewer will display "NoValue" for that particular field output and element/node.

----

>>> from _testcapi import *

>>> a=FLT_MAX

>>> a

3.40282346638529e+38

-----

I hope you find this information useful.