How to remove and detailed specs of Power Supply?

I was trying to remove the power supply you know just as curiosity and also I would like to know the tecnical specs of this PSU, Watts, maximum Amperes in 12V, if this has 8 or 6 PCIe connectors, etc.

pullman wrote:
Welcome to discussions.
From http://www.apple.com/macpro/specs.html:
# Line voltage: 100-120V AC or 200-240V AC (wide-range power supply input voltage)
# Frequency: 50Hz to 60Hz single phase
# Current: Maximum of 12A (low-voltage range) or 6A (high-voltage range).
Here's Apple's article on the power consumption of the early 2008 Mac Pro: http://docs.info.apple.com/article.html?artnum=307495.
I don't understand what you mean by remove the power supply.
Here's Apple's article on the PCIe on Mac Pro: http://support.apple.com/kb/HT2838.
/p
I got more information with the "Catch Them Document" but I still don't know the specs, according to your links mac pros consume 155 W on idle and 318 W on load but what's the maximum power of the PSU.

Similar Messages

  • Satellite A30-921: How to remove and replace the memory?

    hi, can anyone help me how to remove and replace the memory of sat A30-921. and also, please give a detailed instruction.
    thank you in advance.

    Hi
    There is no much to explain. At the bottom side in the middle there is placed memory cover (fixed with two screws). Remove the cover and you will see 2 slots there. I dont know how much memory has you there but as Stefan said you can use max 2 GB of RAM (2x PC2700 1024MB - PA3313U-1M1G). How to remove memory modules you can see on http://www.hardwaresecrets.com/article/189/5
    Bye

  • How to remove and replace keyboard on HP Touchsmart Notebook 15-D020NR

    I spilled a drink on my keyboard and now I cannot get the Caps Lock to turn off and a number of keys do not work. I need the instructions on how to remove and replace this no frame keyboard. Thank you.    

    On your Support page- look for Maintenance and Service Guide under Manuals. http://support.hp.com/us-en/product/HP-15-d000-TouchSmart-Notebook-PC-series/6627588/model/6761859/manuals

  • How to remove and change the color of Java cup and border

    Hi to all,
    How to remove and change the color of Java cup and border.
    Thanks in advance
    khiz_eng

    This is just an Image. You would need to create your own image and call setIconImage(Image) on your JFrame.

  • I want to change my apple id primary e-mail from a .msn address to a .gmail address. The problem is that currently my .gmail address is my cover address and I cannot figure out how to remove and replace my gmail recovery address.

    I want to change my apple id primary e-mail from a .msn address to a .gmail address. The problem is that currently my .gmail address is my recovery address; I cannot figure out how to remove and replace my gmail recovery address with a new e-mail address.  I want to do this because I no longer use my .msn address.

    You should be able to change your rescue address by going to My Apple ID, signing in to manage your ID, then selecting the the Password and Security section, and answering the two security questions.  If you have trouble with this, contact the Apple account security team for your country to verify your identity and ask for assistance: Apple ID: Contacting Apple for help with Apple ID account security.  If your country isn't listed, contact iTunes store support by filling out this form: https://www.apple.com/emea/support/itunes/contact.html.

  • How to remove and add plotted data?

    In my code below I would like to add two buttons and by clicking on a button("Remove") it will remove one by one plotted data,and plot it back by clicking on the button("Add") such as the examples:
    Full data plotted by running the class
    Now by a single click on a Remove button last data point disappear
    another click and again last data point disappear, and so on
    The inverse operation would be performed by clicking on "Add" button: each click will add back a data point
    import javafx.application.Application;
    import javafx.beans.property.SimpleDoubleProperty;
    import javafx.event.EventHandler; 
    import javafx.scene.chart.NumberAxis;
    import javafx.scene.chart.XYChart;
    import javafx.stage.Stage;
    import javafx.scene.Scene;
    import javafx.scene.chart.LineChart;
    import javafx.scene.control.Button;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.layout.BorderPane;
    public class XYMove extends Application {
    BorderPane pane;
    XYChart.Series series1 = new XYChart.Series();
    SimpleDoubleProperty rectinitX = new SimpleDoubleProperty();
    SimpleDoubleProperty rectX = new SimpleDoubleProperty();
    SimpleDoubleProperty rectY = new SimpleDoubleProperty();
    @Override
    public void start(Stage stage) {
    final NumberAxis xAxis = new NumberAxis(12, 20, 1);
    double max = 12;
    double min = 3;
    max *= (1+((double)3/100));
    min *= (1-((double)3/100));
    final NumberAxis yAxis = new NumberAxis(min, max, 1);
    xAxis.setAnimated(false);
    yAxis.setAnimated(false);
    yAxis.setTickLabelFormatter(new NumberAxis.DefaultFormatter(yAxis) {
        @Override
        public String toString(Number object) {
            return String.format("%2.0f", object);
    final LineChart<Number, Number> lineChart = new LineChart<Number, Number>(xAxis, yAxis);
    lineChart.setCreateSymbols(false);
    lineChart.setAlternativeRowFillVisible(false);
    lineChart.setAnimated(false);
    lineChart.setLegendVisible(false);
    series1.getData().add(new XYChart.Data(1, 3));
    series1.getData().add(new XYChart.Data(2, 8));
    series1.getData().add(new XYChart.Data(3, 6));
    series1.getData().add(new XYChart.Data(4, 7));
    series1.getData().add(new XYChart.Data(5, 5));
    series1.getData().add(new XYChart.Data(6, 6));
    series1.getData().add(new XYChart.Data(7, 4));
    series1.getData().add(new XYChart.Data(8, 7));
    series1.getData().add(new XYChart.Data(9, 6));
    series1.getData().add(new XYChart.Data(10, 7));
    series1.getData().add(new XYChart.Data(11, 6));
    series1.getData().add(new XYChart.Data(12, 7));
    series1.getData().add(new XYChart.Data(13, 6));
    series1.getData().add(new XYChart.Data(14, 12));
    series1.getData().add(new XYChart.Data(15, 10));
    series1.getData().add(new XYChart.Data(16, 11));
    series1.getData().add(new XYChart.Data(17, 9));
    series1.getData().add(new XYChart.Data(18, 10));
    pane = new BorderPane();
    pane.setCenter(lineChart);
    Scene scene = new Scene(pane, 800, 600);
    lineChart.getData().addAll(series1);
    stage.setScene(scene);        
    scene.setOnMouseClicked(mouseHandler);
    scene.setOnMouseDragged(mouseHandler);
    scene.setOnMouseEntered(mouseHandler);
    scene.setOnMouseExited(mouseHandler);
    scene.setOnMouseMoved(mouseHandler);
    scene.setOnMousePressed(mouseHandler);
    scene.setOnMouseReleased(mouseHandler);
    stage.show();
    EventHandler<MouseEvent> mouseHandler = new EventHandler<MouseEvent>() {
    @Override
    public void handle(MouseEvent mouseEvent) {
        if (mouseEvent.getEventType() == MouseEvent.MOUSE_PRESSED) {            
            rectinitX.set(mouseEvent.getX());
        else if (mouseEvent.getEventType() == MouseEvent.MOUSE_DRAGGED || mouseEvent.getEventType() == MouseEvent.MOUSE_MOVED) {
            LineChart<Number, Number> lineChart = (LineChart<Number, Number>) pane.getCenter();
            NumberAxis xAxis = (NumberAxis) lineChart.getXAxis();
            double Tgap = xAxis.getWidth()/(xAxis.getUpperBound() - xAxis.getLowerBound());
            double newXlower=xAxis.getLowerBound(), newXupper=xAxis.getUpperBound();            
            double Delta=0.3;
            if(mouseEvent.getEventType() == MouseEvent.MOUSE_DRAGGED){
            if(rectinitX.get() < mouseEvent.getX()&& newXlower >= 0){   
                newXlower=xAxis.getLowerBound()-Delta;
                newXupper=xAxis.getUpperBound()-Delta;
        else if(rectinitX.get() > mouseEvent.getX()&& newXupper <= 22){   
                newXlower=xAxis.getLowerBound()+Delta;
                newXupper=xAxis.getUpperBound()+Delta;
            xAxis.setLowerBound( newXlower );
            xAxis.setUpperBound( newXupper );                       
            rectinitX.set(mouseEvent.getX());                                
        public static void main(String[] args) {
            launch(args);
    }Thanks!

    I would use an ObservableList (probably backed by a LinkedList) of XYChart.Data to store the collection of "deleted" data points. Create the buttons as usual; your "Remove" button's event handler should remove the last element of the series and add it to the first element of the deleted items data points. The "Add" button should remove the first element of the deleted data points and add it to the end of the series. You can bind the "disable" property of the remove and add button to Bindings.isEmpty(series1.getData()) and Bindings.isEmpty(deletedDataPoints), respectively.
    Something like
    ObservableList<XYChart.Data<Number, Number>> deletedDataPoints = FXCollections.observableList(new LinkedList<XYChart.Data<Number, Number>>());
    removeButton.setOnAction(new EventHandler<ActionEvent>() {
      @Override
      public void handle(ActionEvent event) {
        deletedDataPoints.add(0, series1.getData().remove(series1.getData().size()-1));
    addButton.setOnAction(new EventHandler<ActionEvent>() {
      @Override
      public void handle(ActionEvent event) {
        series1.getData().add(deletedDataPoints.remove(0));
    removeButton.disableProperty().bind(Bindings.isEmpty(series1.getData()));
    addButton.disableProperty().bind(Bindings.isEmpty(deletedDataPoints));The other approach would be to use a separate List for all the data points, and keep an integer variable storing the number of data points displayed. Your "remove" button would decrement the number displayed, and your "add" button would increment the number displayed. Both would also call
    series1.getData().setAll(allDataPoints.sublist(0, numberOfDisplayedPoints));You might even be able to make the numberOfDisplayedPoints an IntegerProperty and bind the data property of the series to it in a nice way. This approach probably doesn't perform as well as the previous approach (using a stack of deleted points), because you are not directly giving the chart as much detailed information about what has changed.
    Both approaches get problematic (in the sense that you need to carefully define your application logic, and then implement it) if the underlying data has the potential to change.

  • How to remove and prevent multiple repetitions

    How can I remove and prevent existing ans future repetions of emails in my IPad contacts

    Rebuild LaunchServices Database
    Open the Terminal application in your Utilities folder.  At the prompt paste in the following command in its entirety:
         find /System/Library/Frameworks -type f -name "lsregister" -exec {} -kill -seed -r \;
    Press RETURN.  Wait for the Terminal prompt to return after which you can quit the Terminal.

  • How to remove and reinstall PSE 10?

    I am unable to edit PSE 10 to completion.  The editing works fine until I try to close it.   It doesn't finish and I get an error message "failed to import" (to Organizer) with a bar chart showing 95% completion.  In effect, I can't edit.  One other oddity that surfaced and may(?) be related is that when I try to open PSE, it opens the Editor.  I can then open the Organizer from the Editor, but that's not the way things should work.   I've had wonderful Adobe community help, but the problem persists.  I'm well past my knowlege, and I suspect (but am not certain) I need to remove and replace my current PSE 10.  I do not have a disc as I downloaded the original.  How do I proceed?  Thanks in advance ... Phillip Young.  

    Hi Phillip,
    Please download Photoshop Elements 10 from the below mentioned link
    http://prodesigntools.com/photoshop-elements-10-direct-download-links- pse-premiere-pre.html
    Please ensure to follow the (Very Important Instructions) carefully.
    Regards,
    Abhijit

  • How to remove and assign the subclsss in Migration.

    Hi All,
    I am migrating the form 6i appliaction form 6i to 10g with database as 9i.
    I am trying to migrate the form 6i files to 10g.
    I have get the referenced emb file (subclass file) from the database and made the Object library from this file. I have put the olb file in the registery path of the forms.After this I have open the form in the migration tool and migrate the form. I have done the changes according to the LOG file. But when I am opening the form it is not getting the subclass files so that it is asking the database connection.
    Can any body please advice me how to remove the subclss information at the time of migration from database to file so that after migration it will take the subclss refrence from the olb file.
    Can any body just advice how to migrate the forms 6i to 10g in steps OR any document, URL (Specially removing the referencce and taking the new reference from OLB)
    Thanks in advance.
    SUN
    Edited by: User SUN@ on May 13, 2010 4:31 PM

    Hi,
    Not eactly the same but there was a set of Forms that reference another Form for subclasses rather than the OLB. I've managed to sort that out using JDAPI and here is a sample bit of code. Basically , going through property classes and removing then and then adding the property classes object group from the OLB. It seemed to do the trick didn't upset the properties of the items using the class. It may be of help to you.
    There was no migration in this : just a fix on a Forms 10g module. I'd yes you could do the same, migrate to 10g and then use JDAPI to fix the form.
    HTH
    Steve
          for (JdapiIterator mods = Jdapi.getModules(); mods.hasNext(); ) {
             FormModule mod = (FormModule)(JdapiModule)mods.next();
             u.logger.info(mod.getAbsolutePath() + " " + mod.getTitle());
             for (JdapiIterator classes = mod.getPropertyClasses(); classes.hasNext(); ) {
                PropertyClass cls = (PropertyClass)classes.next();
                classes.remove();
             ObjectLibrary objLib = ObjectLibrary.open(p.getProperty(systemName + "pll.directory")+"/myapp.olb");
             for (JdapiIterator oTabs = objLib.getObjectLibraryTabs(); oTabs.hasNext(); ) {
                ObjectLibraryTab oTab = (ObjectLibraryTab)oTabs.next();
                if (oTab.getLabel().equals("Object Groups (Sub-Class these)")) {
                   for (JdapiIterator tabObj = oTab.getTabObjects(); tabObj.hasNext(); ) {
                      ObjectGroup objGrp = (ObjectGroup)tabObj.next();
                      if (objGrp.getName().equals("APP_PROPERTY_CLASSES")) {
                         ObjectGroup newObj = new ObjectGroup(mod, "APP_PROPERTY_CLASSES", objGrp);
                         u.logger.info(mod.getName() + " APP.OLB added in");
             objLib.destroy();

  • How to REMOVE AND DELETE saved customizations applied to different accounts

    Hi Experts
    I have created and saved a customization called *'Hidden Graph'* through the front end (under page options)
    I saved this customization against different application roles (BI Consumer / BI Author)
    Now I No longer need to apply customiaztiion *'Hidden Graph'*
    Can someone tell me where these customizations are saved so I can REMOVE AND DELETE it ?
    Thanks
    Hiten

    To find the location and deleting from catalog, try to use catalog manager and use search xml for text 'Hidden Graph'
    You can find them in sub folders of _selections folder in catalog
    ex:
    \users\weblogic\_selections
    Just in case if you want to delete then you can do finding files like
    Hidden+Graph
    Hidden+Graph.atr
    Nowhere mentioned deleting other than clearing check this doc once
    http://docs.oracle.com/cd/E23943_01/bi.1111/e10544/dashboards.htm#sthref357
    If helps pls mark
    Edited by: Veeravalli on Nov 30, 2012 10:09 AM

  • How to use the Camileo H30 with Power Supply

    Hello
    First: excuse my english, im from germany ;)
    I have a Camilio H30. its was boughted used. I only got the camcorder & the original battery.
    no extras (like usb cable or original power supply)
    what i want: i need to film over some hours. The Battery cant make it. so i wanna use it with a power supply but when i put it in (throughh the mini usb a connector) the camcorder goes to charing mode (no actions are possible) but i want to use it fully functionality when power supply is connected.
    how do i handle it ??
    i got a power supply with 5V an 2,25A , i think its enough... or not??
    The Label on the bottum side from the camcorder tells me 5V 2A....
    Thanks 4 helping me :D
    greetz

    oh ok i thought this is possible because in the main manual at the part when the display icons being explaind they show a full, half-full, emtpy- battery and a power connector icon. they call it "gleichstrommodus" sorry i have only the german manual. in english it should be co-corent flow mode or ac power mode.
    im looking for a way to make the cam work with power supply only. i dont want to charge or even use the battery because i film over few hours ago and for that i dont need it.
    my old dv cam works when the battery was plugged out with ac adapter only. thats very nice for me.
    whatever. if this is not possible i sell this cam and buy another one ;)
    thanks for your help !

  • Problem with Get the current and voltage from HP Power Supply (HP E3631A), using the GPIB interface.

    my USB device's power support is from the DC Power Supply ( HP E3631A)
    I need to read using current from a DC Power Supply ( HP E3631A),via GPIB interface.
    When I use the follow command.Why can't read the current value.My environment is in vc++ 6.0.
    "APPL P6V,5.0,1.0"
    "OUTP ON"
    "MEAS:CURR? P6V"
    attached the NI SPY File.Please check it.
    Can you tell me what the problem is ??
    Thanks in Advance !
    Hope you can solve my problem !!!"
    Attachments:
    E3631AERR.spy ‏7 KB

    Hi neilchuang,
    A read timeout error is usually caused by an error on the command string sent.
    The first thing I would check is if the instrument requires a termination character at the end of each message (such as linefeed). I noticed in the Spy capture that the commands do not have a termination character attached. This means that the instruments never recognized that you completed the query command, it doesn't execute the requested action and as a consequence of that it doesn't have any data to return.
    One question: Is the instrument detected by MAX when you scan for instruments?. If yes then you can assume that the GPIB software and hardware are properly installed. The scan for instruments sends the *IDN? (terminated by a linefeed). You can right-cli
    ck on the instrument entry in MAX and select "Communicate with instrument". Notice that at the end of the command the linefeed is included (\n).
    Double check with the instrument manual if the commands sent are the right ones.
    Finally, there is an instrument driver available in the idnet library: www.ni.com/idnet. Search for 3631. Since you are working in C you can use the LabWindows/CVI Plug and Play driver. Even if you decide not to use the instrument driver, you can still use it as an excellent reference on how to program with the instrument.
    Hope this helps!.
    DiegoF
    National InstrumentsMessage Edited by Molly K on 02-18-2005 11:05 PM

  • I have a power mac and the hard drive is about to die, i have a new hard drive to install, i know how to remove and put the old in the second space and load the new one, then what...when do reinstall the OS and transfer data from old drive

    I have a power mac, the hard drive is struggling, I have a new hard drive ready to install, after I pull the old one and put the new one it's place and place the old one in the next slot ready to transfer data....how do I start this next step.  Do I down load OS, and go to utililities...please just a step by step after hard drives in position.

    Hi Susan, you must have a Mac Pro, Powermacs cannot run 10.6.x
    Anyway, once you Install the new drive, you likely must Format it...
    How to format your disks...
    http://www.kenstone.net/fcp_homepage/partitioning_tiger.html
    (To Install OSX on an IntelMac the Drive it needs the GUID Partitioning scheme mentioned at the bottom.)
    Thanks to Pondini, Formatting,  Partitioning, Verifying,  and  Repairing  Disks...
    http://web.me.com/pondini/AppleTips/DU.html
    Then Install the OS & on first boot of the new install, after a step or two, avail yourself of Migration Assistant & Migrate everything.

  • How to remove and destroy Mac Book hard drive

    I have an old MacBook no longer working, won't even fire up.  I wish to dispose of it but even though it is not working I would like to make sure everything on it is wiped.  So I guess I need to remove the hard drive and smash it? How do I remove it?

    I would remove the cover and find the drive..... I have not done that myself, so I have no detailed suggestion.
    Barry

  • How to remove and fill in areas of a picture

    I am using the 30 day trial of Photoshop and trying to use online Help to learn the "how to's" BUT I'm finding it dificult to always follow the videos and explanations.
    I want to remove unwanted areas of a photo and then fill in those areas to match the surrounding image.
    I have figured out how to use the SELECT tool to cut out the unwanted areas BUT I can't figure out how to fill in the vacant areas.

    Ex IBM er work there for 40 years myself. Even if you worked with computers for years. Your not going to learn Photoshop in 30 days.  It will take longer then 30 days for you to become comfortable using Photoshop and much longer to become proficient with it.  Photoshop is an on going learning exercise the more you use it the stronger you become.
    Many of the video tutorials are done by users that are proficient using Photoshop and they use images that tools like content aware distortion will work well on if you know how to use the tools well. Without that knowledge you will have a hard time using the tools.  It also easy to miss point watching a video. Watch them more then once.  You also need knowledge of masking and other thing they have pre done for their videos.  They make it look easy its not that it hard its most beginners lack Photoshop knowledge
    Before any of the content aware stuff  I did this before and after images full size link http://www.mouseprints.net/BeforeAndAfter/AirplaneModFull.jpgopen in new window to see full size.
    Before
    After

Maybe you are looking for

  • Can you get your original purchased playlist back?

    I have had to wipe my computers hardive and i redowloaded all of my music but now i do not have my purchaced playlist on my computer. I did have it on my phone but i synced it to my computer and now that is gone. I was wondering if there was any way

  • Logic Express 8 won't load saxophones

    For the first time ever, I'm getting the dreaded error: "Logical end-of-file reached during read operation. Result code = -39". This error occurs whenever I (a) load a Logic project that has a software instrument track in it that is assigned to eithe

  • Using Disk Utility to Clone/Duplicate entire hard drive.

    I have read many post that touch on this question but none have cleared up my questions, and many have just lead to more questions on my part. I want to use the included Disk Utility program to copy my entire hard drive to another. Because I only pla

  • Safari Font issue

    For some reason my fonts are with with black outlines (like drop shadows) when I enter sites like google. I have tried to correct the problem with safari preference but have had not luck. Any suggestions. Keith

  • Xcode Crashing when creating or opening new projects

    Process:     Xcode [849] Path:        /Applications/Xcode.app/Contents/MacOS/Xcode Identifier:  com.apple.dt.Xcode Version:     5.0.2 (3335.32) Build Info:  IDEApplication-3335032000000000~4 App Item ID: 497799835 App External ID: 106632651 Code Type