Skip to content

Commit

Permalink
Update grid.cc
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeshingles committed Sep 1, 2024
1 parent 979c735 commit e66205c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions grid.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1624,11 +1624,11 @@ template <size_t S1>
return -1.;
}

auto get_coordboundary_distances_cylindrical2d(const std::array<double, 3> pkt_pos, const std::array<double, 3> pkt_dir,
const std::array<double, 3> pktposgridcoord,
const std::array<double, 3> pktvelgridcoord, const int cellindex,
const double tstart, const std::array<double, 3> cellcoordmax)
-> std::tuple<std::array<double, 3>, std::array<double, 3>> {
auto get_coordboundary_distances_cylindrical2d(
const std::array<double, 3> &pkt_pos, const std::array<double, 3> &pkt_dir,
const std::array<double, 3> &pktposgridcoord, const std::array<double, 3> &pktvelgridcoord, const int cellindex,
const double tstart,
const std::array<double, 3> &cellcoordmax) -> std::tuple<std::array<double, 3>, std::array<double, 3>> {
// to get the cylindrical intersection, get the spherical intersection with Z components set to zero, and the
// propagation speed set to the xy component of the 3-velocity

Expand Down

0 comments on commit e66205c

Please sign in to comment.