Skip to content

Commit

Permalink
Fix 32 bit fsn model generator (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
termi-official authored Sep 20, 2024
1 parent a0a2e35 commit 733d24a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/modeling/microstructure.jl
Original file line number Diff line number Diff line change
Expand Up @@ -212,9 +212,9 @@ function create_simple_microstructure_model(coordinate_system, ip_collection::Ve
transversal_angle = (1-transmural) * endo_transversal_angle + (transmural) * epi_transversal_angle

coeff = streeter_type_fsn(transmural_direction, circumferential_direction, apicobasal_direction, helix_angle, transversal_angle, sheetlet_pseudo_angle, make_orthogonal)
f_buf[qp.i, cellindex] = coeff.f
s_buf[qp.i, cellindex] = coeff.s
n_buf[qp.i, cellindex] = coeff.n
f_buf[qp.i, cellindex] = Tv(coeff.f)
s_buf[qp.i, cellindex] = Tv(coeff.s)
n_buf[qp.i, cellindex] = Tv(coeff.n)
end
end
end
Expand Down

0 comments on commit 733d24a

Please sign in to comment.