cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - You can Bookmark boards, posts or articles that you'd like to access again easily! X

Get the parameter list of a model

ddhini
14-Alexandrite

Get the parameter list of a model

I have a model .I want to get that model parameter in a Excel file.We can get it by Tools=>Parameters=>File=>Export. By this we can easily export the parameters of the model into csv file.But i Want to get the list of parameters list by j-link program for a Standard Comparison.Is possible to get the list of Parameter?Suggest some Idea.

3 REPLIES 3
PARTHIBAN_K
15-Moonstone
(To:ddhini)

Use for loop to load the required parameter from the model using

IpfcParameterOwner.GetParam("Parameter Name")

then export as *.csv

Parthiban Kannan

href="https://www.linkedin.com/in/parthiban-kannan/" target="_blank"
ddhini
14-Alexandrite
(To:PARTHIBAN_K)

Thanks for your response.Can you explain it brief?

sjuraj
13-Aquamarine
(To:ddhini)

IpfcParameterOwner is for example Model object because it inherit from IpfcParameterOwner. So for instance do: session.GetCurrentModel().GetParam("param name")

Top Tags