FEM: ccx frd reader: delete not used line count and line num
This commit is contained in:
parent
28e5ec80cb
commit
4fecdaed84
|
@ -38,11 +38,6 @@ if open.__module__ == '__builtin__':
|
||||||
|
|
||||||
# read a calculix result file and extract the nodes, displacement vectores and stress values.
|
# read a calculix result file and extract the nodes, displacement vectores and stress values.
|
||||||
def readResult(frd_input):
|
def readResult(frd_input):
|
||||||
# get line count
|
|
||||||
frd_file = pyopen(frd_input, "r")
|
|
||||||
num_lines_frd = float(sum(1 for line in frd_file))
|
|
||||||
frd_file.close()
|
|
||||||
|
|
||||||
frd_file = pyopen(frd_input, "r")
|
frd_file = pyopen(frd_input, "r")
|
||||||
nodes = {}
|
nodes = {}
|
||||||
elements_hexa8 = {}
|
elements_hexa8 = {}
|
||||||
|
@ -74,7 +69,6 @@ def readResult(frd_input):
|
||||||
elemType = 0
|
elemType = 0
|
||||||
timestep = 0
|
timestep = 0
|
||||||
timetemp = 0
|
timetemp = 0
|
||||||
linenum = 0
|
|
||||||
|
|
||||||
for line in frd_file:
|
for line in frd_file:
|
||||||
# Check if we found nodes section
|
# Check if we found nodes section
|
||||||
|
|
Loading…
Reference in New Issue
Block a user