Recent Posts

Pages: [1] 2 3 4 5 6 ... 10 Next
1
RF, Microwave, Ham Radio / Re: Dipole Antenna Length
« Last post by Fried Chicken on Today at 05:21:49 am »
Fried Chicken: unfortunately, this thread has diverged from your quite reasonable beginner's questions about antenna theory, into an argument between experts seeking to demonstrate who among them is the bigger expert. Perhaps said experts could take their dispute elsewhere?

Let's come back to your questions.

I still want to know what's going on with the dipole antenna length.  If I have a dipole antenna at full wavelength, wouldn't it pick up exactly nothing in a theoretical perfect world?  Would it cancel out?  If that guy's video is to be believed this is exactly the case....

That video is, quite simply, wrong.

The argument it presents is that in a full wavelength dipole, you would need to have currents travelling in opposite directions within each element, and that those opposing currents would have to cancel each other out, resulting in nothing being radiated from or received in the antenna.

But the whole idea of those opposite currents cancelling out is false in the first place. The narrator seems to think that either you can't have two currents flowing in opposite directions within the same piece of wire, or that if you do, their effect will somehow cancel out such that there is no radiation from the antenna.

But when talking about AC, it is perfectly normal to have different currents flowing at different points along a wire. In fact it's impossible not to. Whenever you have an AC current flowing in a wire, then the current in that wire will vary, all the way from one direction to the other and back again, at intervals of one wavelength all the way along the length of the wire.

Those "opposite" currents at different points do not cancel out, because they are not in the same places. In fact, they are all part of the same AC current. An AC current does not just vary over time: it also varies over space.

And their conclusion, that a full-wave dipole could not radiate, is also false. In reality a full wave dipole will radiate or receive just fine.

The reasons that half-wave dipoles are preferred are practical, rather than fundamental:

- A resonant antenna acts as a filter that preferentially receives or transmits a particular frequency.
- A half-wave dipole is the shortest resonant antenna for a given frequency, and therefore the smallest and cheapest to build.
- The impedance at the centre of a half-wave dipole is one that is easy to work with.

These properties are of great concern when e.g. building a transmitting station at long wavelengths, but in your case, none of them are critical:

- Your receiver is very capable of selecting what frequency to listen to and filtering out others; a resonant antenna can help, but isn't essential.
- In the case of your rabbit-ears antenna, you're free to vary its length to whatever works best within its range; there's no cost to extend it fully.
- Your receiver has more than enough variable gain to compensate for loss due to the antenna impedance not matching that of the radio.

As such, you're quite likely to find that a different configuration - e.g. extending the rabbit ears fully to get a larger antenna which can collect more of the available signal - will get you better results than trying to achieve a half-wave dipole configuration.

But is a radio measuring across the two sides of the dipole, or is it measuring across the two sides of the dipole and then the ground?  Maybe I should ask this in a physics forum.  I really want an ideal theoretical answer, not a practical one.  I believe it's a simple question and there should thus be a simple answer no?

Simple answer: it is measuring across the two sides of the dipole. There doesn't need to be any "ground" involved. A dipole antenna works just fine floating in space. Having a planet nearby is a complication, rather than a requirement, for this type of antenna.

More correct answer: it is not really measuring across the two "sides", but rather measuring at the feed point. By the feed point, I mean the point in the middle where the antenna has been split. Usually for a half-wave dipole this is in the middle, but you can place the feed point anywhere. The position of the feed point will determine the impedance seen by a radio connected at that point.

This offers a lot of clarity, and explains how I can pick up frequencies my antenna theoretically shouldn't pick up.  The radio picks up FM stations without any antenna attached at all!   I tried finding Walter Lewin's lecture where he explains and builds a working radio antenna (and trolls Harvard by making an illegal broadcast in their name).
2
Repair / Re: HP54600B with spike problem with and without signal
« Last post by iMo on Today at 05:20:37 am »
The U33 is a standard cmos sram (32kB). It could be a solder joint gets crappy. What will happen if you press a little bit on its package?
3
Microcontrollers / STM32H7 mbed timeout issues.
« Last post by DaveBy2 on Today at 05:13:05 am »
Hi All
I am having trouble using Timeout.    From my main loop if i write to my LCD i want to set a timer for 10sec for the backlight.  Then turn off backlight after the 10sec.    I can get this and the callback routine routine to work quite simply.   But i think there is exception if the timout interupt is called when the LCD is in the middle of doing something.   This is my code.

Code: [Select]
using namespace std::chrono;

Timeout toutTest;
Timer timerTest;
volatile bool lcdTimmerFlag =0 ;

  // Print to LCD
  /*!
    @param    Message       [in] String or character for LCD to Print
    @param    clearLcdFirst [in] Clear screen first, Yes No
    @param    Pos           [in] Position of cursor, Default = 0
    @param    Line          [in] Line number, 0 = ist line, 1 = 2nd Line, Default = 0
  */
    void lcdPrint (const char* Message, bool clearLcdFirst = true,int Pos =0,
                   int Line =0){
        microseconds toutRemain = toutTest.remaining_time();
        timerTest.stop();

        if (clearLcdFirst == true) {lcd.clear();}
        lcd.setCursor(Pos,Line);
        lcd.print(Message);

        if (lcdTimmerFlag == FALSE){
         
          lcdBackLight(ON);
          timerTest.start();
           toutTest.attach(&lcdBackLightOff, 10s);
           lcdTimmerFlag = TRUE;

        } else { 
          timerTest.start();
          toutTest.attach(&lcdBackLightOff, toutRemain);
         }
      }
  //

  void lcdBackLightOff() {
    timerTest.stop();
    toutTest.detach();
    lcdBackLight(OFF);
    lcdTimmerFlag = FALSE;
    }

I belive i cant disable the interupt so i have attempted to: 1, stop the timer,  2, read the 'timeout.remaining_time()'  3, DO LCD instructions  4, reattached timeout with remainder.

Am i completly barking up the wrong tree here?

a few other problems i am having is the following line in PIO is always <opimised out> .   So it cant be used.
Code: [Select]
microseconds toutRemain = toutTest.remaining_time();
if i volitile it ie
Code: [Select]
volatile microseconds toutRemain = toutTest.remaining_time();  then the line   
Code: [Select]
toutTest.attach(&lcdBackLightOff, toutRemain); brings up a TYPE error.

Any experience or examples would be greatly appreciated.  Cheers
4
Thanks for the replies, they were very helpful. I did not think about the holding current having a threshold. That actually makes sense and is evidently reason that R320 resistor is there. I'll review my circuit to see if that is the problem. I tested using an appropriate limiting resistor on a low-voltage bench setup and it unlatches properly (I'm using the 70TPS16 SCR for my circuit, which has a holding current of 40mA).

Also, another thing to think about; is the fact that the microcontroller could potentially just shut off the HT power supply after the flash trigger signal is sent. That would guarantee that the SCR opens (eventually).

Thanks for the help!
5
Computers / proving video plagiarism with compression artifacts
« Last post by NiHaoMike on Today at 05:03:44 am »
How difficult (or even possible) would it be to prove that video B that looks identical to video A is in fact a plagiarized copy of A that has since been reencoded? (And not vice versa.) My understanding is that A would have the compression artifacts from its encoding process, while B would have compression artifacts from its own encoding as well as compression artifacts of A that didn't get masked.
I'm aware that there are "watermarking" algorithms specifically designed for that, my question is if the original compression artifacts can act as that watermark.
6
Test Equipment / Re: Test Equipment Anonymous (TEA) group therapy thread
« Last post by m k on Today at 05:03:11 am »
Two first from my ePay listing.
How are JP/AUS/NZ prices?

US $286.99
https://www.ebay.com/itm/386303397053

US $368.90
https://www.ebay.com/itm/225760054258

My device is MY44 and old style buttons.
7
Security / Re: Putty/FileZilla - Keygen Vuln
« Last post by Halcyon on Today at 04:58:48 am »
Revoke and regenerate keys on the server end as well.
8
Beginners / Re: How can I make DIY Isolation Transformer?
« Last post by dietert1 on Today at 04:57:01 am »
Our isolation transformer has been used for scope work on switched power supplies - to separate circuits normally connected to mains. Yes, this work is dangerous and only for experienced techs aware of the risks involved.
A DR is for a different purpose and working on a mains connected device with difference probes is as dangerous. The light bulb is a auto-reset fuse. It doesn't prevent accidents, like touching metal parts with a loose probe Gnd clip. Better use a separate ground wire and pull the clips from the probes. And avoid probes with a 1:1 - 10;1 switch when working on a mains circuit and don't do this type of work at night when you are getting tired.

An isolation transformer can also help to break ground loops in analog audio. This applies to semi-professional equipment without ground lift. Once more a situation that requires knowledge and experience to maintain safety.

Regards, Dieter
9
Microcontrollers / Re: rp2040 MCU pll derived clocks jitter?
« Last post by iMo on Today at 04:53:13 am »
@iMo how did you come to the conclusion the clock jitters?

I did not come to the conclusion the clock jitters, I've been asking here on some measurement data availability, if any.
10
Unless the special snowflake driver is strictly required for boot, I think I would first install normally, then make sure everything works as expected, then downgrade the kernel and check if it still works.

Also, do you have sources to this driver? Any chance that the "incompatibility" is as simple as an explicit version check?
Pages: [1] 2 3 4 5 6 ... 10 Next