Skip to content

Commit 2ae2fd7

Browse files
committed
Change ParserPWF.jl for PWF.jl in every file
1 parent 17912d0 commit 2ae2fd7

File tree

11 files changed

+925
-925
lines changed

11 files changed

+925
-925
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name = "ParserPWF"
1+
name = "PWF"
22
uuid = "0f4c3beb-4231-4c4d-93e1-709cb40a89e6"
33
version = "0.3.0"
44

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<img src="docs/src/assets/lampspucpptreduced.png" align="right" width=300>
2-
<h1>ParserPWF.jl</h1>
2+
<h1>PWF.jl</h1>
33

44
<br>
55
<br>
66

77
---
88

9-
ParserPWF.jl is a Julia package for converting ANAREDE data format (".pwf") into a Julia dictionary.
9+
PWF.jl is a Julia package for converting ANAREDE data format (".pwf") into a Julia dictionary.
1010

11-
Additionaly, ParserPWF provides parsing .pwf file directly to [PowerModels.jl](https://github.com/lanl-ansi/PowerModels.jl) network data dictionary.
11+
Additionaly, PWF provides parsing .pwf file directly to [PowerModels.jl](https://github.com/lanl-ansi/PowerModels.jl) network data dictionary.
1212

1313
The implementations were made based on the ANAREDE user guide manual (v09).
1414

@@ -17,7 +17,7 @@ The implementations were made based on the ANAREDE user guide manual (v09).
1717
Parsing a .pwf file to Julia dictionary is as simple as:
1818

1919
```julia
20-
using ParserPWF
20+
using PWF
2121

2222
file = "3bus.pwf"
2323
pwf_dict = parse_file(file)
@@ -44,7 +44,7 @@ For more information about PowerModels.jl visit the PowerModels [documentation](
4444
The package parses all available sections into a julia dictionary. Each key represents a .pwf section as shown below:
4545

4646
```julia
47-
julia> ParserPWF.parse_file(file)
47+
julia> PWF.parse_file(file)
4848
Dict{String, Any} with 6 entries:
4949
"DLIN" => Dict{String, Any}[Dict("AGGREGATOR 10"=>nothing, "AGGREGATOR 5"=>nothing, "AGGR"
5050
"name" => "3bus"
@@ -89,7 +89,7 @@ Dict{String, Any} with 6 entries:
8989
The package also allow converting .pwf file directly into PowerModels.jl network data structure:
9090
9191
```julia
92-
julia> ParserPWF.parse_file(file; pm = true)
92+
julia> PWF.parse_file(file; pm = true)
9393
Dict{String, Any} with 13 entries:
9494
"bus" => Dict{String, Any}("1"=>Dict{String, Any}("zone"=>1, "bus_i"=>1, "bus_"…
9595
"source_type" => "pwf"
@@ -136,7 +136,7 @@ julia> data = parse_file(file; pm = true, software = Organon)
136136
If parse_pwf_to_powermodels' argument add_control_data is set to true (default = false), additional information present on the PWF file that is not used by PowerModels will be stored inside each element in the field "control_data", such as the example below:
137137

138138
```julia
139-
julia> data = ParserPWF.parse_pwf_to_powermodels(file, add_control_data = true);
139+
julia> data = PWF.parse_pwf_to_powermodels(file, add_control_data = true);
140140
141141
julia> data["shunt"]["1"]["control_data"]
142142
Dict{String, Any} with 9 entries:

docs/make.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
using Documenter
2-
using ParserPWF
2+
using PWF
33

44
makedocs(
5-
modules = [ParserPWF],
5+
modules = [PWF],
66
format = Documenter.HTML(analytics = "UA-367975-10", mathengine = Documenter.MathJax()),
7-
sitename = "ParserPWF",
7+
sitename = "PWF",
88
authors = "Iago Chávarry and Pedro Hamacher",
99
pages = [
1010
"Home" => "index.md",

docs/src/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# ParserPWF.jl
1+
# PWF.jl
22

33
```@meta
4-
CurrentModule = ParserPWF
4+
CurrentModule = PWF
55
```
66

77
---
88

9-
ParserPWF.jl is a Julia package for converting ANAREDE data format (".pwf") into a Julia dictionary.
9+
PWF.jl is a Julia package for converting ANAREDE data format (".pwf") into a Julia dictionary.
1010

11-
Additionaly, ParserPWF provides parsing .pwf file directly to [PowerModels.jl](https://github.com/lanl-ansi/PowerModels.jl) network data dictionary.
11+
Additionaly, PWF provides parsing .pwf file directly to [PowerModels.jl](https://github.com/lanl-ansi/PowerModels.jl) network data dictionary.
1212

1313
The implementations were made based on the ANAREDE user guide manual (v09).
1414

@@ -17,7 +17,7 @@ The implementations were made based on the ANAREDE user guide manual (v09).
1717
Parsing a .pwf file to Julia dictionary is as simple as:
1818

1919
```julia
20-
using ParserPWF
20+
using PWF
2121

2222
file = "3bus.pwf"
2323
pwf_dict = parse_pwf(file)

docs/src/quickguide.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Parsing a .pwf file to Julia dictionary is as simple as:
44

55
```julia
6-
using ParserPWF
6+
using PWF
77

88
file = "3bus.pwf"
99
pwf_dict = parse_pwf(file)
@@ -30,7 +30,7 @@ For more information about PowerModels.jl visit the PowerModels [documentation](
3030
The package parses all available sections into a julia dictionary. Every key represents a .pwf section as shown below:
3131

3232
```julia
33-
julia> ParserPWF.parse_pwf(file)
33+
julia> PWF.parse_pwf(file)
3434
Dict{String, Any} with 6 entries:
3535
"DLIN" => Dict{String, Any}[Dict("AGGREGATOR 10"=>nothing, "AGGREGATOR 5"=>nothing, "AGGR"
3636
"name" => "3bus"
@@ -45,7 +45,7 @@ Dict{String, Any} with 6 entries:
4545
The package also allow converting .pwf file directly into PowerModels.jl network data structure:
4646
4747
```julia
48-
julia> ParserPWF.parse_pwf_to_powermodels(file)
48+
julia> PWF.parse_pwf_to_powermodels(file)
4949
Dict{String, Any} with 13 entries:
5050
"bus" => Dict{String, Any}("1"=>Dict{String, Any}("zone"=>1, "bus_i"=>1, "bus_"…
5151
"source_type" => "pwf"

src/ParserPWF.jl

Lines changed: 0 additions & 35 deletions
This file was deleted.

0 commit comments

Comments
 (0)