-
Notifications
You must be signed in to change notification settings - Fork 76
SUO‐KIF Units and Measures
epachamo edited this page Feb 25, 2025
·
2 revisions
Two terms: Quantities and Units. Quantity is a number and a unit together.
There are constant quantities, and function quantity.
(measure ?X (MeasureFn 5.0 FootLength))
(measure ?X (MeasureFn 5.0 CubicFoot))
(holdsDuring ?T
(surfaceWindSpeed ?L
(MeasureFn ?N MilesPerHour)))
(rainfallIntensity ?AREA
(WhenFn ?HR)
(PerFn
(MeasureFn ?NUM Millimeter)
(MeasureFn 1 HourDuration)))
(exists (?J)
(and
(instance ?J Human)
(names "Jimmy" ?J)
(weight ?J
(MeasureFn 53 PoundMass))))
(exists (?L ?RN)
(and
(instance ?L Lead)
(instance ?RN RadiatingNuclear)
(origin ?RN ?L)
(measure ?L (MeasureFn 0.0000353147 CubicFoot)
(measure ?RN (MeasureFn 40 Bequerel))))