File: control

package info (click to toggle)
units-filter 4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 764 kB
  • sloc: javascript: 9,068; yacc: 721; makefile: 249; cpp: 226; python: 41; perl: 19; sh: 1
file content (31 lines) | stat: -rw-r--r-- 1,162 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# -*- coding: utf-8 -*-
Source: units-filter
Section: science
Priority: optional
Maintainer: Georges Khaznadar <georgesk@debian.org>
Build-Depends: debhelper-compat (=12),
 flex, bison,
 libgmp-dev, libfl-dev,  librecode-dev
Standards-Version: 4.5.0
Vcs-Browser: https://salsa.debian.org/georgesk/units-filter
Vcs-Git: https://salsa.debian.org/georgesk/units-filter.git

Package: units-filter
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Suggests: wims
Description: Parser for expressions concerning physical values
 Units-filter is a basic standalone filter written in C language,
 flex and bison. It inputs strings like "1.5e3 nN.m.s^-1" (it could
 be the time growth ratio of a torque) and outputs the value in
 standard SI unit, followed by the physical dimension of this value.
 .
  example :~/src$ echo 1.5e3 nN.m.s^-1 | units-filter
  1.5e-06   2   1  -3   0   0   0   0    0    0
 .
                                   2     -3
  which means : 1.5e-06 (SI unit) m .kg.s
 .
 This parser can be embedded in educational test systems, in order to
 analyze a student's answer to a problem of physics or chemistry.