I am having trouble with the menu and switch case command because every time I try to get an answer for pressure, I get 5 answers in a matrix instead of one. Does anyone know what I am doing wrong?

1 Ansicht (letzte 30 Tage)
clear all, close all, nfig = 0;
choice = menu('Choose a gas.','Helium Gas','Hydrogen Gas','Oxygen Gas',...
'Chlorine Gas','Carbon Dioxide Gas');
switch choice
case 1
a = 0.0341; b = 0.0237;
case 2
a = 0.244; b = 0.0266;
case 3
a = 1.36; b = 0.0318;
case 4
a = 6.49; b = 0.0562;
case 5
a = 3.59; b = 0.0427;
end
prompt = 'What is the temperature? (C) ';
T = input(prompt)+273;
prompt = 'What is the molar volume? (L/mol) ';
V = input(prompt);
Pressure = VDW(T,V);
prompt = Pressure;

Antworten (1)

Sean de Wolski
Sean de Wolski am 8 Okt. 2014
It must be whatever VDW is doing because running everything up to there gives scalar values.
Put a breakpoint in VDW and see what it's doing!
  3 Kommentare

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Oil, Gas & Petrochemical finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by