我在一个简单的物理计算器中使用jscience我正在制作。我需要计算一些齿轮和旋转气缸的惯性矩。
我更喜欢使用jscience,但似乎jscience没有惯性矩的度量?或者惯性矩表示为别的什么?从these formulas我得到惯性矩可用kg * m ^ 2来描述。
看看jscience中的其他数量接口,我尝试模仿" Mass"界面并创建了我自己的数量界面,名为" MomentOfInertia":
package jscience;
import javax.measure.quantity.Quantity;
import javax.measure.unit.Unit;
public interface MomentOfInertia extends Quantity {
public final static Unit<MomentOfInertia> UNIT =
SI.KILOGRAM.times(SI.SQUARE_METRE).asType(MomentOfInertia.class);
}
接下来我试图定义一个惯性矩:
public static void main(String[] args) throws Exception {
Amount<MomentOfInertia> moi = Amount.valueOf(1000,
SI.KILOGRAM.times(SI.SQUARE_METRE).asType(MomentOfInertia.class));
System.out.println(moi);
}
然而,这不会引发以下异常:
Exception in thread "main" java.lang.ExceptionInInitializerError
at sun.misc.Unsafe.ensureClassInitialized(Native Method)
at sun.reflect.UnsafeFieldAccessorFactory.newFieldAccessor(UnsafeFieldAccessorFactory.java:43)
at sun.reflect.ReflectionFactory.newFieldAccessor(ReflectionFactory.java:142)
at java.lang.reflect.Field.acquireFieldAccessor(Field.java:1088)
at java.lang.reflect.Field.getFieldAccessor(Field.java:1069)
at java.lang.reflect.Field.get(Field.java:393)
at javax.measure.unit.Unit.asType(Unit.java:170)
at test.Test.main(Test.java:8)
Caused by: java.lang.NullPointerException
at javax.measure.unit.Unit.asType(Unit.java:174)
at jscience.MomentOfInertia.<clinit>(MomentOfInertia.java:10)
... 8 more
TLDR :(如何)在jscience中定义一个惯性矩?
答案 0 :(得分:1)
我对JScience不熟悉,但请看Torque
的定义方式:
public interface Torque extends Quantity {
public final static Unit<Torque> UNIT =
new ProductUnit<Torque>(SI.NEWTON.times(SI.METRE));
}
您在此处遇到的问题是周期性初始化:您正在调用asType
以获取您将分配给MomentOfInertia.UNIT
的值,但asType(MomentOfInertia.class)
需要the value of MomentOfInertia.UNIT
,当前为null,因为尚未分配。
因此,以下内容可能会起作用:
public interface MomentOfInertia extends Quantity {
public final static Unit<MomentOfInertia> UNIT =
new ProductUnit<MomentOfInertia>(SI.KILOGRAM.times(SI.SQUARE_METRE));
}