Skip to main content

Cython binding to MAD-X

Project description

Latest Version Downloads License Supported Python versions

CPyMAD is a Cython binding to MAD-X.

MAD-X is a software package to simulate particle accelerators and is used at CERN and all around the world. It has its own proprietary scripting language and is usually launched from the command line.

This version of CPyMAD is tested with MAD-X 5.02.08. Other MAD-X versions (and immediate revisions) might work too, but are more likely to cause problems.

The installable wheel archives that are provided for some versions of python to simplify the installation on windows contain a precompiled version of CPyMAD that is statically linked against MAD-X 5.02.08.

Disclaimer

This is a heavily modified fork of the cern-cpymad package. The fork is not authored or maintained by CERN members.

CPyMAD links against an unofficial build of MAD-X that is not supported by CERN, i.e. this binary may have problems that the official binary does not have and vice versa. This means:

  • Only report issues to CERN that can be reproduced with their official command line client.

  • Only report issues here if they cannot be reproduced with their official command line client.

See Reporting issues.

Project pages

Usage

The Madx class provides a basic binding to the MAD-X interpreter:

from cpymad.madx import Madx

# Start a MAD-X interpretor. All MAD-X commands issued via cpymad will
# be logged to `command_log`:
madx = Madx(command_log="log.madx")

# Show the version of MAD-X that is actually loaded:
print(madx.version)

# Execute one of your predefined MAD-X files:
madx.call('/path/to/some/input_file.madx')

# Only a handful of MAD-X methods are exposed as methods. For others,
# you can use the `command` attribute. For example, to set a beam:
madx.command.beam(sequence='myseq1', particle='PROTON')

# Calculate TWISS parameters:
twiss = madx.twiss(sequence='LEBT',
                   betx=0.1, bety=0.1,
                   alfx=0.1, alfy=0.1)

# Your own analysis below:
from matplotlib import pyplot as plt
plt.plot(twiss['s'], twiss['betx'])
plt.show()

There are alternative syntaxes for the extreme cases where you need more fine grained control over the command string composition or where command fails to do the right thing:

# can't use `global` as attribute, since it's a python keyword:
madx.command.global_(sequence='cassps', Q1=26.58)

# can't use `: ` as attribute:
madx.command('QP: QUADRUPOLE', AT=2, L=1)

# issue a plain text command, don't forget the semicolon!
madx.input('FOO, BAR=[baz], QUX=<NORF>;')

See http://hibtc.github.io/cpymad for further documentation.

Known issues

On windows with python3.3, there is currently no satisfying way to close file handles in the MAD-X process or prevent them from being inherited by default. You have to make sure on your own that you close all file handles before creating a new cpymad.madx.Madx instance!

Hacking

Try to be consistent with the PEP8 guidelines. Add unit tests for all non-trivial functionality. Dependency injection is a great pattern to keep modules testable.

Commits should be reversible, independent units if possible. Use descriptive titles and also add an explaining commit message unless the modification is trivial. See also: A Note About Git Commit Messages.

Reporting issues

If you have a problem with a sequence file, first try to check if that problem remains when using the MAD-X command line client distributed by CERN, then:

  • Report the issue to CERN only if it be reproduced with their official command line client.

  • Report the issue here only if it cannot be reproduced with their official command line client.

For issues regarding the cpymad code itself or usage information, I’m happy to answer. Just keep in mind to be precise, specific, concise and provide all the necessary information.

See also:

Tests

Currently, tests run on:

  • The Travis CI service is mainly used to check that the unit tests for pymad itself execute on several python versions. Python{2.7,3.3} are supported. The tests are executed on any update of an upstream branch. The Travis builds use a unofficial precompiled libmadx-dev package to avoid having to rebuild the entire MAD-X library on each invocation.

    Build Status Coverage

License

CPyMAD must be used in compliance with the licenses as described in the following sections:

License for CPyMAD source

applies to the python source of the CPyMAD package:

Copyright (c) 2013-2015, HIT - Heidelberg Ion-Therapy Center

To the extent possible under law, the person who associated CC0 with
CPyMAD has waived all copyright and related or neighboring rights to
CPyMAD.

You should have received a copy of the CC0 legalcode along with this
work. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.

Note that this package is a heavily modified fork of the original cern-cpymad package developed at CERN:

Copyright (c) 2011, CERN. All rights reserved.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use cern-cpymad except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

For details, see the version history or ask the package maintainer.

License for MAD-X

applies to binary distributions that do not require a separate installation of MAD-X, i.e. binaries that are statically linked to MAD-X:

CERN

EUROPEAN ORGANISATION FOR NUCLEAR RESEARCH


Program name:                 MAD --- Methodical Accelerator Design

CERN program library entry:   T5001

Authors or contacts:          mad@cern.ch
                              BE-ABP Group
                              CERN
                              CH-1211 GENEVA 23
                              SWITZERLAND


Copyright CERN, Geneva 1990 - Copyright and any other appropriate legal
protection of this computer program and associated documentation reserved
in all countries of the world. Organisations collaborating with CERN may
receive this program and documentation freely and without charge. CERN
undertakes no obligation for the maintenance of this program, nor
responsibility for its correctness, and accepts no liability whatsoever
resulting from its use. Program and documentation are provided solely for
the use of the organisation to which they are distributed. This program
may not be copied or otherwise distributed without permission. This
message must be retained on this and any other authorised copies. The
material cannot be sold. CERN should be given credit in all references.

Changelog

(dates are in the form dd.mm.yyyy)

0.14.0

Date: 04.03.2016

  • Add function to obtain transfer map

  • Fix bug with expanded_elements listing too many elements (leading elements were re-listed at the end)

0.13.0

Date: 24.01.2016

  • Update to MAD-X 5.02.08:
    • official support

    • automatic tests

    • prebuilt binaries on PyPI (for windows)

0.12.2

Date: 30.10.2015

  • Strip trailing underscore from MadxCommands attribute names. This allows the syntax to be used even for python keywords, e.g. m.command.global_()

  • Change the behaviour of Madx.globals:
    • when setting string values, set the variable as deferred expression

    • when getting deferred variables, return instances of type Expression

    • when iterating, only show non-constant globals

0.12.1

Date: 13.10.2015

  • fix crash due to incorrect parameter name for logging.basicConfig

  • fix crash due to missing subprocess.MAXFD on python3.5

  • fix coverage report submitted to coveralls.io

0.12.0

Date: 05.10.2015

  • expose directory of global MAD-X variables as Madx.globals

  • expose directory of global MAD-X elements as Madx.elements

  • fix a bug with Elements.__contains__ reporting yes incorrectly

  • list only those column of a table that are marked for output

  • add function to get row names of a table

0.11.0

Date: 03.07.2015

  • Remove models + resource handling from cpymad. If you need these, check them out from the previous version and maintain them in your own code base. This way you are much more flexible to adapt models to your needs.

0.10.8

Date: 02.07.2015

  • Public element names are now of the form “foo[3]” or simply “foo”. The syntax “foo:d” can not be used anymore (this form is used by MAD-X only internally and converted at the lowest wrapper level).

  • Fix exception when not specifying sequence name on Madx methods

0.10.7

Date: 21.06.2015

  • allow redirection of MAD-X standard I/O via Madx constructor

0.10.6

Date: 29.05.2015

  • add csv() method for ResourceProvider

  • use C loader from yaml for performance if available

  • convert madx.metadata.get_copyright_notice

  • add accessors to real sequence + elements for model.Sequence

0.10.5

Date: 25.05.2015

  • add MAD-X specific metadata in cpymad.madx.metadata

  • speedup Travis testing (using caches and docker containers)

0.10.4

Date: 22.04.2015

  • prevent MAD-X process from exiting on Ctrl-C (this was an especially nasty feature when using the interactive python interpretor)

  • upgrade to MAD-X 5.02.05 (development release from 10.04.2015)

  • fix leakage of open file handles into remote process on py2/windows

0.10.3

Date: 29.03.2015

  • make sequence.elements.index more convenient: can now handle names with or without the ‘:d’ suffix as well as the special names ‘#s’ and ‘#e’

0.10.2

Date: 05.03.2015

  • add some utility functions to work with MAD-X element names and identifiers

  • add a setter method for values to Madx

  • improve install instructions. In particular, recommend WinPython as build environment

  • fix the MinGW build error due to broken sysconfig inline

  • run setup only if invoked as main script

0.10.1

Date: 09.01.2015

  • convert IOError to RemoteProcessCrashed, which can occur on transmission if the remote process is already down

  • convert ValueError to RemoteProcessClosed, which can occur on transmission if the remote process was already closed

0.10.0 Fork

Date: 09.01.2015

This is the first independent version released for the HIT cpymad fork. The changes on the public API are so heavy, that this is basically a new library.

  • rename package from cern.cpymad to cpymad

  • remove LHC models from repository

  • redesign API to make more use of OOP (no stable API yet!)

  • removed some obsolete / unused modules

0.9

Date: 17.11.2014

  • don’t link against numpy anymore (this makes distribution of prebuilt binaries on windows actually useful)

  • add MAD-X license notice (required to distribute binaries)

  • setup.py doesn’t require setuptools to be pre-installed anymore (if internet is available)

  • some doc-fixes

  • convert cpymad._couch to a simple module (was a single file package)

  • use logging through-out the project

  • alow logger to be specified as model/madx constructor argument

  • multi-column access, e.g.: table.columns['betx','bety']

  • move tests one folder level up

0.8

Date: 30.06.2014

  • isolate cpymad: remove jpymad backend, remove pymad base

  • bootstrap the dependency on numpy

  • remove custom MAD-X path discovery during setup. You should use –madxdir if the library is not installed in a system location.

  • add function libmadx.is_expanded

  • add function libmadx.chdir

  • handle MAD-X table columns with integer arrays

  • make madx.command more powerful (allows **kwargs and attribute access)

  • use inherited pipes for IPC with remote MAD-X processes (allows to forward stdin/stdout separately)

  • close connection to remote process on finalization of LibMadxClient

  • remove MAD-X command checks, recursive_history and filename completion

  • fix name clash

  • fix some bugs

  • rename convenience constructors to cern.cpymad.load_model and cern.cpymad.start_madx due to name clash with module names

0.7

Date: 16.04.2014

  • close handles in remote process properly on all supported python versions

  • rewrite libmadx.get_table functionality

  • madx functions that return tables now return proxy objects instead. For backward compatibility these can be iterated to allow unpacking into a tuple

  • the returned table columns is now a proxy object as well and not TfsTable

  • remove retdict parameter

  • move some cpymad specific functionality into the cpymad package

  • add libmadx/madx functions to access list of elements in a sequence

0.6

Date: 17.03.2014

  • raise exception and don’t hang up anymore, if libmadx process crashes

  • on python>=3.4, close handles in remote process properly

  • let every ‘Madx’ instance have an independent copy of the madx library. this makes the madx module much more useful. previously, this was only true for instances of ‘cpymad.model’.

  • restrict to only one cython module that links to libmadx. (allows static linking which is advantageous on windows!)

  • use YAML model files instead of JSON

  • make ‘madx’ a submodule of ‘cpymad’

  • fix test exit status

0.5

Date: 21.01.2014

  • migrate to setuptools from distutils

  • python3 support

  • add continuous integration with Travis

  • proper setup.py and MANIFEST.in to be used with PyPI

  • rename package to ‘cern-pymad’

  • allow to build from PyPI without having cython

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cpymad-0.14.0.tar.gz (126.9 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

cpymad-0.14.0-py3.4-win-amd64.egg (3.3 MB view details)

Uploaded Egg

cpymad-0.14.0-py3.4-win32.egg (2.9 MB view details)

Uploaded Egg

cpymad-0.14.0-py3.3-win-amd64.egg (3.3 MB view details)

Uploaded Egg

cpymad-0.14.0-py3.3-win32.egg (2.9 MB view details)

Uploaded Egg

cpymad-0.14.0-py2.7-win-amd64.egg (3.3 MB view details)

Uploaded Egg

cpymad-0.14.0-py2.7-win32.egg (2.9 MB view details)

Uploaded Egg

cpymad-0.14.0-cp34-none-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.4Windows x86-64

cpymad-0.14.0-cp34-none-win32.whl (2.9 MB view details)

Uploaded CPython 3.4Windows x86

cpymad-0.14.0-cp33-none-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.3Windows x86-64

cpymad-0.14.0-cp33-none-win32.whl (2.9 MB view details)

Uploaded CPython 3.3Windows x86

cpymad-0.14.0-cp27-none-win_amd64.whl (3.3 MB view details)

Uploaded CPython 2.7Windows x86-64

cpymad-0.14.0-cp27-none-win32.whl (2.9 MB view details)

Uploaded CPython 2.7Windows x86

File details

Details for the file cpymad-0.14.0.tar.gz.

File metadata

  • Download URL: cpymad-0.14.0.tar.gz
  • Upload date:
  • Size: 126.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for cpymad-0.14.0.tar.gz
Algorithm Hash digest
SHA256 4c3be227eb3bdc13d1e847e2cb437502b7ca5d771c0badb734d9020ecb298710
MD5 79e118173d0df4a5f65d66ccb23f1aa2
BLAKE2b-256 556eb83dd20007ca54db729d9e593d1605a7a9a7e86e611e788f396ad8de0960

See more details on using hashes here.

File details

Details for the file cpymad-0.14.0-py3.4-win-amd64.egg.

File metadata

File hashes

Hashes for cpymad-0.14.0-py3.4-win-amd64.egg
Algorithm Hash digest
SHA256 7ec7a8211842822f1f2f73a15af87f2425a624c219ddfdfa50661cfa66163e44
MD5 946014bec855ef7b31551575a06929a3
BLAKE2b-256 9489f4c55a50fb237723a9f4b3fe9842fdc1261c2e551e7f01dba6cf177e1f40

See more details on using hashes here.

File details

Details for the file cpymad-0.14.0-py3.4-win32.egg.

File metadata

File hashes

Hashes for cpymad-0.14.0-py3.4-win32.egg
Algorithm Hash digest
SHA256 c47b306ff2ccd2bb67cb66522377536b622e6699640647dde0917b522e5b5ba7
MD5 c7eaf0a87949c506fadd895cb943ecf3
BLAKE2b-256 7af055c92598e526f1737afe1d2160cc32586c39db682e79aab901df49dd8ffc

See more details on using hashes here.

File details

Details for the file cpymad-0.14.0-py3.3-win-amd64.egg.

File metadata

File hashes

Hashes for cpymad-0.14.0-py3.3-win-amd64.egg
Algorithm Hash digest
SHA256 d7ebf3fd723e726464a56ed36633c81c387966f0d38be0e6b3347d86ef8fa7a3
MD5 44df985356f9e8d9ff5862f5c9f958a8
BLAKE2b-256 ad325970cb7d04fc5423b47c10403935ccc83424b246f6db2d568e4289131016

See more details on using hashes here.

File details

Details for the file cpymad-0.14.0-py3.3-win32.egg.

File metadata

File hashes

Hashes for cpymad-0.14.0-py3.3-win32.egg
Algorithm Hash digest
SHA256 bf1bfeccbb18f4528b9a1204a4538a7d7e082238f3c769bb778776f82603051e
MD5 4c35afdd48dc926bc3ce9c38ec88f18c
BLAKE2b-256 fa1cd4698a77c44faca8c16c8680068466dfecc879de79ea931c474f573f9c3f

See more details on using hashes here.

File details

Details for the file cpymad-0.14.0-py2.7-win-amd64.egg.

File metadata

File hashes

Hashes for cpymad-0.14.0-py2.7-win-amd64.egg
Algorithm Hash digest
SHA256 6dc49ea658d720863f527634affdd046b944d664ccd5c258d5700e91c91ed04c
MD5 6c2420e658137e444f472a9d61a7fd08
BLAKE2b-256 c4ec88e38722bf869485a058e90867de482775d63dd4d0d4fd7fbb1d7fa6330c

See more details on using hashes here.

File details

Details for the file cpymad-0.14.0-py2.7-win32.egg.

File metadata

File hashes

Hashes for cpymad-0.14.0-py2.7-win32.egg
Algorithm Hash digest
SHA256 2299d9b20c2ed4cbae9c2d2694b7643268a3f8e5d51a5203feadefd669243b37
MD5 22e1635c8b2987ceb2d15f4c9991ec3e
BLAKE2b-256 cecfecbce90e0c6bea37b53136b5b0a80294a7713ebb758c85aa047a2d8d6676

See more details on using hashes here.

File details

Details for the file cpymad-0.14.0-cp34-none-win_amd64.whl.

File metadata

File hashes

Hashes for cpymad-0.14.0-cp34-none-win_amd64.whl
Algorithm Hash digest
SHA256 c0cdd6879e041250d762416df826641d20b31b0f44387ab2000f6553c6530982
MD5 986d359f59b330bbd4d7a90345bb03f6
BLAKE2b-256 448a0919f0643a543935a5bfc0b6e890677f0485646a238d911555e2ea73ee8b

See more details on using hashes here.

File details

Details for the file cpymad-0.14.0-cp34-none-win32.whl.

File metadata

File hashes

Hashes for cpymad-0.14.0-cp34-none-win32.whl
Algorithm Hash digest
SHA256 ea41bfe8294d30d6b15dafb9fd4dbf852e44b2193b1c78d7a8d76d708485be6a
MD5 87e0b5e3dec5936b53d7b2c1787046b0
BLAKE2b-256 f9556e03d9f5d5981b7f47b67509170881088bc9b005f6e53ea0fc0e14cd20ef

See more details on using hashes here.

File details

Details for the file cpymad-0.14.0-cp33-none-win_amd64.whl.

File metadata

File hashes

Hashes for cpymad-0.14.0-cp33-none-win_amd64.whl
Algorithm Hash digest
SHA256 a1757ef577e021bbdcb4624e6dbcb084b899f3e4614eda2d35e415b7515db083
MD5 0c1dd9170aa47fc5363303e439a40d54
BLAKE2b-256 4bae11df195753022fcccfc104e65d486d6ad79545bc7585af289e08b3b0de1e

See more details on using hashes here.

File details

Details for the file cpymad-0.14.0-cp33-none-win32.whl.

File metadata

File hashes

Hashes for cpymad-0.14.0-cp33-none-win32.whl
Algorithm Hash digest
SHA256 218e598b392d7dfe41a6eb35d6b471719c14721ee7157e07e6dcd770c62b7bf8
MD5 4e64a8682623cc2b72b0783b66221af7
BLAKE2b-256 5000346ce617a2b9bf6122e2ccadbe1a3bb4a3dc117139a9d2ea0558f830b56b

See more details on using hashes here.

File details

Details for the file cpymad-0.14.0-cp27-none-win_amd64.whl.

File metadata

File hashes

Hashes for cpymad-0.14.0-cp27-none-win_amd64.whl
Algorithm Hash digest
SHA256 993e7eb189e8f2f3a51845f22e968aa61414c3ffdefdcb666bb2898aa73dd259
MD5 913038ce873b6a81eeb6e8e0f743b379
BLAKE2b-256 ef01ced974a23305c57fd76e700916cf8966670d0a4c96c9f4a9303bc72e210a

See more details on using hashes here.

File details

Details for the file cpymad-0.14.0-cp27-none-win32.whl.

File metadata

File hashes

Hashes for cpymad-0.14.0-cp27-none-win32.whl
Algorithm Hash digest
SHA256 4c8429356594228e19b7fbecae7947655ead5eab28fdf1619c71ea790dbdb1d6
MD5 75b426bbf6458c3985095868f4a4a6ae
BLAKE2b-256 3ecb70bf7fb809a4fc2e48426d4710cd2ead102dd96bae306cdece16f5a91389

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page