You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I get the following error when performing test_op2 in an op2 file and i am not able to skip reading that table and read the op2 file.
_p2_scalar.py", line 2226, in _read_tables
raise NotImplementedError(msg)
NotImplementedError: Invalid Table = b'OEF1XMC'
If you have matrices that you want to read, see:
model.set_additional_matrices_to_read(matrices)
matrices = {
b'BHH' : True,
b'KHH' : False,
} # you want to read some matrices, but not others
matrices = [b'BHH', b'KHH'] # assumes True
If you the table is a geom/result table, see:
model.set_additional_result_tables_to_read(methods_dict)
methods_dict = {
b'OUGV1' : [method3, method4],
b'GEOM4SX' : [method3, method4],
b'OES1X1' : False,
}
If you want to take control of the OP2 reader (mainly useful for obscure tables), see:
methods_dict = {
b'OUGV1' : [method],
}
model.set_additional_generalized_tables_to_read(methods_dict)_
thanks
The text was updated successfully, but these errors were encountered:
Assuming you tried those options and it didn’t work, I’d need a small
example (bdf, f06, op2). It looks like it’s a force table. For requests,
you can just turn everything on, so you should see FORCE(PLOT,PRINT)=ALL in
the input deck. There’s probably similar tables for STRESS, STRAIN, so feel
free to include those too.
On Tue, Nov 5, 2024 at 4:05 AM JulesHS1984 ***@***.***> wrote:
I get the following error when performing test_op2 in an op2 file and i am
not able to skip reading that table and read the op2 file.
_p2_scalar.py", line 2226, in _read_tables
raise NotImplementedError(msg)
NotImplementedError: Invalid Table = b'OEF1XMC'
If you have matrices that you want to read, see:
model.set_additional_matrices_to_read(matrices)
matrices = {
b'BHH' : True,
b'KHH' : False,
} # you want to read some matrices, but not others
matrices = [b'BHH', b'KHH'] # assumes True
If you the table is a geom/result table, see:
model.set_additional_result_tables_to_read(methods_dict)
methods_dict = {
b'OUGV1' : [method3, method4],
b'GEOM4SX' : [method3, method4],
b'OES1X1' : False,
}
If you want to take control of the OP2 reader (mainly useful for obscure
tables), see:
methods_dict = {
b'OUGV1' : [method],
}
model.set_additional_generalized_tables_to_read(methods_dict)_
thanks
—
Reply to this email directly, view it on GitHub
<#806>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAICUWJLZ2SBD7E5WIIKU7DZ7CYA7AVCNFSM6AAAAABRGMLWQWVHI2DSMVQWIX3LMV43ASLTON2WKOZSGYZTKMRXGQZDKNY>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
I get the following error when performing test_op2 in an op2 file and i am not able to skip reading that table and read the op2 file.
_p2_scalar.py", line 2226, in _read_tables
raise NotImplementedError(msg)
NotImplementedError: Invalid Table = b'OEF1XMC'
If you have matrices that you want to read, see:
model.set_additional_matrices_to_read(matrices)
matrices = {
b'BHH' : True,
b'KHH' : False,
} # you want to read some matrices, but not others
matrices = [b'BHH', b'KHH'] # assumes True
If you the table is a geom/result table, see:
model.set_additional_result_tables_to_read(methods_dict)
methods_dict = {
b'OUGV1' : [method3, method4],
b'GEOM4SX' : [method3, method4],
b'OES1X1' : False,
}
If you want to take control of the OP2 reader (mainly useful for obscure tables), see:
methods_dict = {
b'OUGV1' : [method],
}
model.set_additional_generalized_tables_to_read(methods_dict)_
thanks
The text was updated successfully, but these errors were encountered: