Directory branches/lsl-1.0.x/lsl/sim/

Total Files:
11
Deleted Files:
0
Lines of Code:
3154

[root]/branches/lsl-1.0.x/lsl/sim

Lines of Code

branches/lsl-1.0.x/lsl/sim/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
jdowell 28 (100.0%) 3217 (100.0%) 114.8

Most Recent Commits

jdowell 2015-06-22 11:18 Rev.: 1838

'import numpy', not 'import numpy as n'.

1 lines of code changed in 1 file:

  • branches/lsl-1.0.x/lsl/sim: vis.py (+1 -1)
jdowell 2015-06-22 11:08 Rev.: 1837

Fixed a bug in the lsl.sim.vis.buildSimData() function that caused the antenna gain pattern to be calculated incorrectly for the baseline pair.

1 lines of code changed in 1 file:

  • branches/lsl-1.0.x/lsl/sim: vis.py (+1 -1)
jdowell 2015-04-14 13:11 Rev.: 1829

Small cleanups to various bits of code to help support circular polarizations and fix a few script problems.

3 lines of code changed in 1 file:

  • branches/lsl-1.0.x/lsl/sim: vis.py (+3 -1)
jdowell 2015-03-25 10:43 Rev.: 1825

Fixed the 'bug', although that might not be the right term, uncovered in r1824 with the ArraySim package in both the development trunk and the 1.0.x branch.

4 lines of code changed in 1 file:

  • branches/lsl-1.0.x/lsl/sim: vis.py (+4 -2)
jdowell 2014-10-02 10:54 Rev.: 1730

Changed the meaning of the 'ForceGaussian' keyword in lsl.sim.vis.buildSimArray() so that the Gaussian FWHM is specified instead of the strange 'sqrt(2)*sigma' that it was before (if it was even that).

30 lines of code changed in 1 file:

  • branches/lsl-1.0.x/lsl/sim: vis.py (+30 -13)
jdowell 2014-10-02 10:11 Rev.: 1727

Added in a new lsl.misc.rfutil module to help with understanding RF antenna parameters. This will help in converting things like gains in dBi or dBd into more meaningful value in K/Jy. Moved the calculateSEFD() function out of lsl.sim.vis and into the new lsl.misc.rfutil module where it is a better fit.

7 lines of code changed in 1 file:

  • branches/lsl-1.0.x/lsl/sim: vis.py (+7 -37)
jdowell 2014-09-10 09:55 Rev.: 1724

Fixed a typo that caused the automatic testing of r1723 to fail.

1 lines of code changed in 1 file:

  • branches/lsl-1.0.x/lsl/sim: vis.py (+1 -1)
jdowell 2014-09-10 09:46 Rev.: 1723

Looks like I forgot to change 'import numpy as n' to 'import numpy' to account for many of the changes in r1722.

1 lines of code changed in 1 file:

  • branches/lsl-1.0.x/lsl/sim: vis.py (+1 -1)
jdowell 2014-09-10 09:45 Rev.: 1722

First pass at adding in new functions to lsl.sim.vis to make it easy to add in baseline noise that is related to the system performance and setup.

216 lines of code changed in 1 file:

  • branches/lsl-1.0.x/lsl/sim: vis.py (+216 -112)
jdowell 2014-08-06 18:34 Rev.: 1707

Fixed a few more data dictionary close out problems.

5 lines of code changed in 1 file:

  • branches/lsl-1.0.x/lsl/sim: vis.py (+5 -2)
jdowell 2014-07-21 17:01 Rev.: 1700

Added a call to the data dictionary 'close' function in lsl.sim.vis.buildSimArray to help keep the number of open files down.

2 lines of code changed in 1 file:

  • branches/lsl-1.0.x/lsl/sim: vis.py (+2 -1)
jdowell 2014-04-17 10:56 Rev.: 1639

More work on the new simfast module to include source resolution effects. Source can now be modeled by as either point sources or as uniformly illuminated disks (similar to AIPY). This change involves moving in some of the cephes code from the SciPy repository and repackaging it in a stand alone fashion. Also, there have been several bug fixes in lsl.sim.vis and lsl.imaging.utils to work with data dictionaries that have only a single frequency channel.

1665 lines of code changed in 10 files:

  • branches/lsl-1.0.x/lsl/sim: const.c (new 231), j1.c (new 524), mconf.h (new 151), mtherr.c (new 115), polevl.c (new 100), protos.h (new 23), sf_error.c (new 65), sf_error.h (new 31), simfast.c (+117 -22), vis.py (+308 -43)
jdowell 2014-04-02 13:24 Rev.: 1626

Added a new 'flatResponse' keyword to lsl.sim.vis.buildSimData to help toggle on and off the spectral and spatial response of the array being simulated.

36 lines of code changed in 1 file:

  • branches/lsl-1.0.x/lsl/sim: vis.py (+36 -20)
jdowell 2014-02-27 18:07 Rev.: 1583

Removed a couple of debugging printf statements that were left in simfast.c.

2 lines of code changed in 1 file:

  • branches/lsl-1.0.x/lsl/sim: simfast.c (+2)
jdowell 2014-02-27 17:47 Rev.: 1580

Major overhaul of the lsl.sim.vis module to use a new C-based simuation extension instead of the pure-Python AIPY code. There are a couple of assumptions in here, like all of the antennas have the same bandpass and gain pattern, but they are relatively tame. Also added a method to the AntennaArray class that can update the bandpass used for the ASP setting that is being simulated.

494 lines of code changed in 2 files:

  • branches/lsl-1.0.x/lsl/sim: simfast.c (new 343), vis.py (+151 -51)
jdowell 2014-02-14 15:29 Rev.: 1565

Added a function to the LDP module that tries to figure out what the correct LDPFileBase sub-class to use for a file. Fixed a long standing (and secret) bug in the lsl.sim.drx module that caused some I/Q values to be packed incorrectly. Improved the coverage of the test_fakedata.py test suites. Another attempt at tweaking test_imaging.py to improve the coverage of the lsl.imaging.utils module.

7 lines of code changed in 2 files:

  • branches/lsl-1.0.x/lsl/sim: drx.py (new)
jdowell 2013-11-22 14:46 Rev.: 1498

Created a new branch for LSL 1.0.x and incremented the version on the development trunk.

742 lines of code changed in 1 file:

  • branches/lsl-1.0.x/lsl/sim: vis.py (new 742)
Generated by StatSVN 0.7.0