-
-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
88aff6e
commit 0f3bb3f
Showing
2 changed files
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: publish_conda | ||
|
||
on: | ||
push: | ||
# Sequence of patterns matched against refs/tags | ||
tags: | ||
- '*' # Push events to matching v*, i.e. v1.0, v20.15.10 | ||
|
||
jobs: | ||
publish: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: publish-to-conda | ||
uses: sepandhaghighi/conda-package-publish-action@v1.2 | ||
with: | ||
subDir: 'otherfile' | ||
AnacondaToken: ${{ secrets.ANACONDA_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{% set name = "opem" %} | ||
{% set version = "1.3" %} | ||
|
||
package: | ||
name: {{ name|lower }} | ||
version: {{ version }} | ||
source: | ||
git_url: https://github.com/ECSIM/opem | ||
git_rev: v{{ version }} | ||
build: | ||
noarch: python | ||
number: 0 | ||
script: {{ PYTHON }} -m pip install . -vv | ||
requirements: | ||
host: | ||
- pip | ||
- setuptools | ||
- python >=3.5 | ||
run: | ||
- art >0.7 | ||
- requests >=2.20.0 | ||
- python >=3.5 | ||
about: | ||
home: https://github.com/ECSIM/opem | ||
license: MIT | ||
license_family: MIT | ||
summary: OPEM (Open Source PEM Fuel Cell Simulation Tool) | ||
description: | | ||
Modeling and simulation of proton-exchange membrane fuel cells (PEMFC) may work as a powerful tool in the research & development of renewable energy sources. The Open-Source PEMFC Simulation Tool (OPEM) is a modeling tool for evaluating the performance of proton exchange membrane fuel cells. This package is a combination of models (static/dynamic) that predict the optimum operating parameters of PEMFC. OPEM contained generic models that will accept as input, not only values of the operating variables such as anode and cathode feed gas, pressure and compositions, cell temperature and current density, but also cell parameters including the active area and membrane thickness. In addition, some of the different models of PEMFC that have been proposed in the OPEM, just focus on one particular FC stack, and some others take into account a part or all auxiliaries such as reformers. OPEM is a platform for collaborative development of PEMFC models. | ||
Website: http://opem.ecsim.ir | ||
Repo: https://github.com/ECSIM/opem | ||
extra: | ||
recipe-maintainers: | ||
- ecsim |