Surface Grid #287
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hello @bogdanvadan, I have tried to create a surface grid to polar type by assigning few parameters as a dictionary, which you can find here: params={'grid_type':"GRID_TYPE_POLAR",
'grid_origin':{
'x' : float,
'y' : float,
'z' : float},
'grid_adapt_automatically': True} for example: Sorry, I did not understand the second point of the result sections. If you are looking to extract result tables for 'Results by Surface' (see below image) then yes we can extract result tables by static methods of ResultTables(). For example: If you are addressing something else then feel free to contact us. Thank you and best regards, |
Beta Was this translation helpful? Give feedback.
Hello @bogdanvadan,
I have tried to create a surface grid to polar type by assigning few parameters as a dictionary, which you can find here:
for example:
Surface(1, '1 2 3 4', 1, params={'grid_type':"GRID_TYPE_POLAR", 'grid_origin':{ 'x' : 2.0, 'y' : 2.0, 'z' : 0.0}, 'grid_adapt_automatically': True})
. By activating 'grid_adapt_automatically = True', you do not need to assign grid distance R and alpha.Sorry, I did not understand the second point of the result sections. If you are looking to extract result tables for 'Results by S…