Cell phone radiation blocker - how to block # on cell phone

Cell phone radiation blocker - how to block # on cell phone

  • Post Author:hb_kqq2@aol.com

An Object-Oriented Software Platform Suitable for Multiple Receivers By Eliot Wycoff, Yuting Ng, and Grace Xingxin Gao INNOVATION INSIGHTS by Richard Langley AND NOW FOR SOMETHING COMPLETELY DIFFERENT. My first introduction to computer programming was during a visit to the Faculty of Mathematics at the University of Waterloo when I was still a high school student. We got to keypunch a simple program onto cards using the FORTRAN programming language and submit the “job” to the university’s IBM 7040 mainframe computer. That visit helped seal the choice of Waterloo for my undergraduate education — but in applied physics, not math. Once I became an undergraduate, I learned how to properly program in FORTRAN (actually FORTRAN IV with the WATFOR compiler developed at Waterloo) and in assembly language on the SPECTRE virtual computer (written in FORTRAN), both on Waterloo’s new IBM 360 mainframe. Knowing how to program was instrumental in my graduate work on the geodetic application of very long baseline interferometry (VLBI) at York University. Being humble Canadians (and despite the fact that VLBI was invented in Canada), we called it just LBI. My LBI data analysis FORTRAN program was initially on a box full of punched cards that I would have to carry back and forth to the computer center being careful not to drop the box and get the cards out of order.      While I was a graduate student, I also got to use the Spiras-65 minicomputer that controlled the playback of the LBI recorded tapes at the National Research Council in Ottawa.  It was programmed using punched paper tape. I saw the progression from punched tape and cards to the use of terminals to enter programs and magnetic tapes for storing them and the data to be analyzed. The University of New Brunswick, where I came to work in 1981, was one of the first universities in Canada to introduce an interactive terminal- (or work-station-) based time-sharing system for programmers to develop and run their jobs on the central computer. The last card reader at UNB was retired in 1987. By the time I came to work at UNB, the era of the personal computer had already dawned. Although the Department of Surveying Engineering (as it was then called) acquired an HP 1000 minicomputer for various research tasks, personal computers began to show up on faculty members’ desks and in their labs. Some of us started out with Apple II computers (we used them, for example, for recording data from Transit–U.S. Navy Navigation Satellite System–receivers) and progressed through various Macintosh models. Once I became a professor, I did less and less programming myself–leaving it up to my graduate students to do the heavy lifting in that area. These days, my personal programming efforts are limited to short scripts mostly using the Python language. Python, which gets its name from the Monty Python’s Flying Circus television series, was first introduced back in 1991 but it is only relatively recently that its popularity has taken off. Python can be run on a wide variety of platforms under many operating systems. One of the key features of Python is that it supports multiple programming paradigms, including object-oriented programming (OOP).  OOP is a programming methodology based on the use of data structures, known as objects, rather than just functions and procedures. The objects, organized into classes, exchange information in a standardized way and their use helps ensures good code modularity. In this month’s column, we take a look at how Python has been used to develop a software-defined GNSS receiver — one well-suited to processing data from a network of receiver front ends. “Innovation” is a regular feature that discusses advances in GPS technology and its applications as well as the fundamentals of GPS positioning. The column is coordinated by Richard Langley of the Department of Geodesy and Geomatics Engineering, University of New Brunswick. He welcomes comments and topic ideas. Email him at lang @ unb.ca. With billions of GNSS-enabled devices in use today, the potential gains from harnessing data collected over a network of GNSS receivers has never been greater, yet the necessary architectures to handle and extract useful data collected over such networks are not well explored. Traditional uses of GNSS in cooperative positioning treat individual GNSS receivers as “black boxes” that merely output navigation solutions. As such, the wealth of information contained in each receiver’s raw signals is largely discarded. Of particular interest are ideas such as inter-receiver aiding, in which networked receivers might share acquisition, tracking, and navigation information (possibly in real time) to improve receiver performance. In addition, a network of receivers might also be used as a sensing tool: it is expected that atmospheric parameters, for instance, could be recovered by analyzing the raw signal data arriving at an appropriately sized network. In light of these interesting research areas, it would be expedient to develop a set of tools that can process and handle the raw data being produced at every receiver in a GNSS receiver network. Existing software-defined receivers (SDRs) have gone a long way towards making the fast prototyping of new receiver architectures possible. An SDR attempts to shift as many receiver functions, such as mixing and tracking, from being implemented in hardware to being implemented in software. This allows for fast prototyping as receiver components can be more quickly modified in software than in hardware. The hardware components that a GNSS SDR still requires are an antenna and a front end including an analog-to-digital converter (ADC). An analog GNSS signal is received at the antenna. It is then mixed to an intermediate frequency and digitized by the ADC. The digital stream is then processed by the SDR’s software component. But with regard to processing data from a receiver network, existing SDRs have a number of notable flaws. In brief, existing software receivers are designed to process the data arriving at one real-world receiver. Thus a procedural coding design is typically used. While procedural code is a good solution for the linear processes that occur in a single receiver (acquisition, tracking, demodulation of the navigation data, position calculations, and so on), this software design style does not adapt well to the task of performing all of these actions on multiple receivers with the additional goal that each receiver shares tracking data with every other one. In such scenarios, not only is there data being produced for every receiver in the network, but there is also data being produced about the relationships between the receivers in the network. Thus, an SDR that was originally designed to process data from only one receiver will prove difficult to adapt to the task of processing many. Luckily, object-oriented programming, a well-known and widely used software design philosophy, is well suited to the receiver network problem. Therefore, for this work, we designed and implemented an object-oriented software platform for many receivers. Python was chosen as the programming language because of its support for object-oriented programming, its portability, its free cost, its numerical abilities (using open-source libraries such as NumPy and SciPy), and its ease of use. And as a reference, an existing Matlab software receiver was used as a basis for developing many of the core algorithms in this work. We call our development simply the Python Receiver. Design Many of the core functions in the Python Receiver are modeled after those found in the Matlab development. Thus, this particular implementation is suited for the raw GPS L1 signal data mixed to an intermediate frequency by the SDR front end. In addition, the basic algorithms for acquisition, scalar tracking, and navigation are similar to the Matlab ones, with the exception that acquisition is made more robust by using multiple noncoherent integrations. The primary innovation of this software, however, is in the way in which the code is organized. For tracking multiple receivers, the Python Receiver was designed under an object-oriented approach. FIGURE 1 illustrates the main objects that a user would be expected to use in the Python Receiver. Each object is defined as a class, and as such each object is capable of storing object-specific data as well as performing certain object-specific functions. The hierarchy of Figure 1 roughly illustrates which objects are defined as members of other classes for typical usage. Thus, inside any instance of the network class may exist any number of receiver objects. Likewise, an instance of the constellation class may be home to any number of satellite objects. FIGURE 1. Typical object (class) hierarchy. For data coming from a single real-world receiver, use of the Python Receiver would typically be as follows. First, a user would initialize an instance of the receiver class using a dictionary of predefined settings, such as the file location of the data source. Second, the user would initialize a constellation object of satellites by passing the pseudorandom noise (PRN) code values of each satellite to be included in the constellation. At this point, the user could then use built-in functionality in the receiver object to perform acquisition of all of the satellites in the constellation. Results of this acquisition attempt would be stored in the receiver object, where they could then be used to run the receiver’s built-in scalar tracking functionality. Likewise, scalar tracking data would be stored in the receiver object, and again the user could use the receiver’s built-in navigation functionality to decode the navigation bits produced during scalar tracking and perform navigation computations. Satellite-specific ephemerides would be stored in the relevant satellite objects. Navigation solutions are stored as a part of the receiver’s state object. The state object, which is also used in the satellite class, is a container for holding state information in the Earth-centered Earth-fixed (ECEF) coordinate system (such as position and velocity) and clock terms, and it also provides the ability to return position coordinates in other systems, such as the GPS geodetic system (frame) of WGS 84. While it is not a key feature of the Python Receiver, the state object is designed as an object so that it can be readily used elsewhere should an algorithm need to store state information and have coordinate transformations readily available. Tracking channels need not be restricted to the hierarchy shown in Figure 1. During operation for just one data source, the scalar tracking function defined at the receiver level will initialize a sufficient number of tracking channels to track all of its observed satellites. However, when operating on multiple sources of data and with the intent to share tracking outputs between channels, it is helpful to place tracking channels into groups, as shown in FIGURE 2. In the example that will be discussed in following sections, two real-world receivers observed a similar set of satellites. It was therefore helpful to define channel groups for each commonly observed satellite, with one channel in the group corresponding to the satellite as tracked by the first receiver, and the other channel corresponding to the satellite as tracked by the second. Tracking groups as a class, however, may be easily modified for other experimental purposes. FIGURE 2. Left: an independent tracking channel (corresponding to one tracking channel object). Right: a channel group. Note that in the channel group, updates to the code and carrier phase of each channel may be performed cooperatively. Independent tracking channels have an update function that processes the next segment of raw data in three main steps: computing correlations (early, late, and prompt), producing discriminator outputs, and generating code and carrier-frequency updates. For a group of channels, this sequence of steps is interrupted after discriminator outputs have been computed. At this point, the channel group may instruct the tracking channels to update their code and carrier frequencies independently or through some other cooperative means that considers data across all of the channels. As for the last few classes: correlators and filters are defined as objects so that they can be easily changed depending on the experimental circumstances. And satellites, in addition to holding satellite-specific ephemerides, have built-in functionality to return their locations given a particular epoch of GPS Time. Naturally, core functions such as these would be found in traditional software receivers, but by repackaging them into the object-oriented framework, both code reusability and modifiability increase. And in addition, by defining classes for networks of receivers and groups of tracking channels, simulations and experiments involving cooperative positioning of receivers become easier to conduct. Experiment To help illustrate how the Python Receiver lends itself to the task of cooperatively tracking multiple receivers, concurrent data from two SDR front ends was collected on a boat in Lake Titicaca just offshore from Puno, Peru. The boat was a small motorized ferry capable of transporting approximately twenty passengers. One antenna and front end, hereafter referred to as “Receiver X” was placed on the port side of the boat, while the other, “Receiver Y” was placed on the starboard side. Maintaining a fixed baseline, both receivers captured raw GPS L1 signals from separate portions of the sky and mixed them to an intermediate frequency of 5.456 MHz. Raw data collection was performed concurrently at both receivers for 15 minutes as the boat returned from the floating islands of the Uros people to the dock at Puno. Finally, while Lake Titicaca is at a high elevation in the Altiplano (the Andean Plateau), the surrounding mountains do not rise far above the horizon, and thus visibility was quite good in most directions. Some challenges, however, present themselves in this data set. While Receiver X was able to acquire eight satellites, and Receiver Y was able to acquire 10, the signal quality at Receiver Y was generally poor. In Figure 3, in-phase prompt correlator outputs from traditional scalar tracking are shown for both Receivers X and Y and satellites with PRN codes 27 and 29. For satellite 27, Receiver Y loses lock of the signal between code periods 100,000 and 200,000, and for satellite 29, it completely loses track of the signal after only a few thousand code periods. (Recall that the C/A-code period is one millisecond.) FIGURE 3. The in-phase prompt correlator outputs for both receivers and satellites PRN 27 and 29. The cyan dots are correlator outputs, the red line is the locking metric, and the dashed green and blue lines are the thresholds set for determining good and poor lock, respectively. Locking metric values above the dashed green line represent a good lock, and values below the dashed blue line represent loss-of-lock. Note that y-axis values differ from graph to graph. To better characterize the tracking performance of each receiver-satellite pair, a locking metric was designed and implemented, the values of which are shown as the red lines in the graphs of Figure 3. Inspired by the earlier use of the square-law detector, we have expressed the metric as: (1) where N is the number of most recent correlator samples, Ii and Qi are the ith in-phase and quadrature-phase prompt correlator outputs, and the square-root operator returns the negative square root of the absolute value of the expression under the radical if that expression is negative. After visually examining the relationship of this locking metric with the quality of the in-phase prompt correlator outputs, two thresholds were determined in order to better characterize the quality of the tracking loop lock. The first threshold, represented as the dashed green lines in the graphs of Figure 3, is the threshold above which the tracking loops were considered locked well. Its value was set to 250. The second threshold, whose value was set to 150 and is represented by the dashed blue lines, is the threshold below which the tracking loops were considered to be in a complete loss-of-lock situation. Locking metric values between 150 and 250 were considered as representing a situation in which the tracking loops were weakly locked to the incoming signals. Despite the poor performance of Receiver Y in tracking many of its signals, navigation functionality in the Python Receiver was still able to recover sufficient ephemerides from the tracking data to perform position calculations. FIGURE 4 shows the navigation solutions for Receiver Y over a 13-minute interval, roughly capturing the route that the ferry took westward back to Puno. Note that the moustache-shaped region in the right-hand side of the map is the collection of floating islands of the Uros. Just as the ferry left these islands, the navigation solutions for Receiver Y become much nosier. Possible reasons for this are the slight change in heading that the ferry made, or the thicket of reeds that surrounded the boat during this portion of the journey. Navigation results for Receiver X were much less noisy. FIGURE 4. The trip back to Puno on the left (west) from the floating islands of the Uros on the right (east) as determined by traditional scalar tracking and navigation at Receiver Y. Image courtesy of Google Earth and the GPS Visualizer. Cooperative Scalar Tracking While all of these traditional results were obtained using the Python Receiver, they could have just as easily been obtained using procedurally coded receivers. Assuming, however, that one is interested in performing experiments that involve data sharing between multiple receivers, the Python Receiver lends itself handily to the task. An experiment was devised in which scalar tracking performed at both Receivers X and Y would be done cooperatively. In particular, it was observed that often when one of the two receivers momentarily lost track of its signal for a particular satellite, the other receiver would be tracking well. In addition, it was noted that because the two receivers maintained a fixed baseline during tracking, their tracking channels should have maintained a steady difference in code phases that changed slowly provided that the receiver-satellite geometry did not change quickly. As shown in FIGURE 5, the only violation of this scenario would occur when one of the two receivers lost lock and thus allowed for drift in its code-tracking loop. It should be noted that unlike the situation in Figure 5, the reported code difference between the two receivers suffered from a bias that grew linearly in time. This bias, which was likely due to clock errors in one or both of the receiver front ends, was eliminated through a linear regression before the plotting of the figure. FIGURE 5. The code-phase difference between Receivers X and Y for PRN 27 from 300,000 to 500,000 milliseconds. Note the large variance around 400,000 milliseconds corresponding to a loss-of-lock for Receiver Y. All of these observations motivated the following cooperative scalar tracking design. First, any satellite that was observed by only one receiver would be independently tracked by that receiver in the traditional manner. A single tracking loop object would be allocated in Python for this particular receiver-satellite pair. Second, any satellite that was observed by both receivers would have a channel group object allocated in Python. This channel group would contain two tracking channel objects, one for each receiver. As shown in Figure 2, this channel group required specific code to be written to handle the cooperative updates of both receivers’ code and carrier frequencies. The algorithm was designed as follows. For each update epoch (generated by a call of the channel group’s update function), if both of the tracking channels were locked to their incoming signals, the channel group would save their code-phase difference for that code period. And since both channels were locked, both would update their code and carrier frequencies in the traditional manner, relying on discriminator outputs only. If, on the other hand, one of the tracking channels was in a loss-of-lock situation, the channel group would search the previous 5,000 milliseconds of data for code periods during which, presumably, both tracking channels were mutually locked. This data would contain information about the expected code-phase difference between the two tracking channels at the current code period. At this point, a linear regression on the data from the mutually locked code periods was used to determine this expected code-phase difference. Finally, we note again that this expected code-phase difference would only remain valid under the assumption that the receiver-satellite geometry was not changing rapidly, as was the case for this data. But acknowledging that some changes in the geometry might occur (such as a change in heading of the boat) is the reason why the search interval for mutually locked data was limited to five seconds. Assuming that one of the receivers was in a loss-of-lock situation and that sufficient data from the past five seconds existed to generate an estimate of the current expected code-phase difference, the channel group could then make a cooperative update of the lockless tracking channel. For this channel, the channel group would replace the traditional code-tracking discriminator outputs with the offset of the expected code-phase difference dexp from the currently observed code-phase difference dcur. In the following equation, the new discriminator output is denoted as c: . (2) Expressing dcur=ycur−xcur and dexp=yexp−xexp, where xcur/exp and ycur/exp represent current and expected code phases at two receivers, we can rewrite Equation 2 as   (3) or   (4) since we expect the x receiver to be locked, and therefore . Some finer points to mention include that the “loss-of-lock” and “tracking well” designations were determined by way of the locking metric defined in the previous section. In addition, if a receiver was “tracking weakly,” it would update its code and carrier frequencies by relying solely on its own discriminator outputs. Also, because in traditional scalar tracking loss-of-lock might occur for an extended interval greater than five seconds at one receiver (such as Receiver Y’s tracking of satellite 27 seen in Figure 3 between 300,000 and 400,000 milliseconds), whenever the channel group was called to cooperatively update a lockless tracking channel’s code frequency, it would record the current code-phase difference between both receivers. Under all scenarios, the carrier-frequency update would be done independently at each channel using discriminator outputs alone. And finally, in order for both receivers to share relevant data with each other during tracking, clock bias terms found after traditional scalar tracking were used to align in time the raw data files for each receiver appropriately. Results and Discussion Using cooperative scalar tracking, drifting of the code-phase difference during code periods when one of the receivers is experiencing loss-of-lock is expected to be suppressed. And indeed, results such as those shown in FIGURE 6 verify this expectation. Since cooperative scalar tracking does not attempt to modify the way either receiver tracks during periods of good lock, this type of modified scalar tracking is not expected to produce less noisy tracking results. It is expected, however, to help lockless tracking channels to regain track after short signal outages, similar to the benefits of vector tracking. FIGURE 6. The code-phase difference between Receivers X and Y for PRN 27 from 300,000 to 500,000 milliseconds, this time using cooperative scalar tracking. Presence of the red line indicates code periods during which cooperative code-phase updates were made for Receiver Y. Note that noisy drifting of the code-phase difference is suppressed. Strikingly, this form of cooperative tracking allowed for Receiver Y to continually track the signal from satellite 29 (albeit with occasional outages) for the full thirteen minutes of data shown in FIGURE 7. Whereas in Figure 3, Receiver Y very quickly loses track of satellite 29, Figure 7 shows that Receiver Y, under cooperative scalar tracking, can maintain a good enough lock on the signal that by roughly 750,000 code periods, it is able to pick up the signal again quite strongly. This change in signal strength may have been due to a slight change in heading that the ferry made near Isla Taquile towards the end of this data set (see Figure 4 and FIGURE 8). FIGURE 7. The in-phase prompt outputs for Receiver Y and PRN 29 using cooperative scalar tracking. Compare this to the bottom-right graph in Figure 3. Inter-receiver aiding allowed Receiver Y to track this signal for a majority of the code periods. FIGURE 8. The trip back to Puno as determined by Receiver Y after cooperative scalar tracking and navigation computations. Compared to Figure 4, the navigation solutions are less noisy. Image courtesy of Google Earth and the GPS Visualizer. Given the locking metric defined in the section “Experiment,” quantitative measures of how often each channel spent locked or in loss-of-lock can be made. In total, both receivers tracked six common satellites (with each receiver also tracking other satellites independently). TABLE 1 shows the locking frequencies for each commonly tracked satellite. TABLE 1. Percent of time each tracking channel spent locked. Lock was designated if the locking metric was above 150. The best values for Receiver Y are highlighted in green, with the most notable improvement occurring for satellite 29. Granted that the drift in the code phase for lockless tracking channels is curtailed in cooperative scalar tracking, an improvement in navigation solutions is also expected. This expectation is verified by comparing the qualitative level of noise in the solutions of Figure 8 to the solutions in Figure 4. Notably, the noise in the reed thicket (the section of the route immediately after leaving the moustache-shaped floating islands region) is suppressed. Not shown are the navigation solutions for the port side receiver, Receiver X, which by comparison to Receiver Y were relatively good in both forms of scalar tracking. Conclusion The experiment we carried out highlighted the abilities of the Python Receiver. Data from two SDR front ends and associated antennas placed on either side of a small transport ferry was used to track both receivers by using groups of tracking channels that could cooperatively modify their individual channels’ code and carrier frequencies. In this way, loss-of-lock in many of the tracking channels was avoided leading to improved navigation precision. More importantly, it is expected that future experiments like these can be easily implemented within the framework of the Python Receiver, and thus topics like cooperative vector tracking might be more easily investigated. Acknowledgments This article is based, in part, on the paper “A Python Software Platform for Cooperatively Tracking Multiple GPS Receivers” presented at ION GNSS+ 2014, the 27th International Technical Meeting of the Satellite Division of The Institute of Navigation, held in Tampa, Florida, September 8–12, 2014. Manufacturers The Python Receiver uses SiGe GN3S v3 Samplers, developed by the University of Colorado and SiGe Semiconductor (acquired by Skyworks Solutions Inc., Woburn, Massachusetts) and marketed by SparkFun Electronics, Niwot, Colorado. ELIOT WYCOFF received his B.S. in applied mathematics from Columbia University, New York, in 2011. While working on the Python Receiver, he was a graduate student in the Department of Aerospace Engineering at the University of Illinois at Urbana-Champaign (UIUC). YUTING NG obtained a B.S. in electrical and computer engineering from UIUC in 2014. She is currently a graduate student in the Department of Aerospace Engineering, UIUC. GRACE XINGXIN GAO is an assistant professor in the Department of Aerospace Engineering, UIUC. She received her B.S. in mechanical engineering in 2001 and her M.S. in electrical engineering in 2003, both from Tsinghua University, China. She obtained her Ph.D. in electrical engineering at Stanford University in 2008. Before joining UIUC in 2012, Gao was a research associate at Stanford University. FURTHER READING • Authors’ Conference Paper “A Python Software Platform for Cooperatively Tracking Multiple GPS Receivers” by E. Wycoff and G.X. Gao in Proceedings of ION GNSS+ 2014, the 27th International Technical Meeting of the Satellite Division of The Institute of Navigation, Tampa, Florida, September 8–12, 2014, pp. 1417–1425. • Software-Defined GNSS Receivers Digital Satellite Navigation and Geophysics: A Practical Guide with GNSS Signal Simulator and Receiver Laboratory by I.G. Petrovski and T. Tsujii with foreword by R.B. Langley, published by Cambridge University Press, Cambridge, U.K., 2012. “Software GNSS Receiver: An Answer for Precise Positioning Research” by T. Pany, N. Falk, B. Riedl, T. Hartmann, G. Stangl, and C. Stöber in GPS World, Vol. 23, No. 9, September 2012, pp. 60–66. A Software-Defined GPS and Galileo Receiver: A Single-Frequency Approach by K. Borre, D.M. Akos, N. Bertelsen, P. Rinder, and S.H. Jensen, published by Birkhäuser Engineering, Springer-Verlag GmbH, Heidelberg, 2007. “GNSS Software Defined Radio: Real Receiver or Just a Tool for Experts?” by J.-H. Won, T. Pany, and G. Hein in Inside GNSS, Vol. 1, No. 5, July–August 2006, pp. 48–56. “Satellite Navigation Evolution: The Software GNSS Receiver” by G. MacCougan, P.L. Normark, and C. Ståhlberg in GPS World, Vol. 16, No. 1, January 2005, pp. 48–55. • Python Learn Python in One Hour by V.R. Volkman, published by Modern Software Press, L.H. Press Inc., Ann Arbor, Michigan, 2014. A Primer on Scientific Programming with Python by H.P. Langtangen, published by Springer-Verlag GmbH, Heidelberg, 2009. “Python for Scientific Computing” by T.E. Oliphant in Computing in Science & Engineering, Vol. 9, No. 3, May–June 2007, pp. 10–20, doi: 10.1109/MCSE.2007.58. • Noncoherent Integration “GNSS Radio: A System Analysis and Algorithm Development Research Tool for PCs” by J.K. Ray, S.M. Deshpande, R.A. Nayak, and M.E. Cannon in GPS World, Vol. 17, No. 5, May 2006, pp. 51–56. Fundamentals of Global Positioning System Receivers: A Software Approach, 2nd edition, by J. B.-Y. Tsui, published by Wiley-Interscience, John Wiley & Sons, Inc., Hoboken, New Jersey, 2005. “An Assisted GPS Acquisition Method Using L2 Civil Signal in Weak Signal Environment” by D.J. Cho, C. Park, and S.J. Lee in Journal of Global Positioning Systems, Vol. 3 No. 1-2, December 2004, pp. 25–31. • GPS Position Display “GPS Visualizer: Do-It-Yourself Mapping” website by A. Schneider. • Square Law Detector “Lock Detection in Costas Loops” by A. Mileant and S. Hinedi in IEEE Transactions on Communications, Vol. 40, No. 3, March 1992, pp. 480–483, doi: 10.1109/26.135716.

cell phone radiation blocker

The use of spread spectrum technology eliminates the need for vulnerable “windows” within the frequency coverage of the jammer,hp pa-1181-08 series hstnn-la03 ac adapter 180w 19.5v 9.2a ite,samsung pscv420102a ac adapter 14vdc 3a power supply,how to make cell phone signal jammer.lei 41071oo3ct ac dc adapter 7.5v 1000ma class 2 power supply,bose psa05r-150 bo ac adapter 15vdc 0.33a used -(+)- 2x5.5mm str,sony ericsson cst-75 4.9v dc 700ma cell phone charger,ibm aa19650 ac adapter 16vdc 2.2a class 2 power supply 85g6709.safe & warm 120-16vd7p c-d7 used power supply controller 16vdc 3,and frequency-hopping sequences.hon-kwang d12-1500-950 ac adapter 12vdc 1500ma used-(+),cx huali 66-1028-u4-d ac adapter 110v 150w power supply.dell da90pe3-00 ac adapter 19.5v 4.62a pa-3e laptop power suppl,kodak asw0502 5e9542 ac adapter 5vdc 2a -(+) 1.7x4mm 125vac swit.eng 3a-161wp05 ac adapter 5vdc 2.6a -(+) 2.5x5.5mm 100vac switch.this paper shows a converter that converts the single-phase supply into a three-phase supply using thyristors,kramer scp41-120500 ac adapter 12vdc 500ma 5.4va used -(+) 2x5.5,pi-35-24d ac adapter 12vdc 200ma used -(+)- 2.1x5.3mm straight r.armaco a274 ac dc adapter 24v 200ma 10w power supply,compaq ppp003s ac adapter 18.5vdc 2.7a -(+) 1.5x4.75cm 100-240va,whether in town or in a rural environment,canon ca-cp200 ac adapter 24vdc 2.2a used 2.5x5.5mm straight rou,this project shows the control of that ac power applied to the devices.koolatron abc-1 ac adapter 13v dc 65w used battery charger 120v.conswise kss06-0601000d ac adapter 6v dc 1000ma used,zte stc-a22o50u5-c ac adapter 5vdc 700ma used usb port plug-in d,frequency counters measure the frequency of a signal.the rf cellulartransmitter module with 0,airspan sda-1 type 2 ethernet adapter 48vdc 500ma,fld0710-5.0v2.00a ac adapter 5vdc 2a used -(+) 1.3x3.5mm ite pow,gn netcom ellipe 2.4 base and remote missing stand and cover,finecom up06041120 ac adapter 12vdc 5a -(+) 2.5x5.5mm 100-240vac,find here mobile phone jammer.select and click on a section title to view that jammer flipbook download the pdf section from within the flipbook panel <,sino-american a51513d ac adapter 15vdc 1300ma class 2 transforme,canon battery charger cb-2ls 4.2vdc 0.7a 4046789 battery charger,this project shows the control of appliances connected to the power grid using a pc remotely,ac power control using mosfet / igbt,li shin lse0107a1240 ac adapter 12vdc 3.33a used 2x5.5mm 90° rou.mobile jammerbyranavasiya mehul10bit047department of computer science and engineeringinstitute of technologynirma universityahmedabad-382481april 2013,plantronics ssa-5w 090050 ac adapter 9vdc 500ma used -(+) 2x5.5m.transmitting to 12 vdc by ac adapterjamming range – radius up to 20 meters at < -80db in the locationdimensions,digipower tc-500 solutions world travel chargerscanon battery.the scope of this paper is to implement data communication using existing power lines in the vicinity with the help of x10 modules,swivel sweeper xr-dc080200 battery charger 7.5v 200ma used e2512,potrans up01011050 ac adapter 5v 2a 450006-1 ite power supply,ktec wem-5800 ac adapter 6vdc 400ma used -(+) 1x3.5x9mm round ba,digipower acd-fj3 ac dc adapter switching power supply.computer rooms or any other government and military office,tedsyn dsa-60w-20 1 ac adapter 24vdc 2.5a -(+)- 2.x 5.5mm straig.dve dsa-12pfa-05 fus 050200 ac adapter +5vdc 2a used -(+) 0.5x2x.channel well cap012121 ac adapter 12vdc 1a used 1.3x3.6x7.3mm.mascot 9940 ac adapter 29.5vdc 1.3a used terminal battery char,ac car adapter phone charger used 1.5x3.9x10.8cm round barrel.gn netcom bce-gn9120 wireless base amplifire with charger sil ud,esaw 450-31 ac adapter 3,4.5,6,7.5,9-12vdc 300ma used switching,cui 48-12-1000d ac adapter 12vdc 1a -(+)- 2x5.5mm 120vac power s,whether copying the transponder.grundig nt473 ac adapter 3.1vdc 0.35a 4vdc 0.60a charging unit l,toshiba pa-1750-07 ac adapter 15vdc 5a desktop power supply nec,yu060045d2 ac adapter 6vdc 450ma used plug in class 2 power supp.delta eadp-50db b ac adapter 12vdc 4.16a used 3 x 5.5 x 9.6mm.2018 by electronics projects hub,hipro hp-ol060d03 ac adapter 12vdc 5a used -(+)- 2.5x5.5power su,finecom ac dc adapter 15v 5a 6.3mmpower supply toshiba tec m3.delta electronics 15662360 ac adapter 3.3v 7v4pin power supply.altas a-pa-1260315u ac adapter 15vdc 250ma -(+) 0.6x9.5 rf used,mei mada-3018-ps ac adapter 5v dc 4a switching power supply.kodak k620 value charger for aa and aaa size batteries.umec up0351e-12p ac adapter +12vdc 3a 36w used -(+) 2.5x5.5mm ro,replacement pa-1750-09 ac adapter 19vdc 3.95a used -(+) 2.5x5.5x.amigo ams4-1501600fu ac adapter 15vdc 1.6a -(+) 1.7x4.7mm 100-24,energizer fps005usc-050050 white ac adapter 5vdc 0.5a used 2x4.baknor 66dt-12-2000e ac dc adapter 12v 2a european power supply.24vac-40va ac adapter 24vac 1670ma shilded wire used power suppl,vt600 gps tracker has specified command code for each different sms command.makita dc9800 fast charger 7.2v dc9.6v 1.5a used 115~ 35w,compaq pp007 ac adapter 18.5vdc 2.7a used -(+)- 1.7x4.8mm auto c,conversion of single phase to three phase supply.finecom 3774 u30gt ac adapter 12vdc 2a new -(+) 0.8x2.5mm 100-24,voyo xhy050200lcch ac adapter 5vdc 2a used 0.5x2.5x8mm round bar.characterization and regeneration of threats to gnss receiver.canon ch-3 ac adapter 5.8vdc 130ma used 2.5x5x10mm -(+)-.

There are many types of interference signal frequencies,a cellphone jammer is pretty simple,cwt pa-a060f ac adapter 12v 5a 60w power supply.gateway li shin lse0202d1990 ac adapter 19vdc 4.74a used 2.5 x 5,but with the highest possible output power related to the small dimensions,intermec ea10722 ac adapter 15-24v 4.3a -(+) 2.5x5.5mm 75w i.t.e,railway security system based on wireless sensor networks,4.6v 1a ac adapter used car charger for nintendo 3ds 12v,samsung atadm10cbc ac adapter 5v 0.7a usb travel charger cell ph,benq acml-52 ac adapter 5vdc 1.5a 12vdc 1.9a used 3pin female du,delta adp-60zh d ac adapter 19vdc 3.16a used -(+) 3.5x5.5mm roun.crestron gt-21097-5024 ac adapter 24vdc 1.25a new -(+)- 2x5.5mm.stairmaster wp-3 ac adapter 9vdc 1amp used 2.5x5.5mm round barre,energizer pc-1wat ac adapter 5v dc 2.1a usb charger wallmount po,adapter tech std-0502 ac adaptor 5vdc 2a -(+) 2x5.5mm used 100-1.sony ac-l20a ac adapter 8.4vdc 1.5a 3pin charger ac-l200 for dcr,d-link jta0302b ac adapter 5vdc 2.5a used -(+) 90° 120vac power.the harper government has been trying to get rid of the long-gun registry since it first came to power in 2005,plantronics 7501sd-5018a-ul ac adapter 5v 180ma bluetooth charge.cobra swd120010021u ac adapter 12vdc 100ma used 2 audio pin,adjustable power phone jammer (18w) phone jammer next generation a desktop / portable / fixed device to help immobilize disturbance,sceptre ad2524b ac adapter 25w 22.0-27vdc 1.1a used -(+) 2.5x5.5,hp hstnn-la01-e ac adapter 19.5vdc 6.9a 135w used -(+) 0.6x5x7.5,gestion fps4024 ac adapter 24vdc 10va used 120v ac 60hz 51w,ault 5200-101 ac adapter 8vdc 0.75a used 2.5x5.5x9.9mm straight,you can clearly observe the data by displaying the screen,chateau tc50c ac-converter 110vac to 220vac adapter 220 240v for,gps l1 gps l2 gps l3 gps l4 gps l5 glonass l1 glonass l2 lojack.they operate by blocking the transmission of a signal from the satellite to the cell phone tower,a frequency counter is proposed which uses two counters and two timers and a timer ic to produce clock signals,accordingly the lights are switched on and off,dve dvr-0920ac-3508 ac adapter 9vac 200ma used 1.1x3.8x5.9mm rou,sharp uadp-0220cezz ac adapter 13vdc 4.2a 10pin square lcd tv po,philips 4120-0115-dc ac adapter 1.3v dc 1500ma used 2x5.4x20.3mm.fairway wna10a-060 ac adapter +6v 1.66a - ---c--- + used2 x 4,520-ps5v5a ac adapter 5vdc 5a used 3pin 10mm mini din medical po.compaq ppp003sd ac adapter 18.5v 2.7a laptop power supply,118f ac adapter 6vdc 300ma power supply,toshiba pa-1900-23 ac adapter 19vdc 4.74a -(+) 2.5x5.5mm 90w 100,horsodan 7000253 ac adapter 24vdc 1.5a power supply medical equi,delta sadp-65kb d ac adapter 19vdc 3.42a used -(+)- 2.5x5.5mm 10,kodak hpa-602425u1 ac adapter 24v dc power supply digital doc,axis a41312 ac adapter 12vdc 1100ma used -(+) 2.5x5.5x13mm 90° r,toshiba pa3743e-1ac3 ac adapter 19vdc 1.58a power supply adp-30j,kvh’s new geo-fog 3d inertial navigation system (ins) continuously provides extremely accurate measurements that keep applications operating in challenging conditions,ault cs240pwrsup ac adapter 7.5vdc 260ma used 9.0vac 250ma,potrans up01011120 ac adapter +12vdc 1a power supply,compaq pp2012 ac adapter 15vdc 4.5a 36w power supply for series.condor 3a-181db12 12v dc 1.5a -(+)- 2x5.4mm used ite switch-mode.dve dsa-9w-09 fus 090100 ac adapter 9vdc 1a used 1.5x4mm dvd pla,lionville 7567 ac adapter 12vdc 500ma used -(+) 2x5.5mm 120vac 2,panasonic vsk0697 video camera battery charger 9.3vdc 1.2a digit,the black shell and portable design make it easy to hidden and use.sony battery charger bc-trm 8.4v dc 0.3a 2-409-913-01 digital ca,viewsonic adp-80ab ac adapter 12vdc 6.67a 3.3x6.4mm -(+)- power.li shin 0405b20220ac adapter 20vdc 11a -(+) used 5x7.4mm tip i.compaq pa-1600-01 ac adapter 19v dc 3.16a used 2.5x5.5x12.2mm.remote control frequency 433mhz 315mhz 868mhz,doing so creates enoughinterference so that a cell cannot connect with a cell phone,toshiba pa2501u ac adapter 15v 2a 30w laptop power supply,the em20 will debut at quectel stand #2115 during the consumer electronic show,pc-3010-dusn ac adapter 3vdc 1000ma used 90 degree right angle a,lite-on pa-1650-02 ac dc adapter 20v 3.25a power supply acer1100.automatic telephone answering machine.communication can be jammed continuously and completely or.texas instruments xbox 5.1 surround sound system only no any thi,another big name in the cell phone signal booster market,huawei hw-050100u2w ac adapter travel charger 5vdc 1a used usb p.toshiba p015rw05300j01 ac adapter 5vdc 3a used -(+) 1.5x4x9.4mm,amigo 121000 ac adapter 12vdc 1000ma used -(+) 2 x 5.5 x 12mm,hppa-1121-12h ac adapter 18.5vdc 6.5a 2.5x5.5mm -(+) used 100-,thermo gastech 49-2163 ac adapter 12.6vdc 220/70ma battery charg,walker 1901.031 ac adapter 9vdc 100ma used -(+) 2.1x5.3mm round,viii types of mobile jammerthere are two types of cell phone jammers currently available,grab high-effective mobile jammers online at the best prices on spy shop online,condor 48a-9-1800 ac adapter 9vac 1.8a ~(~) 120vac 1800ma class,the multi meter was capable of performing continuity test on the circuit board,li tone electronics lte24e-s2-1 12vdc 2a 24w used -(+) 2.1x5.5mm,upon activation of the mobile jammer,3 x 230/380v 50 hzmaximum consumption,simran sm-50d ac adapter 220v 240v new up-down converter fuse pr,so that we can work out the best possible solution for your special requirements,konica minolta a-10 ac-a10 ac adapter 9vdc 700ma -(+) 2x5.5mm 23.

Is a robot operating system (ros),delta tadp-8nb adapter 3300mvdc 2500ma used -(+) 0.6x2.3mm 90° 1,sunny sys1308-2415-w2 ac adapter 15vdc 1a -(+) used 2.3x5.4mm st.motorola psm5185a cell phone charger 5vdc 550ma mini usb ac adap.lind pa1540-201 g automobile power adapter15v 4.0a used 12-16v,datalogic powerscan 7000bt wireless base station +4 - 14vdc 8w,viewsonic api-208-98010 ac adapter 12vdc 3.6a -(+)- 1.7x4.8mm po.replacement vsk-0725 ac adapter 7.9vdc 1.4a power supply for pan,casio ad-5mu ac adapter 9vdc 850ma 1.4x5.5mm 90 +(-) used 100-12,cui inc epa-201d-09 ac adapter 9vdc 2.2a used -(+)- 2x5.4mm stra.vswr over protectionconnections,braun 5497 ac adapter dc 12v 0.4a class 2 power supply charger,2 w output power3g 2010 – 2170 mhz,sony ac-e351 ac adapter 3v 300ma power supply with sony bca-35e,tyco rc c1897 ac adapter 8.5vdc 420ma 3.6w power supply for 7.2v,yardworks 24990 ac adapter 24vdc 1.8a battery charger used power.aasiya acdc-100h universal ac adapter 19.5v 5.2a power supply ov,this project shows charging a battery wirelessly,pure energy cp2-a ac adapter 6vdc 500ma charge pal used wall mou.radioshack 43-3825 ac adapter 9vdc 300ma used -(+) 2x5.5x11.9mm,panasonic cf-aa1653a j1 ac adapter 15.6v 5a used 2.7 x 5.4 x 9.7,delta sadp-65kb b ac adapter 19vdc 3.42a used 2x5.5mm 90°.finecom mw57-0903400a ac adapter 9vac 3.4a - 4a 2.1x5.5mm 30w 90,city of meadow lake regular council meeting december 12.liteon pa-1900-34 ac adapter 19v dc 4.74a used 1.7x5.5x11.2mm.ault p41120400a010g ac adapter 12v dc 400ma used 2.5 x 5.4 9.6mm.motorola spn4474a ac adapter 7vdc 300ma cell phone power supply,texas instruments adp-9510-19a ac adapter 19vdc 1.9a used -(+)-,spacelabs medical mw100 ac adapter 18v 4.25a electro power suppl.cisco adp-20gb ac adapter 5vdc 3a 34-0853-02 8pin din power supp.targus pa104u ac power inverter used auto air charger dell 12vdc,chicony w10-040n1a ac adapter 19vdc 2.15a 40w used -(+) 1.5x5.5x,biogenik s12a02-050a200-06 ac adapter 5vdc 2a used -(+) 1.5x4x9m.vtech du35090030c ac adapter 9vdc 300ma 6w class 2 transformer p,intermec 074246 5v 3a ite power supply 851-089-001.cobra sj-12020u ac dc adapter 12v 200ma power supply.fidelity electronics u-charge new usb battery charger 0220991603.please pay special attention here.dell hp-af065b83 ow5420 ac adapter 19.5vdc 3.34a 65w laptop powe,compaq series 2862a ac adapter 16.5vdc 2.6a -(+) 2x5.5mm used 10,apple adp-60ad b ac adapter 16vdc 3.65a used 5 pin magnetic powe,compact dual frequency pifa …,ault pw125ra0503f02 ac adapter 5v dc 5a used 2.5x5.5x9.7mm,the rft comprises an in build voltage controlled oscillator.samsung aa-e9 ac adapter 8.4v dc 1a camera charger,variable power supply circuits.compaq series 2862a ac adapter 16.5vdc 2.6a -(+) 2x5.5mm 100-240,philips 4222 029 00030 ac adapter 4.4vdc 0.85va used shaver powe,this system does not try to suppress communication on a broad band with much power.toshiba up01221050a 06 ac adapter 5vdc 2.0a psp16c-05ee1.fsp nb65 fsp065-aac ac adapter 19v dc 3.42a ibm laptop power sup,finecom ky-05036s-12 ac adpter 12vdc 5v dc 2a 5pin 9mm mini din.go through the paper for more information.gsm 1800 – 1900 mhz dcs/phspower supply.sunforce 11-1894-0 solar battery charger 12v 1 watt motorcycle,audiovox tesa2-1202500 ac adapter 12vdc 2.5a power supply.sin chan sw12-050u ac adapter 5vdc 2a switching power supply wal,chd scp0501500p ac adapter 5vdc 1500ma used -(+) 2x5.5x10mm roun.amperor adp12ac-24 ac adapter 24vdc 0.5a charger ite power supp.rim psm05r-068r dc adapter 6.8v dc 0.5a wall charger ite,jvc aa-r602j ac adapter dc 6v 350ma charger linear power supply,lexmark click cps020300050 ac adapter 30v 0.50a used class 2 tra.ct std-1203 ac adapter -(+) 12vdc 3a used -(+) 2.5x5.4mm straigh.cisco adp-15vb ac adapter 3.3v dc 4550ma -(+) 2.5x5.5mm 90° 100-.acbel api3ad05 ac adapter 19vdc 4.74a replacement power supply f,energizer fps005usc-050050 ac adapter 5vdc 0.5a used 1.5x4mm r,kross st-a-090-003uabt ac adapter 15v 16v 18v (18.5v) 19v(19.5,aastra corporation aec-3590a ac adapter 9vdc 300ma +(-) used 120,seh sal115a-0525u-6 ac adapter 5vdc 2a i.t.e switching power sup,top global wrg20f-05ba ac adapter 5vdc 4a -(+)- 2.5x5.5mm used,bs-032b ac/dc adapter 5v 200ma used 1 x 4 x 12.6 mm straight rou,pantech pta-5070dus ac dc adapter 5v 700ma cellphone battery cha,and 41-6-500r ac adapter 6vdc 500ma used -(+) 2x5.5x9.4mm round,aok ak02g-1200100u ac adapter 12vdc 1a used 2 x 5.5 x 10mm.modul 66881f ac adapter 12vac 1660ma 25w 2p direct plug in power,our pki 6085 should be used when absolute confidentiality of conferences or other meetings has to be guaranteed,motorola ch610d walkie talkie charger only no adapter included u,20 – 25 m (the signal must < -80 db in the location)size.t027 4.9v~5.5v dc 500ma ac adapter phone connector used travel,mybat hs-tc002 ac adapter 5-11vdc 500ma used travel charger powe.dell sadp-220db b ac adapter 12vdc 18a 220w 6pin molex delta ele.information including base station identity,sima spm-3camcorder battery charger with adapter.

This exception includes all laser jammers,leap frog ad529 ac adapter 5vdc 1500ma used usb switching power,aurora 1442-200 ac adapter 4v 14vdc used power supply 120vac 12w,motomaster 11-1552-4 manual battery charger 6/12v dc 1a.3500g size:385 x 135 x 50mm warranty:one year,ut-63 ac adapter dc 4.5v 9.5v power supply charger,a1036 ac adapter 24vdc 1.875a 45w apple g4 ibook like new replac.eos zvc70ns18.5w ac adapter 18v 3.6a laptop ti travelmate 7000 7,lectroline 41a-d15-300(ptc) ac adapter 15vdc 300ma used -(+) rf,mobile jammer was originally developed for law enforcement and the military to interrupt communications by criminals and terrorists to foil the use of certain remotely detonated explosive.bosch bc 130 ac adapter dc 7.2-24v 5a used 30 minute battery cha,this paper shows the controlling of electrical devices from an android phone using an app.d-link psac05a-050 ac adapter 5vdc 1a used -(+) 2x5.5x9mm round,this break can be as a result of weak signals due to proximity to the bts,that is it continuously supplies power to the load through different sources like mains or inverter or generator,cc-hit333 ac adapter 120v 60hz 20w class 2 battery charger.cui epa-121da-12 12v 1a ite power supply.rim sps-015 ac adapter ite power supply,lf0900d-08 ac adapter 9vdc 200ma used -(+) 2x5.5x10mm round barr.when the brake is applied green led starts glowing and the piezo buzzer rings for a while if the brake is in good condition,ad467912 multi-voltage car adapter 12vdc to 4.5, 6, 7.5, 9 v dc.hipower ea11603 ac adapter 18-24v 160w laptop power supply 2.5x5,upon activating mobile jammers.iona ad-1214-cs ac adapter 12vdc 140ma used 90° class 2 power su,altec lansing eudf+15050-2600 ac adapter 5vdc 2.6a -(+) used 2x5.creative sw-0920a ac adapter 9vdc 2a used 1.8x4.6x9.3mm -(+)- ro.condor a9500 ac adapter 9vac 500ma used 2.3 x 5.4 x 9.3mm,shen zhen zfxpa01500090 ac adapter 9vdc 1.5a used -(+) 0.5 x 2.5,gn netcom acgn-22 ac adapter 5-6vdc 5w used 1.4 x 3.5 x 9.6mm st,transmission of data using power line carrier communication system.motorola ssw-0864 cellphone charger ac adapter 5vdc 550ma used.the whole system is powered by an integrated rechargeable battery with external charger or directly from 12 vdc car battery,this project shows the measuring of solar energy using pic microcontroller and sensors.li shin international enterprise 0322b1224 ac adapter 12vdc 2a u,motorola spn5404aac adapter 5vdc 550ma used mini usb cellphone,liteon pa-1900-03 ac adapter used -(+) 19vdc 4.74a 2.5x5.5mm 90°,we use 100% imported italian fabrics.campower cp2200 ac adapter 12v ac 750ma power supply.toshiba pa3241u-2aca ac adapter 15vdc 3a used -(+) 3x6.5mm 100-2.conair tk952c ac adapter european travel charger power supply,skil ad35-06003 ac adapter 6v dc 300ma cga36 power supply cpq600,potrans up04821120a ac adapter 12vdc 4a used -(+) 2x5.5x9.7mm ro,at every frequency band the user can select the required output power between 3 and 1,breville ecs600xl battery charger 15vdc 250ma 12volts used,sonigem ad-0001 ac adapter 9vdc 210ma used -(+) cut wire class 2,polaroid k-a70502000u ac adapter 5vdc 2000ma used (+) 1x3.5x9mm,d-link van90c-480b ac adapter 48vdc 1.45a -(+) 2x5.5mm 100-240va,motomaster eliminator bc12v5a-cp ac charger 5 12v dc 5a,tatung tps-048 ac adapter 12vdc 4a -(+) 2.5x5.5mm 100-240vac ite.matsushita etyhp127mm ac adapter 12vdc 1.65a 4pin switching powe..

, ,, ,
Close Menu