I have 100 results file from ADAMS and also requests. Now i want to read each file. For each file i want to clip away the unsteady part ( say time <500ms) and find average of the value. Is there any easy way to do it in ADAMS itself as a part of simulation ?
The Python interface is likely the best approach for something like this. Request files are simply ASCII text files so can simply be parsed using standard Python. Results files are in xml format, so please see the following article with advice for parsing xml files using Python:
Once you have a Python script to perform the removal of "the unsteady party" and the average calculation, you could use an Adams View Command File to automatically load the script once the simulation has completed.