Skip to main content

Posts

Radiation Angle of the Project TouCans dipole Part III

 OK, let's maybe wrap this up. Spoiler: I developed more cool new stuff, but didn't wrap this up. Recap: I set out to see what it would take to map the skips for a QSO, and then try to extrapolate those back to the launch angle of the dipole that KO6BTY and I use for Project TouCans  at our home QTH . Along the way, I learned a lot including another use for the cross product. I also remembered, just now, that dipoles can have more than one launch angle. Taken from Radio Antenna Engineering That'll be important later. Today, as promised, I tried the three skip solution. Here's the angle of radiation from the SF station with three skips. But what's the numeric quantity for the angle in degrees? Well, I worked through yet more math. It's getting easier though. I added the code for the cross product of two vectors (position vectors in our case) as well as the usage I'm making of the cosine and sine laws to to earthmid.py . The numeric result of three skips is 7...

Radiation angle of the Project TouCans dipole part II

Let's get going. Here's the figure explaining the formula we'll be using. It's the one I alluded to yesterday. The formula of which I speak will tell us the minimum F2 height required for a radio signal to skip off the ionoshphere and back to another station. The geometry used to derive the formula has a single constraint: the lowest angle, (radiation angle), the radio signal is allowed to leave the transmitting antenna at is 0 degrees—in otherwords, parallel with and tangential to the ground. The formula will be used in a larger application to programmatically determine the number of skips that are required to make a QSO via the F2 layer of the ionosphere. I'll explain more in a bit. Picking up where we left off yesterday, we're using the measured height of the ionosphere in Pt. Arguello ~330km, and we're assuming the signal skipped twice, (remember that in yesterday's post we saw that if the signal only skipeed once, the only way to reach Sweden was in...

Dipole Radiation Angle

 Just an on paper, (so to speak), example of how to do the F2 mapping for QSOs, (and why it's more complicated than it appears at first), today. Let's consider this QSO to Sweden from San Francisco: Retrieving the F2 height data immediately led me to the conclusion that the mapping app has to work in spacetime, (sadly, that's not a relativistic reference), as opposed to just in sapce. Here's the output of the Pt. Arguello ionosonde for the times around that QSO: Notice that there is no value for hmF2 (the maximum estimated height of the F2 layer) at the actual time of the QSO. I'll need to work on statistical data selection as a result, but for now, I'm just going to go with 330 km as an estimate of what the height was at the time of the QSO. Here's what the path along the Earth looked like Turning on the current implementation of F2 mapping reveals we'll have lots of things to look at But the reason I'm writing today is that skip coming from undergr...

datasette-haversine-point-to-path Initial Release

 I made the first release of the package yesterday. The case for finding the shortest distance from the point to the path when the distance is not along a perpendicular to the path has been implemented . The package has been released with the tag 0.1 .

datasette-haversine-point-to-path

 I got to play around with spherical trig last week under the guise of improving the accuracy of the model that KO6BTY's and my F2 skip maps utilize.  Today, I took the first steps towards formalizing the algorithm I modeled into a datasette plugin so we can use our kml plugin to create skip maps (I'll probably also add a configuration flag to turn skip mapping on and off.) Using datasette-haversine as a model, I created datasette-haversine-point-path . The new plugin allows users to specify three lat/lng pairs that define the enpoints of a QSO and the location of an ionosonde. Given this information, the newly defined sqlite method will return the shortest distance between the ionosonde and the QSO's propagation path along the Earth. (I still need to add the special case where the shortest distance to the path is in fact between the ionosonde and one of the endpoints. I'll talk about this in my next post.) I re-puprosed the test case from datasette-haversine as wel...

Weeknotes: Stabilizing the PicoW Autokeyer; Ionosonde Distance to a QSO Path; Starting Google Visualization Conversions

 The gang, (12 year-old Diaze aka KO6BTY, 11 year-old Mota, and 8 year-old Tawnse), and I did things with vector cross products, operated Raspberry Pis in the face of radio frequency interference (RFI) and started to update the ham radio exams Javascript charting package calls this week. Ionosphere and Cross Products KO6BTY and I put together kml files that show the approximated F2 skip of a QSO last year. The maps are very approximate because they only take the Pt Arguello ionosonde down the coast from us into consideration. To determine what other ionosondes to use data from, we needed to know how far each of the ionosondes was from the path between an arbitrary pair of QSO stations. In other words, we needed to work with spherical trigonometry. The first step was to figure out the algorithm. The solution was easy to find on StackOverflow, but it was hard to picture at first. I fixed that by getting back into using Sage for demos . The final step is shown below. Raspberry...

Calculating the Shortest Distance from an Ionosonde to a QSO Path Using Sage, Cross Products, and Geometry

 I've run into an interesting math problem. Project TouCans occasionally makes dx contacts. That's not a problem, that's actually really awesome! However, KO6BTY and I would like to be able to map the F2 skips our radio signal makes on its way to the receiving station. We have plenty of data about the F2 layer of the ionosphere that is captured by ionosondes around the world. The issue is how do we determine which set of ionosonde data to use? Our first guess is that we should use the ionosonde closest to the path of the signal at any point. OK... Now, how do we determine that? First, we'll calculate the shortest distance from each ionosonde to the path of the QSO between ham radio stations. Then, we can sort the distances so that we can only include the ionosondes that are closest to the path. Armed with that data, we can perhpas used the distances to calculate a weighted,  estimated height of the F2 layer at any point along the signals path as it skips from ...