aboutsummaryrefslogtreecommitdiffstats
path: root/fg21sim/__init__.py
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright yearAaron LI2019-01-191-1/+1
|
* Bump to version 0.7.2v0.7.2Aaron LI2018-07-101-3/+3
|
* Bump to version v0.7.1v0.7.1Aaron LI2018-05-221-10/+2
|
* meta info: add __date__ and change __pkgname__ to "FG21sim"Aaron LI2018-01-201-1/+2
|
* FG21sim: bump to version 0.7.0v0.7.0Aaron LI2018-01-161-1/+1
|
* FG21sim: Bump version to 0.6.5v0.6.5Aaron LI2018-01-021-2/+2
|
* Bump version to 0.6.4v0.6.4Aaron LI2017-12-311-2/+2
|
* fg21sim: Bump version to 0.6.3v0.6.3Aaron LI2017-10-301-5/+5
| | | | | * Update the __init__ description a bit * Add the missing parameter change for ``f_acc``
* Bump version to v0.6.2v0.6.2Aaron LI2017-10-191-1/+1
|
* Bump version to 0.6.1v0.6.1Aaron LI2017-09-261-1/+1
| | | | | | Component "extragalactic/clusters" is tuned and tested to work. Start working on radio relics from galaxy clusters.
* Bump version to 0.6.0, prepare for a new releasev0.6.0Aaron LI2017-08-271-5/+5
| | | | | | | Since last release (0.4.2), too many things have changed ... so skip 0.5.x to emphasis the big update ... Also update the URL to the GitHub one.
* Bump version to 0.4.2 (forgot when tagging)Aaron LI2017-07-201-1/+1
| | | | Signed-off-by: Aaron LI <aly@aaronly.me>
* Update email, url, and copyright yearAaron LI2017-07-201-4/+4
| | | | Signed-off-by: Aaron LI <aly@aaronly.me>
* Bump to version 0.4.1 with important bug fixesv0.4.1Aaron LI2016-12-131-1/+1
| | | | | | | | | | | | | | * Fix two serious bug in "utils/draw.py", which causes the generated ellipses are wrong (like rectangles), and thus leads to wrong simulation shapes for SNRs, clusters, etc. * Also clean up "utils/draw.py" by merging the "_ellipse_in_shape()" function into "ellipse()". * Update "galactic/snr.py" to use the JIT-optimized "Fnu_to_Tb_fast()" function. * Other small changes/updates.
* Bump to version 0.4.0v0.4.0Aaron LI2016-11-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | * Add "products.py" to build the products manifest and manage the simulation products * Finished the "Products" section (original named "Results") for the Web UI * Fix several client-side bugs, now the Web UI works well on Edge and IE v11 * Tune the Web UI styles and layouts * Significantly improved the README.rst * Add the "docs/" with a simple guide and example and test configuration files * Host the required input templates and catalogs on M$ OneDrive, and generate the "data-manifest.json" manifest * Implement the "bin/fg21sim-download-data" to automatically download the required data
* Bump version to 0.3.0v0.3.0Aaron LI2016-11-181-1/+1
| | | | | | | | | | | | | | | | | * Major change to the Web UI. + The WebSocket is only used to push configurations and logging messages to the client; + The configuration manipulations and console operations are implemented using the AJAX techniques; + Modal box is used to notify the AJAX request results, therefore much better user experience. * Several bug fixes to the Web UI. * Minor improvements to the simulation parts. * TODO/problems: + The console task currently still blocks the Tornado IO loop!
* Bump version to 0.2.0v0.2.0Aaron LI2016-11-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | * Following major foregrounds have been implemented: + galactic/synchrotron + galactic/freefree + galactic/snr + extragalacitc/clusters + extragalacitc/pointsources NOTE: this component needs further refactor, improvements, integration and tests * A Web UI build upon the Tornado framework and its WebSocket function is implemented and is already barely usable. + The Web interface is beautiful and reasonable + The configurations manipulation part performs quiet well * However, there are also many problems with the Web UI: + The layout should be more compact and concise + There should be some popup/tooltip to reflect the operation results + The console that start the server task is current *BLOCKING* (i.e., synchronous), however, the WebSocket currently (Tornado v4.3) does not support coroutine for the "on_message" method, which further hampers the problem been solved.
* fg21sim/__init__.py: Do not import from ".foregrounds"Aaron LI2016-10-271-2/+0
| | | | | | | Import from ".foregrounds" involves a lot of imports of other components, which cause a lot of numba JIT compilations. Therefore, the simple "import fg21sim" causes a long lag for running the scripts, e.g., bin/healpix2hpx.
* Add "foregrounds.py" as the interface to foregrounds simulationAaron LI2016-10-181-3/+5
| | | | | This module provides a simple/easy-to-use interface to the simulation of various supported foreground components.
* Rewrite setup.py and update __init__.py accordinglyAaron LI2016-09-271-1/+4
|
* __init__.py: add __url__ and minor fixAaron LI2016-09-271-2/+1
|
* Add logging and update setup configsAaron LI2016-09-251-1/+22
|
* Setup package structuresAaron LI2016-09-201-0/+1
Credit: https://github.com/kennethreitz/samplemod TODO: Add the 'docs' part