Comment out debug prints
Former-commit-id: d83e8d7cc142792199a3eeb6884b5a12f1ee6b4f
This commit is contained in:
parent
f1456db691
commit
9d93b93ce9
|
@ -38,7 +38,7 @@ orig_y = (np.arange(Ny/2) + (0 if (Ny % 2) else .5)) * py
|
||||||
orig_xy = np.stack(np.meshgrid(orig_x, orig_y), axis = -1)
|
orig_xy = np.stack(np.meshgrid(orig_x, orig_y), axis = -1)
|
||||||
|
|
||||||
tmatrix = interp(omega)
|
tmatrix = interp(omega)
|
||||||
print(tmatrix.m)
|
#print(tmatrix.m)
|
||||||
|
|
||||||
particles = [Particle(orig_xy[i], tmatrix) for i in np.ndindex(orig_xy.shape[:-1])]
|
particles = [Particle(orig_xy[i], tmatrix) for i in np.ndindex(orig_xy.shape[:-1])]
|
||||||
|
|
||||||
|
@ -53,7 +53,7 @@ for iri in range(ss.nirreps):
|
||||||
print(destpath, 'already exists, skipping')
|
print(destpath, 'already exists, skipping')
|
||||||
continue
|
continue
|
||||||
mm_iri = ss.modeproblem_matrix_packed(k, iri)
|
mm_iri = ss.modeproblem_matrix_packed(k, iri)
|
||||||
print(mm_iri)
|
#print(mm_iri)
|
||||||
U, S, Vh = np.linalg.svd(mm_iri)
|
U, S, Vh = np.linalg.svd(mm_iri)
|
||||||
del U
|
del U
|
||||||
print(iri, ss.irrep_names[iri], S[-1])
|
print(iri, ss.irrep_names[iri], S[-1])
|
||||||
|
|
Loading…
Reference in New Issue