Minor changes.

This commit is contained in:
Fernando P. Panadero 2024-02-27 09:20:05 +01:00
commit 5790c8f863
3 changed files with 87 additions and 80 deletions

View file

@ -123,7 +123,7 @@ function lT_fun()
return cf
end
f1_fun() = (norm2(C11) + norm2(C21) + norm2(C31) + norm2(C12) + norm2(C22) + norm2(C32))
f1_fun() = complex(norm2(C11) + norm2(C21) + norm2(C31) + norm2(C12) + norm2(C22) + norm2(C32))
k1_fun() = (dot(C11,dmul(Gamma{6},imm(C12))) + dot(C11,dmul(Gamma{7},-C12)) + dot(C11,dmul(Gamma{8}, imm(C11)))
+dot(C12,dmul(Gamma{6},imm(C11))) + dot(C12,dmul(Gamma{7}, C11)) + dot(C12,dmul(Gamma{8},mimm(C12)))

View file

@ -92,7 +92,9 @@ function gauge_meas()
println(log_file,"\nGauge meassurements:\n")
println(log_file,"Plaquette: ", plaquette(U, lp, gp, ymws))
println(log_file,"Topological charge: ", Qtop(U, gp, lp, ymws))
println(log_file,"SF coupling (dS/deta): ",sfcoupling(U, lp, gp, ymws)[1])
sfc = sfcoupling(U, lp, gp, ymws)
println(log_file,"SF coupling (dS / deta): ",sfc[1])
println(log_file,"SF coupling (d^2S / deta dnu): ",sfc[2])
flush(log_file)
return nothing