Skip to content

Commit

Permalink
Fixed a critical typo in driving_function_mono_wfs_ps()
Browse files Browse the repository at this point in the history
  • Loading branch information
hagenw committed Mar 28, 2014
1 parent 0d9a4a7 commit 3730bc0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@
% r = |x0-xs|
r = vector_norm(x0-xs,2);
% driving signal
D = -1/(2c) .* 1i*omega/c * vector_product(x0-xs,nx0,2) ./ r .* besselh(1,2,omega/c*r);
D = -1/(2*c) .* 1i*omega/c * vector_product(x0-xs,nx0,2) ./ r .* besselh(1,2,omega/c*r);
%
%
elseif strcmp('delft1988',driving_functions)
Expand Down

0 comments on commit 3730bc0

Please sign in to comment.