🎉Community Raffle - Win $25

An exclusive raffle opportunity for active members like you! Complete your profile, answer questions and get your first accepted badge to enter the raffle.
Join and Win

Automatic Curves Export after simulation

Thomas_User: "Thomas_"
Altair Community Member
Updated by Thomas_

Hi,
I'm currently running simulations on MotionView 2022.1. I have multiple outputs i want to export in .CSV format.
To do that, i select my curve in the plot window and select : export curves.
I do that one by one for each output i need to export.

I there a solution to "automatically" export selection of outputs in a .CSV format after running a simulation ?

Thanks for your help.

Regards.

Thomas

Find more posts tagged with

Sort by:
1 - 1 of 11
    Thomas_User: "Thomas_"
    Altair Community Member
    OP
    Accepted Answer

    Hi !
    I found a alternative with a OML script on Compose 2022.1 to generate CSV files from my ABF files

    I placed all my .abf files in a folder, from which I want to extract the results in .csv format.

    What the OML script does :

    1. I specified the ABF folder path in the script, then I specified the folder path where I want to save my .csv file.
    2. I ran a loop that scan all the files in the "ABF" folder (the folder must only contain .abf files!) to generate a list of .abf files.
    3. Next, another loop takes the path to the [i] .abf file and loads it with the READMULVECTORS() function. You can specify the result to extract as an argument (see the OML documentation for this function to use it).
    4. I used this function a second time to load the TIME vector.
    5. I created the CSV file.

    Regards,
    Thomas