This is what is appearing on my screen. How can this be solved

4 views (last 30 days)
t_apply_changes.........ok
t_psse..................Error using fileread (line 26)
Could not open file t_psse_case.raw. No such file or directory.
Error in psse_read (line 56)
str = fileread(rawfile_name);
Error in t_psse (line 41)
[records, sections] = psse_read(raw, verbose);
Error in t_run_tests (line 58)
feval( test_names{k}, ~verbose );
Error in test_matpower (line 128)
t_run_tests( tests, verbose );

Accepted Answer

Walter Roberson
Walter Roberson on 27 Dec 2018
your t_psse asks psse_read to read a file that does not exist on the MATLAB path. Perhaps it is assuming that it is being executed from a different directory .
  2 Comments
Mugabe Robert
Mugabe Robert on 27 Dec 2018
so how can i possibly get to the real directory or may be add that particular file to the folder
Walter Roberson
Walter Roberson on 27 Dec 2018
You appear to be using matpower5 but you do not appear to have installed it fully .

Sign in to comment.

More Answers (1)

madhan ravi
madhan ravi on 27 Dec 2018
Make sure t_psse_case.raw file is in the current working directory and the folder contains that file , perhaps it's somewhere than the folder that you think it is.

Categories

Find more on Startup and Shutdown in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!