How much energy does an iMac uses in volts? (regular and when it is asleep)

How much energy does an imac uses

The voltage during sleep or usage is the same. It's the current in Amperes that changes. The "energy" is the wattage consumed which is Volts times Amperes. That information should be in the User Guide. If you don't have one you can download one here.
According to the specifications the rated power consumption is 200 watts for the 20" model and 280 watts for the 24" model. Sleep consumption is probably around 40 watts.

Similar Messages

  • How much power does the iMac use at idle? (e.g. in watts)

    I've just noted how much my current PC chews up in power - wondering how good an iMac would be?

    The specs:
    http://images.apple.com/environment/reports/docs/21.5inchiMac_Product_Environmental_Report20100727.pdf
    http://images.apple.com/environment/reports/docs/27inchiMac_Product_Environmental_Report_20100727.pdf

  • How much data does google maps use

    how much data does google maos use ?

    That question has a lot of variables. If you are just looking up an address it should not using very much. If you are using  it for an 8 hour drive it will use quite a bit.

  • How much energy does a "brick" power cord take?

    Hi,
    1. How much energy does the White Brick power cord consume when the computer is fully charged?
         A. Does it vary based on processor action?
         B. How bout when the computer is sleeping?
         C. How bout when the computer is off?
    2. How much energy does it consume when it's not attached to the computer?
         A. I also want to know this for chargers for other Apple devices.
    Thanks for any info on this. I haven't done any searching on this, so maybe it's an obvious question.

    Thanks for these answers. I neglected this post for a while as I didn't have time to investigate. The answers were helpful.
    I did find some more information:
    https://discussions.apple.com/message/6423752#6423752 lists (for a 2008 macbook) the consumption. I would be interested in seeing this for the latest models. Especially interesting is this: "Power brick energized, but not attached to computer - unmeasurable." Is the power adpater (it's a transformer) this energy efficient? This is a big deal if I am planning on unplugging my laptop at night.
    I also see this: https://www.apple.com/macbook-pro/environment/ . But, unfortunately (and outrageously), it does not give details (it is not outrageous as a status quo piece of marketing, but it's outrageous that the status quo is that little information! So, the problem is not Apple, per se, but the habits. Maybe that is an area for a marketing company to improve on!
    I found this for some more, general information: http://electronics.howstuffworks.com/everyday-tech/plug-in-transformer.htm . That gives: "The power consumption is not large [on power chargers] -- on the order of 1 to 5 watts per transformer."
    I'd certainly be interested in information on Apple's other products (like iPod and iPhone chargers).

  • How much space does a blob use?

    How much space does a BLOB use?
    Does it use allocated anyspace if its empty?

    It will size appropriately:
    TEST.SQL>CREATE TABLE TBLOB
      2  (
      3  A BLOB
      4  ) TABLESPACE _SANITIZED_;
    TABLE CREATED.
    TEST.SQL>SELECT INITIAL_EXTENT FROM DBA_TABLESPACES WHERE TABLESPACE_NAME='_SANITIZED_';
    INITIAL_EXTENT
           5242880
    TEST.SQL>SELECT * FROM DBA_EXTENTS WHERE SEGMENT_NAME='TBLOB';
    OWNER                          SEGMENT_NAME                                                                      PARTITION_NAME                 SEGMENT_TYPE
    TABLESPACE_NAME                 EXTENT_ID    FILE_ID   BLOCK_ID      BYTES     BLOCKS RELATIVE_FNO
    YJAM                           TBLOB                                                                                                            TABLE
    _SANITIZED_                                  0         16    1201289    5242880        640           16
    TEST.SQL>SELECT * FROM DBA_OBJECTS WHERE CREATED > SYSDATE-1;
    OWNER                          OBJECT_NAME
    SUBOBJECT_NAME                  OBJECT_ID DATA_OBJECT_ID OBJECT_TYPE        CREATED  LAST_DDL TIMESTAMP           STATUS  T G S
    YJAM                           SYS_LOB0000920875C00001$$
                                       920876         920876 LOB                14:41:36 14:41:36 2005-11-16:14:41:36 VALID   N Y N
    YJAM                           TBLOB
                                       920875         920875 TABLE              14:41:36 14:41:36 2005-11-16:14:41:36 VALID   N N N
    TEST.SQL>SELECT * FROM DBA_EXTENTS WHERE SEGMENT_NAME='SYS_LOB0000920875C00001$$';
    OWNER                          SEGMENT_NAME                                                                      PARTITION_NAME                 SEGMENT_TYPE
    TABLESPACE_NAME                 EXTENT_ID    FILE_ID   BLOCK_ID      BYTES     BLOCKS RELATIVE_FNO
    YJAM                           SYS_LOB0000920875C00001$$                                                                                        LOBSEGMENT
    _SANITIZED_                                  0         16    1202569    5242880        640           16
    TEST.SQL>DECLARE
      2    VALINS VARCHAR2(4000);
      3  BEGIN
      4    VALINS:='1';
      5    FOR I IN 1..100000
      6    LOOP
      7      INSERT INTO TBLOB VALUES (RPAD(VALINS,4000,'0'));
      8    END LOOP;
      9  END;
    10  /
    PL/SQL procedure successfully completed.
    TEST.SQL>COMMIT;
    Commit complete.
    TEST.SQL>SELECT * FROM DBA_EXTENTS WHERE SEGMENT_NAME IN ('SYS_LOB0000920875C00001$$','TBLOB');
    OWNER                          SEGMENT_NAME                                                                      PARTITION_NAME                 SEGMENT_TYPE
    TABLESPACE_NAME                 EXTENT_ID    FILE_ID   BLOCK_ID      BYTES     BLOCKS RELATIVE_FNO
    YJAM                           TBLOB                                                                                                            TABLE
    _SANITIZED_                                  0         16    1201289    5242880        640           16
    YJAM                           TBLOB                                                                                                            TABLE
    _SANITIZED_                                  1         17    1169929    5242880        640           17
    YJAM                           TBLOB                                                                                                            TABLE
    _SANITIZED_                                  2         18    1163529    5242880        640           18
    YJAM                           TBLOB                                                                                                            TABLE
    _SANITIZED_                                  3         19    1176969    5242880        640           19
    YJAM                           TBLOB                                                                                                            TABLE
    _SANITIZED_                                  4          5     379529    5242880        640            5
    YJAM                           TBLOB                                                                                                            TABLE
    _SANITIZED_                                  5         14     375689    5242880        640           14
    YJAM                           TBLOB                                                                                                            TABLE
    _SANITIZED_                                 51         18    1172489    5242880        640           18
    YJAM                           TBLOB                                                                                                            TABLE
    _SANITIZED_                                 52         19    1191689    5242880        640           19
    YJAM                           SYS_LOB0000920875C00001$$                                                                                        LOBSEGMENT
    _SANITIZED_                                  0         16    1202569    5242880        640           16
    54 rows selected.
    TEST.SQL>ANALYZE TABLE TBLOB COMPUTE STATISTICS;
    Table analyzed.
    TEST.SQL>SELECT * FROM DBA_TABLES WHERE TABLE_NAME='TBLOB';
    OWNER                          TABLE_NAME                     TABLESPACE_NAME                CLUSTER_NAME                   IOT_NAME                         PCT_FREE   PCT_USED
    INI_TRANS  MAX_TRANS INITIAL_EXTENT NEXT_EXTENT MIN_EXTENTS MAX_EXTENTS PCT_INCREASE  FREELISTS FREELIST_GROUPS LOG B   NUM_ROWS     BLOCKS EMPTY_BLOCKS  AVG_SPACE  CHAIN_CNT
    AVG_ROW_LEN AVG_SPACE_FREELIST_BLOCKS NUM_FREELIST_BLOCKS DEGREE     INSTANCES  CACHE TABLE_LO SAMPLE_SIZE LAST_ANA PAR IOT_TYPE     T S NES BUFFER_ ROW_MOVE GLO USE
    DURATION        SKIP_COR MON CLUSTER_OWNER                  DEPENDEN COMPRESS
    YJAM                           TBLOB                          _SANITIZED_                                                                                               10
             1        255        5242880     5242880           1  2147483645            0                            YES N     100000      33547          373       1977          0
           2042                         0                   0          1          1     N ENABLED       100000 14:51:22 NO               N N NO  DEFAULT DISABLED NO  NO
                    DISABLED NO                                 DISABLED DISABLED
    TEST.SQL>SELECT BYTES/1024 FROM DBA_SEGMENTS WHERE SEGMENT_NAME='TBLOB';
    BYTES/1024
        271360   
    TEST.SQL>TRUNCATE TABLE TBLOB;
    Table truncated.
    TEST.SQL>BEGIN
      2    FOR i IN 1..100000
      3    LOOP
      4      INSERT INTO TBLOB VALUES ('1');
      5    END LOOP;
      6  END;
      7  /
    PL/SQL procedure successfully completed.
    TEST.SQL>COMMIT;
    Commit complete.
    TEST.SQL>ANALYZE TABLE TBLOB COMPUTE STATISTICS;
    Table analyzed.
    TEST.SQL>SELECT BYTES/1024 FROM DBA_SEGMENTS WHERE SEGMENT_NAME='TBLOB';
    BYTES/1024
          5120Note: there is a deported blob segment for the pointers I forgot in my previous post.
    HTH,
    Yoann.
    Message was edited by:
    Yoann Mainguy
    Hmm, forgot that for a full comparison of the avg linesize:
    TEST.SQL>SELECT * FROM DBA_TABLES WHERE TABLE_NAME='TBLOB';
    OWNER                          TABLE_NAME                     TABLESPACE_NAME                CLUSTER_NAME                   IOT_NAME                         PCT_FREE   PCT_USED
    INI_TRANS  MAX_TRANS INITIAL_EXTENT NEXT_EXTENT MIN_EXTENTS MAX_EXTENTS PCT_INCREASE  FREELISTS FREELIST_GROUPS LOG B   NUM_ROWS     BLOCKS EMPTY_BLOCKS  AVG_SPACE  CHAIN_CNT
    AVG_ROW_LEN AVG_SPACE_FREELIST_BLOCKS NUM_FREELIST_BLOCKS DEGREE     INSTANCES  CACHE TABLE_LO SAMPLE_SIZE LAST_ANA PAR IOT_TYPE     T S NES BUFFER_ ROW_MOVE GLO USE
    DURATION        SKIP_COR MON CLUSTER_OWNER                  DEPENDEN COMPRESS
    YJAM                           TBLOB                          _SANITIZED_                                                                   10
             1        255        5242880     5242880           1  2147483645            0                            YES N     100000        628           12       1223          0
             41                         0                   0          1          1     N ENABLED       100000 14:56:56 NO               N N NO  DEFAULT DISABLED NO  NO
                    DISABLED NO                                 DISABLED DISABLED         

  • HT5815 The most important piece of info about an update I need is how much data does it require. I am travelling and using prepaid data. I cannot even consider an update until I know how much data it will use. Please provide this information.

    The most important piece of info about an update I need is how much data does it require. I am travelling and using prepaid data. I cannot even consider an update until I know how much data it will use. Please provide this information.

    http://www.apple.com/feedback/macosx.html

  • How much data does Apple TV use?

    I am experiencing a large amount of data usage and cannot determine what the culprit is.  I am approaching my cap of data allowance on a regular basis.  Does anyone know how much data the Apple TV uses?  I realize it depends on what you are streaming.  I primarily stream Netflix (set on the lowest data rate)
    Thanks

    I found this answer on NetFlix's blog sometime last year:
    In the USA you have 3 video quality options: good quality, better quality, and best quality. Here is how much bandwidth they each use:
    Good quality (up to 0.3 GB per hour)
    Better quality (up to 0.7 GB per hour)
    Best quality (up to 1 GB per hour, or up to 2.3 GB per hour for HD)
    Depending on how many movies you watch this could have a huge impact on your monthly usage...obviously your ISP wants you to watch its own movies.

  • How much power does a Mac use when it's sleeping

    I recently asked about shutting down vs. sleeping a computer at night. Now I'm wondering how much power it uses sleeeping. I have a laptop which I imagine is pretty dormant. What about a desktop-- Intel Mac?

    I can tell you nothing about a laptop as I don't see a way of measuring what it's using while asleep. As for the desktop you are pretty much spot on, You can use it for about 11 times longer than a 100W light bulb for the same money.
    In fact by using one of those price comparison websites I work out that it'd cost, (@ 10.17p/KWH), [24x365] x 0.009 x 0.1017 = £8.018 if it was left on standby all the time for a full year.
    That excludes things like a standing charge for the electricity, and assumes you were on the Fixed S@ver Dual Fuel plan from EDF Energy.

  • How much data does a call use over 3G?

    Does anyone know how much data a call uses when using 3G?
    For example if I made a 10min call over 3G is there an easy way to estimate how much data it would use?

    I'd check my balance, make a call, then check the balance again. That should give a fair indication.
    I'm a light user and find Tesco's SIM-only deal (500mins, 500MB, 500texts) is way more than adequate for my basic mobile needs for a tenner a month. Worth considering.
    You can click the white star next to this message if you think it was helpful.

  • How much spaces does an iMac need?

    I live in a condo in Japan and physical space is limited.
    How much physcial space do I need for an iMac?
    I have a desk in a spare room where it would fit perfect, but we don't have central heating (Japan generally doesn't have it) so in winter that room is not heated and the daily temperature hovers around 30 degrees Farenheit.
    In our heated living/dining room I have a tea cart that is 15 x 24 inches, but I'm not sure if that is big enough.
    Another option would be that in winter to move the computer from the spare room to the dining room table every time I wish to use the computer, but that seems a little weird and I would hate to drop it along the way.
    I have my eye on either the 17-inch iMac, upgraded 2.16 Ghz, upgraded 2 GB memory, and upgraded 250 GB hard drive.
    or
    the 20-inch iMac, 2.16 Ghz, upgraded 2 GB memory and 250 GB hard drive, both with wireless keyboard and remote.
    I thank you in advance for your suggestions.

    The iMac is about as compact as you can get in a desktop computer. It basically takes up the same amount of space as a monitor of the same size. Of course, you also need a place to put the keyboard and mouse, but the iMac itself isn't very big.
    If your tea cart isn't big enough, you might consider buying or building a small table for the iMac. There is at least one company that sells a desk made specifically for the iMac, and it's rather compact (http://www.raindesigninc.com/igo.html)
    I wish I was back in Japan. I lived there for a fair while, but came back to the states two years ago. Didn't have a Mac in Japan though.

  • How much data does Assisted GPS use

    Guys
    I'm planning a trip into Europe, we will of course be taking a TomTom, but in the event that I need OVI maps, could you tell me how much data AGPS uses.
    O2 charge £6.00 per mb, so I don't want to come home and find a massive bill waiting for me.

    Usually when I try to use it, I use about 6-15mb per fix. It doesnt use A-GPS again after getting a fix unless satellite signals fail.
    If you find my post helpful please click the green star on the left under the avatar. Thanks.

  • How much space does IOS 6 use vs IOS 5.1.1

    I upgraded my iPhone 4S to IOS 6 yesterday.  Today, I was telling a friend about it and she said she doesn't have enough free space to install it on her 8GB iPhone 4.  This got me thinking that with all the upgrades, how much more space does IOS6 require vs IOS5.X.X.  Does anyone know?
    Thanks
    Mike

    Bit of a strange one, the file itself was 650-something MB, but when it came to install, it required me to have at least 2.5GB free space. When it was installed though, there was no change in the free space on my iphone. So, its a mystery.

  • OK, So How Much RAM Does Photoshop CS5 Use?

    ANSWER: All you give it, lol!
    I posted this for those buying or building a PC and are deciding "how much RAM do I need?"
    I built a fairly powerful rig for Photoshop and editing in Premiere Pro, and without all the tech specs, I have 24GB of ram, mostly for encoding HiDef video. Surely Photoshop wouldn't eat THAT much, right? Dead wrong. I have Photoshop set to utilize 75% of my available ram which would be near 19GB. I just worked on a fairly large image, where I took 23 vertical shots with my 5D Mark II (5616x3744 resolution files, pretty big) and did a large photomerge which ended up at about 60,000 x 5,500 after the crop. Granted, large image, nearly 3½GB .PSB file. So while the merging and aligning was taking place, I watched my Ram Gadget soar, right up to 19GB within 4 minutes of processing:
    Yowza. I expected that from Media Encoder processing 1080p HD video into a Blu-Ray disc format, but not a Photoshop file. So, the point of all this: ram is lower in cost than it's been in many months, a 12GB Mushkin kit (3x4GB) is down to $169 on Newegg. Don't skimp in that arena, fill 'er up as best as you can. Future versions aren't going to use less ram, let's face it, the software has to process a lot of pixels! Try to go a minimum of 6GB, but definitely 8-12GB if you can. Of course this means bye-bye FINALLY to 32-bit operating systems, but once you have a large playground of memory, you and Photoshop will be happy campers.

    I purposely waited to respond so I wouldn't write things I'd regret later:
    "Nice system."
    Huh? I didn't list my system on purpose. The point wasn't showing off gear, it was PS's use of RAM.
    "With regard to RAM and Photoshop, people often say more is better without qualification, and you have just confirmed that advice."
    You actually have no evidence of my qualifications. I'll send you a link to my Microsoft transcript if you'd like, there are 16 certifications you can peruse.
    "Personally, with 24 GB of RAM I'd suggest settting Photoshop's limit even higher - e.g., to 95% (which is what I use for 8 GB) ...  The OS doesn't need much on that scale."
    24GB x 95% = 22.,8GB... that leaves 1.2GB of RAM for everything else including Windows 7 64 bit. I'm sorry, that's an extremely unwise choice. Noel, maybe you need to remove the "unqualified" beam from your own eye before you point it out in others.
    If anyone is reading this please PLEASE don't set your Photoshop limit to 95% of your available ram. Your system will mostly likely crash within minutes of starting Photoshop. The proven setting is 75%, set it there and move on. Thanks.

  • Re: How much broadband does XBox Live use?

    how much does xbox come to if your constantly on it every day and i have a max of 40GB overall with three pc 5 portables and one xbox

    combarro96 wrote:
    and wheres the usage box located
    You can get to the usage monitor here.
    You can click the white star next to this message if you think it was helpful.

  • How much data does Apple Maps use?

    I used maps for 15-20 minutes and it used 300 MB of network data.  Looking for an answer because I only get 2GB per month and I wasted almost 20% of it in less than a half hour.

    I guess it is possible I had satellite view on.  I just used whatever was default and I got that huge data charge.  I have just been avoiding maps since and using everything else normally so it has to be maps that was my big problem.  Thanks for the response!

Maybe you are looking for

  • How to create a VPN client for Windows Phone 8.1?

    We have our own VPN client for Windows and Android. I would like to create a VPN client  for Windows phone 8.1. After referring these site I found that there are some third party VPN plugins available for WP 8.1. I checked OpenVPN but it is also not

  • Getting general error when saving site using "create PDF from"

    I'm using Adobe Acrobat Professional 8.0.0 for Mac, trying to save websites. This started working fine, but I had to shut down in the middle of a site being saved. Now when I try to save a site  using Web Capture/create PDF from I get a "general erro

  • Viewing a PDF fullscreen on a 16:9 TV from iPad via Apple TV

    Dear experts, I am trying to view a PDF from my iPad3 on my HD-TV using AppleTV 2. All works well except for the fact that due to screen aspect ratio (4:3 iPad vs. 16:9 TV) I end up with black bars left and right. So how can I get the PDF fullscreen

  • NEW BIOS FOR PHENOM II X6 IS AVAILABLE FOR ALL AM3 SUPPORT MOBOS

    Hello every one I checked the msi site today and the new bios that support phenom ii x6 is available for these mobos: NF980-G65 http://www.msi.com/index.php?func=prodcpu2&prod_no=1885&maincat_no=1 NF750-G55 http://www.msi.com/index.php?func=prodcpu2&

  • Report Painter and Exchange Rates

    We have not turned on multiple local currencies but we have several company codes that have different currencies.  Does anyone know of a feature in Report Painter that allows reporting of different currencies in one report by using some kind of curre