Nuaaer
Student
- Jan 27, 2021
- 11
Hi, guys!
I want to build multiple curves automatically in HyperGraph through secondary development. But I find that the API command "pltIBuildPlotsCtrl GenerationPlots" doesn't seem to be able to generate curves. Please help find the reason. The core codes are as follows:
[highlight #4E9A06]set t [clock click];
hwi OpenStack;
hwi GetSessionHandle sess_$t;
sess_$t GetClientManagerHandle mgr_$t Plot;
mgr_$t GetBuildPlotsCtrlHandle build_$t;
build_$t SelectDataFile "E:/CalculateDynamicStiffness/subframe_front_E90000.pch" false;
set subcaselist [build_$t GetSubcaseList];
set xDatatype {Frequency [Hz]};
set yDatatype {Displacements};
foreach subcase $subcaselist {
build_$t SetSubcase $subcase;
build_$t SetXDatatype $xDatatype;
build_$t SetYDatatype $yDatatype;
build_$t SelectYComponents {"MAG | X-Trans"};
build_$t GeneratePlots;#This command is invalid!
}
hwi CloseStack;[/highlight]
The return value of each command is 0 or a string. Thanks for your help!!!
I want to build multiple curves automatically in HyperGraph through secondary development. But I find that the API command "pltIBuildPlotsCtrl GenerationPlots" doesn't seem to be able to generate curves. Please help find the reason. The core codes are as follows:
[highlight #4E9A06]set t [clock click];
hwi OpenStack;
hwi GetSessionHandle sess_$t;
sess_$t GetClientManagerHandle mgr_$t Plot;
mgr_$t GetBuildPlotsCtrlHandle build_$t;
build_$t SelectDataFile "E:/CalculateDynamicStiffness/subframe_front_E90000.pch" false;
set subcaselist [build_$t GetSubcaseList];
set xDatatype {Frequency [Hz]};
set yDatatype {Displacements};
foreach subcase $subcaselist {
build_$t SetSubcase $subcase;
build_$t SetXDatatype $xDatatype;
build_$t SetYDatatype $yDatatype;
build_$t SelectYComponents {"MAG | X-Trans"};
build_$t GeneratePlots;#This command is invalid!
}
hwi CloseStack;[/highlight]
The return value of each command is 0 or a string. Thanks for your help!!!