计算环中点周围的电场

发布于 2024-10-31 06:23:54 字数 196 浏览 5 评论 0原文

我正在尝试编写代码来从带电环计算点 P 在 x 和 y 方向上的电场。

double y_eField = (_ke_value * _dq * (Sin_angle) / (Math.Pow(r, r)));

我遇到的问题是代码似乎遵循给定的方程,但它输出的结果根本不正确。有人可以帮忙吗?我很感激你的帮助。

I am trying to write code to compute the Efield on a point P in both the x and y direction, from a charged ring.

double y_eField = (_ke_value * _dq * (Sin_angle) / (Math.Pow(r, r)));

Problem I am having is the code seems to follow the equation as given but the result it outputs is not correct at all. Anyone able to help please? I appreciate the help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

往日情怀 2024-11-07 06:23:54

这可能更适用于 Physics Stack Exchange。也就是说,您确定要计算 r 的 r 次方(如 Math.pow(r, r) 所暗示的那样)吗?我怀疑也许你想要 r 平方?如果是这种情况,您可以使用 Math.pow(r, 2) 或简单地使用 r*r

This might be more applicable for the Physics Stack Exchange. That said, are you sure you want to raise r to the power of r (as implied by Math.pow(r, r))? I suspect maybe you want r squared? If that's the case you could use Math.pow(r, 2) or simply r*r.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文