No description
  • Python 78.7%
  • Jupyter Notebook 16.5%
  • C++ 2.3%
  • Emacs Lisp 1%
  • Makefile 0.7%
  • Other 0.8%
Find a file
Stephan I. Böttcher 50df25016d step acq_time=7µs
New formal arguments: step_ppss.do_step_config(…, acq_time=1, **kwargs)
New default: step_config.ppss(…, acq_time=6, …)

The acq_time parameter tells the FPGA how many additional ADC cycles
(1µs) to wait before a digitization from the idef-x output is accepted.
The old default acq_time=1 gives a total of 2µs settling time for the
idef-x analog output.  acq_time=6 extends the settling time to 7µs.
There are two digitizations per trigger.  The new default adds 10µs to
the total readout time.

The readout time shall be extended to test, in orbit, if that expels the
ghosts from the haunted channels.

Extending the readout time by increasing acq_time has the least impact
on the calibration and morphology of the signal in the presence of
pileup.
2021-05-17 21:13:16 +02:00
solo step acq_time=7µs 2021-05-17 21:13:16 +02:00
.gitignore Add .gitignore. 2019-11-28 11:52:40 +01:00
README.md Update requirements in README.md 2019-11-18 15:21:36 +01:00
requirements.txt Add GitPython to required packages 2019-11-15 16:07:05 +01:00
setup.py No longer depend on GitPython 2019-11-18 14:33:01 +01:00
solopath Remove Python2 compatibility stubs 2019-11-15 15:50:42 +01:00
solopath.py Remove Python2 compatibility stubs 2019-11-15 15:50:42 +01:00
solopath_noninter Add non-interactive solopath. 2021-02-08 18:01:56 +01:00

SolO Configurations

This is a fork of Stephan's SVN repo eda/python containing the configuration of our Solar Orbiter instruments.

Solar Orbiter Logo EPD Logo

Requirements

  • python3 (v. 3.5+)
  • numpy (v. 1.0+)

Installation

The easiest way to install solo_config is using pip. This way, all dependencies are automatically installed.

    $ pip3 install --user git+https://gitlab.physik.uni-kiel.de/solo/solo_config.git

If you are asked for them, input your GitLab credentials afterwards.

To update to the newest version, use

    $ pip3 install --upgrade --user git+https://gitlab.physik.uni-kiel.de/solo/solo_config.git

If you want to install solo_config for all users on a machine instead of only for your account, you can remove the --user option and add sudo as a prefix. If you are using a virtual environment (virtualenv), the --user option should be omitted as well.