In advection.c, in the function,
gfs_face_advection_flux (const FttCellFace * face, const GfsAdvectionParams * par)
the expression which calculates flux of a tracer is written as:
flux = gfs_domain_face_fraction (par->v->domain, face)*GFS_FACE_NORMAL_VELOCITY (face)*par->dt*
gfs_face_upwinded_value (face, GFS_FACE_UPWINDING, NULL)/ftt_cell_size (face->cell);
Please tell me if I am wrong, but doesn't gfs_face_upwinded_value (face, GFS_FACE_UPWINDING, NULL) return GFS_FACE_NORMAL_VELOCITY (face), in this case?
Thank you.