We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7b28166 + 7bdde56 commit 265700aCopy full SHA for 265700a
Utilities/Python/scripts/LNG_Dispersion.py
@@ -43,8 +43,8 @@
43
44
for j in range(13):
45
# Read devc and exp data (skip header lines to match MATLAB importdata)
46
- M = pd.read_csv(os.path.join(outdir, f"{labels[j]}_devc.csv"), skiprows=2)
47
- E = pd.read_csv(os.path.join(expdir, f"{labels[j]}_exp.csv"), skiprows=2)
+ M = pd.read_csv(os.path.join(outdir, f"{labels[j]}_devc.csv"), skiprows=1)
+ E = pd.read_csv(os.path.join(expdir, f"{labels[j]}_exp.csv"), skiprows=1)
48
49
# Prepare output file
50
with open(os.path.join(outdir, f"{labels[j]}.csv"), 'w') as fid:
0 commit comments