项目作者: robin-schneider

项目描述 :
A python CICY toolkit
高级语言: Python
项目地址: git://github.com/robin-schneider/CICY.git
创建时间: 2019-05-27T13:40:57Z
项目社区:https://github.com/robin-schneider/CICY

开源协议:GNU General Public License v3.0

下载


Archiving this repository as I won’t be working on this anymore after having finished my PhD research.

pyCICY

A python CICY toolkit, which allows the computation of line bundle cohomologies over Complete Intersection Calabi Yau manifolds. It further contains functions for determining various topological quantities, such as Chern classes, triple intersection and Hodge numbers.

Installation is straighforwad with pip

  1. pip install pyCICY

or get the latest version

  1. pip install --upgrade git+https://github.com/robin-schneider/CICY.git

Quickstart

We import the CICY object from the module

  1. from pyCICY import CICY

Next we define a CICY, for example the tetraquadric:

  1. M = CICY([[1,2],[1,2],[1,2],[1,2]])

Now we are able to do some calculations, e.g.

  1. M.line_co([1,2,-4,1])

determines the hodge numbers of the line bundle L = O(1,2,-4,1).

Since the rank computation takes the most time we included SpasM - github. The rank_hybrid executable of SpaSM has to be in your $PATH.

  1. T = CICY([[1,2,0,0,0],[1,0,2,0,0],[1,0,0,2,0],[1,0,0,0,2],[3,1,1,1,1]])

and do some computations:

  1. T.line_co([3,-4,2,3,5], SpaSM=True)

Documentation

Documentation can be found on readthedocs pyCICY.

Literature

The module has been developed in the context of the following paper:

  1. @article{Larfors:2019sie,
  2. author = "Larfors, Magdalena and Schneider, Robin",
  3. title = "{Line bundle cohomologies on CICYs with Picard number two}",
  4. eprint = "1906.00392",
  5. archivePrefix = "arXiv",
  6. primaryClass = "hep-th",
  7. reportNumber = "UUITP-18/19",
  8. doi = "10.1002/prop.201900083",
  9. journal = "Fortsch. Phys.",
  10. volume = "67",
  11. number = "12",
  12. pages = "1900083",
  13. year = "2019"
  14. }
  15. `

Further literature can be found here:

  1. @book{Hubsch:1992nu,
  2. author = "Hubsch, Tristan",
  3. title = "{Calabi-Yau manifolds: A Bestiary for physicists}",
  4. publisher = "World Scientific",
  5. address = "Singapore",
  6. year = "1994",
  7. ISBN = "9789810219277, 981021927X",
  8. SLACcitation = "%%CITATION = INSPIRE-338506;%%"
  9. }
  10. @phdthesis{Anderson:2008ex,
  11. author = "Anderson, Lara Briana",
  12. title = "{Heterotic and M-theory Compactifications for String
  13. Phenomenology}",
  14. school = "Oxford U.",
  15. url = "https://inspirehep.net/record/793857/files/arXiv:0808.3621.pdf",
  16. year = "2008",
  17. eprint = "0808.3621",
  18. archivePrefix = "arXiv",
  19. primaryClass = "hep-th",
  20. SLACcitation = "%%CITATION = ARXIV:0808.3621;%%"
  21. }

The SpaSM library can be found here: github

  1. @manual{spasm,
  2. title = {{SpaSM}: a Sparse direct Solver Modulo $p$},
  3. author = {The SpaSM group},
  4. edition = {v1.2},
  5. year = {2017},
  6. note = {\url{http://github.com/cbouilla/spasm}}
  7. }

Useful software

pyCICY works nicely with Sage. Other useful packages for dealing with Calabi Yau manifolds in toric varieties are cohomCalg and PALP.