Combine VPP's? #32063
Unanswered
jessecarterMOOSE
asked this question in
Q&A General
Combine VPP's?
#32063
Replies: 1 comment 8 replies
-
|
Hello
Do they have the same number of columns?
No not currently. Not nicely at least. Technically most of the work in reading CSV files is in a utility so making a new object that reads multiple CSV files and merging them would not be too hard. But that's not exactly what you want. |
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Check these boxes if you have followed the posting rules.
Question
Is it possible to combine VPP's into one? I have multiple VPP's that sample values at qp's, so they each output element id, qp id, prop 1, prop 2, etc... The trick is that a) the number of number of VPP's needed by user is problem-dependent, and b) length of some of the VPP's is problem-dependent. My goal is to have a single VPP output csv file containing all qp data requested by user. Otherwise user has to merge csv files manually, which isn't difficult with pandas, but still an extra step that I would like to avoid. Values being sampled are - rank two mat props, vector mat props, and aux vars. I have a seperate VPP object for each category. I'm hoping for a solution that takes in existing VPP objects rather than combining all the object code into one big class, but I'll take what I can get.
Beta Was this translation helpful? Give feedback.
All reactions