Skip to content
Snippets Groups Projects
Commit cd582997 authored by RODIER Quentin's avatar RODIER Quentin
Browse files

Merge branch 'master' of https://github.com/UMR-CNRM/PHYEX

parents be031d48 0b8e5792
No related branches found
No related tags found
No related merge requests found
This diff is collapsed.
......@@ -10,75 +10,80 @@ import matplotlib.pyplot as plt
epygram.init_env()
def comp_DDH(filename1, filename2, output_fig, tol_ad=3E-7, tol_rd=1.E-6, verbose=False):
r1 = epygram.formats.resource(filename1, 'r')
r2 = epygram.formats.resource(filename2, 'r')
l1 = set(r1.listfields())
l2 = set(r2.listfields())
pb_var = len(l1.symmetric_difference(l2)) != 0
def comp(fid, v1, v2):
t = numpy.all(v1 == v2)
toplt = False
if not t:
if verbose: print(fid, ':')
if numpy.array(v1).ndim == 0:
v1 = numpy.array([v1])
v2 = numpy.array([v2])
for i in range(len(v1)):
if v1[i] - v2[i] != 0.:
ad = v1[i] - v2[i]
rd = 200 * (v1[i] - v2[i]) / (v1[i] + v2[i])
if verbose: print(" v1={v1}, v2={v2}, diff={ad}, rdiff={rd}".format(v1=v1[i], v2=v2[i], ad=ad, rd=rd))
if abs(ad) > tol_ad and abs(rd) > tol_rd:
if verbose: print(" ==> plot")
toplt = True
return fid if toplt else None
toplt = []
for fid in [fid for fid in l1.intersection(l2) if fid != 'DOCFICHIER']:
v1 = r1.readfield(fid)
v2 = r2.readfield(fid)
if isinstance(v1, epygram.base.FieldSet):
for i in range(len(v1)): #fieldset
toplt.append(comp(fid, v1[i].getdata(), v2[i].getdata()))
else:
toplt.append(comp(fid, v1.getdata(), v2.getdata()))
toplt = [fid for fid in toplt if fid is not None]
pb_val = len(toplt) > 0
if pb_val:
ncols, nrows = min(10, len(toplt)), 1+(len(toplt)-1)//10
figure, ax = plt.subplots(ncols=ncols, nrows=nrows,
figsize=(5 * ncols, 10 * nrows), squeeze=False)
ax = ax.flatten()
figure.suptitle(filename1 + ' ' + filename2)
for ifid, fid in enumerate(toplt):
if filename1 != filename2:
r1 = epygram.formats.resource(filename1, 'r')
r2 = epygram.formats.resource(filename2, 'r')
l1 = set(r1.listfields())
l2 = set(r2.listfields())
pb_var = len(l1.symmetric_difference(l2)) != 0
def comp(fid, v1, v2):
t = numpy.all(v1 == v2)
toplt = False
if not t:
if verbose: print(fid, ':')
if numpy.array(v1).ndim == 0:
v1 = numpy.array([v1])
v2 = numpy.array([v2])
for i in range(len(v1)):
if v1[i] - v2[i] != 0.:
ad = v1[i] - v2[i]
rd = 200 * (v1[i] - v2[i]) / (v1[i] + v2[i])
if verbose: print(" v1={v1}, v2={v2}, diff={ad}, rdiff={rd}".format(v1=v1[i], v2=v2[i], ad=ad, rd=rd))
if abs(ad) > tol_ad and abs(rd) > tol_rd:
if verbose: print(" ==> plot")
toplt = True
return fid if toplt else None
toplt = []
for fid in [fid for fid in l1.intersection(l2) if fid != 'DOCFICHIER']:
v1 = r1.readfield(fid)
v2 = r2.readfield(fid)
assert(len(v1) == len(v2))
for i in range(len(v1)): #fieldset
ad = v1[i].getdata() - v2[i].getdata()
ax[ifid].plot(v1[i].getdata(), v1[i].geometry.vcoordinate.levels, label='v1')
ax[ifid].plot(v2[i].getdata(), v2[i].geometry.vcoordinate.levels, label='v2')
ax[ifid].legend()
ax[ifid].twiny().plot(ad, v1[i].geometry.vcoordinate.levels, label='diff', color='black', ls=':')
ad = numpy.abs(ad)
rd = (200 * numpy.abs(v1[i].getdata() - v2[i].getdata()) / numpy.abs(v1[i].getdata() + v2[i].getdata()))
rd = rd[ad != 0.].max()
ad = ad.max()
ax[ifid].set_title("{fid}:\nmax_ad={ad}\nmax_rd={rd}%".format(fid=fid, ad=ad, rd=rd))
figure.savefig(output_fig[0])
for filename in output_fig[1:]:
shutil.copyfile(output_fig[0], filename)
if pb_var and pb_val:
message = "Variables are different and values of common variables are also different"
elif pb_var:
message = "Variables are different but values of common variables are equal"
elif pb_val:
message = "Values are different"
else:
if isinstance(v1, epygram.base.FieldSet):
for i in range(len(v1)): #fieldset
toplt.append(comp(fid, v1[i].getdata(), v2[i].getdata()))
else:
toplt.append(comp(fid, v1.getdata(), v2.getdata()))
toplt = [fid for fid in toplt if fid is not None]
pb_val = len(toplt) > 0
if pb_val:
ncols, nrows = min(10, len(toplt)), 1+(len(toplt)-1)//10
figure, ax = plt.subplots(ncols=ncols, nrows=nrows,
figsize=(5 * ncols, 10 * nrows), squeeze=False)
ax = ax.flatten()
figure.suptitle(filename1 + ' ' + filename2)
for ifid, fid in enumerate(toplt):
v1 = r1.readfield(fid)
v2 = r2.readfield(fid)
assert(len(v1) == len(v2))
for i in range(len(v1)): #fieldset
ad = v1[i].getdata() - v2[i].getdata()
ax[ifid].plot(v1[i].getdata(), v1[i].geometry.vcoordinate.levels, label='v1')
ax[ifid].plot(v2[i].getdata(), v2[i].geometry.vcoordinate.levels, label='v2')
ax[ifid].legend()
ax[ifid].twiny().plot(ad, v1[i].geometry.vcoordinate.levels, label='diff', color='black', ls=':')
ad = numpy.abs(ad)
rd = (200 * numpy.abs(v1[i].getdata() - v2[i].getdata()) / numpy.abs(v1[i].getdata() + v2[i].getdata()))
rd = rd[ad != 0.].max()
ad = ad.max()
ax[ifid].set_title("{fid}:\nmax_ad={ad}\nmax_rd={rd}%".format(fid=fid, ad=ad, rd=rd))
figure.savefig(output_fig[0])
for filename in output_fig[1:]:
shutil.copyfile(output_fig[0], filename)
if pb_var and pb_val:
message = "Variables are different and values of common variables are also different"
elif pb_var:
message = "Variables are different but values of common variables are equal"
elif pb_val:
message = "Values are different"
else:
message = ""
if pb_val:
message += ", plot is available in the folowing file(s): " + ', '.join(output_fig)
else: #same file
pb_var = False
pb_val = False
message = ""
if pb_val:
message += ", plot is available in the folowing file(s): " + ', '.join(output_fig)
print(message)
return 1 if pb_var or pb_val else 0
......
......@@ -289,16 +289,19 @@ if [ ${force} -eq 1 -o $(get_statuses "${SHA}" | grep "${context}" | wc -l) -eq
if [ "${model}" == 'ial' ]; then
compilation='-p -c'
execution='-r'
comparison='-C --computeRefIfNeeded'
jsonfile="src/arome/ial_version.json"
docmp=1
elif [ "${model}" == 'lmdz' ]; then
compilation='-p -c --nofcm'
execution='-r --nofcm'
comparison='-C'
jsonfile="src/${model}/${model}_version.json"
docmp=0
else
compilation='-c'
execution='-r'
comparison='-C'
jsonfile="src/${model}/${model}_version.json"
docmp=1
fi
......@@ -359,7 +362,7 @@ if [ ${force} -eq 1 -o $(get_statuses "${SHA}" | grep "${context}" | wc -l) -eq
fi
fi
if [ ${result} -eq 0 -a ${docmp} -eq 1 -a ${comp} -eq 1 ]; then
compcmd="$cmd -C ${casearg} ${refarg}"
compcmd="$cmd ${comparison} ${casearg} ${refarg}"
log 1 "Comparison with ${compcmd}"
set +e
${compcmd}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment