is that possible to use lower amperage ac adapter for my laptop?

30

Solution 1

Understanding Voltage and Current.

An analogy with water in pipes is often helpful in understanding the basics of electricity.

Voltage is like water pressure. It is a force. If the force is too strong your pipes will burst. Too low and your shower may not work at all.

Current is like flow-rate. Litres per second or how fast your bath fills. It depends on how big your supply pipes are. If your water supply has a low flow rate, you won't be able to fill your swimming pool in 10 minutes. If your water supply can fill your pool in 10 minutes, you can still use it to connect a drip-watering system for your pot-plants that only draws a cupfull a day of water.


Voltage

If the laptop requires 19V you should use an power-supply that provides the same voltage. If the power supply voltage is significantly more, it will damage your device and could start a fire. If the voltage is less, the device will not work, actual damage is less likely.

Current (Amps)

If the laptop need to draw 4.7A, your should use a power supply that is capable of providing At least that number of Amps. More is ok. Less means the device will probably not operate correctly.

Further information

See Choosing power supply, how to get the voltage and current ratings?

Solution 2

Normally when you use adapter, that has lower power output than the device you supply power to requires, adapter will simply heat up and die. In case of laptops, where battery has some charging logic, it will probably not charge or take very long time to charge, depends on how you use this laptop. I don't know if the adapter will explode in this case though. I will certainly not recommend using lower amperage adapter than Toshiba specifies.

Share:
30

Related videos on Youtube

thanks_in_advance
Author by

thanks_in_advance

Updated on September 18, 2022

Comments

  • thanks_in_advance
    thanks_in_advance almost 2 years

    I used to think that a single column in a Data Frame is a Vector.

    I have some code below.

    In the last line, what does it mean that typeof(incomeAndState$state) is integer?

    > income <- c(60, 49, 40, 61, 64, 60, 59, 54, 62, 69, 70, 42, 56,
              61, 61, 61, 58, 51, 48, 65, 49, 49, 41, 48, 52, 46,
              59, 46, 58, 43)
    > state <- c("tas", "sa",  "qld", "nsw", "nsw", "nt",  "wa",  "wa",
            "qld", "vic", "nsw", "vic", "qld", "qld", "sa",  "tas",
            "sa",  "nt",  "wa",  "vic", "qld", "nsw", "nsw", "wa",
            "sa",  "act", "nsw", "vic", "vic", "act")
    > incomeAndState <- data.frame(state=state, income=income)
    > incomeAndState$state
    

    Output:

    [1] tas sa  qld nsw nsw nt  wa  wa  qld vic nsw vic qld qld sa  tas sa  nt  wa  vic qld nsw
    [23] nsw wa  sa  act nsw vic vic act
    Levels: act nsw nt qld sa tas vic wa
    
    
    > typeof(incomeAndState$state)
    

    Output (WHAT DOES THIS MEAN?):

    [1] "integer"
    
    • ganesh
      ganesh about 11 years
      This question over on Electrical Engineering has some very good information on power supplies.
    • David Schwartz
      David Schwartz about 11 years
      Is there a sticker on the back of your laptop that states its current requirement? Which exact L505 do you have? Some need as little as 3.42A and some need as much as 6.3A.
    • Sherif Sabry
      Sherif Sabry about 11 years
      yes it states 19v and 4.74a
    • Daniel R Hicks
      Daniel R Hicks about 11 years
      It'll probably work, but may overheat. The danger of fire is small and of explosion is negligible. I wouldn't hesitate to use such an adapter in an emergency/short-term situation, though I'd keep checking it for overheating (too hot to hold comfortably) and would avoid stressful activities (eg, gaming, where you hear the CPU fan revving up.)
    • Ronak Shah
      Ronak Shah over 4 years
      That is because class(incomeAndState$state) is factor and they are stored as integers internally.
    • smci
      smci over 4 years
      It's a factor; is.factor(incomeAndState$state) will return TRUE. Or see str(incomeAndState) to see the type of all the dataframe's columns.
    • thanks_in_advance
      thanks_in_advance over 4 years
      @RonakShah Upvoted, thanks. If you make a separate answer I'll mark it as correct. Question: am I correct in saying that a column of a Data Frame is a Vector? Or is there more to it?
    • r2evans
      r2evans over 4 years
      Typically each column of a data.frame is a vector, yes. It is feasible, though, to have "list-columns", something often used in (for example) tidyr::nest.
    • thanks_in_advance
      thanks_in_advance over 4 years
      @camille Yes, thanks.
  • Bon Gart
    Bon Gart about 11 years
    To add a specific example to this, when I first got this Toshiba A75 (as a repair salvage), it came with a 90 watt adapter (19v x 4.7a). It would be usable at the dimmest screen setting, and only for light tasks like web browsing. The laptop would stop charging the battery under any kind of load, and overheat... eventually turning off if the load continued. Only after replacing the adapter with the required 120 watt (19v x 6.3a) did the laptop operate normally (and continue to do so to this day).
  • Fiasco Labs
    Fiasco Labs about 11 years
    Another consideration is that on some brands of laptop, the power brick must be digitally compatible. Dell supplies have a third pin that allows the laptop to sense their capability. If the brick doesn't have the capability, the laptop cuts its power requirements and often the battery won't charge.