-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cannot find SmartChargingDatabase folder in https://seafile.zfn.uni-bremen.de/d/8855e427c3a945db8112/ #1
Comments
Dear Chengwei,
You are right, the download description might miss a piece of information.
If you want to start the demonstrator, you have to download all four folders that you find under the link. Store the folders PredictionData, SimulationData and SmardData in a parent folder called SmartChargingDatabase. Save SMAPlantDataPrediction as a separate folder.
Then in the Initialisation.m replace the code you posted in your mail by:
%% Set data paths
Path.Base=pwd;
if ismember('\', pwd)
Dl='\'; % Windows path delimiter
else
Dl='/'; % Linux path delimiter
end
Path.Database=YourPathToSmartChargingDatabase;
Path.SMAPlant= YourPathToSmartSMAPlantDataPrediction;
E. g.:
Path.Database='C:\Users\chengwei\SmartChargingDemonstrator\SmartChargingDatabase\';
Path.SMAPlant='C:\Users\chengwei\SmartChargingDemonstrator\SMAPlantDataPrediction\';
Also, you should comment GetEnergyChartsData and GetRegelData in the last section
%% Load electricity industry data
GetSmardData;
% GetEnergyChartsData;
GetSMAPlantData;
% GetRegelData;
In Demonstration.m you should set
ChoseDataByDialogBox=false;
Then you should be able to start Demonstration.m.
Best
Nico
Von: ChengweiLou ***@***.***>
Gesendet: Freitag, 19. Mai 2023 10:24
An: nicopieper/SmartCharging ***@***.***>
Cc: Subscribed ***@***.***>
Betreff: [nicopieper/SmartCharging] cannot find SmartChargingDatabase folder in https://seafile.zfn.uni-bremen.de/d/8855e427c3a945db8112/ (Issue #1)
Dear Nico,
It is my honour to read your paper A Smart Charging Algorithm Considering Multiple Revenue Opportunities.
I run Initialisation and download data, but the folder names make me confused. And I try to find the SmartChargingDatabase folder.
%% Set data paths
Path.Base=pwd;
if ismember('', pwd)
Dl=''; % Windows path delimiter
else
Dl='/'; % Linux path delimiter
end
if strcmp(Path.Base(1:5), '/home')
Path.Database='/home/ma-student/Seafile/SmartChargingDatabase/';
Path.SMAPlant='/home/ma-student/Seafile/SMAPlantData/PlantData/';
elseif strcmp(Path.Base(1:14), 'C:\Users\nicop')
Path.Database='C:\Users\nicop\Seafile\SmartChargingDatabase';
Path.SMAPlant='C:\Users\nicop\Seafile\SMAPlantData\PlantData';
elseif strcmp(Path.Base(1:13), 'C:\Users\Nico')
Path.Database='C:\Users\Nico\Seafile\SmartChargingDatabase';
Path.SMAPlant='C:\Users\Nico\Seafile\SMAPlantData\PlantData';
end
However, the link data https://seafile.zfn.uni-bremen.de/d/8855e427c3a945db8112/ is as follow.
| | PredictionData | | 2 years ago |
| | SimulationData | | 2 years ago |
| | SMAPlantDataPrediction | | 2 years ago |
| | SmardData | | 2 years ago
Thank you if you read it and help me out.
Best,
Chengwei
—
Reply to this email directly, view it on GitHub <#1> , or unsubscribe <https://github.com/notifications/unsubscribe-auth/AQ3LJRQFORU7HA3GFTOPKHTXG4UYPANCNFSM6AAAAAAYHO5V7E> .
You are receiving this because you are subscribed to this thread.Message ID: ***@***.***>
|
Hi Nico, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Dear Nico,
It is my honour to read your paper A Smart Charging Algorithm Considering Multiple Revenue Opportunities. It is really impressive and helpful.
I run Initialisation and download data, but the folder names make me confused. And I try to find the SmartChargingDatabase folder but cannot.
%% Set data paths
Path.Base=pwd;
if ismember('', pwd)
Dl=''; % Windows path delimiter
else
Dl='/'; % Linux path delimiter
end
if strcmp(Path.Base(1:5), '/home')
Path.Database='/home/ma-student/Seafile/SmartChargingDatabase/';
Path.SMAPlant='/home/ma-student/Seafile/SMAPlantData/PlantData/';
elseif strcmp(Path.Base(1:14), 'C:\Users\nicop')
Path.Database='C:\Users\nicop\Seafile\SmartChargingDatabase';
Path.SMAPlant='C:\Users\nicop\Seafile\SMAPlantData\PlantData';
elseif strcmp(Path.Base(1:13), 'C:\Users\Nico')
Path.Database='C:\Users\Nico\Seafile\SmartChargingDatabase';
Path.SMAPlant='C:\Users\Nico\Seafile\SMAPlantData\PlantData';
end
However, the link data https://seafile.zfn.uni-bremen.de/d/8855e427c3a945db8112/ is as follow.
| | PredictionData | | 2 years ago |
| | SimulationData | | 2 years ago |
| | SMAPlantDataPrediction | | 2 years ago |
| | SmardData | | 2 years ago
Thank you. Hope you have time to help me out.
Best,
Chengwei
The text was updated successfully, but these errors were encountered: