Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Title: ErturkMe - Power Electronics and Electrical Machines

Summary: Xcos toolbox for Electrical Machines and Power Electronics

Version: 0.4
Version: 0.5

Author: Ibrahim ERTURK <me@erturk.me>

Expand All @@ -27,7 +27,7 @@ ScilabVersion: >= 5.4

Depends: N/A

Date: 2024-04-27
Date: 2024-09-08

Description: Xcos toolbox for Electrical Machines and Power Electronics

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
Scilab Power Electronics ToolBox

>**Author** ierturk [me@erturk.me](mailto:me@erturk.me) @ [ErturkMe ](http://erturk.me)
>**Version** 0.3.0
>**Date** 27-Apr-2022
>**Version** 0.5.0
>**Date** 08-Sep-2024
>**Brief** Scilab Power Electronics ToolBox

> Module uses Scilab
Expand Down
5 changes: 5 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ See license.txt
changelog of the SciPowerLab Toolbox
ErturkMe - Power Electronics and Electrical Machines

SciPowerLab (0.5)
* Fix compatibility with Scilab 2025.1.0
* Update C header includes from scicos_block4.h to scicos_block.h
-- Ibrahim ERTURK <me@erturk.me> Sun, 08 Sep 2024

SciPowerLab (0.4)
* Update blocks to comply Scilab 2023 API
-- Ibrahim ERTURK <me@erturk.me> Sat, 27 Apr 2024
Expand Down
2 changes: 1 addition & 1 deletion src/c/xcpl_BLDC_comp.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// See license.txt

#include "api_scilab.h"
#include "scicos_block4.h"
#include "scicos_block.h"

#define U ((SCSREAL_COP *)GetRealInPortPtrs(blk, 1))
#define Y ((SCSREAL_COP *)GetRealOutPortPtrs(blk, 1))
Expand Down
2 changes: 1 addition & 1 deletion src/c/xcpl_BLSC_comp.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// See license.txt

#include "api_scilab.h"
#include "scicos_block4.h"
#include "scicos_block.h"

#define U ((SCSREAL_COP *)GetRealInPortPtrs(blk, 1))
#define Y ((SCSREAL_COP *)GetRealOutPortPtrs(blk, 1))
Expand Down
2 changes: 1 addition & 1 deletion src/c/xcpl_IMPU_comp.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// See license.txt

#include "api_scilab.h"
#include "scicos_block4.h"
#include "scicos_block.h"

#define U ((SCSREAL_COP *)GetRealInPortPtrs(blk, 1))
#define Y ((SCSREAL_COP *)GetRealOutPortPtrs(blk, 1))
Expand Down
2 changes: 1 addition & 1 deletion src/c/xcpl_PMSC_comp.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// See license.txt

#include "api_scilab.h"
#include "scicos_block4.h"
#include "scicos_block.h"

#define U ((SCSREAL_COP *)GetRealInPortPtrs(blk, 1))
#define Y ((SCSREAL_COP *)GetRealOutPortPtrs(blk, 1))
Expand Down
2 changes: 1 addition & 1 deletion src/c/xcpl_PMSM_comp.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// See license.txt

#include "api_scilab.h"
#include "scicos_block4.h"
#include "scicos_block.h"

#define U ((SCSREAL_COP *)GetRealInPortPtrs(blk, 1))
#define Y ((SCSREAL_COP *)GetRealOutPortPtrs(blk, 1))
Expand Down
2 changes: 1 addition & 1 deletion src/c/xcpl_PSDINV_comp.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// See license.txt

#include "api_scilab.h"
#include "scicos_block4.h"
#include "scicos_block.h"

#define U ((SCSREAL_COP *)GetRealInPortPtrs(blk, 1))
#define Y ((SCSREAL_COP *)GetRealOutPortPtrs(blk, 1))
Expand Down
2 changes: 1 addition & 1 deletion src/c/xcpl_SVPWM_comp.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// See license.txt

#include "api_scilab.h"
#include "scicos_block4.h"
#include "scicos_block.h"

#define U ((SCSREAL_COP *)GetRealInPortPtrs(blk, 1))
#define Y ((SCSREAL_COP *)GetRealOutPortPtrs(blk, 1))
Expand Down