Effacer les filtres
Effacer les filtres

Fuel cell lookup table

26 vues (au cours des 30 derniers jours)
Zhan Xu
Zhan Xu le 22 Juin 2024
Commenté : Umar le 27 Juin 2024 à 17:23
The fuel cell lookup table generated from the spreadsheet via-https://ww2.mathworks.cn/help/autoblks/ug/generate-mapped-fuel-cell-from-a-spreadsheet.html
However, based on the data,the fuel cell efficiency looks always over 60% which is unrealistic.
Is there something wrong from built-in spreadsheet?
  2 commentaires
Umar
Umar le 23 Juin 2024 à 0:41
Hi Zhan, When encountering unusually high efficiency values for fuel cells generated from a spreadsheet in MATLAB, it is essential to verify the data input and the calculations performed. Check the spreadsheet data for any anomalies or errors that might be causing the inflated efficiency values. Ensure that the input values are correctly formatted and within realistic ranges. Additionally, review the calculations in the MATLAB script to confirm that the computations are accurate and reflect the actual efficiency values. By carefully examining both the input data and the calculation process, you can identify and rectify any issues leading to unrealistic fuel cell efficiency results. Hope this will help resolve your concern.
Zhan Xu
Zhan Xu le 23 Juin 2024 à 11:37
Modifié(e) : Zhan Xu le 23 Juin 2024 à 11:37
Hi Umar,
Agree with you. However, the data and calculations are built-in already. All i need to do is click 'run'.
So, is the data correct in this app?
The link is: https://ww2.mathworks.cn/help/autoblks/ug/generate-mapped-fuel-cell-from-a-spreadsheet.html

Connectez-vous pour commenter.

Réponses (1)

aditi bagora
aditi bagora le 25 Juin 2024 à 8:34
Hi Zhan,
In my understanding the documentation https://ww2.mathworks.cn/help/autoblks/ug/generate-mapped-fuel-cell-from-a-spreadsheet.html looks like an example for demonstarting the following:
  1. How to use the Spreadsheet file to generate mapped fuel calibaration?
  2. What is the data required in the speadsheet file for calibration like CurrentCmd, TempCmd, Voltage along with the units?
  3. How to generate response surface models in the Model-Based Calibration Toolbox and calibration in CAGE?
  4. How to apply the calibration to your model?
In case you don't have a reference model or the spreadsheet file, reference model and default file is provided to show the workflow.
Probably because of the default values in the spreadsheet, the fuel cell efficiency looks unrealistic.
In order to resolve your concern you can change the spreadsheet file with an actual data file and then apply it to the reference model.
For futher information on the reference model and data file requirements, you can refer to the following links:
Hope this helps!
  3 commentaires
Zhan Xu
Zhan Xu le 27 Juin 2024 à 14:19
Thanks for your reply.
Could Matlab provide a reliable datasheet for PEM fuel cell perfornance? to replace the "FuelCellPerformanceData.xlsx" in the "CalMappedFuelCell".
Umar
Umar le 27 Juin 2024 à 17:23
Hi Zhan,
To answer your question, yes, Matlab can be utilized to create a dependable datasheet for PEM fuel cell performance. By leveraging Matlab's data handling capabilities, you can read, manipulate, and analyze data from various sources, including Excel files like "FuelCellPerformanceData.xlsx." You can import the data, perform calculations, visualize results, and generate new data sheets tailored to your specific requirements.
To demonstrate an example by replacing the existing datasheet with new data in Matlab, you can utilize the xlsread and xlswrite functions.
% Read new data from a different Excel file
newData = xlsread('NewFuelCellPerformanceData.xlsx');
% Write the new data to the existing Excel file
xlswrite('CalMappedFuelCell.xlsx', newData);
By reading the new data from "NewFuelCellPerformanceData.xlsx" and writing it to "CalMappedFuelCell.xlsx," you can effectively update the datasheet for PEM fuel cell performance in Matlab.
Let us know if you need further assistance or help.

Connectez-vous pour commenter.

Produits


Version

R2022b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by