diff --git a/.gitignore b/.gitignore index 046c3210..23bef708 100644 --- a/.gitignore +++ b/.gitignore @@ -36,3 +36,8 @@ packages/mustache/test-dist/ # should not be tracked GITIGNORE_* GITIGNORE_*/**/* + +.env +.env.local +.env.development +.env.production diff --git a/apps/docs/.env b/apps/docs/.env index 5f50f61a..3ef9e00e 100644 --- a/apps/docs/.env +++ b/apps/docs/.env @@ -1,16 +1,21 @@ +NUXT_TELEMETRY_DISABLED=true + PROJECT_ROOT="." +REPO_ROOT=../.. +VERSIONS_SRC="/versions.json" +EXTENSIONS_DIR="$REPO_ROOT/external/extensions" PRODUCT_NAME="NetLogo Documentation" +PRODUCT_DESCRIPTION="The official documentation for the NetLogo modeling environment, including user manuals, tutorials, and reference materials." +PRODUCT_KEYWORDS="NetLogo, Documentation, User Manual, Tutorials, Reference, Agent-Based Modeling, Simulation, Programming, Modeling Environment" PRODUCT_VERSION="7.0.3" PRODUCT_DISPLAY_NAME="7.0.3" PRODUCT_BUILD_DATE=$(date +%Y-%m-%dT%H:%M:%SZ) PRODUCT_WEBSITE="https://docs.netlogo.org" -VERSIONS_SRC="/versions.json" - -REPO_ROOT=../.. -EXTENSIONS_DIR="$REPO_ROOT/external/extensions" - BUILD_LATEST=${BUILD_LATEST:-true} BUILD_REPO="git@github.com:NetLogo/docs.git" BUILD_BRANCH="main" + +# Enable for Development +NUXT_DEV_TOOLS=true diff --git a/apps/docs/.env.development b/apps/docs/.env.development deleted file mode 100644 index 9cf7197c..00000000 --- a/apps/docs/.env.development +++ /dev/null @@ -1,16 +0,0 @@ -# Development environment variables for better HMR -NUXT_DEV_TOOLS=true -NUXT_TELEMETRY_DISABLED=true - -PRODUCT_NAME="NetLogo Documentation" -PRODUCT_VERSION="7.0.3" -PRODUCT_DISPLAY_NAME="7.0.3" -PRODUCT_BUILD_DATE=$(date +%Y-%m-%dT%H:%M:%SZ) -PRODUCT_WEBSITE="https://docs.netlogo.org" - -VERSIONS_SRC="/versions.json" - -REPO_ROOT=../.. -EXTENSIONS_DIR="$REPO_ROOT/external/extensions" - -BASE_PATH="" diff --git a/apps/docs/.env.example b/apps/docs/.env.example new file mode 100644 index 00000000..a2c3e98a --- /dev/null +++ b/apps/docs/.env.example @@ -0,0 +1,21 @@ +NUXT_TELEMETRY_DISABLED=true + +PROJECT_ROOT="." +REPO_ROOT=../.. +VERSIONS_SRC="/versions.json" +EXTENSIONS_DIR="$REPO_ROOT/external/extensions" + +PRODUCT_NAME="NetLogo Documentation" +PRODUCT_DESCRIPTION="The official documentation for the NetLogo modeling environment, including user manuals, tutorials, and reference materials." +PRODUCT_KEYWORDS="NetLogo, Documentation, User Manual, Tutorials, Reference, Agent-Based Modeling, Simulation, Programming, Modeling Environment" +PRODUCT_VERSION="7.0.3" +PRODUCT_DISPLAY_NAME="7.0.3" +PRODUCT_BUILD_DATE=$(date +%Y-%m-%dT%H:%M:%SZ) +PRODUCT_WEBSITE="https://docs.netlogo.org" + +BUILD_LATEST=${BUILD_LATEST:-true} +BUILD_REPO="git@github.com:NetLogo/docs.git" +BUILD_BRANCH="main" + +# Enable for Development +# NUXT_DEV_TOOLS=true diff --git a/apps/docs/app/app.config.ts b/apps/docs/app/app.config.ts new file mode 100644 index 00000000..b2d0682c --- /dev/null +++ b/apps/docs/app/app.config.ts @@ -0,0 +1 @@ +export default defineAppConfig({}); diff --git a/apps/docs/app/assets/styles/tailwind.css b/apps/docs/app/assets/styles/tailwind.css index 2ccb9883..c790a779 100644 --- a/apps/docs/app/assets/styles/tailwind.css +++ b/apps/docs/app/assets/styles/tailwind.css @@ -6,4 +6,5 @@ @import 'tw-animate-css'; @source "../../../../../packages/vue-ui/src"; +@source "../../../../../packages/nuxt-core/"; @source "../../../content/**/*.md"; diff --git a/apps/docs/app/assets/website-logo.ts b/apps/docs/app/assets/website-logo.ts new file mode 100644 index 00000000..516c8170 --- /dev/null +++ b/apps/docs/app/assets/website-logo.ts @@ -0,0 +1,2 @@ +import WebsiteLogo from '@repo/vue-ui/assets/brands/NetLogoUserManual.svg'; +export { WebsiteLogo }; diff --git a/apps/docs/app/components/Announcer.vue b/apps/docs/app/components/Announcer.vue index bb8b603c..357fce1e 100644 --- a/apps/docs/app/components/Announcer.vue +++ b/apps/docs/app/components/Announcer.vue @@ -31,14 +31,18 @@ const fetcher = async () => { const { data: announcements } = await useLazyAsyncData('announcements', fetcher, { server: false }); const route = useRoute(); -const productInfo = useProductInfo(); +const { + public: { + website: { productVersion }, + }, +} = useRuntimeConfig(); const toast = useToast(); const visibleAnnouncements = computed(() => { if (!announcements.value) return []; return announcements.value.filter((item) => { - return item.appliesTo(route.path, productInfo.productVersion); + return item.appliesTo(route.path, productVersion); }); }); diff --git a/apps/docs/app/components/ClientNavbar.vue b/apps/docs/app/components/ClientNavbar.vue index 3a979316..e8ceccc5 100644 --- a/apps/docs/app/components/ClientNavbar.vue +++ b/apps/docs/app/components/ClientNavbar.vue @@ -28,7 +28,7 @@ @@ -57,8 +57,11 @@ import { useMediaQuery } from '@vueuse/core'; import { onMounted, ref, watch } from 'vue'; import { onVersionChange, pullVersionsFromSource } from '~~/shared/versions'; -const productInfo = useProductInfo(); -const runtimeInfo = useRuntimeInfo(); +const { + public: { + website: { productWebsite, productVersion, versionsSrc }, + }, +} = useRuntimeConfig(); interface NavbarLink { title: string; @@ -174,7 +177,7 @@ const arePathnamesCongruent = (windowPathname: string, candidatePathname: string pathname .split('/') .filter((p) => p.length > 0) - .filter((p) => p !== productInfo.productVersion) + .filter((p) => p !== productVersion) .map((p) => p.replace(/\$/, '')) .map((p) => p.trim().split('#')[0] ?? '') .join('/'); @@ -196,7 +199,7 @@ const isLinkParentActive = (link: NavbarLink, currentPath: string): boolean => { // Version selection const versions = ref>({ - [productInfo.productVersion]: { displayName: productInfo.productVersion }, + [productVersion]: { displayName: productVersion }, '7.0.2': { displayName: '7.0.2' }, '7.0.1': { displayName: '7.0.1' }, '7.0.0': { displayName: '7.0.0' }, @@ -223,14 +226,14 @@ const versions = ref>({ '1.0': { disabled: true }, }); -const selectedVersion = ref(productInfo.productVersion); +const selectedVersion = ref(productVersion); onMounted(() => { if (import.meta.client) { updateActiveStates(); handleMediaQueryChange(); setTimeout(async () => { - versions.value = await pullVersionsFromSource(versions.value, runtimeInfo.versionsSrc); + versions.value = await pullVersionsFromSource(versions.value, versionsSrc); }, 0); } }); diff --git a/apps/docs/app/components/PrimitiveCatalog/PrimitiveCatalog.vue b/apps/docs/app/components/PrimitiveCatalog/PrimitiveCatalog.vue index 19b52dc3..6a7f4814 100644 --- a/apps/docs/app/components/PrimitiveCatalog/PrimitiveCatalog.vue +++ b/apps/docs/app/components/PrimitiveCatalog/PrimitiveCatalog.vue @@ -28,7 +28,11 @@ import { wrapCacheLocalStorage } from '@repo/utils/lib/storage/cached-local-stor import { removeHtmlExtension } from '~/utils/url'; import type { CatalogItemData, PrimitiveCatalogProps, SideCatalogItem } from './types'; -const productInfo = useProductInfo(); +const { + public: { + website: { productVersion }, + }, +} = useRuntimeConfig(); const { dictionaryDisplayName, dictionaryHomeDirectory, indexFileURI, currentItemId, currentItemLabel, primRoot } = defineProps(); @@ -69,7 +73,7 @@ const { error, } = await useLazyAsyncData( indexFileURI, - wrapCacheLocalStorage([productInfo.productVersion, 'primitive-catalog', indexFileURI].join('-'), null, () => + wrapCacheLocalStorage([productVersion, 'primitive-catalog', indexFileURI].join('-'), null, () => fetcher(indexFileURI), ), { server: false }, diff --git a/apps/docs/app/composables/configuration.ts b/apps/docs/app/composables/configuration.ts deleted file mode 100644 index 7e54e7ac..00000000 --- a/apps/docs/app/composables/configuration.ts +++ /dev/null @@ -1,31 +0,0 @@ -function getEnvironmentVariable(key: string, defaultValue: T, showWarning: boolean = true): T { - const { public: config } = useRuntimeConfig(); - const value = (config[key] as T | undefined) ?? (process.env[key] as T | undefined); - - if (showWarning && !value) { - console.warn(`Environment variable ${key} is not set. Using default value: ${defaultValue}`); - } - - return value ?? defaultValue; -} - -function useProductInfo() { - return { - productName: getEnvironmentVariable('PRODUCT_NAME', 'NetLogo Documentation'), - productVersion: getEnvironmentVariable('PRODUCT_VERSION', '7.0.3'), - productDisplayName: getEnvironmentVariable('PRODUCT_DISPLAY_NAME', '7.0.3'), - productBuildDate: getEnvironmentVariable('PRODUCT_BUILD_DATE', new Date().toISOString()), - productWebsite: getEnvironmentVariable('PRODUCT_WEBSITE', 'https://docs.netlogo.org'), - isBeta: getEnvironmentVariable('PRODUCT_VERSION', '7.0.3').toLowerCase().includes('beta'), - }; -} - -function useRuntimeInfo() { - const productInfo = useProductInfo(); - return { - noAutogen: getEnvironmentVariable('NO_AUTOGEN', 'false', false), - versionsSrc: productInfo.productWebsite + getEnvironmentVariable('VERSIONS_SRC', '/versions.json'), - }; -} - -export { getEnvironmentVariable, useProductInfo, useRuntimeInfo }; diff --git a/apps/docs/app/layouts/default.vue b/apps/docs/app/layouts/default.vue index d0fa642d..ebb3332b 100644 --- a/apps/docs/app/layouts/default.vue +++ b/apps/docs/app/layouts/default.vue @@ -11,14 +11,18 @@ diff --git a/apps/docs/env.public.ts b/apps/docs/env.public.ts deleted file mode 100644 index c9b28cfa..00000000 --- a/apps/docs/env.public.ts +++ /dev/null @@ -1,40 +0,0 @@ -const publicEnvironmentVariablesKeys = [ - 'PRODUCT_NAME', - 'PRODUCT_VERSION', - 'PRODUCT_BUILD_DATE', - 'PRODUCT_DISPLAY_NAME', - 'PRODUCT_WEBSITE', - 'NO_AUTOGEN', - 'VERSIONS_SRC', -] as const; - -const NOT_REQUIRED_ENV_VARS = new Set(['NO_AUTOGEN']); - -const publicEnvironmentVariables = Object.fromEntries( - publicEnvironmentVariablesKeys.map((key) => [key, process.env[key]]), -); - -export function verifyEnvironmentVariables() { - for (const key of publicEnvironmentVariablesKeys) { - if (NOT_REQUIRED_ENV_VARS.has(key)) continue; - const res = process.env[key]; - if (!res || res.length === 0) { - throw new Error(`Missing required environment variable: ${key}`); - } - } - - const productVersion = process.env['PRODUCT_VERSION'] as string; - if (!/^\d/.test(productVersion)) { - throw new Error(`PRODUCT_VERSION must start with a digit: ${productVersion}`); - } - - const productWebsite = process.env['PRODUCT_WEBSITE'] as string; - if (productWebsite.endsWith('/')) { - throw new Error(`PRODUCT_WEBSITE must not end with a slash: ${productWebsite}`); - } - if (!/^https?:\/\//.test(productWebsite)) { - throw new Error(`PRODUCT_WEBSITE must start with http:// or https://: ${productWebsite}`); - } -} - -export { publicEnvironmentVariables }; diff --git a/apps/docs/nuxt.config.ts b/apps/docs/nuxt.config.ts index cf78de57..1fe9df0d 100644 --- a/apps/docs/nuxt.config.ts +++ b/apps/docs/nuxt.config.ts @@ -1,18 +1,16 @@ -import { deepMerge } from '@repo/utils/std/objects'; -import tailwindcss from '@tailwindcss/vite'; +import { addNuxtContentAssetsRoot } from '@repo/netlogo-docs/helpers'; +import type { DefineNuxtConfig } from 'nuxt/config'; import { getDocumentedExtensionBuilders } from '@repo/netlogo-docs/extension-docs'; -import { addNuxtContentAssetsRoot, getRoutes } from '@repo/netlogo-docs/helpers'; +import { deepMerge } from '@repo/utils/std/objects'; +import pdfOverrides from './nuxt.config.pdf'; +import { websiteConfigSchema } from './runtime.config'; + +import * as MarkdownConfig from '@repo/nuxt-core/markdown.config'; import autogenConfig from './lib/docs/autogen.config'; -import * as MarkdownConfig from './lib/docs/markdown.config'; import runDocsAutogen from './lib/docs/runDocsAutogen'; -import type { DefineNuxtConfig } from 'nuxt/config'; -import { publicEnvironmentVariables, verifyEnvironmentVariables } from './env.public'; -import pdfOverrides from './nuxt.config.pdf'; -import { vueUiSrc, vueUiStyles } from './turbo'; - type NuxtConfigInput = Parameters[0]; const basePath = process.env['BASE_PATH'] ?? '/'; @@ -22,69 +20,18 @@ const optionalPdfLayer = isUsingPdfConfig ? pdfOverrides : {}; if (isUsingPdfConfig) { console.info('[repo] Running with PDF generation configuration overrides'); } - -// https://nuxt.com/docs/api/configuration/nuxt-config - export default defineNuxtConfig( deepMerge( { - compatibilityDate: '2025-07-15', + extends: ['@repo/nuxt-core/nuxt.config.ts'], + app: { baseURL: basePath, - rootId: '__netlogo', - }, - devtools: { enabled: true }, - ssr: true, - // prettier-ignore - modules: [ - '@nuxtjs/sitemap', // Adds sitemap.xml - '@repo/nuxt-content-assets', // Local asset loading based on relative paths in Markdowns - '@nuxt/content', // Query, navigation, search, and rendering of Markdown files - '@nuxt/ui', // Reka-UI library for Nuxt - '@nuxt/icon', // Optimized icons with iconify - 'nuxt-svgo', // SVG loader from file - '@nuxt/eslint', // Linter - 'nuxt-gtag', // Google - 'nuxt-og-image', // Dynamic Open Graph image generation - 'nuxt-link-checker', // Link checking post-build - ], - site: { url: 'https://docs.netlogo.org', name: process.env['PRODUCT_NAME'] }, - css: ['~/assets/styles/main.scss', '~/assets/styles/tailwind.css', vueUiStyles], - colorMode: { - preference: 'light', - }, - - gtag: { - id: 'G-ZET3KSPLMC', - }, - - imports: { - autoImport: true, - transform: { - exclude: [/\bnode_modules\b/, /\b\.git\b/], - }, - }, - - $development: { - experimental: { - payloadExtraction: false, - }, }, - icon: { - mode: 'css', - cssLayer: 'base', - }, + ssr: true, components: [ - { - path: vueUiSrc, - global: true, - pattern: '**/*.vue', - ignore: ['**/examples/*.vue', '**/tests/*.vue'], - pathPrefix: false, - watch: true, - }, { path: '~/components', global: true, @@ -95,55 +42,22 @@ export default defineNuxtConfig( }, ], - ignore: ['.build/', '.latest/', '.static/', '.preview/'], - - svgo: { - customComponent: 'SvgImport', + gtag: { + id: 'G-ZET3KSPLMC', }, vite: { - plugins: [tailwindcss()], optimizeDeps: { include: ['@repo/vue-ui', ...MarkdownConfig.externalImports], }, - server: { - hmr: { - overlay: true, - }, - watch: { usePolling: true }, - }, }, content: { build: MarkdownConfig.buildOptions, - renderer: { - anchorLinks: false, - }, - watch: { enabled: false }, - }, - - contentAssets: { - imageSize: 'style attrs', - contentExtensions: 'md', - debug: true, - overrideStaticDimensions: false, - }, - - ogImage: { - defaults: { - extension: 'jpeg', - sharp: { - quality: 70, - }, - }, }, linkChecker: { excludeLinks: ['/*.pdf', `${basePath}NetLogo_User_Manual.pdf`], - skipInspections: ['no-baseless', 'no-underscores', 'trailing-slash'], - report: { - html: process.env['CHECK'] === 'true', - }, }, runtimeConfig: { @@ -152,20 +66,15 @@ export default defineNuxtConfig( title: ext.fullName, href: `/${ext.name.toLowerCase()}`, })), - ...publicEnvironmentVariables, + website: websiteConfigSchema.parse(process.env), }, }, hooks: { async ready() { - verifyEnvironmentVariables(); - - console.info(`[repo] Using @repo/vue-ui source path: ${vueUiSrc}`); - console.info(`[repo] Using @repo/vue-ui styles path: ${vueUiStyles}`); - - const noAutogen = process.env['NO_AUTOGEN'] === 'true'; - if (noAutogen === true) return; - await runDocsAutogen(); + if (process.env['NO_AUTOGEN'] !== 'true') { + await runDocsAutogen(); + } }, 'content:file:beforeParse'(ctx) { addNuxtContentAssetsRoot(ctx.file); @@ -173,15 +82,7 @@ export default defineNuxtConfig( }, nitro: { - static: true, - serveStatic: true, baseURL: basePath, - prerender: { - autoSubfolderIndex: false, - crawlLinks: true, - concurrency: 1, - routes: await getRoutes(), - }, }, }, optionalPdfLayer, diff --git a/apps/docs/package.json b/apps/docs/package.json index 7a20218a..3f3bad58 100644 --- a/apps/docs/package.json +++ b/apps/docs/package.json @@ -47,6 +47,7 @@ "@repo/typescript-config": "0.0.0", "@repo/utils": "0.0.0", "@repo/vue-ui": "1.0.0", + "@repo/nuxt-core": "0.0.0", "@tailwindcss/postcss": "^4.1.13", "@tailwindcss/vite": "^4.1.18", "@vueuse/core": "^14.1.0", diff --git a/apps/docs/runtime.config.ts b/apps/docs/runtime.config.ts new file mode 100644 index 00000000..9bf91b4b --- /dev/null +++ b/apps/docs/runtime.config.ts @@ -0,0 +1,19 @@ +import { websiteConfigSchema as rootWebsiteConfigSchema } from '@repo/nuxt-core/runtime.config.schema'; +import z from 'zod'; + +const extraWebsiteConfig = z + .object({ + VERSIONS_SRC: z.string().default('/versions.json'), + }) + .transform((data) => ({ + versionsSrc: data.VERSIONS_SRC, + })); + +const websiteConfigSchema = rootWebsiteConfigSchema + .transform((data) => ({ + ...data, + productIsBeta: data.productVersion.toLowerCase().includes('beta'), + })) + .and(extraWebsiteConfig); + +export { websiteConfigSchema }; diff --git a/apps/learn/.env b/apps/learn/.env index ff5c203f..598990f1 100644 --- a/apps/learn/.env +++ b/apps/learn/.env @@ -1,11 +1,15 @@ +NUXT_DEV_TOOLS=true +NUXT_TELEMETRY_DISABLED=true + PROJECT_ROOT="." +REPO_ROOT=../.. PRODUCT_NAME="NetLogo Learn Guide" +PRODUCT_DESCRIPTION="A comprehensive guide to learning NetLogo, the multi-agent programmable modeling environment." +PRODUCT_LONG_DESCRIPTION="The official learning resources for NetLogo, the multi-agent programmable modeling environment. Explore tutorials, documentation, and guides to get started with NetLogo and enhance your modeling skills." +PRODUCT_KEYWORDS="NetLogo, NetLogo Web, NetLogo 3D, Hubnet Web, Agent-based Modeling, Turtles, Learn, Guide, Tutorials, Documentation, Multi-agent modeling, Programming environment" +PRODUCT_BUILD_DATE=$(date +%Y-%m-%dT%H:%M:%SZ) PRODUCT_WEBSITE="https://learn.netlogo.org" - -REPO_ROOT=../.. -EXTENSIONS_DIR="$REPO_ROOT/external/extensions" - BUILD_REPO="https://github.com/NetLogo/Helio.git" BUILD_BRANCH="deploy/learn" diff --git a/apps/learn/.env.development b/apps/learn/.env.development deleted file mode 100644 index 20016179..00000000 --- a/apps/learn/.env.development +++ /dev/null @@ -1,15 +0,0 @@ -# Development environment variables for better HMR -NUXT_DEV_TOOLS=true -NUXT_TELEMETRY_DISABLED=true - -PROJECT_ROOT="." - -PRODUCT_NAME="NetLogo Learn Guide" -PRODUCT_WEBSITE="https://learn.netlogo.org" - - -REPO_ROOT=../.. -EXTENSIONS_DIR="$REPO_ROOT/external/extensions" - -BUILD_REPO="https://github.com/NetLogo/Helio.git" -BUILD_BRANCH="deploy/learn" diff --git a/apps/learn/.env.example b/apps/learn/.env.example new file mode 100644 index 00000000..017b3265 --- /dev/null +++ b/apps/learn/.env.example @@ -0,0 +1,16 @@ +# Enable for Development +# NUXT_DEV_TOOLS=true +NUXT_TELEMETRY_DISABLED=true + +PROJECT_ROOT="." +REPO_ROOT=../.. + +PRODUCT_NAME="NetLogo Learn Guide" +PRODUCT_DESCRIPTION="A comprehensive guide to learning NetLogo, the multi-agent programmable modeling environment." +PRODUCT_LONG_DESCRIPTION="The official learning resources for NetLogo, the multi-agent programmable modeling environment. Explore tutorials, documentation, and guides to get started with NetLogo and enhance your modeling skills." +PRODUCT_KEYWORDS="NetLogo, NetLogo Web, NetLogo 3D, Hubnet Web, Agent-based Modeling, Turtles, Learn, Guide, Tutorials, Documentation, Multi-agent modeling, Programming environment" +PRODUCT_BUILD_DATE=$(date +%Y-%m-%dT%H:%M:%SZ) +PRODUCT_WEBSITE="https://learn.netlogo.org" + +BUILD_REPO="https://github.com/NetLogo/Helio.git" +BUILD_BRANCH="deploy/learn" diff --git a/apps/learn/app/assets/styles/tailwind.css b/apps/learn/app/assets/styles/tailwind.css index 2ccb9883..c790a779 100644 --- a/apps/learn/app/assets/styles/tailwind.css +++ b/apps/learn/app/assets/styles/tailwind.css @@ -6,4 +6,5 @@ @import 'tw-animate-css'; @source "../../../../../packages/vue-ui/src"; +@source "../../../../../packages/nuxt-core/"; @source "../../../content/**/*.md"; diff --git a/apps/learn/app/assets/website-logo.ts b/apps/learn/app/assets/website-logo.ts new file mode 100644 index 00000000..527ac6ed --- /dev/null +++ b/apps/learn/app/assets/website-logo.ts @@ -0,0 +1,2 @@ +import WebsiteLogo from '@repo/vue-ui/assets/brands/NetLogoLearnGuide.svg'; +export { WebsiteLogo }; diff --git a/apps/learn/app/components/Articles/ArticleBody.vue b/apps/learn/app/components/Articles/ArticleBody.vue index af2643aa..88c70d0c 100644 --- a/apps/learn/app/components/Articles/ArticleBody.vue +++ b/apps/learn/app/components/Articles/ArticleBody.vue @@ -4,7 +4,6 @@ :value="article.item" tag="article" class="prose mt-4 prose-medium prose-text-medium" - :components="MDCComponents" v-bind="dProps.contentRenderer" /> @@ -14,7 +13,6 @@ diff --git a/apps/learn/app/components/mdc/components.ts b/apps/learn/app/components/mdc/components.ts deleted file mode 100644 index 1e56ff0c..00000000 --- a/apps/learn/app/components/mdc/components.ts +++ /dev/null @@ -1,17 +0,0 @@ -import MDCButton from './MDCButton.vue'; -import MDCContainer from './MDCContainer.vue'; -import MDCErrorBanner from './MDCErrorBanner.vue'; -import MDCIcon from './MDCIcon.vue'; -import MDCPrimitive from './MDCPrimitive.vue'; -import NetLogoCommand from './NetLogoCommand.vue'; - -const MDCComponents = { - Button: MDCButton, - Container: MDCContainer, - Icon: MDCIcon, - NetLogoCommand: NetLogoCommand, - ErrorBanner: MDCErrorBanner, - Primitive: MDCPrimitive, -}; - -export default MDCComponents; diff --git a/apps/learn/app/composables/configuration.ts b/apps/learn/app/composables/configuration.ts deleted file mode 100644 index d25bfe90..00000000 --- a/apps/learn/app/composables/configuration.ts +++ /dev/null @@ -1,25 +0,0 @@ -function getEnvironmentVariable(key: string, defaultValue: T, showWarning: boolean = true): T { - const { public: config } = useRuntimeConfig(); - const value = (config[key] as T | undefined) ?? (process.env[key] as T | undefined); - - if (showWarning && !value) { - console.warn(`Environment variable ${key} is not set. Using default value: ${defaultValue}`); - } - - return value ?? defaultValue; -} - -function useProductInfo() { - return { - productName: getEnvironmentVariable('PRODUCT_NAME', 'NetLogo Learning'), - productWebsite: getEnvironmentVariable('PRODUCT_WEBSITE', 'https://learn.netlogo.org'), - }; -} - -function useRuntimeInfo() { - return { - noAutogen: getEnvironmentVariable('NO_AUTOGEN', 'false', false), - }; -} - -export { getEnvironmentVariable, useProductInfo, useRuntimeInfo }; diff --git a/apps/learn/app/composables/usePrimitive.ts b/apps/learn/app/composables/usePrimitive.ts deleted file mode 100644 index 2264e58a..00000000 --- a/apps/learn/app/composables/usePrimitive.ts +++ /dev/null @@ -1,26 +0,0 @@ -import { Primitives } from '@repo/common-data'; - -export const usePrimitive = async ({ name }: { name: string }) => { - const { data, pending, error } = await useAsyncData(`primitive-${name}`, () => queryCollection('primitives').all(), { - deep: false, - server: true, - dedupe: 'defer', - transform: async (allPrimitivesData) => { - const primitives = Primitives.getInstance(allPrimitivesData[0]?.primitives ?? []); - const rawPrimitive = { ...primitives.getPrimByName(name) }; - - return rawPrimitive || null; - }, - }); - - const primitive = computed(() => { - if (!data.value) return null; - return data.value; - }); - - return { - primitive, - pending, - error, - }; -}; diff --git a/apps/learn/app/layouts/default.vue b/apps/learn/app/layouts/default.vue index c4b4da00..0cbe2198 100644 --- a/apps/learn/app/layouts/default.vue +++ b/apps/learn/app/layouts/default.vue @@ -10,11 +10,14 @@ + + diff --git a/apps/netlogo/app/components/ClientNavbar.vue b/apps/netlogo/app/components/ClientNavbar.vue index 3be3e596..112c61e4 100644 --- a/apps/netlogo/app/components/ClientNavbar.vue +++ b/apps/netlogo/app/components/ClientNavbar.vue @@ -23,9 +23,9 @@ - - - + @@ -38,14 +38,8 @@ import type { Navbar as _Navbar } from "@repo/vue-ui/components/navbar/index"; import { useMediaQuery } from "@vueuse/core"; import { onMounted, ref, watch } from "vue"; import { WebsiteLogo } from "~/assets/website-logo"; - -interface NavbarLink { - title: string; - href: string; - columns?: number; - children?: Array>; - active?: boolean; -} +import { useNavigation, type NavbarLink } from "~/composables/useNavigation"; +import Button from "../../../../packages/vue-ui/src/components/Button.vue"; const route = useRoute(); @@ -72,13 +66,14 @@ const handleMediaQueryChange = (): void => { } }; -const navbarLinks = ref>([ - { - title: "Home", - href: "/", - columns: 2, - }, -]); +const navigateToDonate = () => { + navigateTo("/donate"); +}; + +const { navbarLinks: apiNavbarLinks } = await useNavigation(); + +// Reactive navbar links with active states +const navbarLinks = ref(apiNavbarLinks.value); const updateActiveStates = () => { navbarRef.value?.blur(); @@ -120,7 +115,16 @@ const isLinkParentActive = (link: NavbarLink, currentPath: string): boolean => { ); }; -updateActiveStates(); +watch( + apiNavbarLinks, + (newLinks) => { + if (newLinks.length > 0) { + navbarLinks.value = newLinks; + updateActiveStates(); + } + }, + { immediate: true }, +); onMounted(() => { if (import.meta.client) { diff --git a/apps/netlogo/app/components/Community.vue b/apps/netlogo/app/components/Community.vue new file mode 100644 index 00000000..29ce63e9 --- /dev/null +++ b/apps/netlogo/app/components/Community.vue @@ -0,0 +1,77 @@ + + + + + diff --git a/apps/netlogo/app/components/GetNetLogo.vue b/apps/netlogo/app/components/GetNetLogo.vue new file mode 100644 index 00000000..fb91c533 --- /dev/null +++ b/apps/netlogo/app/components/GetNetLogo.vue @@ -0,0 +1,78 @@ + + + + + diff --git a/apps/netlogo/app/components/Intro.vue b/apps/netlogo/app/components/Intro.vue new file mode 100644 index 00000000..e4abcee2 --- /dev/null +++ b/apps/netlogo/app/components/Intro.vue @@ -0,0 +1,98 @@ + + + + + diff --git a/apps/netlogo/app/components/IntroSplash.vue b/apps/netlogo/app/components/IntroSplash.vue new file mode 100644 index 00000000..9523293f --- /dev/null +++ b/apps/netlogo/app/components/IntroSplash.vue @@ -0,0 +1,205 @@ + + + + + diff --git a/apps/netlogo/app/components/Newsfeed.vue b/apps/netlogo/app/components/Newsfeed.vue new file mode 100644 index 00000000..c13da9df --- /dev/null +++ b/apps/netlogo/app/components/Newsfeed.vue @@ -0,0 +1,146 @@ + + + + + diff --git a/apps/netlogo/app/components/about/AboutSection.vue b/apps/netlogo/app/components/about/AboutSection.vue new file mode 100644 index 00000000..5c20588d --- /dev/null +++ b/apps/netlogo/app/components/about/AboutSection.vue @@ -0,0 +1,53 @@ + + + + + diff --git a/apps/netlogo/app/components/announcements/AnnouncementsSection.vue b/apps/netlogo/app/components/announcements/AnnouncementsSection.vue new file mode 100644 index 00000000..a434f45a --- /dev/null +++ b/apps/netlogo/app/components/announcements/AnnouncementsSection.vue @@ -0,0 +1,41 @@ + + + diff --git a/apps/netlogo/app/components/contact/ContactSection.vue b/apps/netlogo/app/components/contact/ContactSection.vue new file mode 100644 index 00000000..7abb6936 --- /dev/null +++ b/apps/netlogo/app/components/contact/ContactSection.vue @@ -0,0 +1,24 @@ + + + diff --git a/apps/netlogo/app/components/downloads/DonationSection.vue b/apps/netlogo/app/components/downloads/DonationSection.vue new file mode 100644 index 00000000..9160c7dd --- /dev/null +++ b/apps/netlogo/app/components/downloads/DonationSection.vue @@ -0,0 +1,45 @@ + + + diff --git a/apps/netlogo/app/components/downloads/DownloadForm.vue b/apps/netlogo/app/components/downloads/DownloadForm.vue new file mode 100644 index 00000000..25d79378 --- /dev/null +++ b/apps/netlogo/app/components/downloads/DownloadForm.vue @@ -0,0 +1,306 @@ + + + + + diff --git a/apps/netlogo/app/components/downloads/DownloadMachineHelp.vue b/apps/netlogo/app/components/downloads/DownloadMachineHelp.vue new file mode 100644 index 00000000..9e544772 --- /dev/null +++ b/apps/netlogo/app/components/downloads/DownloadMachineHelp.vue @@ -0,0 +1,34 @@ + + + diff --git a/apps/netlogo/app/components/downloads/DownloadSection.vue b/apps/netlogo/app/components/downloads/DownloadSection.vue new file mode 100644 index 00000000..6c03c33b --- /dev/null +++ b/apps/netlogo/app/components/downloads/DownloadSection.vue @@ -0,0 +1,51 @@ + + + diff --git a/apps/netlogo/app/components/downloads/ThankYouSection.vue b/apps/netlogo/app/components/downloads/ThankYouSection.vue new file mode 100644 index 00000000..fd8cc91f --- /dev/null +++ b/apps/netlogo/app/components/downloads/ThankYouSection.vue @@ -0,0 +1,40 @@ + + + diff --git a/apps/netlogo/app/components/news/NewsSection.vue b/apps/netlogo/app/components/news/NewsSection.vue new file mode 100644 index 00000000..7e3619cf --- /dev/null +++ b/apps/netlogo/app/components/news/NewsSection.vue @@ -0,0 +1,56 @@ + + + diff --git a/apps/netlogo/app/components/references/ReferencesSection.vue b/apps/netlogo/app/components/references/ReferencesSection.vue new file mode 100644 index 00000000..0aac033d --- /dev/null +++ b/apps/netlogo/app/components/references/ReferencesSection.vue @@ -0,0 +1,167 @@ + + + + + diff --git a/apps/netlogo/app/composables/useNavigation.ts b/apps/netlogo/app/composables/useNavigation.ts new file mode 100644 index 00000000..3e1104de --- /dev/null +++ b/apps/netlogo/app/composables/useNavigation.ts @@ -0,0 +1,74 @@ +import { computed, ref } from "vue"; +import NetLogoAPI, { type NavigationSection } from "~/utils/api"; + +export interface NavbarLink { + title: string; + href: string; + columns?: number; + children?: Array>; + active?: boolean; +} + +export async function useNavigation() { + const config = useRuntimeConfig(); + const navigationSections = ref([]); + + const { data } = await useAsyncData("nav-data", async () => { + const api = new NetLogoAPI(config.public.backendUrl as string); + return await api.getNavigationData(); + }); + + if (data.value) { + navigationSections.value = data.value.navigation_sections; + } + + /** + * Transform API navigation sections into NavbarLink format + */ + const navbarLinks = computed(() => { + return navigationSections.value.map((section) => { + const children = section.items + .filter((item) => item.url !== section.items[0]?.url) // Exclude first item if it's the parent link + .map((item) => ({ + title: item.display_title, + href: item.url, + active: false, + })); + + return { + title: section.name, + href: section.items[0]?.url || "/", + columns: children.length > 6 ? 2 : undefined, + children: children.length > 0 ? children : undefined, + active: false, + }; + }); + }); + + const footerSections = computed(() => { + return navigationSections.value + .map((section) => { + const links = section.items + .filter((item) => item.in_footer) + .map((item) => ({ + title: item.display_title, + href: item.url, + external: false, + })); + + return links.length > 0 + ? { + title: section.name, + links, + } + : null; + }) + .filter((section) => section !== null); + }); + + return { + navigationSections, + navbarLinks, + footerSections, + }; +} diff --git a/apps/netlogo/app/pages/about.vue b/apps/netlogo/app/pages/about.vue new file mode 100644 index 00000000..309b94c1 --- /dev/null +++ b/apps/netlogo/app/pages/about.vue @@ -0,0 +1,24 @@ + + + diff --git a/apps/netlogo/app/pages/announcements.vue b/apps/netlogo/app/pages/announcements.vue new file mode 100644 index 00000000..f87f9612 --- /dev/null +++ b/apps/netlogo/app/pages/announcements.vue @@ -0,0 +1,24 @@ + + + diff --git a/apps/netlogo/app/pages/campaign.vue b/apps/netlogo/app/pages/campaign.vue new file mode 100644 index 00000000..7125cb74 --- /dev/null +++ b/apps/netlogo/app/pages/campaign.vue @@ -0,0 +1,28 @@ + + + + + diff --git a/apps/netlogo/app/pages/contact.vue b/apps/netlogo/app/pages/contact.vue new file mode 100644 index 00000000..06014f61 --- /dev/null +++ b/apps/netlogo/app/pages/contact.vue @@ -0,0 +1,26 @@ + + + diff --git a/apps/netlogo/app/pages/donate.vue b/apps/netlogo/app/pages/donate.vue new file mode 100644 index 00000000..a6e42d17 --- /dev/null +++ b/apps/netlogo/app/pages/donate.vue @@ -0,0 +1,24 @@ + + + diff --git a/apps/netlogo/app/pages/download.vue b/apps/netlogo/app/pages/download.vue new file mode 100644 index 00000000..f2703b10 --- /dev/null +++ b/apps/netlogo/app/pages/download.vue @@ -0,0 +1,29 @@ + + + diff --git a/apps/netlogo/app/pages/downloads/linux.vue b/apps/netlogo/app/pages/downloads/linux.vue new file mode 100644 index 00000000..906e96f6 --- /dev/null +++ b/apps/netlogo/app/pages/downloads/linux.vue @@ -0,0 +1,35 @@ + + + diff --git a/apps/netlogo/app/pages/downloads/mac.vue b/apps/netlogo/app/pages/downloads/mac.vue new file mode 100644 index 00000000..36e849e9 --- /dev/null +++ b/apps/netlogo/app/pages/downloads/mac.vue @@ -0,0 +1,35 @@ + + + diff --git a/apps/netlogo/app/pages/downloads/options.vue b/apps/netlogo/app/pages/downloads/options.vue new file mode 100644 index 00000000..7304f61c --- /dev/null +++ b/apps/netlogo/app/pages/downloads/options.vue @@ -0,0 +1,41 @@ + + + diff --git a/apps/netlogo/app/pages/downloads/windows.vue b/apps/netlogo/app/pages/downloads/windows.vue new file mode 100644 index 00000000..437828c8 --- /dev/null +++ b/apps/netlogo/app/pages/downloads/windows.vue @@ -0,0 +1,35 @@ + + + diff --git a/apps/netlogo/app/pages/index.vue b/apps/netlogo/app/pages/index.vue index 3b5c9974..180eaf73 100644 --- a/apps/netlogo/app/pages/index.vue +++ b/apps/netlogo/app/pages/index.vue @@ -1,11 +1,38 @@ diff --git a/apps/netlogo/app/pages/news.vue b/apps/netlogo/app/pages/news.vue new file mode 100644 index 00000000..65c422e5 --- /dev/null +++ b/apps/netlogo/app/pages/news.vue @@ -0,0 +1,24 @@ + + + diff --git a/apps/netlogo/app/pages/references.vue b/apps/netlogo/app/pages/references.vue new file mode 100644 index 00000000..28fe4d6e --- /dev/null +++ b/apps/netlogo/app/pages/references.vue @@ -0,0 +1,13 @@ + + + diff --git a/apps/netlogo/app/pages/thankyou.vue b/apps/netlogo/app/pages/thankyou.vue new file mode 100644 index 00000000..9486c274 --- /dev/null +++ b/apps/netlogo/app/pages/thankyou.vue @@ -0,0 +1,23 @@ + + + diff --git a/apps/netlogo/app/utils/api.ts b/apps/netlogo/app/utils/api.ts new file mode 100644 index 00000000..065655c0 --- /dev/null +++ b/apps/netlogo/app/utils/api.ts @@ -0,0 +1,369 @@ +import { GraphQLClient } from "graphql-request"; +// import { type FormData } from "../components/download/download-form"; +// import { type AnnouncementObj } from "../components/layout/announcement"; +import queries from "./queries"; + +// Types for the API responses +interface ApiResponse { + data: T; +} + +interface Image { + id: string; +} + +export interface Introduction { + id: string; + title: string; + description: string; +} + +export interface IntroSplashEntry { + id: string; + title: string; + description: string; + demo_image: Image; + learn_more_link: string; + featured_items: FeaturedItem[]; +} + +export interface FeaturedItem { + id: string; + type: number; + image: Image; + image_description: string; + word_column_title: string; + column_words: ColumnWord[]; + image_column_title: string; + column_images: ColumnImage[]; +} + +export interface ColumnWord { + word: string; + url: string; +} + +export interface ColumnImage { + image: Image; + word: string; +} + +export interface WhyNetLogoEntry { + title: string; + content: string; + icon: Image; + order: number; +} + +export interface GetNetLogoEntry { + id: string; + title: string; + content: string; + icon: Image; + link: string; + order: number; + button_text: string; +} + +export interface CommunityEntry { + id: string; + title: string; + description: string; + icon: Image; + link: string; + order: number; + bordered: boolean; +} + +export interface PartnerEntry { + id: string; + partner_name: string; + partner_image: Image; +} + +export interface NavigationSection { + name: string; + items: NavigationItem[]; +} + +export interface NavigationItem { + display_title: string; + url: string; + in_footer: boolean; +} + +export interface ContactItem { + heading: string; + body: string; +} + +export interface AnnouncementEntry { + id: number; + title: string; + date: string; + content: string; +} + +export interface NewsEntry { + id: number; + title: string; + date: string; + body: string; +} + +export interface AboutEntry { + body: string; +} + +export interface EducatorsEntry { + body: string; +} + +export interface CampaignEntry { + body: string; +} + +export interface NetlogoCon2026Entry { + body: string; +} + +export interface ReferenceEntry { + year: number; + reference: string; + is_ccl: boolean; + //in_press: boolean; +} + +export interface GroupedReference { + year: number; + references: string[]; +} + +export interface AllData { + introduction: Introduction; + intro_splash: IntroSplashEntry[]; + why_netlogo: WhyNetLogoEntry[]; + get_netlogo: GetNetLogoEntry[]; + community: CommunityEntry[]; + featured_partners: PartnerEntry[]; + // announcement: AnnouncementObj; +} + +export interface PlatformIcon { + icon: Image; +} + +export interface DownloadLink { + platform: string; + download_url: string; + primary: boolean; + subplatform: string; + platform_icon: PlatformIcon; +} + +export interface NetLogoVersion { + version: string; + download_links: DownloadLink[]; +} + +export interface DonationData { + title: string; + text: string; + image: Image; + url: string; +} + +export interface DownloadPageData { + netlogo_versions: NetLogoVersion[]; + donation_data: DonationData[]; +} + +export interface PageEntry { + section_title: string; + section_content: string; +} + +class NetLogoAPI { + private readonly baseUrl: string; + private client: GraphQLClient; + + constructor(baseUrl: string = import.meta.env.PUBLIC_BACKEND_URL) { + this.baseUrl = baseUrl; + this.client = new GraphQLClient(this.baseUrl + "/graphql"); + } + + async fetchData(endpoint: string): Promise { + try { + const url = `${this.baseUrl}${endpoint}`; + const response = await fetch(url); + if (!response.ok) { + throw new Error(`HTTP error! status: ${response.status}`); + } + const data: ApiResponse = await response.json(); + return data.data; + } catch (error) { + console.error(`Error fetching ${endpoint}:`, error); + throw error; + } + } + + async graphqlFetchData(query: string): Promise { + try { + const data = await this.client.request(query); + return data; + } catch (error) { + console.error("GraphQL query error:", error); + throw error; + } + } + + async getMainPageData() { + return await this.graphqlFetchData(queries.mainPageData); + } + + async getDownloadPageData() { + return await this.graphqlFetchData(queries.downloadPageData); + } + + async getDonationData() { + const donationData = await this.graphqlFetchData<{ + donation_data: DonationData[]; + }>(queries.donationData); + + return donationData.donation_data; + } + + async getNetLogoVersions() { + return await this.graphqlFetchData(queries.netLogoVersions); + } + + async getContact() { + const dict = await this.graphqlFetchData<{ contact_data: ContactItem[] }>(queries.contacts); + return dict.contact_data; + } + + async getAnnouncements() { + const result = await this.graphqlFetchData<{ announcements: AnnouncementEntry[] }>( + queries.mainAnnouncements, + ); + return result.announcements; + } + + async getNews() { + const result = await this.graphqlFetchData<{ official_news: NewsEntry[] }>( + queries.officialNews, + ); + return result.official_news; + } + + async getAboutContent() { + const dict = await this.graphqlFetchData<{ about: AboutEntry }>(queries.aboutContent); + return dict.about; + } + + async getEducatorsContent() { + const dict = await this.graphqlFetchData<{ educators: EducatorsEntry }>( + queries.educatorsContent, + ); + return dict.educators; + } + + async getCampaignContent() { + const dict = await this.graphqlFetchData<{ campaign: CampaignEntry }>(queries.campaignContent); + return dict.campaign; + } + + async getNetLogoCon2026Content() { + const dict = await this.graphqlFetchData<{ netlogo_con_2026: NetlogoCon2026Entry }>( + queries.netlogoCon2026Content, + ); + return dict.netlogo_con_2026; + } + + async getReferences() { + const references: { References: ReferenceEntry[] } = await this.graphqlFetchData<{ + References: ReferenceEntry[]; + }>(queries.referenceData); + + // ***new fix stores is ccl and the refrence not jsut ref + const groupedReferences: Map = new Map(); + + //let groupedReferences: Map = new Map(); + + // Loop through the references and group them by year + references["References"].forEach((item) => { + const year = item.year; // Convert year to string for the key + + // Check if the year already exists in the map + if (!groupedReferences.has(year)) { + // If not, create a new entry with an empty array + groupedReferences.set(year, []); + } + //data is not consistent + //indexing data that i cant work with it + //how did i organize data from directus + //The issue is inconsistent data indexing or formatting when calling the getReferences() method and attempting to process or display the data. The line: + //suggests that your grouped data may not be properly returned, consumed, or structured. + + // add some console log stmts in the api and make sure it get the data how you expect the go to typesript file + + // Push the reference into the array for that year + //groupedReferences.get(year)?.push(item.reference); + + //***new fix 2: ensure that each reference is stored with the text and the is_ccl field proper rendering + + groupedReferences.get(year)?.push({ + reference: item.reference, + is_ccl: item.is_ccl, + }); + }); + // *** new fix 3: return in coreect strucure + //console.log('Grouped References:', groupedReferences); + //return groupedReferences; + + // *** new fix 4: make sure the data is formatted into the array shape your frontend expects + const groupedArray = Array.from(groupedReferences.entries()).map(([year, refs]) => ({ + year, + references: refs, + })); + + //console.log('Grouped References:', groupedArray); + + // sort the array by year in descending order + groupedArray.sort((a, b) => b.year - a.year); + + return groupedArray; + + //return references['References'] + } + + async getNavigationData() { + return await this.graphqlFetchData<{ + navigation_sections: NavigationSection[]; + }>(queries.navigationData); + } + + async getResourcesData() { + const resourcesData = await this.graphqlFetchData<{ + resources: PageEntry[]; + }>(queries.resourcesData); + + return resourcesData.resources; + } + + // async sendDownloadForm(formData: FormData) { + // const url = this.baseUrl + "/items/download_responses"; + + // const response = await fetch(url, { + // method: "POST", + // headers: { + // "Content-Type": "application/json", + // }, + // body: JSON.stringify(formData), + // }); + + // return response; + // } +} + +export default NetLogoAPI; diff --git a/apps/netlogo/app/utils/exploreReferences.json b/apps/netlogo/app/utils/exploreReferences.json new file mode 100644 index 00000000..dd1bac39 --- /dev/null +++ b/apps/netlogo/app/utils/exploreReferences.json @@ -0,0 +1,71602 @@ +[ + { + "id": 31668, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Albati, M., Bui, H., Reihani, S., Yadav, V., Mandelli, D., & Mohaghegh, Z. (2025). Integrated Human Reliability Analysis Methodology for External Control Room Emergency Response Scenarios: Application to Modeling FLEX Human Actions in Nuclear Power Plants.\u00a0ASCE-ASME J Risk and Uncert in Engrg Sys Part B Mech Engrg, 1-41.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, History, Economics, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31669, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Alkaher, D., Frenkel, M., Taylor, E., & Bengo, Y. Tug of War: Modeling Innovation Contagion and Resistance in Public Sector Organizations.\u00a0Available at SSRN 5225828.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31670, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Alonso-Adame, A., Farahbakhsh, S., Van Meensel, J., Marchand, F., & Van Passel, S. (2025). Factors to scale out innovative organic farming systems: A case study in Flanders region, Belgium. Agricultural Systems, 224, 104219.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31671, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Alwasel, A., Fakhimi, M., Mustafee, N., & Stergioulas, L. (2025).Modeling and Simulation for Behavioral Analysis in Healthcare: A Review. ACM Transactions on Modeling and Computer Simulation.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Simulation, Healthcare" + }, + { + "id": 31672, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Andy, Y. W. C., Shiang, C. W., & Paschal, C. H. (2025). Agent-Oriented Modelling and Simulation for Robotic Based Predator Control.\u00a0JOIV: International Journal on Informatics Visualization,\u00a09(2), 607-616.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Simulation, Computer Science, Robotics, Ecology" + }, + { + "id": 31673, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Angourakis, A., Baudouin, J. P., & Petrie, C. A. (2025). The Weather Model (Indus Village): Procedural Generation of Daily Weather for the Simulation of Small-Scale Socioecological Systems.\u00a0Available at SSRN 5236256.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31675, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Baden-B\u00f6hm, F., Hellwig, N., Dauber, J., & Thiele, J. (2025). Efficiency of flower strips for bumblebee colonies depends on nesting habitat and interactions with semi-natural habitats and mass-flowering crops. Landscape Ecology, 40(7), 1-18.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31676, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Barnard, L. N. Using agent based modelling to determine behavioural rules in host location by Cotesia parasitoids (in environments with competitors and nonhosts).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology" + }, + { + "id": 31677, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Betancur, J. E. H., & Parias, C. G. (2025). NetLogo as a methodological tool for the analysis of social systems: A systematic literature review.\u00a0Multidisciplinary Reviews.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31678, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Breen, M. J., Kebede, A. S., & K\u00f6nig, C. S. (2025). Agent-based socio-spatial modelling of coupled human-flood interactions along the UK coast.\u00a0Environmental Research: Infrastructure and Sustainability.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31679, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Cabuya-Padilla, D., D\u00edaz-L\u00f3pez, D., Mart\u00ednez-P\u00e1ez, J., Hern\u00e1ndez, L., & Castaneda-Marroquin, C. (2025). SERDUX-MARCIM: Maritime Cyberattack simulation using Dynamic Modeling, Compartmental Models in Epidemiology and Agent-based Modeling.\u00a0International Journal of Information Security,\u00a024(3), 1-48.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 31680, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Campbell, A. M., Kula, A. C., Jabaily, R. S., Oberle, B., Sidoti, B., Capaldi, A., & Bodine, E. N. (2025). Predicting potential recovery of the endangered bromeliad Tillandsia utriculata: An agent-based modeling approach. PLOS Computational Biology, 21(6), e1013157. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Computer Science, Ecology, Archaeology, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31681, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Carnovale, S., DuHadway, S., Patrucco, A. S., & Yeniyurt, S. (2025). Balancing risk and resilience: how network structures and firm strategies mitigate supply chain disruptions. International Journal of Physical Distribution & Logistics Management.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31682, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Cela, H., Vogrin, M., Schmickl, T., & Wood, G. (2025). Emotional dynamics and engagement cycles in swiping dating apps: An agent-based modeling approach. Computers in Human Behavior Reports, 100775.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31683, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Cheng, Y., & \u0160iljak, H. (2025). Strategies for decentralised UAV-based collisions monitoring in rugby.\u00a0arXiv preprint arXiv:2503.22757.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31684, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Chidley, B. (2025). A Framework Agnostic Method for Sensitivity Analysis and Parameter Specification on Agent-Based Disease Models (Doctoral dissertation).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31685, + "sort": null, + "year": 2025, + "is_ccl": true, + "reference": "Gok, S., Levy, S. T., Wilensky, U., & Dawud, T. (2025). Dynamic Equilibrium in Science Education: Cross-Disciplinary Perspectives. In P. Seitamaa-Hakkaraine & K. Kangas (Eds.), Proceedings of 19th International Conference of the Learning Sciences (ICLS) 2025. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31686, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "de Tarl\u00e9, L. D., Michelini, M., \u0160e\u0161elja, D., & Stra\u00dfer, C. (2025). Argumentative Agent-Based Models.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31687, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Divasson-J, A., Macarulla, A. M., Garcia, J. I., & Borges, C. E. (2025). Agent-based modeling in urban human mobility: A systematic review. Cities, 158, 105697.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31688, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Do, K. B., Nguyen, N. A., Pham, N. S., Tran, N. D., & Huynh, Q. L. (2025). Modeling the Physiological Response of Skeletal Muscle to Various Physical Activities. In\u00a0International Conference on the Development of Biomedical Engineering in Vietnam\u00a0(pp. 908-918). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Physical Activity, Biomedical Engineering, Economics, Physics, History, Sociology, Urban Studies" + }, + { + "id": 31689, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Dorchies, D., Bont\u00e9, B., Promduangsri, P., & Sil, D. (2025).\u00a0Fostering integrated water resource management coupling airGRiwrm hydrological model and agent-based modeling (NetLogo)\u00a0(No. EGU25-18255). Copernicus Meetings.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31690, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Etemadidavan, S., & Collins, A. J. (2025). Agent-based model for multiple team membership: implications for system design.\u00a0International Journal of Organization Theory & Behavior.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31691, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Feliciani, T. (2025). Divided Spaces and Divided Opinions: Modeling the Impact of Residential Segregation on Opinion Polarization.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31692, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Fukuda, M., Wang, K., Panther, S., Wong, N., Dudder, I., & Shao, Q. (2025). An Analysis of Three C/C++ Cluster-Computing Libraries for Agent-Based Models.\u00a0ACM Transactions on Modeling and Computer Simulation.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Ecology, Economics, Physics, Chemistry" + }, + { + "id": 31693, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Fuhrmann, T., Rabinowitz, G., Peel, A., Jacob, S., Burke, Q., Krakowski, A., ... & Lee, I. (2025). Computational Thinking Without Writing Code: What\u2019s Next for Computational Modeling?. In Proceedings of the 19th International Conference of the Learning Sciences-ICLS 2025, pp. 2417-2425. International Society of the Learning Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science, Biology, Ecology, Miscellaneous" + }, + { + "id": 31694, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Galeano, R. E. G. R. E., Wong, A., Rexachs, D., Suppi, R., Bruballa, E., Epelde, F., & Luque, E. (2025). Impact of the population pyramid on the ED.\u00a0Journal of Computer Science and Technology,\u00a025(1), e05-e05.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 31695, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Gao, Y., Zhuang, Y., Wang, J., & Li, M. (2025, January). Research and implementation of a simulation training system for grid control strategies with integration of distributed new energy sources and energy storage devices. In International Conference on Mechatronics and Intelligent Control (ICMIC 2024) (Vol. 13447, pp. 326-332). SPIE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mechatronics and Intelligent Control, Simulation, Energy, Physics, Computer Science, Economics, Archaeology, History, Social Science, Education, Epidemiology" + }, + { + "id": 31696, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Gauvin, L., & Randon-Furling, J. (2025). Segregation in cities. Compendium of Urban Complexity, 137.", + "doesnt_really_use_netlogo": true, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 31697, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Grimm, V., Berger, U., Calabrese, J. M., Cort\u00e9s-Avizanda, A., Ferrer, J., Franz, M., ... & Railsback, S. F. (2025). Using the ODD protocol and NetLogo to replicate agent-based models. Ecological Modelling, 501, 110967.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31698, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Grizioti, M., & Kynigos, C. (2025, June). Extending Constructionist Media With Emerging Digital Technologies for Critical Computational Thinking: Emerging Technologies for Critical CT. In Constructionism Conference Proceedings (Vol. 8, pp. 123-136).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Constructionist" + }, + { + "id": 31699, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Gumeniuk, L., Markina, L., Satsyk, V., Humeniuk, P., & Lashch, A. (2025). Application of multi-agent programming for modeling the viscosity state of mash in alcohol production.\u00a0Informatyka, Automatyka, Pomiary w Gospodarce i Ochronie \u015arodowiska,\u00a015(1), 27-32.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 31700, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "G\u00fcz, \u015e., & Murakami, S. (2025). A systematic literature review of simulation models for flows, markets, and sustainability of critical energy transition minerals. Resources, Conservation & Recycling Advances, 200271.f", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31701, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Habtemariam, D. Y., Kim, Y., Kim, M., & Lee, J. (2025). WSim4ABM: Agent-based Modelling simulation Web service with Message-broker middleware and Annotation processing library.\u00a0SoftwareX,\u00a030, 102173.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Modeling" + }, + { + "id": 31702, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Hajian-Forooshani, Z., Rivera-Salinas, I. S., Perfecto, I., & Vandermeer, J. (2025). The population dynamics of clustered consumer\u2013resource spatial patterns: Insights from the demographics of a Turing mechanism. Proceedings of the National Academy of Sciences, 122(3), e2407991121.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 31703, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Hampwaye, N., Wang, J., Revell, A., Manchester, E., Aldersley, T., Zuhlke, L., ... & Ngoepe, M. (2025). Growth in a two-dimensional model of coarctation of the aorta: A CFD-informed agent based model. Journal of Biomechanics, 112514.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, CFD, Computer Science, Modeling" + }, + { + "id": 31704, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Hart, P. (2025). Can Power Be Given to Fishers to Manage Their Own Fishery? A Modelling Study Incorporating the Concept of Social Capital as a Force for Good Management. A Modelling Study Incorporating the Concept of Social Capital as a Force for Good Management.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Social Science" + }, + { + "id": 31705, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Herzog, R. H., Degkwitz, T., & Verma, T. (2025). The Urban Model Platform: A Public Backbone for Modeling and Simulation in Urban Digital Twins. arXiv preprint arXiv:2506.10964.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31706, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Ionescu, \u015e., T\u0103taru, G., Dumitrecu, G., & Stanic\u0103, N. B. (2025, May). Modeling Financial Contagion: Exploring Interconnectedness and Systemic Risk Through Agent-Based. In\u00a0Proceedings of 23rd International Conference on Informatics in Economy (IE 2024): Recent Results in Education, Research, and Applications\u00a0(Vol. 426, p. 263). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Computer Science, Miscellaneous" + }, + { + "id": 31707, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Jin, C., LI, L., Zhang, X., Wang, J., Merveille, N., & Zhang, J. Trading-Off Non-Monetary for Monetary Incentives in Community-Based Home Charging Stations Sharing Diffusion.\u00a0Available at SSRN 5236362.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 31708, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Koid, E., van der Voort, H., & Warnier, M. (2025). Agent-based modeling for data-driven enforcement: combining empirical data with behavioral theory for scenario-based analysis of inspections. Data & Policy, 7, e6.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31709, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Kreikemeyer, J. N., Jankowski, M., Wilsdorf, P., & Uhrmacher, A. M. (2025, June). Synopsis: Using (Not-so) Large Language Models to Generate Simulation Models in a Formal DSL: A Study on Reaction Networks. In 39th ACM SIGSIM Conference on Principles of Advanced Discrete Simulation (pp. 56-57).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Simulation Modeling" + }, + { + "id": 31710, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Letschert, J., M\u00fcller, B., Dressler, G., M\u00f6llmann, C., & Stelzenm\u00fcller, V. (2025). Simulating fishery dynamics by combining empirical data and behavioral theory. Ecological Modelling, 501, 111036.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Social Science, Education" + }, + { + "id": 31711, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Leonard-Duke, J., Agro, S. M., Csordas, D. J., Bruce, A. C., Eggertsen, T. G., Tavakol, T. N., ... & Peirce, S. M. (2025). Multiscale computational model predicts how environmental changes and treatments affect microvascular remodeling in fibrotic disease. PNAS Nexus, 4(1), pgae551.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 31712, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Li, T., Flache, A., & Jager, W. (2025). How culture can affect opinion dynamics: the case of vaccination. Journal of Computational Social Science, 8(1), 1-45.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31713, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Liu, L. (2025). 12 Agent-Based Modeling and.\u00a0Urban Human Mobility: Practices, Analytics, and Strategies for Smart Cities, 138.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31714, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Liu, S., Li, C., He, Q., Men, B., Wu, D., Hai, R., Wu, X. & Ding, H. (2025). Layer-resolving ability and model analysis of LIBS for multilayer samples with a four-layer structure under different focusing conditions. Journal of Analytical Atomic Spectrometry.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 31715, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Li, X., Hao, J., Ding, Z., Yang, J., & Yao, Y. (2025). Unveiling the driving mechanism of greenwashing behaviors: an agent-based modeling approach integrating new institutionalism and halo effect theories. Humanities and Social Sciences Communications, 12(1), 1-16.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31716, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Luis, M., Harper, A., Monks, T., & Mustafee, N. NETLOGOPY: UNLOCKING ADVANCED SIMULATION AND INTEGRATION FOR NETLOGO USING PYTHON.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Miscellaneous" + }, + { + "id": 31717, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Lv, J., Wang, X., & Chen, Y. (2025). Agent-based simulation of trust networks and opportunistic behaviours of hydraulic infrastructure project participants. PloS one, 20(1), e0316992.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31718, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Lv, W., Deng, F., Wang, J., Han, Y., & Yang, S. (2025). Large-scale real-time evacuation modeling during urban floods: a coupled agent-based multi-model framework. Simulation Modelling Practice and Theory, 103075.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Economics, History, Epidemiology, Miscellaneous" + }, + { + "id": 31719, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Macke, S., Sadiq, A. O., Lyons, M., & Swahn, M. (2025). Modeling Homelessness: An Agent-Based Simulation of Social Dynamics and Housing Instability.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31720, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Mahdi, M. A., Yousif, A. Y., & Salman, M. A. (2024). Learning Approach. In Innovations of Intelligent Informatics, Networking, and Cybersecurity: Second International Conference, 3INC 2024, Babylon, Iraq, October 15\u201316, 2024, Proceedings (p. 3). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Learning Approach" + }, + { + "id": 31721, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Malik, M. M. S3. 2.4: Introduction to Computational and Data Science in the Social Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 31722, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Manseau, J. (2025). Understanding The Effects Of AI Tasks And Social Deskilling: An Agent-Based Model.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31723, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Mubina, T. (2025). UMUMTA\u2019LIM MAKTABLARIDA BIOLOGIYA VA MATEMATIKA FANLARIDAN INTEGRATSIYA DARSLARINI TASHKIL ETISH. GERMANY-SCIENTIFIC REVIEW OF THE PROBLEMS AND PROSPECTS OF MODERN SCIENCE AND EDUCATION, 1(4), 22-28.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics" + }, + { + "id": 31724, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Odden, T. O. B., & Zwickl, B. (2025). How physics students build computational literacy by creating computational literature.\u00a0Journal of the Learning Sciences, 1-43.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Physics" + }, + { + "id": 31725, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "O\u2019Gara, D., Kasman, M., H\u00e9bert-Dufresne, L., & Hammond, R. A. (2025). Adaptive behaviour during epidemics: a social risk appraisal approach to modelling dynamics. Journal of the Royal Society Interface, 22(222), 20240363.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 31726, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Orth, A., & Sch\u00fctte, R. Dynamic dune management on Sylt: A modelling approach.\u00a0Crossing Borders, Blending Perspectives, 155.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 31727, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Osorio Antonia, J., Rivas-Tovar, L. A., & P\u00e9rez-Ju\u00e1rez, F. (2025). Simulation of Corn Production in Chicontepec Veracruz with Agent-Based Modeling.\u00a0Computaci\u00f3n y Sistemas,\u00a029(1), 529-544. doi: 10.13053/CyS-29-1-5293", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 31728, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "\u00d6zk\u00f6k, M. K. (2025). What A Really Small World: A Simulation Model for the Formation and Patterns of Social Networks in Urban Environments. ASR: CMU Journal of Social Sciences and Humanities (2025) Vol.12 No.2. doi: https://doi.org/10.12982/CMUJASR.2025.018", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31729, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Paiva, E. J. D., & Rocha, A. M. A. (2025). Simulation on Home Healthcare Problem: A Systematic Literature Review. In International Conference on Innovations in Bio-Inspired Computing and Applications (pp. 24-36). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Economics, Literature, Methodology, Bio-Inspired Computing, Application" + }, + { + "id": 31730, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Palardy, G., Yoo, K. W., Fatma, S., Mukherjee, A., Wang, C., Ravi, P., & Chitnis, A. (2025). SoxB1 family members inhibit Wnt signaling to promote maturation and deposition of stable neuromasts by the zebrafish Posterior Lateral Line primordium.\u00a0bioRxiv, 2025-04.", + "doesnt_really_use_netlogo": true, + "in_press": false, + "subject": "Biology, Wnt signaling, Zebrafish, Neuromasts, Aging" + }, + { + "id": 31731, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Patten, S. B. (2025). A Dimensional Diagnostic Strategy for Depressive Disorders. Journal of Clinical Medicine 14(3). https://doi.org/10.3390/jcm14030844\n\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Depression, Diagnostic Strategy, Clinical Medicine" + }, + { + "id": 31732, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Pavanini, T. (2025). Rural Demand Responsive Transport: Current Developments and Analysis of a Case Study in an Italian Inner Area. Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31733, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Perumal, C. D., Nofal, A., Kolber, B. J., & Miller Neilan, R. (2025). Web Application for Simulation of an Agent-Based Model in NetLogo3D.\u00a0Spora: A Journal of Biomathematics,\u00a011(1), 64-75.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 31734, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Pleyer, J., & Fleck, C. (2025). cellular_raza: Cellular Agent-based Modeling from a Clean Slate. Journal of Open Source Software, 10(110), 7723.", + "doesnt_really_use_netlogo": true, + "in_press": false, + "subject": "Biological Modeling" + }, + { + "id": 31735, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Premo, L. S., & Rezek, Z. (2025). Modeling Cultural Transmission in Structured Populations Raises Important Questions for Archaeologists. Journal of Archaeological Method and Theory, 32(1), 1-34.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 31736, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Qasim, R. (2025).\u00a0Multiscale Integration of Receptor-Ligand Dynamics Into Discrete and Continuous Tumor Growth Models With Application to Tyrosine Kinase Inhibitor Treatment\u00a0(Master's thesis, The University of Texas at El Paso).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31737, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Radisch, F. (2025). Accountability and Educational Improvement Arnoud Oude Groote Beverborg Tobias Feldhoff Katharina Maag Merki.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 31738, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "RAIMBAULT, J. (2025). Co-evolution in Urban Systems. Centralities and Hierarchies of Networks and Territories, 217.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31739, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Rana, V., & Singh, V. (2025). Designing Agent-Based Models: A Methodological Approach from Practical Insights and Lessons Learned from Case Study.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31740, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Renzini, F. (2025). Network formation dynamics in asymmetric coordination games. Rationality and Society, 10434631241309265.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 31741, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Repenning, A. (2025, June). From TikTok to Hard Fun: Progressive Engagement in Computational Thinking through Game Design. In Constructionism Conference Proceedings (Vol. 8, pp. 227-238).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 31742, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Reyes, C., Knight, O., & Stewart, P. (2025). Agent-Based Simulation of Competitive Market Dynamics for Strategic Business Planning.\u00a0Journal of Innovation in Governance and Business Practices,\u00a01(1), 1-31.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31743, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Rodr\u00edguez, A., Gait\u00e1n-Angulo, M., G\u00f3mez-Caicedo, M. I., Robayo-Acu\u00f1a, P., & Ru\u00edz-Castro, I. R. (2025). Innovameter: Agent-based modeling of innovation determinants in American and European countries. PloS one, 20(1), e0313756.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31744, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Roelofsen, R. (2025). The Influence of ACT-R\u2019s Declarative Memory System on the HUMAT Agent-Based Model (Doctoral dissertation).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Archaeology, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31745, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Roukounis, C. N., Chondros, M., Tsoukala, V. K., & Tsihrintzis, V. A. (2025). Agent-Based Modeling Under Climate Uncertainties: The Coastal Resilience (CRes-ABM) Model. Journal of Geovisualization and Spatial Analysis, 9(1), 11.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Climate, Modeling, Spatial Analysis" + }, + { + "id": 31746, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Ruesink, B., & Gronau, S. (2025). Forest resource management, refugee integration, and food security in rural Zambia: balancing sustainability and equity. Food Security, 1-27.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31747, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Sabutkevich, A. M., Vikhlyaev, D. A., Kuboy, N. A., & Nikiforov, I. V. (2025, July). of Multi-agent System Behavior Using Simulation System. In Digital and Information Technologies in Economics and Management: Proceedings of the International Scientific and Practical Conference\" Digital and Information Technologies in Economics and Management\"(DITEM2024) (Vol. 1422, p. 55). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 31748, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Schnelle, C. K. (2025). AGENT-BASED SIMULATION OF ENERGY POVERTY: INSIGHTS INTO ENERGY JUSTICE AND EQUITY SOLUTIONS.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31749, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Schulz, A. W. (2025). Intraspecific economics: interpersonal utility comparisons, evolution and culture. Behavioural Public Policy, 1-22.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Economics" + }, + { + "id": 31750, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Shen, Y., & Yang, Q. (2025). A mathematical model for biological motor learning based on synaptic dynamics. Chaos, Solitons & Fractals, 191, 115839.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Physics, Computer Science" + }, + { + "id": 31751, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Shin, B., Cockrell, R., & An, G. (2025). The Burn Agent-Based Model (BABM): Developing a Computational Agent-based Model of the Burn Wound Healing Process to Examine Fibrosis and Re-epithelialization After a Partial-thickness Burn Injury.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, Economics, History, Social Science, Education, Epidemiology" + }, + { + "id": 31752, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Shoger, J. L. (2025). From Analogue to Digital Command and Control Decision-Making: The Law of Requisite Variety and Fuzzy Methods in Quantifying Situation Assessment (Doctoral dissertation, State University of New York at Binghamton).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31753, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Simpkins, C. E., Bellingham, P. J., Reihana, K., Brock, J. M., & Perry, G. L. (2025). Evaluating the effects of two newly emerging plant pathogens on northern Aotearoa-New Zealand forests using an individual-based model. Ecological Modelling, 500, 110938.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31754, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Socci, V., Vitanza, E., & Mocenni, C. (2025). An agent-based model to foster citizens\u2019 sustainable behavior in the Italian city of Siena.\u00a0The European Physical Journal B,\u00a098(4), 72.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31755, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Sosa, B., Zellner, M., Chiale, C., & Achkar, M. (2025). Explaining woody invasions in riparian systems with agent-based simulations: Implications for conservation management. Forest Ecology and Management, 576, 122363.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31756, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Stephan, J., Fritzsch, S., & Weiss, G. N. (2025). Riding the Crypto Rollercoaster: Agent-Based Insights into Bitcoin\u2019s Price Dynamics.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31757, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Sun, H., Shao, C., Zhang, J., Wang, K., & Huang, W. (2025). Evolution Analysis of Network Attack and Defense Situation Based on Game Theory.\u00a0Computers, Materials & Continua,\u00a083(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Social Science, Education, Epidemiology" + }, + { + "id": 31758, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Thelin, M., & Helgesson, M. (2025). Comparative Analysis of Discrete-Event Simulation Programs. [Master Thesis, Lund University].", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31759, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Tkach, Y. (2025, April). Agent-Based Modelling of Information. In\u00a0Mathematical Modeling and Simulation of Systems: Selected Papers of 19th International Conference, MODS, November 11\u201313, 2024, Chernihiv, Ukraine\u00a0(Vol. 1391, p. 195). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Agent-Based Modelling" + }, + { + "id": 31760, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Ty, C., Case, A., Mezzulo, E., Penland, A., & Larripa, K. (2025). An Agent-Based Model of Microglia and Neuron Interaction: Implications in Neurodegenerative Disease. Spora: A Journal of Biomathematics, 11(1), 20-35.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 31761, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Upadhyaya, A. N. (2025). Tools and Technologies.\u00a0Ethics and AI Integration Into Modern Classrooms, 65.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Tools and Technologies" + }, + { + "id": 31762, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Usul, M. E. (2025). THOVEA: A Three-Layer Visual Analytics System for Information Diffusion over Large Networks (Doctoral dissertation, Technische Universit\u00e4t Wien).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Archaeology, Miscellaneous" + }, + { + "id": 31763, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Utami, I. D., Novianti, T., Mutjtahid, A. H., Hariyanto, H. H., & Achyar, M. A. N. (2025, June). The design of Cabya (Piper retrofractum Vahl.) distribution to minimize the shipment costs. In AIP Conference Proceedings (Vol. 3234, No. 1, p. 060004). AIP Publishing LLC.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31764, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "van der Koogh, M. L. (2025). Dynamics of Charging.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry" + }, + { + "id": 31765, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Vijayan, M., Patil, A., & Kapse, V. (2025). Embracing the Complexity of Cities: Agent-Based Modelling for Energy Planning and Policy. In Urban Planning and Design for Megacities in the Global South: Smart and Sustainable Development (pp. 419-439). Singapore: Springer Nature Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31766, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Wagh, A., Rosenbaum, L. F., Eloy, A., Fuhrmann, T., Henrique, B., Blikstein, P., & Wilkerson, M. H. (2025). Designing for Discourse: Enacting Responsive Teaching through Code Reflections in a Computational Modeling Unit. In Proceedings of the 19th International Conference of the Learning Sciences-ICLS 2025, pp. 377-385. International Society of the Learning Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Discourse" + }, + { + "id": 31767, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Wang, J., Li, J., Wu, J., Tang, Y., Zhang, Z., Fu, Y., & Wang, X. (2025). Mechanical modeling of biofilm morphology variation induced by changes in environments and internal stress. International Biodeterioration & Biodegradation, 198, 105989.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 31768, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Weerasinghe, O., Hewage, K., Razi, F., Fatmi, M., & Sadiq, R. (2025). Applicability of Land-Use Models for Sustainable Urban Planning: A Review. Journal of Urban Planning and Development, 151(3), 04025037.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31769, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "William, P., Kuppusamy, S., Samundeeswari, A., Vijayabharathi, R., Hajiyeva, R. J., Thangavel, K., & Alagarsamy, M. (2025). Integrating IoT and Machine Learning for Real-Time Monitoring of Infectious Waste Management. In Hospital Waste Management and Toxicity Evaluation (pp. 299-320). IGI Global Scientific Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Machine Learning, IoT, Infectious Waste Management, Hospital Waste Management, Physics, Ecology, Computer Science, Economics, Archaeology, Social Science, Urban Studies" + }, + { + "id": 31770, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Yang, X., Lv, W., Yang, T., & Baesens, B. (2025). Collaborative governance of cyber violence: A two-phase, multi-scenario four-party evolutionary game and SBI1 I2R public opinion dissemination. Information Processing & Management, 62(6), 104242.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31771, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Yousef, K., Yuce, B., & He, N. (2025). Renewable Energy Strategic Planning and Management: An Agent-Based Modeling and Simulation. Available at SSRN 5279357.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31772, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Yu, X. SUPPLEMENTARY MATERIALS: An agent-based approach to the gravity model of linguistic diffusion.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31773, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Yuan, J., Shao, Q., Sun, J., Zhang, J., & Peng, X. (2025). Research on prevention and control strategies for passenger group events due to flight delays based on multi-agent modelling. Travel Behaviour and Society, 41, 101077.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31774, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Yusuf, M., Sophan, M. K., & Satoto, B. D. (2025). Analisa Proses Bisnis. Media Nusa Creative (MNC Publishing).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Economics, Miscellaneous" + }, + { + "id": 31775, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Zaccagnino, R., Lettieri, N., Malandrino, D., Lomasto, L., Camoia, A., & Guarino, A. (2025). Turning AI into a regulatory sandbox: exploring information disorder mitigation strategies with ABM and deep reinforcement learning. Neural Computing and Applications, 1-42.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31776, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Zeng, J., Lei, S., Qian, Y., & Wei, X. Multi-person Group Walking Behavior Simulation in Urban Pedestrian Street.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 31777, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Zhang, C., Zhang, F., Yin, S., Fu, Y., Liu, J., & Duan, P. (2025). Study on the optimization of duration for repetitive projects considering spatial interference effects in operations.\u00a0Journal of Asian Architecture and Building Engineering, 1-26.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31778, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Zhu, W., Han, W., Lu, R., & Lei, J. (2025). The impact of enterprises\u2019 scientific capabilities on innovation performance: evidence from an empirical analysis and simulation model.\u00a0Humanities and Social Sciences Communications,\u00a012(1), 1-18.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Innovation, Simulation, Economics, Science, Computer Science, Modeling, Social Science, Empirical Analysis" + }, + { + "id": 31779, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "\u0410\u043b\u0435\u043a\u0441\u0435\u0435\u0432\u0430, \u0415. \u0410. (2024). \u041c\u0435\u0442\u043e\u0434\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u043e\u0435 \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u044d\u043a\u0441\u043f\u0435\u0440\u0438\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u043e\u0439 \u0438 \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u043d\u043e\u0439 \u0444\u0438\u043b\u043e\u0441\u043e\u0444\u0438\u0438.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Philosophy" + }, + { + "id": 31780, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "\u0414\u0437\u0456\u0433\u043e\u0440\u0430, \u041a. \u0420. (2025).\u00a0\u0414\u0438\u0441\u0435\u0440\u0442\u0430\u0446\u0456\u044f \u00ab\u0421\u043e\u0446\u0456\u0430\u043b\u044c\u043d\u0456 \u043c\u0435\u0440\u0435\u0436\u0456 \u044f\u043a \u0444\u043e\u0440\u043c\u0438 \u0440\u0435\u043f\u0440\u0435\u0437\u0435\u043d\u0442\u0430\u0446\u0456\u0457 \u0456\u0441\u0442\u043e\u0440\u0438\u0447\u043d\u043e\u0457 \u043f\u0430\u043c\u2019\u044f\u0442\u0456\u00bb\u00a0(Doctoral dissertation, \u041a\u0438\u0457\u0432\u0441\u044c\u043a\u0438\u0439 \u0441\u0442\u043e\u043b\u0438\u0447\u043d\u0438\u0439 \u0443\u043d\u0456\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442 \u0456\u043c\u0435\u043d\u0456 \u0411\u043e\u0440\u0438\u0441\u0430 \u0413\u0440\u0456\u043d\u0447\u0435\u043d\u043a\u0430).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31781, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "\u041f\u0430\u0442\u0430\u0440\u0430\u043a\u0438\u043d, \u0415. \u0414., & \u0428\u0438\u0448\u043a\u043e\u0432, \u041c. \u0421. (2025). \u041f\u0440\u043e\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0445 \u043f\u0440\u0430\u043a\u0442\u0438\u043a \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043c\u043d\u043e\u0433\u043e\u0430\u0433\u0435\u043d\u0442\u043d\u043e\u0433\u043e \u043f\u043e\u0434\u0445\u043e\u0434\u0430.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 31782, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "\u0411\u0443\u043c\u0430\u0436\u043a\u0438\u043d\u0430, \u041d. \u042e. (2025). \u041f\u043e\u0434\u0445\u043e\u0434 \u043a \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0435 \u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u044b \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0433\u043e \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u0430 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0438 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 \u043f\u0435\u0440\u0435\u0440\u0430\u0437\u043c\u0435\u0449\u0435\u043d\u0438\u044f \u0432\u0438\u0440\u0442\u0443\u0430\u043b\u044c\u043d\u044b\u0445 \u043c\u0430\u0448\u0438\u043d \u0432\u0438\u0440\u0442\u0443\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u0446\u0435\u043d\u0442\u0440\u0430 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u0434\u0430\u043d\u043d\u044b\u0445.\u00a0\u0418\u0437\u0432\u0435\u0441\u0442\u0438\u044f \u0432\u044b\u0441\u0448\u0438\u0445 \u0443\u0447\u0435\u0431\u043d\u044b\u0445 \u0437\u0430\u0432\u0435\u0434\u0435\u043d\u0438\u0439. \u041f\u043e\u0432\u043e\u043b\u0436\u0441\u043a\u0438\u0439 \u0440\u0435\u0433\u0438\u043e\u043d. \u0422\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043d\u0430\u0443\u043a\u0438, (1 (73)), 16-28.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31783, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "\u041a\u0430\u0440\u043f\u0435\u043d\u043a\u043e, \u0412. \u0420. (2025). \u0420\u043e\u0437\u0440\u043e\u0431\u043a\u0430 \u043f\u0430\u0440\u0430\u043b\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0432\u0435\u0431\u0441\u0435\u0440\u0432\u0435\u0440\u0443 \u0434\u043b\u044f \u0447\u0438\u0441\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u043c\u043e\u0434\u0435\u043b\u044e\u0432\u0430\u043d\u043d\u044f.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology\n```\n```" + }, + { + "id": 31784, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "\u0427\u0435\u0440\u043d\u044f\u0432\u0441\u044c\u043a\u0438\u0439, \u041e. \u042e. \u0412\u0418\u041a\u041e\u0420\u0418\u0421\u0422\u0410\u041d\u041d\u042f \u0421\u0423\u0427\u0410\u0421\u041d\u0418\u0425 \u0422\u0415\u0425\u041d\u041e\u041b\u041e\u0413\u0406\u0419 \u0414\u041b\u042f \u0412\u0406\u0414\u041d\u041e\u0412\u041b\u0415\u041d\u041d\u042f \u041d\u0415\u0421\u041f\u0420\u0410\u0412\u041d\u041e\u0407 \u0422\u0415\u0425\u041d\u0406\u041a\u0418. \u0420\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u043e\u0432\u0430\u043d\u043e \u0434\u043e \u0434\u0440\u0443\u043a\u0443 \u0432\u0447\u0435\u043d\u043e\u044e \u0440\u0430\u0434\u043e\u044e \u041d\u0430\u0446\u0456\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0443\u043d\u0456\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0443 \u00ab\u0427\u0435\u0440\u043d\u0456\u0433\u0456\u0432\u0441\u044c\u043a\u0430 \u043f\u043e\u043b\u0456\u0442\u0435\u0445\u043d\u0456\u043a\u0430\u00bb(\u043f\u0440\u043e\u0442\u043e\u043a\u043e\u043b \u2116 6 \u0432\u0456\u0434 26.05. 2025), 303. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31785, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Agust\u00edn, V. (2025). The Future as Origin.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31786, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Alvarenga, V. F. O., Mesquita, O. C., Magalh\u00e3es, F., & da Mata, A. S. (2025). O primeiro passo rumo \u00e0 pesquisa e ao ensino superior: um relato da experi\u00eancia sobre BIC J\u00fanior. Studies in Education Sciences, 6(2), e16891-e16891.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Education, Miscellaneous" + }, + { + "id": 31787, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Ara\u00fajo, E. (2025). Uso da modelagem baseada em agentes no estudo de sistemas complexos.\u00a0Revista Brasileira de Ensino de F\u00edsica,\u00a047.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Physics" + }, + { + "id": 31788, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Castro Castro, V. (2025). Ictiodiversidad de Laguna Pampa El Cabildo, Chiapas, M\u00e9xico. Una aproximaci\u00f3n de an\u00e1lisis como un sistema complejo adaptativo.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 31789, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "\u041d\u0435\u0434\u0456\u043b\u044c\u043a\u043e, \u0406. \u041c. (2025). \u0417\u0430\u0433\u0430\u043b\u044c\u043d\u0438\u0439 \u043e\u0433\u043b\u044f\u0434 \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0438 \u0434\u043b\u044f \u0430\u0433\u0435\u043d\u0442\u043d\u043e\u0433\u043e \u043c\u043e\u0434\u0435\u043b\u044e\u0432\u0430\u043d\u043d\u044f \u044f\u043a \u0430\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u0430 NetLogo.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31790, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Nunes, J. X., Ramos, M. I., Costa, W. C., & Almeida, R. T. S. (2025). AVALIA\u00c7\u00c3O ESPACIAL DOS REGISTROS DE DENGUE NO MUNIC\u00cdPIO DE NER\u00d3POLIS NO ANO DE 2022.\u00a0REVISTA UNIARAGUAIA,\u00a020(1), 56-65.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31791, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "\u8d3e\u5b8f\u521a, \u738b\u4f1f, & \u627f\u6960. (2025). \u57fa\u4e8e NetLogo \u7684\u591a\u667a\u80fd\u4f53\u7a7a\u6218\u6a21\u62df.\u00a0Command Control & Simulation/Zhihui Kongzhi yu Fangzhen,\u00a047(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 31792, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "\u5218\u5609, \u8881\u6b23, \u962e\u4f1f\u4e54, & \u767d\u664b\u5b87. (2025). \u547c\u5438\u9053\u4f20\u67d3\u75c5\u75ab\u60c5\u4e0b\u5730\u94c1\u7ad9\u884c\u4eba\u611f\u67d3\u98ce\u9669\u63a7\u5236.\u00a0\u4e2d\u56fd\u7ba1\u7406\u79d1\u5b66,\u00a033(5), 236-246.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 31793, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "\uc548\ucca0\ud718, & \uc724\ubd09\uaddc. (2025). \uad6d\ubc29 \uc2dc\uc124 \uc0ac\uc5c5 \ucd5c\uc801\ud654\ub97c \uc704\ud55c \uac10\ub3c5 \uc5c5\ubb34 \ud504\ub85c\uc138\uc2a4 \ubd84\uc11d \ubaa8\ud615.\u00a0\ub85c\uc9c0\uc2a4\ud2f1\uc2a4\uc5f0\uad6c,\u00a033(1), 43-58.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31794, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "\uae40\ud604\uc6b0. (2025). \ud589\uc704\uc790\uae30\ubc18\ubaa8\ub378\ub9c1\uc744 \ud1b5\ud574 \ubcf8 \ud1b5\uc77c\uc2e0\ub77c\ud1a0\uae30\uc758 \uc0dd\uc0b0\uacfc \uc720\ud1b5 \uc0dd\uc0b0\uc790\uc640 \uc18c\ube44\uc790\uc758 \uc120\ud0dd \uae30\uc81c\uc5d0 \ub300\ud55c \uac00\uc124\uc801 \uc811\uadfc. \uc778\ubb38\ub17c\ucd1d, 82(2), 187-218.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31795, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "\u0645\u0638\u0647\u0631 \u0642\u0631\u0627\u0645\u0644\u06a9\u06cc, \u0627\u0644\u0647\u06cc, & \u0646\u0627\u0635\u0631. (2024). \u0628\u0631\u0631\u0633\u06cc \u0627\u062b\u0631 \u0645\u0627\u0644\u06cc\u0627\u062a \u0628\u0631 \u067e\u0648\u0644 \u0628\u0631 \u0645\u062a\u063a\u06cc\u0631\u0647\u0627\u06cc \u06a9\u0644\u0627\u0646 \u0627\u0642\u062a\u0635\u0627\u062f\u06cc \u062f\u0631 \u06cc\u06a9 \u0627\u0642\u062a\u0635\u0627\u062f \u0628\u0633\u062a\u0647 \u0628\u0627 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0645\u062f\u0644 \u062a\u0639\u0627\u062f\u0644 \u0639\u0645\u0648\u0645\u06cc \u0639\u0627\u0645\u0644 \u0645\u062d\u0648\u0631. \u0633\u06cc\u0627\u0633\u062a \u06af\u0630\u0627\u0631\u06cc \u0627\u0642\u062a\u0635\u0627\u062f\u06cc.\u200e", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Sociology" + }, + { + "id": 31796, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Abdelaziz, D. E., & Kadri, O. (2024). Enhancing epidemic management: agent-based simulation and remote diagnosis.\u00a0Brazilian Journal of Technology,\u00a07(2), e70355-e70355.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31797, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Abd Hashim, Y. J., & Hasson, S. T. (2024, July). A Proposed Approach to Improve the WSN Performance Based on LEACH Algorithm. In\u00a02024 IEEE 10th International Conference on Smart Instrumentation, Measurement and Applications (ICSIMA)\u00a0(pp. 168-173). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31798, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Abd Hashim, Y. J., & Hasson, S. T. (2024). Proposed Approach to Increase the Reliability of Wireless Sensor Networks through Dijkstra\u2019s Algorithm. In SHS Web of Conferences (Vol. 204, p. 04002). EDP Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Dijkstra\u2019s Algorithm" + }, + { + "id": 31799, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Abdidizaji, S., Yalabadi, A. K., Yazdani-Jahromi, M., Garibay, O. O., & Garibay, I. (2024). Agent-Based Modeling of C. Difficile Spread in Hospitals: Assessing Contribution of High-Touch vs. Low-Touch Surfaces and Inoculations' Containment Impact.\u00a0arXiv preprint arXiv:2401.11656.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31800, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Abdo, J. B., & Hossain, L. (2024). Modeling the Invisible Internet. In Complex Networks & Their Applications XII: Proceedings of The Twelfth International Conference on Complex Networks and their Applications: COMPLEX NETWORKS 2023, Volume 3 (p. 359). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31801, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Abos, P. (2024). Computational Platforms and Toolkits: There are a variety of software platforms, libraries, and tools available for developing and simulating agent-based models.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 31802, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Abos, P. (2024). Participatory Modeling and Stakeholder Engagement: Agent-based models can be used as tools for engaging stakeholders and the public in collaborative modeling exercises.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Stakeholder Engagement, Ecology, Computer Science, Economics, Social Science, Education, Archaeology" + }, + { + "id": 31803, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Adair, A. (2024). AI-Driven Assessment and Scaffolding for Mathematical Modeling and Explanations During Science Investigations (Doctoral dissertation, Rutgers The State University of New Jersey, School of Graduate Studies).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31804, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Adam, C., & Gaudou, B. (2024). An agent-based model of modal choice with perception biases and habits.\u00a0arXiv preprint arXiv:2406.02063.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31805, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Adday, G. H., Subramaniam, S. K., Zukarnain, Z. A., & Samian, N. (2024). Investigating and Analyzing Simulation Tools of Wireless Sensor Networks: A Comprehensive Survey. IEEE Access, 12, 22938-22977.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Wireless Sensor Networks, Computer Science, Economics, Ecology, Archaeology, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 31806, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Adderley, T., Concepcion, S. M., Ramirez, M. F., Tannis, D., & Browne, J. Pile Bay Agent-Based Modeling Exercise Proposal PPUA 5246: Participatory Modeling for Collaborate Decision Making.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31807, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Agarwal, R. (2024). AIoT\u2010Based Smart Bin for Real\u2010Time Monitoring and Management of Solid Waste. Reshaping Intelligent Business and Industry: Convergence of AI and IoT at the Cutting Edge, 295-303.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "AIoT\u2010Based Smart Bin" + }, + { + "id": 31808, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Agarwal, A., & Canfield, C. (2024). Analysis of rural broadband adoption dynamics: A theory-driven agent-based model.\u00a0PloS one,\u00a019(6), e0302146.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31809, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Aghaabbasi, M., & Sabri, S. (2025). Potentials of digital twin system for analyzing travel behavior decisions. Travel Behaviour and Society, 38, 100902.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31810, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Ahmed, M., Kazar, O., & Harous, S. (2024). Cyber\u2010physical system model based on multi\u2010agent system.\u00a0IET Cyber\u2010Physical Systems: Theory & Applications.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology" + }, + { + "id": 31811, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Ahmed, R., Osman, R. A., & Amer, M. (2024). Navigating urban congestion: A Comprehensive strategy based on an efficient smart IoT wireless communication for PV powered smart traffic management system. PloS one, 19(10), e0310002.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Economics, History, Social Science, Education, Epidemiology" + }, + { + "id": 31812, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Ahrweiler, P., Gilbert, N., Bicket, M., Coll, A. S., Capellas, B. L., Wurster, D., & Siqueiros, J. M. Gamification and Simulation for Innovation. In Advances in Social Simulation: Proceedings of the 18th Social Simulation Conference, Glasgow, UK, 4\u20138 September 2023 (p. 121). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Social Science, Miscellaneous" + }, + { + "id": 31813, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Ainurohmah, S. (2024). Desain Ui/ux Aplikasi Sistem Lampu dan Suhu Otomatis pada Rumah Cerdas untuk Lansia (Doctoral dissertation, Universitas Islam Indonesia).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31814, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Aizstrauts, A., & Ginters, E. (2024). Easy Communication Environment for Heterogeneous and Distributed Simulation Models Design.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31815, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Akbar, Chairil, Omar Alsawafy, Nabeel Alanbar, Ahmed Attia, and Productivity Improvement. \"Simulation-Based Optimization for Multi-Echelon Petrochemical Supply Chain.\"", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31816, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Akman, O., Bhumpelli, S., & Hay-Jahans, C. (2024). Agent-Based Modeling for the Neophyte: An Application of NetLogo. Spora: A Journal of Biomathematics, 10(1), 37-49.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, NetLogo, Ecology" + }, + { + "id": 31817, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Albati, M., Sakurahara, T., Reihani, S., Kee, E., Yang, J., von Thaden, T., ... & Mohaghegh, Z. (2024). Uncertainty-Based Validation Methodology and Experimental Analysis for External Control Room Human Performance Simulation: Application to Fire Probabilistic Risk Assessment of Nuclear Power Plants. Nuclear Science and Engineering, 1-20.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 31818, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Aldahlawi, R. Y., Akbari, V., & Lawson, G. (2024). A Systematic Review of Methodologies for Human Behavior Modelling and Routing Optimization in Large-scale Evacuation Planning. International Journal of Disaster Risk Reduction, 104638.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31819, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Alexandridis, K., Sabri, S., Smith, J., Logan, B., Bartfai-Walcott, K., & Migliori, D. (2024). Distributed AI Modeling and Simulation for Smart Airport Digital Twin Applications. Digital Twins, Simulation, and the Metaverse: Driving Efficiency and Effectiveness in the Physical World through Simulation in the Virtual Worlds, 195.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Simulation, Archaeology, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 31820, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Alooeff, E., & Adzinets, D. (2024). Multi-agent system for intelligent scheduling.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31821, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Al-Sukhni, M. (2024). Blockchain Technology for Information Sharing to Mitigate the Bullwhip Effect. In\u00a0Disruptive Technologies and Optimization Towards Industry 4.0 Logistics\u00a0(pp. 95-121). Cham: Springer International Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31822, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Alteri, S. P. (2024). A COMPREHENSIVE FRAMEWORK FOR ENHANCING LARGE-SCALE EVENT SECURITY (Doctoral dissertation, Purdue University Graduate School).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31823, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Altmann, P., Sch\u00f6nberger, J., Illium, S., Zorn, M., Ritz, F., Haider, T., ... & Gabor, T. (2024). Emergence in Multi-Agent Systems: A Safety Perspective. arXiv preprint arXiv:2408.04514.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31824, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Alulema, D., Paredes-Velasco, M., & de Arriba Lasso, R. (2024). LESCA: Scaffolding and its impact on the higher cognitive levels and emotions of the student. Journal of Universal Computer Science, 30(7), 935.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 31825, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Alves, R. B. D. O., Tomasiello, D. B., Almeida, C. M. D., Rosalen, D. L., Pereira, L. H., Silva, H. P. D., & Rodrigues, C. L. (2024). Agent-Based Spatial Dynamic Modeling of Diatraea saccharalis and the Natural Parasites Cotesia flavipes and Trichogramma galloi in Sugarcane Crops. Remote Sensing, 16(15), 2693.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31826, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Amakama, N. J., Dusserre, G., Cadiere, A., Schuette, R. W., & Zacharewicz, G. (2024). An agent-based simulation study on the effect of ambulance dispatch policies on patient mortality in hospital systems: a disaster response test case. International Journal of Emergency Management, 19(1), 25-50.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31827, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Amakama, N. J., Duserre, G., Cadiere, A., & Schuette, R. W. (2024). Predicting the Impact of Mobile Field Hospital Deployment in Reducing Patients Mean Wait Times in Emergency Departments: An Agent-Based Simulation Approach.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31828, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Amakama, N. J., Dusserre, G., Cadiere, A., Schuette, R. W., & Zacharewicz, G. (2024). How Effective are Tabletop Role-Playing (Serious) Games in Understanding and Validating the Predictive Capabilities of Disaster Response Agent-based Models?.\u00a0American Journal of Multidisciplinary Research and Innovation,\u00a03(4), 49-61.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31829, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Amiri, M., Radfar, R., & Faezy Razi, F. (2025). Designing a Social Banking Model to Reduce Conflict of Financial Interest between Banks and Manufacturing Firms through Agent-Based Modeling Simulation. International Journal of Finance & Managerial Accounting, 10(37), 47-60.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31830, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Angeloni\u00b9, M. P. C., & Grislin-Le Strugeon, E. (2024). Using Agent-Based Modeling and Simulation for Quality in Use. In\u00a0Proceedings of the International Conference on Ubiquitous Computing and Ambient Intelligence (UCAmI 2024)\u00a0(p. 151). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Simulation, Computing, Economics, Urban Studies" + }, + { + "id": 31831, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Apetrei, C. I., Strelkovskii, N., Khabarov, N., & Rinc\u00f3n, V. J. (2024). Improving the representation of smallholder farmers\u2019 adaptive behaviour in agent-based models: Learning-by-doing and social learning.\u00a0Ecological Modelling,\u00a0489, 110609.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31832, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Aqib, M., & Ukil, A. (2024). Battery degradation model of electric vehicle with grid integration. Journal of Energy Storage, 97, 112709.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Battery degradation model" + }, + { + "id": 31833, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Arnold, E. G., Burroughs, E. A., Burroughs, O., & Carlson, M. A. International Journal of Mathematical Education in Science and Technology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Science" + }, + { + "id": 31834, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Arora, K., Gupta, V., Rajan, A., Kumar, L., Munjal, P., Jain, R., & Srivastava, A. Efficient and Sensitive Proteomic Based Electrochemical Immunosensor Using Nio Thin Film Electrode for Early Identification of a Biomarker Unique to Breast Cancer (Ca 15-3) and Agent-Based Modelling for Effective Treatment Strategy. Available at SSRN 5010009.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Proteomics, Electrochemical Immunosensor, Biomarker, Treatment Strategy, Agent-Based Modeling" + }, + { + "id": 31835, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Arshad, J., Talha, M., Saleem, B., Shah, Z., Zaman, H., & Muhammad, Z. (2024). A Survey of Bug Bounty Programs in Strengthening Cybersecurity and Privacy in the Blockchain Industry. Blockchains, 2(3), 195-216.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Cybersecurity, Blockchain, Economics, Computer Science, Ecology, Archaeology, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 31836, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Ashrafi, B., Kim, G., Naseri, M., Barabady, J., Dhar, S., Heo, G., & Baek, S. (2024). An agent-based modelling framework for performance assessment of search and rescue operations in the Barents Sea. Safety in Extreme Environments, 1-18.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31837, + "sort": null, + "year": 2024, + "is_ccl": true, + "reference": "Aslan, U., Horn, M., & Wilensky, U. (2024). Why are some students \u201cnot into\u201d computational thinking activities embedded within high school science units? Key takeaways from a microethnographic discourse analysis study. Science Education, 1\u201328. https://doi.org/10.1002/sce.21850", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31838, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "ASSOGBA, G. G. C., Speelman, E., Berre, D., Adam, M., & Descheemaeker, K. Exploring Opportunities to Improve Crop-Livestock Integration and Production in Mixed Farms with a Serious Game: The Case of Semi-Arid Burkina Faso. Available at SSRN 5002412.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31839, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Astuti, R. N. M., & Ramdhan, D. H. (2024). Factors Contributing to the Successful Implementation of an OHS Management System in the Informal/SME Sector. Media Publikasi Promosi Kesehatan Indonesia (MPPKI), 7(6), 1458-1466.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31840, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Azamuke, D., Katarahweire, M., & Bainomugisha, E. (2024). MoMTSim: A Multi-agent-based Simulation Platform Calibrated for Mobile Money Transactions. IEEE Access.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31841, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Babkin, E., Golov, V., & Malyzhenkov, P. Check for updates Multi-agent Simulations of Mutual Trust Management Strategies as a Base of Innovative Organizational Forms Engineering. In\u00a0Advances in Enterprise Engineering XVII: 13th Enterprise Design and Engineering Working Conference, EDEWC 2023, Vienna, Austria, November 28\u201329, 2023, Revised Selected Papers\u00a0(p. 18). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Miscellaneous" + }, + { + "id": 31842, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Baccile, S., Cornacchia, G., & Pappalardo, L. (2024). Measuring the Impact of Road Removal on Vehicular CO2 Emissions. In Proceedings of the Workshops of the EDBT/ICDT 2024 Joint Conference. CEUR-WS.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31843, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Bai, L., Pan, T., Liu, S., Xie, Q., Zhang, Z., & Ma, Y. (2024). Dynamic measurement for the impact of project portfolio synergy. Heliyon.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31844, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Bakkula, O., Wibisono, D., Basri, M. H., & Siallagan, M. (2024). Towards resilience in the value chain of coal mining upstream: an agent-based modeling and simulation to improve coal discrepancy. Discover Applied Sciences, 7(1), 22.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31845, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Baker, M., & Reimann, P. (2024). CSCL: a learning and collaboration science?. International Journal of Computer-Supported Collaborative Learning, 1-9.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 31846, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Baldo, H. (2024). Towards a Quantitative Theory of Digraph-Based Complexes and its Applications in Brain Network Analysis (Doctoral dissertation, Universidade de S\u00e3o Paulo).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31847, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Bandari, M., Azar, A., & Fathi Hafshejani, K. (2024). Design of An Agent-Based Simulation Model of Service Supply Chain. Journal of Industrial and Systems Engineering.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31848, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Bansal, R. (2024). Challenges in Large Language Model Development and AI Ethics. In\u00a0Challenges in Large Language Model Development and AI Ethics\u00a0(pp. 25-81). IGI Global.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, AI Ethics, Large Language Model Development, Computer Science, Artificial Intelligence, Ethics" + }, + { + "id": 31849, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Barbara, K., & Katarzyna, S. W. (2024). Impact of Cognitive Dissonance on Social Hysteresis: Insights fromthe Expressed and Private Opinions Model. arXiv preprint arXiv:2410.16934.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31850, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Barbrook-Johnson, P., van Voorn, G., Wang, H. H., Zare, F., Grant, W. E., Posnik, Z., & Lippe, M. (2024). Cross-scale feedbacks and tipping points in aggregated models of socio-ecological systems. Socio-Environmental Systems Modelling, 6, 18616-18616.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31851, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Barone\u00b9, D. A., Wickboldt\u00b9, J. A., Cavalcanti, M. C., de Carvalho, L. F., Gomes\u00b9, J. E., & dos Anjos, J. C. (2024). Integrated Multi-agent System Simulator. In Simulation and Modeling Methodologies, Technologies and Applications: 13th International Conference, SIMULTECH 2023 Rome, Italy, July 12\u201314, 2023 Revised Selected Papers (p. 9). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Modeling, Applications, Mathematics" + }, + { + "id": 31852, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Barton, C. M., Aura-Tortosa, J. E., Garcia-Puchol, O., Riel-Salvatore, J., & Ullah, I. (2024). Lessons for an invisible future from an invisible past: Risk and resilience in deep time.\u00a0The Holocene, 09596836241259788.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31853, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Basha, S. M., de Albuquerque, V. H. C., Chelloug, S. A., Elaziz, M. A., Mohisin, S. H., & Pathan, S. P. (2024). Robust Machine Learning Technique to Classify COVID-19 Using Fusion of Texture and Vesselness of X-Ray Images.\u00a0CMES-Computer Modeling in Engineering & Sciences,\u00a0138(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Archaeology, Miscellaneous" + }, + { + "id": 31854, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Batzke, M. C. L. (2024). Dynamics of Norms in Decision-Making (Doctoral dissertation, University of Kassel).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology\nEcology" + }, + { + "id": 31855, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Bauer, R. (2024). Computational Modelling of Cell Migration. In Cell Migration in Development, Health and Disease (pp. 223-243). Cham: Springer Nature Switzerland.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computational Modelling" + }, + { + "id": 31856, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "BEAUCHAMP-MUSTAFAGA, N. A. T. H. A. N., GREEN, K., MARCELLINO, W., LILLY, S., & SMITH, J. (2024). Dr. Li Bicheng, or How China Learned to Stop Worrying and Love Social Media Manipulation.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 31857, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Becher, M. A., Twiston\u2010Davies, G., Osborne, J. L., & Lander, T. A. (2024). Resource gaps pose the greatest threat for bumblebees during the colony establishment phase.\u00a0Insect Conservation and Diversity.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 31858, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Beddiaf, F., & Schumann, R. (2024). Modeling Coopetition Dynamics Using Agent-Based Approaches. Matrix, 2(2), 0.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31859, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Beek, M. V., Lopate, M. Z., Goodhart, A., Peterson, D. A., Edgerton, J., Xiong, H., ... & Braumoeller, B. F. (2024). Hierarchy and war. American Journal of Political Science.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31860, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Beghdad, R., Benmenzer, F., & Eddine Khalfoune, A. (2024). Cloud Survivability Scenarios Under Attacks With and Without Countermeasures. Acta Informatica Pragensia.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31861, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Beghdad, R., Benmenzer, F., & eddine Khalfoune, A. Survivability Scenarios of the Cloud under Attacks With/Without Countermeasures.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Archaeology, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31862, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Belfrage, M., Lorig, F., & Davidsson, P. (2024). Simulating Change-A Systematic Literature Review of Agent-Based Models for Policy-Making. In Annual Modeling and Simulation Conference (ANNSIM 2024), Washington DC, USA, May 20-23, 2024. Society for Modeling and Simulation International (SCS).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31863, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Benedicto-Rodriguez, G., Zorrilla-Mu\u00f1oz, V., Fernandez, E., & Ferrandez, J. M. (2024, August). Technological Influence on the Measurement of Quality of Life in Persons with Autism Spectrum Disorder. In The International Conference on Innovations in Computing Research (pp. 691-698). Cham: Springer Nature Switzerland.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31864, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Berceanu, C., & Patrascu, M. Comparative Analysis of Agent-based Modeling Frameworks for Signal Propagation in Complex Networks: Netlogo and Python Mesa.\u00a0system,\u00a013(14), 15.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Social Science, Education" + }, + { + "id": 31865, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Berger, U., Bell, A., Barton, C. M., Chappin, E., Dre\u00dfler, G., Filatova, T., ... & Grimm, V. (2024). Towards reusable building blocks for agent-based modelling and theory development. Environmental Modelling & Software, 106003.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31866, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Bergman, D. R., Jackson, T. L., Jain, H. V., & Norton, K. A. (2024). SMoRe GloS: An efficient and flexible framework for inferring global sensitivity of agent-based model parameters. bioRxiv, 2024-09.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31867, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Bernigaud, N., Bondeau, A., Guiot, J., Bertoncello, F., Ouriachi, M. J., Bouby, L., ... & Isoardi, D. (2024). The impact of climate change on the agriculture and the economy of Southern Gaul: New perspectives of agent-based modelling. Plos one, 19(3), e0298895.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31868, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Bertorello, S., Cei, F., Fink, D., Niccolai, E., & Amedei, A. (2024). The Future Exploring of Gut Microbiome-Immunity Interactions: From In Vivo/Vitro Models to In Silico Innovations.\u00a0Microorganisms,\u00a012(9), 1828.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Immunology, Microbiology, Computer Science, Miscellaneous" + }, + { + "id": 31869, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Berz, C. (2024). A Game-Theoretic Assessment of Anti-Discrimination Measures in Scientific Collaboration. KRITERION\u2013Journal of Philosophy, (0).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31870, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Beutel, A., Xiao, K., Heidecke, J., & Weng, L. Diverse and Effective Red Teaming with Auto-generated Rewards and Multi-step Reinforcement Learning.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Social Science, Education" + }, + { + "id": 31871, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Bhatia, V., & Jaglan, V. (2024). Integrating Artificial Intelligence and IoT for Smart Cities: Applications and Challenges. Reshaping Intelligent Business and Industry: Convergence of AI and IoT at the Cutting Edge, 267-278.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Artificial Intelligence, IoT, Business, Industry" + }, + { + "id": 31872, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Bhatt, S., Verbert, K., & Van Den Noortgate, W. (2024). A Method for Developing Process-Based Assessments for Computational Thinking Tasks.\u00a0Journal of Learning Analytics, 1-17.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31873, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Bijlard, H. M. Open vs Micro; comparing different agent populations and their impacts.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology" + }, + { + "id": 31874, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Bijli, M. K., Verma, P., & Singh, A. P. (2024). A systematic review on the potency of swarm intelligent nanorobots in the medical field. Swarm and Evolutionary Computation, 101524.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Nanorobots, Medical Field" + }, + { + "id": 31875, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Bilge, U., Olgan, S., Ciplak, B., Ozbek, M., Kayikci, D., & Uysal, H. (2024). A Neanderthal Extinction Hypothesis: Agent Based Simulation of Birth Complications Theory.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31876, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Blanco, R., Patow, G., & Pelechano, N. (2024). Simulating real-life scenarios to better understand the spread of diseases under different contexts. Scientific Reports, 14(1), 2694.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Simulation, Science." + }, + { + "id": 31877, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Blee, J. A., Gorochowski, T. E., & Hauert, S. (2024). Optimization of periodic treatment strategies for bacterial biofilms using an agent-based in silico approach. Journal of the Royal Society Interface, 21(213), 20240078.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, In silico, Optimization, Agent-based modeling" + }, + { + "id": 31878, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Blonder, A. (2024). An Agent-Based Simulation of Preferential Aggregation Based on Past Experience in Fission-Fusion Societies (Doctoral dissertation, UC Davis).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31879, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Bodine, E. N. (2024). BODINE: Modeling the Impacts of an Invasive Weevil on the Evolutionary Dynamics and Population Viability of a Florida Endangered Bromeliad.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 31880, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Boetttcher, L., Fonseca, L. L., & Laubenbacher, R. (2024). Control of Medical Digital Twins with Artificial Neural Networks.\u00a0bioRxiv, 2024-03.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Artificial Neural Networks" + }, + { + "id": 31881, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Bommel, P., & Le Page, C. (2024). Rapport de mission \u00e0 Parakou, B\u00e9nin, du 2 au 12 janvier 2024. Formation \u00e0 la mod\u00e9lisation multi-agent pour des applications \u00e0 la gestion int\u00e9gr\u00e9e des ressources naturelles (Doctoral dissertation, CIRAD (Montpellier; France)).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31882, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Borah, D. K., Zhang, H. X., Zellner, M., Ahmadisharaf, E., Babbar-Sebens, M., Quinn, N. W., ... & Lott, C. (2024). Advances in Total Maximum Daily Load Implementation Planning by Modeling Best Management Practices and Green Infrastructures.\u00a0Journal of Environmental Engineering,\u00a0150(7), 03124003.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31883, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Borowsky, A. T., & Bailey-Serres, J. (2024). Rewiring gene circuitry for plant improvement. Nature Genetics, 1-9.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 31884, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Bouaziz, N., Bettayeb, B., Sahnoun, M. H., & Yassine, A. (2024). Incorporating uncertain human behavior in production scheduling for enhanced productivity in Industry 5.0 context. International Journal of Production Economics, 109311.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31885, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Bourgais, M., Saval, A., Tranouez, P., Gillet, O., & Daud\u00e9, \u00c9. (2024). Designing a Serious Game of crisis management on top of an Agent-Based Simulation of population evacuation.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31886, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Bowden, S. A. (2024). Musical Visuality: Embodying Meter and Overcoming Noise in the Marching Arts (Doctoral dissertation, Northwestern University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31887, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Bowers, J., & Eidin, E. (2024). Analyzing students\u2019 systems thinking in-situ through screencasts in the context of computational modeling: a case study.\u00a0Disciplinary and Interdisciplinary Science Education Research,\u00a06(1), 24.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31888, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Boz, Z., Kiker, G., Haase, H., Orr, R., Vignesh, A., Campbell, C., ... & Clemen, T. Modeling Waste: An Agent-Based Model to Support the Measurement of Household Food Waste.\u00a0Available at SSRN 5017237.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Agent-Based Model, Household Food Waste" + }, + { + "id": 31889, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Bozzi, A., Graffione, S., Jimenez, J. F., Sacile, R., & Zero, E. (2024). A Platoon-Based Approach for AGV Scheduling and Trajectory Planning in Fully Automated Production Systems. IEEE Transactions on Industrial Informatics.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31890, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Braccini, M., De Filippo, A., Lombardi, M., & Milano, M. (2024). Swarm Intelligence: A Novel and Unconventional Approach to Dance Choreography Creation.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31891, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Brady, C., Ram\u00edrez, P., & Lesh, R. (2024). Problem Posing and Modeling: Confronting the Dilemma of Rigor or Relevance. In\u00a0Problem Posing and Problem Solving in Mathematics Education: International Research and Practice Trends\u00a0(pp. 33-50). Singapore: Springer Nature Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics Education, Problem Solving" + }, + { + "id": 31892, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Brainard, J. S., Lake, I. R., & Hunter, P. R. (2024). Evaluation of three control strategies to limit mpox outbreaks in an agent based model. medRxiv.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31893, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Bravo, R. R. (2024).\u00a03D Organ-Scale Models of Tumor Growth and Treatment\u00a0(Doctoral dissertation, University of South Florida).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31894, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Brennan, R., & Goldsmith, P. (2024). Unlocking Engineering Threshold Concepts Through Stakeholder Engagement. Proceedings of the Canadian Engineering Education Association (CEEA).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31895, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Brooks, J. D. (2024). Epidemiologic, Social, and Economic Dimensions of Chronic Wasting Disease Management in Indiana (Doctoral dissertation, Purdue University Graduate School).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Epidemiology, Economics" + }, + { + "id": 31896, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Brouillet, M., & Georgiev, G. Y. (2024). Modeling and Predicting Self-Organization in Dynamic Systems out of Thermodynamic Equilibrium: Part 1: Attractor, Mechanism and Power Law Scaling. Processes, 12(12), 2937.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Thermodynamics" + }, + { + "id": 31897, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Brouillet, M. J., & Georgiev, G. Y. (2024). Why and How do Complex Systems Self-Organize at All? Average Action Efficiency as a Predictor, Measure, Driver, and Mechanism of Self-Organization.\u00a0arXiv preprint arXiv:2408.10278.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, Social Science, Education, Epidemiology" + }, + { + "id": 31898, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Brown, T. L., Morgan, E. R., & Caplaet, P. Nemasim: Using an Agent Based Model to Explore the Role of Landscape Fragmentation and Deer Ecology in Transmitting Drug Resistant Nematodes between Sheep Pastures.\u00a0Available at SSRN 4783624.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 31899, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Bryant, G. A., & Smaldino, P. E. (2024). The cultural evolution of distortion in music.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31900, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Buchsbaum, K. (2024). From the Ground Up: A Complex Systems Approach to Climate Change Adaptation in Agriculture.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31901, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Burillo, F., Lamb\u00e1n, M. P., Royo, J. A., Morella, P., & S\u00e1nchez, J. C. (2024). Real-Time Production Scheduling and Industrial Sonar and Their Application in Autonomous Mobile Robots. Applied Sciences, 14(5), 1890.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31902, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Buteau, C., Namukasa, I., & Sardella, J. (2024). CCMEME 2023 Proceedings.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31903, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Butler, M., Doughty, A., Lifton, N., Kelley, S., Moucheron, M., O\u2019Brien, C., ... & Warren, G. (2024). Looking Up for prehistoric hunter-gatherer archaeological sites in mountain landscapes in Europe: A case study from the Cairngorms, Scotland. Hunter Gatherer Research, 1-30.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Archaeology, Miscellaneous" + }, + { + "id": 31904, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Buzato, D., & Cunha, E. (2024, May). Agent-based Modeling of Language Change in a Small-world Network. In Proceedings of the 2024 Joint International Conference on Computational Linguistics, Language Resources and Evaluation (LREC-COLING 2024) (pp. 594-599).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31905, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Cabrera-Revuelta, E., Tavolare, R., Buldo, M., & Verdoscia, C. (2024). Planning for terrestrial laser scanning: Methods for optimal sets of locations in architectural sites. Journal of Building Engineering, 85, 108599.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31906, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Cai, C., Tian, S., Shi, Y., Chen, Y., & Li, X. (2024). Influencing Factors Analysis in Railway Engineering Technological Innovation under Complex and Difficult Areas: A System Dynamics Approach. Mathematics, 12(13), 2040.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31907, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Canales, M., Castilla-Rho, J., Rojas, R., Vicu\u00f1a, S., & Ball, J. (2024). Agent-based models of groundwater systems: A review of an emerging approach to simulate the interactions between groundwater and society. Environmental Modelling & Software, 175, 105980.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 31908, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Canals, C., Maroulis, S., Mizala, A., Canessa, E., & Chaigneau, S. (2024). Mechanisms Behind Public School Enrollment Trends in School Choice Systems: The Case of Chile. Journal of Artificial Societies and Social Simulation, 27(4), 1-2.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31909, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Cao, Z., Zhu, J., & Wang, Z. (2024). Analysis of HFE impact of COVID-19 on OHS in construction enterprises. Heliyon.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31910, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Caprioli, C. The Integration of Multi-Agent System and Multicriteria Analysis for Developing Participatory Planning Alternatives in Urban Contexts. Available at SSRN 4918496.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31911, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Carbo, J., Pedraza, J., & Molina, J. M. (2024). Agents preserving privacy on intelligent transportation systems according to EU law. Artificial Intelligence and Law, 1-34.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Law, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 31912, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Caraiani, P., Cotfas, L. A., Darie, F. C., Delcea, C., Iglesias, C. A., & Prodan, R. (2024). JobKG: A Knowledge Graph of the Romanian Job Market based on Natural Language Processing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31913, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Carley, K. M. (2024). Unveiling Transport Dynamics in Developing Countries, a Data-Driven Agent-Based Modeling Approach.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31914, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Carpenter, C. J., Cruz, S. M., & Reynolds, R. M. (2024). Expansion and Exploration of the Superdiffuser Model With Agent-Based Modeling. Communication Research, 00936502241285574.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31915, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Casadei, R., Fornari, F., Mariani, S., & Savaglio, C. Fluidware Meets Digital Twins Check for updates. Fluidware: Novel Approaches for Large-Scale IoT Systems, 137.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31916, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Castellani, B., & Gerrits, L. (2024). Cartography and constructing the atlas. In\u00a0The Atlas of Social Complexity\u00a0(pp. 55-61). Edward Elgar Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Cartography, Social Complexity" + }, + { + "id": 31917, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Castellani, B., & Gerrits, L. (2024). Mapping the new methodological terrain. In\u00a0The Atlas of Social Complexity\u00a0(pp. 416-445). Edward Elgar Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31918, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Castellani, B., & Gerrits, L. (2024). Thirteen situations. In\u00a0The Atlas of Social Complexity\u00a0(pp. 35-54). Edward Elgar Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology\nEcology\nArchaeology" + }, + { + "id": 31919, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Castillo Grisales, J. A., Ceballos, Y. F., Bastidas-Orrego, L. M., Jaramillo G\u00f3mez, N. I., & Chaparro Ca\u00f1ola, E. (2024). Development of an Agent-Based Model to Evaluate Rural Public Policies in Medell\u00edn, Colombia. Sustainability, 16(18), 8185.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31920, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Castillo Losada, L. T. (2024). La educaci\u00f3n ambiental y las TIC en la educaci\u00f3n secundaria y media en Colombia: una revisi\u00f3n de literatura.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31921, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Cavallaro, C., Crespi, C., Cutello, V., Pavone, M., & Zito, F. (2024). Group Dynamics in Memory-Enhanced Ant Colonies: The Influence of Colony Division on a Maze Navigation Problem. Algorithms, 17(2), 63.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 31922, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Cavique, L. (2024). Networks and Connectivity: Metrics and. The Agent ID Model: A Multidisciplinary Framework of Evolutionary Human Behavior, 49.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 31923, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Cerd\u00e1, M., Hamilton, A. D., Hyder, A., Rutherford, C., Bobashev, G., Epstein, J. M., ... & Keyes, K. M. (2024). Simulating the simultaneous impact of medication for opioid use disorder and naloxone on opioid overdose death in eight New York counties. Epidemiology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Epidemiology" + }, + { + "id": 31924, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "\u010cernohorsk\u00fd, J., \u0160afr\u00e1nek, S., & \u0160tekerov\u00e1, K. (2024). Game Theory and Agent-Based Models in Epidemiology: Exploration of Strategies with NetLogo. doi: 10.36689/uhk/hed/2024-01-009.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Game Theory, Agent-Based Models, Epidemiology" + }, + { + "id": 31925, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Chae, S. J., Kim, D. W., Igoshin, O. A., Lee, S., & Kim, J. K. (2024). Beyond microtubules: The cellular environment at the endoplasmic reticulum attracts proteins to the nucleus, enabling nuclear transport.\u00a0bioRxiv, 2024-01.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Miscellaneous" + }, + { + "id": 31926, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Chakraborty, S., Goyal, S., Rieder, A., Onuchowska, A., & Berndt, D. J. (2024). Freedom of speech or freedom of reach? Strategies for mitigating malicious content in social networks. Decision Support Systems, 114235.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31927, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Chang, X., Chen, J., & Ye, L. (2024). Trend prediction of farmers\u2019 spontaneous land transfer behavior: evidence from China. Applied Economics, 1-15.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31928, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Chao, S., Tao, Y., & Zhou, H. (2024). Technological Progress and its Job Market Impacts: A Basic Simulation Framework for Human-Technology Collaboration. Available at SSRN 4747459.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31929, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Chattoe-Brown, E., Elsenbroich, C., & Gilbert, N. Reculer Pour Mieux Sauter: Resurrecting a Household Budgeting ABM for Deteriorating Economic Conditions. In Advances in Social Simulation: Proceedings of the 18th Social Simulation Conference, Glasgow, UK, 4\u20138 September 2023 (p. 35). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Sociology, Computer Science, Miscellaneous" + }, + { + "id": 31930, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Chen, F., & Chen, G. (2024). Technology-Enhanced Collaborative Inquiry in K\u201312 Classrooms: A Systematic Review of Empirical Studies. Science & Education, 1-43.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31931, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Chen, I., & Cheng, K. L. (2024). Agent-Based Modeling Framework for Predicting Regional Electricity Consumption Considering Occupant Behavior Shift and Exogenous Policy Impact. Karly, Agent-Based Modeling Framework for Predicting Regional Electricity Consumption Considering Occupant Behavior Shift and Exogenous Policy Impact.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31932, + "sort": null, + "year": 2024, + "is_ccl": true, + "reference": "Chen, J., Lotsos, A., Zhao, L., Hullman, J., Sherin, B., Wilensky, U., & Horn, M. (2024). A Computational Method for Measuring\" Open Codes\" in Qualitative Analysis. arXiv preprint arXiv:2411.12142.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 31933, + "sort": null, + "year": 2024, + "is_ccl": true, + "reference": "Chen, J., Lu, X., Du, Y., Rejtig, M., Bagley, R., Horn, M. S., & Wilensky, U.(2024). Learning Agent-based Modeling with LLM Companions: Experiences of Novices and Experts Using ChatGPT & NetLogo Chat. Proceedings of the 2024 CHI Conference on Human Factors in Computing Systems. https://dl.acm.org/doi/10.1145/3613904.3642377 ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Learning Agent-based Modeling" + }, + { + "id": 31934, + "sort": null, + "year": 2024, + "is_ccl": true, + "reference": "Chen, J., Zhao, L., Li, Y., Xie, Z., Wilensky, U., & Horn, M. S.(2024). Oh My God! It\u2019s Recreating Our Room!\u201d Understanding Children\u2019s Experiences with A Room-Scale Augmented Reality Authoring Toolkit. Proceedings of the 2024 CHI Conference on Human Factors in Computing Systems. https://dl.acm.org/doi/10.1145/3613904.3642043 ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Anthropology" + }, + { + "id": 31935, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Chen, K., Wang, X., Guo, Z., & Liu, W. (2024). The Disappearing Winners: An MAS Study of Community-Type Rivalry in Construction Markets. Buildings, 14(12), 3710.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31936, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Chen, M., Liu, R. X., & Hao, J. (2024). An agent-based real-time game model for forecasting the market penetration of vehicles in China. IEEE Access, 12, 24631-24643.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31937, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Chen, S., Du, X., & Wang, J. (2024). A Hierarchical Framework with Spatio-Temporal Consistency Learning for Emergence Detection in Complex Adaptive Systems.\u00a0arXiv preprint arXiv:2401.10300.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31938, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Chen, W., Yuan, Y., & Lv, M. Educators' Networking Interacts with Digital Competence Heterogeneity to Enhance the Implementation of AIEd: A Mixed-Methods. In Big Data and Social Computing: 9th China National Conference, BDSC 2024, Harbin, China, August 8\u201310, 2024, Proceedings (p. 151). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Digital Competence, AIEd, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 31939, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Chen, Y., Du, T., Zhang, Q., & Zhang, N. (2024). Analysis and Evaluation of Species Invasion. Advances in Engineering Technology Research, 9(1), 687-687.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 31940, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Chen, Y. W., Ruan, X., & Jain, R. K. (2024). Anchorfree Logo Detection Framework. In Recent Advances in Logo Detection Using Machine Learning Paradigms: Theory and Practice (pp. 65-82). Cham: Springer International Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Machine Learning, Computer Science, Logo Detection" + }, + { + "id": 31941, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Chen, Y., Zhao, Y., & Wu, Y. (2024). Recent progress in air traffic flow management: A review.\u00a0Journal of Air Transport Management,\u00a0116, 102573.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31942, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Cheng, Y., Zhang, C., Zhang, Z., Meng, X., Hong, S., Li, W., ... & He, X. (2024). Exploring Large Language Model based Intelligent Agents: Definitions, Methods, and Prospects.\u00a0arXiv preprint arXiv:2401.03428.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 31943, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Cherny-Shahar, T., & Yehudai, A. (2024). Multi-Lingual Development & Programming Languages Interoperability: An Empirical Study. arXiv preprint arXiv:2411.08388.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Programming Languages" + }, + { + "id": 31944, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Chesney, T., Gruchman, T., Pasley, R., Dawson, A., & Gold, S. (2024). Agent modelling, statistical control, and the strength of middle knowledge. arXiv preprint arXiv:2409.17196.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Statistics, Computer Science, Economics, Physics, Chemistry, Archaeology, Social Science, Education" + }, + { + "id": 31945, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Chesney, T., Jaffer, A., & Pasley, R. (2024). Examining inverse generative social science to study targets of interest.\u00a0arXiv preprint arXiv:2407.13474.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31946, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Chesney, T., Pasley, R., & Jaffar, A. (2024). RIGSS-Inverse Generative Social Science using R. Software Impacts, 100689.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31947, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Choi, M. (2024). Navigating the Complexities of Pandemic Dynamics: An Integrated Agent-Based Modeling Framework for Spatially Explicit Risk Assessment and Mitigation at Multiple Scale (Doctoral dissertation, The University of Utah).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31948, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Chopra, A., Subramanian, J., Krishnamurthy, B., & Raskar, R. (2024, May). flame: A Framework for Learning in Agent-based ModEls. In Proceedings of the 23rd International Conference on Autonomous Agents and Multiagent Systems (pp. 391-399).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, History, Social Science, Education, Epidemiology" + }, + { + "id": 31949, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Chueca Del Cerro, C. (2024). The power of social networks and social media\u2019s filter bubble in shaping polarisation: an agent-based model.\u00a0Applied Network Science,\u00a09(1), 69.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Social Science, Physics, Chemistry, Urban Studies" + }, + { + "id": 31950, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Cloude, E. B., Kiili, K., & Dindar, M. The Intra-and Inter-Personal Effects of Emotions on Collaborative Problem-Solving Efficiency between Competitive and Non-Competitive Teams in a Multiplayer Digital Game. Available at SSRN 5021794.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31951, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Coates, G., Dugdale, J., & Hanachi, C. (2024). Simulation for crisis and disaster management.\u00a0SIMULATION,\u00a0100(4), 333-334.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Ecology, Computer Science, Economics" + }, + { + "id": 31952, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Coco, E., & Iovita, R. Agent-based simulations reveal multiple rapid northern routes for the second Neanderthal dispersal from Western to Eastern Eurasia.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Archaeology" + }, + { + "id": 31953, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Collard, P. (2024). Processionary Caterpillars at the Edge of Complexity.\u00a0Artificial Life, 1-22.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 31954, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Collignon, J. (2024).\u00a0Multiscale Modeling and Deep Learning for Complex Microbial Colonies\u00a0(Doctoral dissertation, University of California, Merced).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 31955, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Collins, A. J., & Grigoryan, G. (2024). ABMSCORE: a heuristic algorithm for forming strategic coalitions in agent-based simulation. Journal of Simulation, 1-25.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 31956, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Collins, A., Koehler, M., & Lynch, C. (2024). Methods that support the validation of agent-based models: An overview and discussion. Journal of Artificial Societies and Social Simulation, 27(1), 11.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 31957, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Colon, S. A. (2024). Simulating the Spread of Information Among Non-Playable Characters in Video Games.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31958, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Contreras, M., Sobrino, I., & de la Fuente, J. (2024). Paratransgenic quantum vaccinology. Trends in Parasitology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Parasitology" + }, + { + "id": 31959, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Cooksey, R. W. (2024). The Evolving Landscape of Choices for Navigating the \u2018Data Triangle\u2019. In\u00a0Unity from Diversity: Pluralist Systemic Thinking for Social and Behavioural Research\u00a0(pp. 67-164). Singapore: Springer Nature Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31960, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Corr\u00eaa Angeloni, M. P., Duque Medina, R., Mar\u00e7al de Oliveira, K., Strugeon, G. L., & Tirnauca, C. (2024). A tertiary study on quality in use evaluation of smart environment applications.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 31961, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Costa, C. J., Aparicio, J. T., & Aparicio, M. (2024). Socio-Economic Consequences of Generative AI: A Review of Methodological Approaches. arXiv preprint arXiv:2411.09313.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31962, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Cottineau, C., Batty, M., Benenson, I., Delloye, J., Hatna, E., Pumain, D., ... & Ubarevi\u010dien\u0117, R. (2024). The role of analytical models and their circulation in urban studies and policy. Urban Studies, 00420980241237410.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31963, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Cox, S. J., Manavi, K. M., & Guerin, S. Developing a Computational Geospatial Curriculum for Community Decision. In\u00a0Proceedings of the 2023 International Conference of The Computational Social Science Society of the Americas\u00a0(p. 231). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 31964, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Crabtree, S. A., Wren, C. D., Dixit, A., & Levin, S. A. (2024). Influential individuals can promote prosocial practices in heterogeneous societies: a mathematical and agent-based model. PNAS Nexus, 3(7).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31965, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Crispim-Mendes, T., Roos, D., Ferreira, C. M., Paup\u00e9rio, J., Silva, J. P., Godinho, S., ... & Pita, R. (2024). Patch spatial attributes and time to disturbance affect the emergence of source local populations within ephemeral habitats.\u00a0Ecological Modelling,\u00a0496, 110839.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31966, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Crosland, P., Marshall, D. A., Hosseini, S. H., Ho, N., Vacher, C., Skinner, A., ... & Hickie, I. B. (2024). Incorporating Complexity and System Dynamics into Economic Modelling for Mental Health Policy and Planning. PharmacoEconomics, 1-15.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Computer Science, Physics, Chemistry, System Dynamics, Urban Studies" + }, + { + "id": 31967, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Cui, P., Lu, J., Wu, Y., Tang, J., & Jiang, J. (2024). Effect of urban morphology on microclimate and building cluster energy consumption in cold regions of China. Sustainable Cities and Society, 105838.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 31968, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Curry, J. (2024). ENERGY LAW.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Energy Law" + }, + { + "id": 31969, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Cyril\u2014Bios, P. (2024). Using the ODD protocol and NetLogo to replicate agent-based models.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 31970, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Czuba, M., Nurek, M., Serwata, D., Qiu, Y. X., Jia, M., Musial, K., ... & Br\u00f3dka, P. (2024). Network Diffusion--Framework to Simulate Spreading Processes in Complex Networks.\u00a0arXiv preprint arXiv:2405.18085.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Network Diffusion, Physics, Chemistry, Computer Science" + }, + { + "id": 31971, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Dai, L., Han, Q., & de Vries, B. (2024). Simulating dynamical evolution of citizen participation leveraging agent-based modeling: Experiences from nature-based solutions in China. Cities, 151, 105145.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31972, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Darly, S. S., Kadhiravan, D., Hemachandran, K., & Rege, M. (2024). Simulation Strategies for Analyzing of data. Handbook of Artificial Intelligence and Wearables, 27-64.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Artificial Intelligence, Wearables" + }, + { + "id": 31973, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "D'Amico, A., Sparvoli, G., Bernardini, G., Bruno, S., Fatiguso, F., Curr\u00e0, E., & Quagliarini, E. (2024). Behavioural-based risk of the built environment: Key performance indicators for sudden-onset disaster in urban open spaces.\u00a0International Journal of Disaster Risk Reduction, 104328.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31974, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Dahshan, M., & Galanti, T. (2024). Teachers in the Loop: Integrating Computational Thinking and Mathematics to Build Early Place Value Understanding. Education Sciences, 14(2), 201.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Computer Science, Education" + }, + { + "id": 31975, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Danan, C. (2024). Differences in commercial brand promotion due to Chinese and Russian culture.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Culture, Economics, Sociology" + }, + { + "id": 31976, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Das, K., Dhal, G. C., & Kalamdhad, A. S. (2024). Integrated assessment for groundwater quality and flood vulnerability in coal mining regions. Environmental Science and Pollution Research, 1-16.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31977, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Das, S. (2024). Network-based modeling of infectious disease spillover (Doctoral dissertation).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 31978, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "DaSilva, D., & Yokley, K. A. (2024). Mathematical Approaches of Modeling Obesity Trends. The North Carolina Journal of Mathematics and Statistics, 10(1), 20-39.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Mathematics\nBiology" + }, + { + "id": 31979, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Daugherty, M. K., & Carter, V. (2024). 19 Ways of thinking and STEM-based problem solving. Ways of Thinking in STEM-based Problem Solving: Teaching and Learning in a New Era, 263.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31980, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Davis, N., Dermody, B. J., Koetse, M., & van Voorn, G. A. (2024). Identifying personal and social drivers of dietary patterns: An agent-Based model of Dutch consumer behavior. Journal of Artificial Societies and Social Simulation, 27(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31981, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Davey, T. (2024). Incoherence: A Generalized Measure of Complexity to Quantify Ensemble Divergence in Multi-Trial Experiments and Simulations. Entropy, 26(8), 683.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology" + }, + { + "id": 31982, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Deb, L. C., & Lanzas, C. In-feed antimicrobial treatment duration on liver abscess prevalence and gut enteric bacteria resistance level in feedlot cattle: An individual-based model.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31983, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "de Borba, J. S., & Gon\u00e7alves, S. (2024). One predator and two prey: Coexistence of pumas, guanacos and sheep in Patagonia. arXiv preprint arXiv:2412.02936.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 31984, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "De Carvalho, L. F. B. S., de Souza, V. S., Bonatto, A. N., Perez, T. J. A. M., de Freitas, E. P., Barone, D. A. C., ... & de Araujo Fernandes, R. Q. (2024, July). A Multi-agent System Approach for Blue Force Tracking C2 Application Modeling. In Intelligent Systems Conference (pp. 161-181). Cham: Springer Nature Switzerland.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, Economics, History, Social Science, Education, Epidemiology" + }, + { + "id": 31985, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "de Fran\u00e7a, B. B. N., Pfahl, D., Neto, V. V. G., & Ali, N. B. (2024). Teaching Simulation as a Research Method in Empirical Software Engineering. Handbook on Teaching Empirical Software Engineering, 363.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31986, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Dehkordi, M. A. E. (2024). Simulating Dynamics of Institutions (Doctoral dissertation, Delft University of Technology).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Social Science, Education, Epidemiology" + }, + { + "id": 31987, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "DE JESUS, V. S. COMUNICABILIDADE E MOBILIDADE ENTRE SISTEMAS MULTIAGENTES EMBARCADOS E DISTRIBU\u00cdDOS.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 31988, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "De Luque-Villa, M. A., & Gonz\u00e1lez-M\u00e9ndez, M. (2024). Water Management as a Social Field: A Method for Engineering Solutions.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31989, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Demuth, S., Ed\u2010Driouch, C., Dumas, C., Laplaud, D., Edan, G., Vince, N., ... & Gourraud, P. A. (2024). Scoping review of clinical decision support systems for multiple sclerosis management: Leveraging information technology and massive health data.\u00a0European Journal of Neurology, e16363.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Clinical Decision Support Systems, Technology, Health Data, Neurology" + }, + { + "id": 31990, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "de Paulo, K. P., Estombelo-Montesco, C. A., & Tejada, J. (2024). New memory-one strategies of the Iterated Prisoner\u2019s Dilemma: a new framework to programmed human-AI interaction. Discover Psychology, 4(1), 20.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31991, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Derigent, W., David, M., Andr\u00e9, P., Cardin, O., & Najjar, S. (2024). WSN Energy Control by Holonic Dynamic Reconfiguration: Application to the Sustainability of Communicating Materials. Sustainability, 16(18), 8193.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31992, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Dey, A., & Pasupuleti, R. S. (2024). Interpreting the relevance of Prohibited and Regulated Areas: The case of Protected Monuments of Delhi. Advancing Heritage Innovations in India, 29.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31993, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Di Lucchio, L., & Modanese, G. (2024). Generation of Scale-Free Assortative Networks via Newman Rewiring for Simulation of Diffusion Phenomena. Stats, 7(1), 220-234.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Statistics" + }, + { + "id": 31994, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Diaz-Mena, K. S., Kogan, L., & Stucchi, L. (2024). On how breaking traffic rules affects vehicle flow. Journal of Computational Social Science, 1-21.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31995, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Dieguez Cameroni, F. J., Varela Casadey, F., Boscana, M., Schinatto, F., & Bussoni, A. (2024). Advancing carbon neutrality in Silvopastoral systems: a case study applying agent-based modeling. Agroforestry Systems, 1-16.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31996, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Dindar, M., Cloude, E. B., & Kiili, K. (2024, September). An Experimental Study of Facial Expressions in Collaborative Teams that Quit ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31997, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Ding, H., & Xie, L. (2024). The applicability of positive information in negative opinion management: An attitude-laden communication perspective. Physica A: Statistical Mechanics and its Applications, 129839.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 31998, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Diouf, E. G., Br\u00e9vault, T., Ndiaye, S., & Piou, C. (2024). Exploration of the potential of a boosted sterile insect technique to control fruit flies in mango orchards. Pest Management Science.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Pest Management" + }, + { + "id": 31999, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Dodd, E., & Van Limergen, D. (2024). Methods in Ancient Wine Archaeology: Scientific Approaches in Roman Contexts. Bloomsbury Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Archaeology, Biology" + }, + { + "id": 32000, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Dohn, N. B. (2024). Philosophical presuppositions in \u201cComputational thinking\u201d\u2013old wine in new bottles?.\u00a0Journal of Philosophy of Education, qhae016.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Philosophy" + }, + { + "id": 32001, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Domino, K., Sochan, A., & Miszczak, J. A. (2024). Analytical assessment of workers' safety concerning direct and indirect ways of getting infected by dangerous pathogen. arXiv preprint arXiv:2409.16809.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32002, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Dong, Q., Yan, R., Xiong, R., Xie, W., Pang, M., & Liang, L. (2024). A study on the decision-making mechanism and promotion policy of urban residents\u2019 domestic waste-classification behavior: evidence from Sichuan province. Environment, Development and Sustainability, 1-37.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32003, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Dong, S., Xu, L., Lan, Z. Z., Bu, F., Hua, W., Chunlai, Q., ... & Kai, G. (2024). Multilingual SEIR public opinion propagation model with social enhancement mechanism and cross transmission mechanisms. Scientific Reports, 14(1), 31081.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 32004, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Dubey, P. K., Singh, B., Gautam, A. K., Singh, D., & Tripathi, M. N. (2025). A State of the Art of Recent Trends in Electric Vehicles Planning. Smart Electric and Hybrid Vehicles: Advancements in Materials, Design, Technologies, and Modeling, 159-176.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32005, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Duschl, R. A., Bateman, K. M., & Maeng, S. (2024). and Scott McDonald. Handbook of Research on Science Learning Progressions, 233.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Research, Science Learning" + }, + { + "id": 32006, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Dragomir, O. E., & Dragomir, F. (2025). A Decentralized Hierarchical Multi-Agent Framework for Smart Grid Sustainable Energy Management. Sustainability, 17(12), 5423.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32007, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Eakin, H., Boj\u00f3rquez-Tapia, L. A., Miquelajauregui, Y., Grave, I., Aguilar, B. H., & Janssen, M. A. (2024). Using exploratory modeling to challenge narratives of risk governance in Mexico City. Proceedings of the National Academy of Sciences, 121(36), e2313191121.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32008, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Ege, E., & Ajibade, F. (2024). Evaluating the Impact of Barging Activity on Road Decongestion in Apapa Lagos Nigeria. UNILAG Journal of Transport and Logistics, 1(1), 73-82.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32009, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Ehret, M., Johnston, W. J., & Ritter, T. (2024). From buying centers to buying ecosystems: Advancing the B2B research journey. Industrial Marketing Management.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32010, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Ekanayake\u2010Weber, M., Mathew, N., Cunha, D., Payen, N., Grimm, V., & Koenig, A. (2024). It's about time: Feeding competition costs of sociality are affected more by temporal characteristics than spatial distribution. Ecology and Evolution, 14(4), e11209.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32011, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Ekstr\u00f6m, H., Droste, N., & Brady, M. (2024). Modelling forests as social-ecological systems: A systematic comparison of agent-based approaches. Environmental Modelling & Software, 105998.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32012, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "El\u2010Dalahmeh, M., El\u2010Dalahmeh, A., & Adeel, U. (2024). Analysing the performance of AODV, OLSR, and DSDV routing protocols in VANET based on the ECIE method. IET Networks.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32013, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Eloy, A., Wagh, A., Fuhrmann, T., de Deus Lopes, R., & Blikstein, P. (2024, July). Towards Convergence: Characterizing Students\u2019 Design Moves in Computational Modeling Through Log Data with Video and Cluster Analysis. In International Conference on Artificial Intelligence in Education (pp. 413-421). Cham: Springer Nature Switzerland.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Archaeology, Social Science, Education, Epidemiology" + }, + { + "id": 32014, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Elsheikh, A. (2024). Promising and worth-to-try future directions for advancing state-of-the-art surrogates methods of agent-based models in social and health computational sciences. arXiv preprint arXiv:2403.04417.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 32015, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Emami, S., Dehghanisanij, H., & Hajimirzajan, A. (2024). Agent-based simulation model to evaluate government policies for farmers\u2019 adoption and synergy in improving irrigation systems: A case study of Lake Urmia basin. Agricultural Water Management, 294, 108730.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32016, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Emami, S., & Dehghanisanij, H. (2024). Fault Tree Analysis of Trade-Offs between Environmental Flows and Agricultural Water Productivity in the Lake Urmia Sub-Basin Using Agent-Based Modeling.\u00a0Water,\u00a016(6), 844.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32017, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Encinas, D. O., Matto, J., Stella, J., Maccallini, L., & Romero, F. (2024). Dengue Dynamics: Modelling Spread and Environmental Interactions. Journal of Computer Science and Technology, 24(2), e14-e14.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32018, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Engel, A. (2024). Systems Science for Engineers and Scholars. John Wiley & Sons.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32019, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Engesvik, S. L., Lindst\u00f8l, A., & Meinich, A. H. (2024). Addressing agents' strategies in a cyberwar game (CyberAIMs) (Bachelor's thesis, NTNU).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32020, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Eramo, R., Nolletti, M., Pomante, L., Pasquale, L., & Pascucci, D. (2024). Model\u2010driven engineering for simulation models interoperability: A case study in space industry.\u00a0Software: Practice and Experience.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32021, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Eshrati, B., Rimaz, S., Yaghoobi, M., Effati, S., Jabbari Nooghabi, M., & Tajzadeh, P. (2024). Modeling and Simulation of the possible routes of transmission of Acinetobacter spp. in the Intensive Care Units: An Agent-Based Computational Study. Iranian Journal of Medical Microbiology, 5-5.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Simulation, Computational Study" + }, + { + "id": 32022, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Espinoza, F. (2024). Time as a Field: Envisioning Its Qualitative and Quantitative Aspects. In Educational Research and the Question (s) of Time (pp. 559-579). Singapore: Springer Nature Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 32023, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Estrada-Jimenez, L. A., Kalateh, S., Nikghadam-Hojjati, S., & Barata, J. (2024). An Altruistic-based Framework to Support Collaborative Healing of Manufacturing Resources in a Self-organized Shop-floor.\u00a0IEEE Access.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32024, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Fabrin, B. H., Ferrari, D. B., Arraut, E. M., & Neumann, S. (2024). Towards balancing efficiency and customer satisfaction in airplane boarding: An agent-based approach. Operations Research Perspectives, 100301.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32025, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Faccenda, G., Bogani, A., & Sacchi, S. (2024.) Modelli basati su agenti per lo studio del cambiamento climatico: L\u2019apporto della ricerca psicologica. Sistemi intelligenti, 1-17.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32026, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Fan, G., Zhang, C., Wang, K., Li, Y., Chen, J., & Xu, Z. (2024). CUPID: Improving Battle Fairness and Position Satisfaction in Online MOBA Games with a Re-matchmaking System. arXiv preprint arXiv:2406.19720.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32027, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Fan, W., Shan, C., Wang, S., Liu, T., Wang, F., Meng, X., ... & Liu, Y. (2024). Major Research Fruits. In\u00a0Unconventional Emergency Management Research\u00a0(pp. 41-135). Springer, Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32028, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Fard, G. G. (2024). An Integrated Experimental-Modeling Approach to Communication and Adaptation in Honeybees (Doctoral dissertation, University of Colorado at Boulder).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, History, Social Science, Education" + }, + { + "id": 32029, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Farris, A. V., & McLaughlin, G. (2024). Getting a grip on how we talk about computational practices in science in settings of teacher learning. Journal of Computer Assisted Learning.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32030, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Fernandes, R. S., & Miranda, J. G. V. (2024). An agent-based model for studying the temperature changes on environments exposed to magnetic fluid hyperthermia.\u00a0Computers in Biology and Medicine,\u00a0170, 108053.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Chemistry" + }, + { + "id": 32031, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Fernandes, Y., & Abosata, N. (2024). Analysing India's Cyber Warfare Readiness and Developing a Defence Strategy. arXiv preprint arXiv:2406.12568.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32032, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Ferrando, A., Gatti, A., & Mascardi, V. (2024). Geometric and Spatial Reasoning in BDI Agents: a Survey.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Geometry, Reasoning, Survey" + }, + { + "id": 32033, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Finger, R., Henningsen, A., H\u00f6hler, J., Huber, R., Rommel, J., & Grebitus, C. (2024). Open Science in Agricultural Economics. Q Open, qoae029.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32034, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Finnemann, A., Borsboom, D., Waldorp, L., Marsman, M., & van der Maas, H. L. (2024). A theory construction methodology for network theories in psychology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32035, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Flandre, N. Y., & Giabbanelli\u00b9, P. J. (2024). Can Large Language Models Learn Conceptual Modeling by Looking at Slide. In Advances in Conceptual Modeling: ER 2024 Workshops, AISA, CMLS, EmpER, QUAMES, JUSMOD, LLM4Modeling, Pittsburgh, PA, USA, October 28\u201331, 2024, Proceedings (p. 198). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Conceptual Modeling, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32036, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Fluri, L., Yilmaz, A., Bieri, D., Ankenbrand, T., & Perucca, A. (2024). Simulating Liquidity: Agent-Based Modeling of Illiquid Markets for Fractional Ownership. arXiv preprint arXiv:2411.13381.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 32037, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Fogo, G. (2024). Investigating the Interplay of Mitochondrial Dynamics and Proteostasis during Neuronal Ischemia/Reperfusion Injury using Integrated Imaging and Modeling Approaches (Doctoral dissertation).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, History, Understanding" + }, + { + "id": 32038, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Fonseca, L. L., B\u00f6ttcher, L., Mehrad, B., & Laubenbacher, R. C. (2024). Metamodeling and Control of Medical Digital Twins. arXiv preprint arXiv:2402.05750.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32039, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Fortu, Z. J. T. F., Guevarra, L. M. L., Ang, M. R. C. O., & Vergara, K. A. P. (2024). AGENT-BASED MODELING OF UP DILIMAN INTRACAMPUS PEDESTRIAN MOBILITY USING NETLOGO AND GIS. The International Archives of the Photogrammetry, Remote Sensing and Spatial Information Sciences, 48, 235-241.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32040, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Foster, T., Clegg, R. J., Alden, K., & Smets, B. F. (2024). Is it selfish to be filamentous in biofilms? Individual-based modeling links microbial growth strategies with morphology using the new and modular iDynoMiCS 2.0.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 32041, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Franz\u00e9n, L. K., Lovaco, J., & Villas, F. (2024). SOTA Holistic SoS Engineering. Delft University of Technology (TUD), 23, 01.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32042, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "French, M., Patel, A., Qureshi, A., Saxena, D., & Sengupta, R. (2024a). Agent-based modeling of COVID-19 transmission: A case study of housing densities in Sankalitnagar, Ahmedabad. ISPRS International Journal of Geo-Information, 13(6), 208. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32043, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Frydenlund, E., Mart\u00ednez, J., Padilla, J. J., Palacio, K., & Shuttleworth, D. (2024). Modeler in a box: how can large language models aid in the simulation modeling process?. SIMULATION, 00375497241239360.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 32044, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Fuentes, N., Schmutzler, J., & Vargas, A. M. (2024). Unpacking the Multilayered Nature of Entrepreneurial Ecosystems: A Conceptual Complex Adaptive System Model. International Journal of Innovation Studies.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32045, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Fuhrmann, T., Rosenbaum, L., Wagh, A., Eloy, A., Wolf, J., Blikstein, P., & Wilkerson, M. Right but wrong: How students' mechanistic reasoning and conceptual understandings shift when designing agent\u2010based models using data. Science Education.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Social Science, Education, Epidemiology" + }, + { + "id": 32046, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Gadsden, G. I., Ferraro, K. M., & Harris, N. C. (2024). Energy efficient homes for rodent control across cityscapes.\u00a0Environmental Research Letters,\u00a019(8), 084027.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32047, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Gajewski, Z., McElmurray, P., Wojdak, J., McGregor, C., Zeller, L., Cooper, H., ... & Hopkins, S. (2024). Nonrandom foraging and resource distributions affect the relationships between host density, contact rates and parasite transmission.\u00a0Ecology Letters,\u00a027(3), e14385.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32048, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Garcia, J. M. V. (2024).\u00a0Modelagem baseada em agentes (ABM) para estudo dos efeitos da fecundidade e da longevidade na diversidade gen\u00e9tica de popula\u00e7\u00f5es biol\u00f3gicas\u00a0(Doctoral dissertation, Universidade de S\u00e3o Paulo).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32049, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Garibay, O. O., & Garibay, I. Agent-Based Modeling of C. Difficile Spread in Hospitals: Assessing Contribution of High-Touch vs. Low-Touch Surfaces and Inoculations\u2019 Containment Impact. In\u00a0Proceedings of the 2023 International Conference of The Computational Social Science Society of the Americas\u00a0(p. 173). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32050, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Garz\u00f3n, M., \u00c1lvarez-Pomar, L., & Rojas-Galeano, S. A. (2024). From Collective Intelligence to Global Optimisation: An Agent-based Model Approach.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32051, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Gavidia-Calderon, C., Kordoni, A., Bennaceur, A., Levine, M., & Nuseibeh, B. (2024). The IDEA of Us: An Identity-Aware Architecture for Autonomous Systems. ACM Transactions on Software Engineering and Methodology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Methodology" + }, + { + "id": 32052, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Gehlen, M. A., & Ronzani, G. M. R. (2025). Setting Airport Boarding Strategies Based on Passengers\u2019 Operational Data through Machine Learning Techniques. Journal of Aerospace Technology and Management, 17.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 32053, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Gervasi, V., & Guberti, V. (2024). The Effect of Partial and Temporary Vaccination on African Swine Fever Eradication Rates.\u00a0Transboundary and Emerging Diseases,\u00a02024.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Vaccination, Ecology, Economics" + }, + { + "id": 32054, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Ghaitaranpour, A., Koocheki, A., & Mohebbi, M. (2024). Multi-agent simulation of doughnut deep fat frying considering two domain heating media and sample flipping. Current Research in Food Science, 100751.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 32055, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Ghashghaei, M. T., Abad, A. A. M., & Taleghani, M. (2024). Presenting a model for explaining the effect of internal and external organizational decision components on the final price of industrial products with a factor-based approach. Journal of Value Creating in Business Management, 3(4), 225-270.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 32056, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Ghoreishi, M., Das, A., & Lindenschmidt, K. E. (2024). Advancement in ice-jam flood risk management: Integrating dynamic adaptive behavior by an agent-based modeling in Fort McMurry, Canada.\u00a0Journal of Hydrology, 131236.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32057, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Ghoreishi, M., & Lindenschmidt, K. E. (2024). Unlocking effective ice-jam risk management: Insights from agent-based modeling and comparative analysis of social theories in Fort McMurray, Canada. Environmental Science & Policy, 157, 103731.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32058, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Giabbanelli, P. J. (2024). Fuzzy Cognitive Maps: Best Practices and Modern Methods. Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Fuzzy Cognitive Maps, Best Practices, Modern Methods" + }, + { + "id": 32059, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Ginters, E., Dumpis, U., Li\u00f1\u00e1n, L. C., Eroles, M. A. P., Nazemi, K., Matvejevs, A., & Estrada, M. A. R. (2024). A Paradigm for Modeling Infectious Diseases: Assessing Malware Spread in Early-Stage Outbreaks.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32060, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Glick, A. R., Jones, C., Martignetti, L., Blanchette, L., Tova, T., Henderson, A., ... & Li-Jessen, N. Y. (2024). An integrated empirical and computational study to decipher help-seeking behaviors and vocal stigma.\u00a0Communications Medicine,\u00a04(1), 228.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32061, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Golmaryami, S., Nunes, M. L., & Ferreira, P. (2024). The role of social learning on consumers\u2019 willingness to engage in demand-side management: An agent-based modelling approach. Smart Energy, 100138.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Social Science" + }, + { + "id": 32062, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Gomes, B. D. C. M., & Wehrmeister, M. A. (2024). An\u00e1lise de Escalabilidade de M\u00e9todo de Explora\u00e7\u00e3o e Mapeamento Bioinspirado no Formato das colmeias de Abelha.\u00a0Anais do Computer on the Beach,\u00a015, 270-276.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 32063, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Gomes, O. The Agent ID Model: A Multidisciplinary Framework of Evolutionary Human Behavior. Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Evolution, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32064, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Gomes, O., de Moraes, M. L., & Fagandini, P. The Agent ID Model.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 32065, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Gomez, P., & Swarts, M. Spatiotemporal Modeling Vertically Integrated Project.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 32066, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Gonzalez-Redin, J., Gordon, I. J., Polhill, J. G., Dawson, T. P., & Hill, R. (2024). Navigating Sustainability: Revealing Hidden Forces in Social\u2013Ecological Systems. Sustainability, 16(3), 1132.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32067, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Gonz\u00e1lez-Silva, M. I., & Gonz\u00e1lez-Silva, R. A. (2024). Cooperation Dynamic through Individualistic Indirect Reciprocity Mechanism in a Multi-Dynamic Model. Computation, 12(2), 20.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 32068, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Gooijer, N. J. C. Entity-based System Dynamics for Bridge Asset Management.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology\nEcology" + }, + { + "id": 32069, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Graefe, C. M. (2024).\u00a0New Spaces: On Territoriality in an Expansive Era\u00a0(Doctoral dissertation, University of Minnesota).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32070, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Greybosh, C. (2024). Bringing Computational Modeling into the Classroom with Custom Block-Based Programming Languages in StarLogo Nova (Doctoral dissertation, Massachusetts Institute of Technology).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Miscellaneous" + }, + { + "id": 32071, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Grgicevic, L., Coates, E. M., Bye, R. T., Fossen, T. I., & Osen, O. L. (2024). Towards Decision Support in Vessel Guidance Using Multi-Agent Modelling.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32072, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Grisales, J. A. C., Ceballos, Y. F., Bastidas-Orrego, L. M., G\u00f3mez, N. I. J., & Ca\u00f1ola, E. C. (2024). Development of an Agent-Based Model to Evaluate Rural Public Policies in Medell\u00edn, Colombia. Sustainability, 16(18), 1-19.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32073, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Gritter, K., Dobbin, M., Merrill, E., & Lewis, M. (2024). An individual-based movement model for contacts between mule deer (Odocoileus hemionus). Ecological Complexity, 58, 101082.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 32074, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Groeneveld, J., Martinovi\u010d, T., Rossi, T., Salamon, O., & Grimm, V. (2024). Prototype Biodiversity Digital Twin: Honey Bees in Agricultural Landscapes. ARPHA Preprints, 5, e124639. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 32075, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Groeneveld, J., Odemer, R., & Requier, F. (2024). Brood indicators are an early warning signal of honey bee colony loss\u2014a simulation-based study. PloS one, 19(5), e0302907.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Simulation" + }, + { + "id": 32076, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Guesmi, H. A. (2024). A Trust-Driven Optimization of Role-Based Access Control in E-Health Cloud Systems. Journal of Computing & Biomedical Informatics.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Ecology, Archaeology, Social Science, Education" + }, + { + "id": 32077, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Guo, Q., He, Y., Chen, Y., & Qiao, C. (2024). Design and application of computational modeling in science education research: a systematic review. Interactive Learning Environments, 1-24.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32078, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Guo, Z. (2024). Exploring urban mobility and sustainability from a complexity perspective.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32079, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "G\u00fcng\u00f6r, \u00d6., G\u00fcnne\u00e7, D., Salman, S., & Y\u00fccel, E. (2024). Simulation of migration paths using agent-based modeling: The case of Syrian refugees en route to Turkey. Socio-Economic Planning Sciences, 102089.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32080, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "G\u00fcrcan, \u00d6., Szczepanska, T., & Antosz, P. (2024). A Guide to Re-Implementing Agent-based Models: Experiences from the HUMAT Model. arXiv preprint arXiv:2405.03994.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 32081, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Gwon, N., Jeong, W., Kim, J. H., Oh, K. H., & Jun, J. K. (2024). Effects of Intervention Timing on Health-Related Fake News: Simulation Study. JMIR Formative Research, 8(1), e48284.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Simulation, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32082, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Hahn, U., Assaad, L., & Burton, J. W. (2024). Opinion Averaging versus Argument Exchange. In Proceedings of the Annual Meeting of the Cognitive Science Society (Vol. 46).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32083, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Hahn, U., Merdes, C., & von Sydow, M. (2024). Knowledge through social networks: Accuracy, error, and polarisation.\u00a0Plos one,\u00a019(1), e0294815.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Social Science" + }, + { + "id": 32084, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Haki, K., Tanriverdi\u0307, H., Safaei, D., Schmid, M., Aier, S., & Winter, R. (2024). Generativity and Profitability on B2B Innovation Platforms: A Simulation-based Theory Development. Management Information Systems Quarterly, 48(2), 583-612.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32085, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Hakim, G., Braun, R., & Lipman, J. (2024). Adapted Diffusion for Energy-Efficient Routing in Wireless Sensor Networks. Electronics, 13(11), 2072.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Electronics, Wireless Sensor Networks" + }, + { + "id": 32086, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Hamann, H. The Two-Bridge Ant Experiment as an Interactive NetLogo Library Model. LNCS 14987 Swarm Intelligence, 255.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 32087, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Han, J., Tan, Q., Ding, Y., & Liu, Y. (2024). Exploring the diffusion of low-carbon power generation and energy storage technologies under electricity market reform in China: An agent-based modeling framework for power sector. Energy, 133060.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 32088, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Han, M., & Uhm, J. (2024). Enhancing Students\u2019 Emotional, Epistemic, and Conceptual Aspects in Scientific Practice through Computational Modeling on a Food Web. International Journal of Science and Mathematics Education, 1-21.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Mathematics" + }, + { + "id": 32089, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Han, S., Lim, J., Hwang, M., & Heo, G. (2024). Enhancing Radiological Emergency Response through Agent-Based Model Case 1: Effectiveness of staged Evacuation.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32090, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Hare, M. P., Roxburgh, N., Salt, D., & Polhill, G. (2024). Barriers and Model Curation Issues Associated with Rapid Adaptation of Empirical Legacy ABM in Response to Urgent Policy Maker Queries. In Advances in Social Simulation: Proceedings of the 18th Social Simulation Conference, Glasgow, UK, 4\u20138 September 2023 (p. 271). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32091, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Hartman, C. R. A., Wilkinson, G. S., Razik, I., Hamilton, I. M., Hobson, E. A., & Carter, G. G. (2024). Hierarchically embedded scales of movement shape the social networks of vampire bats. Proceedings of the Royal Society B, 291(2021), 20232880.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 32092, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Hashemi, S. M., Kazemi, M. A. A., Ashlaghi, A. T., & Minooie, M. (2024). The combination of genetic algorithm in the optimization of the stock portfolio in the financial decision of investors.\u00a0Journal of Value Creating in Business Management,\u00a03(4), 72-88.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Genetics, Optimization, Business Management, Finance" + }, + { + "id": 32093, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Hassanpour, S., Gonz\u00e1lez, V. A., Zou, Y., Liu, J., & Cabrera-Guerrero, G. (2024). Agent-based post-earthquake evacuation simulation to enhance early-stage architectural layout and non-structural design.\u00a0Automation in Construction,\u00a0165, 105541.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32094, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Hatlauf, J., Kunz, F., Griesberger, P., Sachser, F., & Hackl\u00e4nder, K. (2024). A stage-based life cycle implementation for individual-based population viability analyses of grey wolves (Canis lupus) in Europe. Ecological Modelling, 491, 110700.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32095, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Hay, T., & Signer, J. (2024) Simulationsbasierte Evaluierung von Dichtesch\u00e4tzern f\u00fcr unmarkierte Tiere Simulation-based evaluation of density estimators for unmarked animals.\u00a0Wildbiologische Forschungsberichte, 215.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology" + }, + { + "id": 32096, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Hazari, T. A., Khalil Ullah, M. I., Pareno, S. I., & Assuad, C. S. A. (2024). A Study on Circular Fashion: Profitability and Environmental Impact Analysis. In EcoDesign for Sustainable Products, Services and Social Systems II (pp. 59-73). Singapore: Springer Nature Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32097, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Hazra, I., Weiner, M., Yang, R., Chattejee, A., Southgate, J., Groth, K., & Azarm, S. (2024). Prognostics and Health Management of Unmanned Surface Vessels: Past, Present, and Future.\u00a0Journal of Computing and Information Science in Engineering, 1-19.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32098, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "He, S., Chen, J., Zhang, P., & Fu, Z. (2024, October). Multi-source Trust Model Based on Blockchain and IoT Edge Task Collaboration. In\u00a02024 IEEE 49th Conference on Local Computer Networks (LCN)\u00a0(pp. 1-7). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Blockchain, IoT, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32099, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Head, B. (2024).\u00a0Agents Modeling Agents: The Design and Analysis of Multi-level Agent-Based Models\u00a0(Doctoral dissertation, Northwestern University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32100, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Held, F., & Wilkinson, I. (2024). Collaborating with Managers to Develop Flight Simulators to Address Complex Problems Using Agent-Based Models. Collaborative Research Design: Working with Business for Meaningful Results, 367.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32101, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Henriques, J. E. (2024). Sophisticated Agent Modeling: Language Design and Implementation for Large-Scale Simulation (Master's thesis, Universidade do Porto (Portugal)).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32102, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Herbillon, F., Diouf, E. G., Br\u00e9vault, T., Haramboure, M., Fellous, S., & Piou, C. (2024). Life history traits of the target pest and transmission routes of the biocide are critical for the success of the boosted Sterile Insect Technique. Current Research in Insect Science, 100101.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Herbillon, Diouf, Haramboure, Fellous, Piou" + }, + { + "id": 32103, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "\u041d\u0435\u0434\u0456\u043b\u044c\u043a\u043e, \u0406. \u041c. (2025). \u0417\u0430\u0433\u0430\u043b\u044c\u043d\u0438\u0439 \u043e\u0433\u043b\u044f\u0434 \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0438 \u0434\u043b\u044f \u0430\u0433\u0435\u043d\u0442\u043d\u043e\u0433\u043e \u043c\u043e\u0434\u0435\u043b\u044e\u0432\u0430\u043d\u043d\u044f \u044f\u043a \u0430\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u0430 NetLogo.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 32104, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Higuera, J. R. B., Higuera, J. B., Montalvo, J. A. S., & Crespo, R. G. (2024). Unsupervised Approaches in Anomaly Detection. In Machine Learning for Cyber Physical System: Advances and Challenges (pp. 57-83). Cham: Springer Nature Switzerland.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Machine Learning, Anomalies, Cyber Physical Systems, Springer Nature" + }, + { + "id": 32105, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Hofmann, H., & Deutsch, S. Web and App Engineering (T4INF1201). Modulhandbuch.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 32106, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Hong, P. G. (2024). Analysis of Consumer Transaction Behavior on Secondhand Goods Trading Platforms Using an Agent-Based Model. \ub514\uc9c0\ud138\ucf58\ud150\uce20\ud559\ud68c\ub17c\ubb38\uc9c0 (J. DCS), 25(7), 1823-1831.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32107, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Hong, Q. (2024). Development of planning support systems: A systematic review of the Chinese language literature. Transactions in Urban Data, Science, and Technology, 27541231241251409.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32108, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Hoskinson, J. S., Davison, D. R., Sanders, H., Jim\u00e9nez-Mar\u00edn, B., & Michod, R. E. (2024). Translating research on evolutionary transitions into the teaching of biological complexity. II. A NGSS-aligned framework for teaching the hierarchy of life.\u00a0Evolution: Education and Outreach,\u00a017(1), 1-20.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Evolution, NGSS, Teaching" + }, + { + "id": 32109, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Hossain, M. R., Abou-Senna, H., Amon, M. J., & Knox, D. (2024). Contextual Effects to Modulate Sign Adherence: Moderating Driver Behavior in Response to Creative versus Traditional Dynamic Message Signs under Varying Driving Conditions. Interdisciplinary Journal of Signage and Wayfinding, 8(2), 21-35.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32110, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Hosseini, S. Z., Radfar, R., Nasiripour, A. A., & Ghatary, A. R. (2024). Machine Learning Algorithms to Prevent the Spread of Infectious Diseases based on Effective Features in the Diagnosis of Covid-19. Iranian Journal of Information Processing and Management, 39(2), 657-698.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Machine Learning Algorithms" + }, + { + "id": 32111, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Howell, W. J., Dong, Z., & Rojas-Cessa, R. (2024). EOS: Impact Evaluation of Electric Vehicle Adoption on Peak Load Shaving Using Agent-Based Modeling. Energies, 17(20), 5110.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32112, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Hrab, M. Action Using Agent-Based Modeling. In\u00a0Proceedings of the 2023 International Conference of The Computational Social Science Society of the Americas\u00a0(p. 56). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 32113, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Hsu, H. M., & Gourbesville, P. Cellular Automata and Agent-Based Modelling for Inundation Simulation and Disaster Management. Advances in Hydroinformatics\u2014SimHydro 2023 Volume 1: New Modelling Paradigms for Water Issues, 333.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Modeling" + }, + { + "id": 32114, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Hsu, Y. Y., & Han, H. (2024). Toward volumetric urbanism: Analysing the spatial-temporal dynamics of 3D floor space use in the built environment. Environment and Planning B: Urban Analytics and City Science, 23998083241286592.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32115, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Hu, L., & Wang, H. (2024). Unplugged Activities in the Elementary School Mathematics Classroom: The Effects on Students\u2019 Computational Thinking and Mathematical Creativity. Thinking Skills and Creativity, 101653.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computation, Mathematics, Creativity" + }, + { + "id": 32116, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Hu, X., Hong, Y., Cui, Z., Xie, T., & Fu, W. (2024). Evaluating Classical Airplane Boarding Methods Focusing on Higher-Risk Passengers during Post-Pandemics. Transportation Research Record, 03611981241247179.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32117, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Hu, X., Yang, Z., Sun, J., & Zhang, Y. (2024). When should capital-constrained swap service providers partner with battery lessors?. Transportation Research Part E: Logistics and Transportation Review, 190, 103692.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32118, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Hua, L. (2024). The impact of environmental taxation on the structure and performance of industrial symbiosis networks: An agent-based simulation study. Heliyon, 10(3), e25675.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32119, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Huang, H., Sun, B., & Hu, L. (2024). A task Offloading Approach Based on Risk Assessment to Mitigate Edge DDoS Attacks. Computers & Security, 103789.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32120, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Huang, J., Wang, J., Gong, Y., Xu, N., Zhou, Y., Zhu, L., ... & Zhou, Y. Identification of Optimum Scopes of Environmental Drivers for Schistosome-Transmitting Oncomelania Hupensis Using Agent-Based Model in Dongting Lake Region, China.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32121, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Huang, K., De Long, J. R., Yan, X., Wang, X., Wang, C., Zhang, Y., ... & Guo, H.\u00a0(2024).\u00a0Why are graminoid species more dominant? T rait\u2010mediated plant\u2013soil feedbacks shape community composition.\u00a0Ecology, e4295.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology" + }, + { + "id": 32122, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Huber, R., Kreft, C., Sp\u00e4ti, K., & Finger, R. (2024). Quantifying the importance of farmers' behavioral factors in ex-ante assessments of policies supporting sustainable farming practices. Ecological Economics, 224, 108303.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32123, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Hui, H., Feng, L., & Zhang, R. Chongqing University of Technology, Chongqing, China zrj@ cqut. edu. cn. In Spatial Data and Intelligence: 5th China Conference, SpatialDI 2024, Nanjing, China, April 25\u201327, 2024, Proceedings (p. 199). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Spatial Data, Intelligence, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32124, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Huo, F. Y., Manrique, P. D., Restrepo, D. J., Woo, G., & Johnson, N. F. (2024). Simple fusion-fission quantifies Israel-Palestine violence and suggests multi-adversary solution. arXiv preprint arXiv:2409.02816.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32125, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Hussain, I., Elomri, A., Kerbache, L., & El Omri, A. (2024). Smart city solutions: Comparative analysis of waste management models in IoT-enabled environments using multiagent simulation. Sustainable Cities and Society, 105247.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32126, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Iap\u0103scurt\u0103, V. (2024). Agent-based modeling: revolutionizing tissue engineering.\u00a0Cells and tissues transplantation. Actualities and perspectives. The 2-nd edition. Chisinau, March 29-30th 2024.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 32127, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Iapascurta, V. (2024). Modeling the human circulatory system using system dynamics: possibilities, benefits, and practical applications.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, System Dynamics" + }, + { + "id": 32128, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "IAP\u0102SCURT\u0102, V. (2024). NetLogo integrated development environment for modeling physiological processes.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 32129, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Ibrahimli, U., Hemmrich, S., Zauke, S., & Winkelmann, A. Overcoming Lemon Markets with Business Reputation Ecosystem\u2013A Multi-agent Simulation on Monetary Ratings.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 32130, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Idrissa, S. M., Kadri, C., Bachir, M. I., & Naroua, H. (2024). Computer Simulation models of infectious diseases: Advantages and Limits. International Journal of Science and Research Methodology, 27(7), 10\u201340.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science, Biology, Ecology, Miscellaneous" + }, + { + "id": 32131, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Imanian Ardabily, M., Noghani Dokht Bahmani, M., & Asgharpour Masouleh, A. R. (2024). science production. Ferdowsi University of Mashhad Journal of Social Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32132, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Ismail, S., Mostafa, S. A., Baharum, Z., Erianda, A., Jaber, M. M., Jubair, M. A., & Adiya, M. H. (2024). Software Agent Simulation Design on the Efficiency of Food Delivery. JOIV: International Journal on Informatics Visualization, 8(1), 190-197.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32133, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Ismail, S. (2024). Universities as Complex Systems: Data, Power Laws, and an Agent-Based Model (Doctoral dissertation, George Mason University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32134, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Ivanjek, L., Perl-Nussbaum, D., Solvang, L., Yerushalmi, E., & Pospiech, G. (2024). Enhancing Mathematization in Physics Education by Digital Tools. In Physics Education Today: Innovative Methodologies, Tools and Evaluation (pp. 35-53). Cham: Springer Nature Switzerland.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Physics, Mathematics, Computer Science, Education" + }, + { + "id": 32135, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Izmirlioglu, Y., Pham, L., Son, T. C., & Pontelli, E. (2024). A Survey of Multi-Agent Systems for Smartgrids. Energies (19961073), 17(15).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Social Science, Education, Epidemiology" + }, + { + "id": 32136, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Izquierdo Mill\u00e1n, L. R., Izquierdo Mill\u00e1n, S. S., & Sandholm, W. H. (2024). Agent-Based Evolutionary Game Dynamics.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32137, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Jackson, M. H. (2024). Modeling of Small Groups in Computational Sciences: A Prospecting Review. Small Group Research, 10464964241279164.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 32138, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Jager, W., & Wang, S. Simulations as a Dialogue Tool: Strengthening Community Engagement and Local Democratic Processes. In Advances in Social Simulation: Proceedings of the 18th Social Simulation Conference, Glasgow, UK, 4\u20138 September 2023 (p. 107). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Social Science, Computer Science, Economics" + }, + { + "id": 32139, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Jalal, J. K., Al-sofy, K. M., Fadhil, F. F., & Mahmood, B. Adaptive routing strategy for emergency applications in smart campus.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32140, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Jalali, H., Aghamohammadi, H., Vahidnia, M. H., & Mirzahosseini, A. Modeling the effects of PM pollutant on people using a spatio-temporal dynamic model and GIS.\u00a0Journal of Geomatics Science and Technology, 0-0.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Geography, Modeling" + }, + { + "id": 32141, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Jamshidnejad, A., & De Schutter, B. (2024). A combined probabilistic-fuzzy approach for dynamic modeling of traffic in smart cities: Handling imprecise and uncertain traffic data. Computers and Electrical Engineering, 119, 109552.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32142, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Janssen, S. D., Viaene, K. P., Van Sprang, P., & De Schamphelaere, K. A. (2024). Modeling Full Life\u2010Cycle Effects of Copper on Brook Trout (Salvelinus fontinalis) Populations. Environmental Toxicology and Chemistry.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Chemistry" + }, + { + "id": 32143, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Jebelli, N. B. (2024). Computational Modeling of the Social Complexity in G\u00d6Bekli Tepe and Earliest Neolithic Communities (Doctoral dissertation, George Mason University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32144, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Jetton, C., Hoyle, C., & Campbell, M. I. (2024). Overcoming Design Challenges in Coupled System Device Problems Using Agent-Based. Design Computing and Cognition\u201924: Volume 2, 259.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32145, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Jiang, J., Wu, H., Xu, R., Yang, H., Zhang, Y., & Li, J. A Node Protection Method For Improving The Resilience Of Combat System Under Continuous Attack.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32146, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "\uc870\ud61c\uc778(Jo Hye-in). (2024). Aggregation Behavior in Polymorphic Foragers of the Japanese Carpenter Ant, Camponotus japonicus (Doctoral dissertation, \uc11c\uc6b8\ub300\ud559\uad50 \ub300\ud559\uc6d0).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 32147, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Johnson, K., Vermeer, W., Hills, H., Chin-Purcell, L., Barnett, J., Burns, T., ... & Brown, C. H. (2024). Model-Driven Decision Support: A Community-Based Meta-Implementation Strategy to Predict Population Impact. Annals of Epidemiology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32148, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Jonnala, R., Liang, G., Yang, J., & Alsmadi, I. (2024). Using Large Language Models in Public Transit Systems, San Antonio as a case study. arXiv preprint arXiv:2407.11003.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32149, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Joshi, A. R., Chappin, E. J. L., & Doorn, N. (2024). Equity, Urgency, Affordability.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32150, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Josserand, M., Allassonni\u00e8re\u2010Tang, M., Pellegrino, F., Dediu, D., & de Boer, B. (2024). How Network Structure Shapes Languages: Disentangling the Factors Driving Variation in Communicative Agents. Cognitive Science, 48(4), e13439.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32151, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Jun, W., & Ran, X. Q. (2024). Dynamics in Digital Finance and Its Impact on SME Financing. Heliyon, 10(9), E30586.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32152, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Jung, Y., Qian, C., Barnett-Neefs, C., Ivanek, R., & Wiedmann, M. (2024). Developing an Agent-Based Model that Predicts Listeria spp. Transmission to Assess Listeria Control Strategies in Retail Stores. Journal of Food Protection, 100337.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32153, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Jureti\u0107, D., & Bona\u010di\u0107 Lo\u0161i\u0107, \u017d. (2024). Theoretical Improvements in Enzyme Efficiency Associated with Noisy Rate Constants and Increased Dissipation. Entropy, 26(2), 151.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Enzyme Efficiency, Thermodynamics" + }, + { + "id": 32154, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Kafai, Y., & Morales-Navarro, L. (2024). Twenty Constructionist Things to Do with Artificial Intelligence and Machine Learning. arXiv preprint arXiv:2402.06775.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 32155, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Kamali, A., Niksokhan, M. H., & Ardestani, M. (2024). Multi-agent system simulation and centralized optimal model for groundwater management considering evaluating the economic and environmental effects of varied policy instruments implemented.\u00a0Journal of Hydroinformatics, jh2024152.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32156, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Kappenberger, J., & Stuckenschmidt, H. (2024). A framework for human-centered AI-based public policies. Human-Centered AI, 287.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32157, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Kang, B., Kumar, H., Lee, M., Chakraborty, B., & Mukhopadhyay, S. (2024). Learning Locally Interacting Discrete Dynamical Systems: Towards Data-Efficient and Scalable Prediction. arXiv preprint arXiv:2404.06460.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Miscellaneous" + }, + { + "id": 32158, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Karalidis, K., Roumpos, C., Servou, A., Paraskevis, N., & Pavloudakis, F. (2024). Post-mining planning under the prism of land use alternatives: a cellular automata model. Environmental Earth Sciences, 83(13), 413.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32159, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Karalla, S. A., & Petropoulou, I. (2024). A review on educational robotics and creativity. Global Journal of Engineering and Technology Advances, 20(01), 078-084.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Education, Miscellaneous" + }, + { + "id": 32160, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Karolemeas, C., Tsigdinos, S., Moschou, E., & Kepaptsoglou, K. (2024). Shared autonomous vehicles and agent based models: a review of methods and impacts. European Transport Research Review, 16(1), 1-45.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32161, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Karrenberg, C., Berglund, E. Z., & Edwards, E. C. An Agent-Based Modeling Approach to Assess the Social Equity Impacts of Dynamic Pricing Forurban Water Management. Available at SSRN 5002637.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32162, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Kassa, Y. W., James, J. I., & Belay, E. G. (2024). Cybercrime Intention Recognition: A Systematic Literature Review. Information, 15(5), 263.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32163, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Katsamakas, E., & Sanchez-Cartas, J. M. (2024). Congestion, network effects and platform competition. Journal of Economic Interaction and Coordination, 1-25.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32164, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Kaur, M., & Verma, V. K. (2024). Cooperative-centrality enabled investigations on edge-based trustworthy framework for cloud focused internet of things. Journal of Network and Computer Applications, 103872.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32165, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Kaur, P., Ciuti, S., Salter-Townshend, M., & Farine, D. R. (2024). Using an agent based model to inform sampling design for animal social network analysis. bioRxiv, 2024-05.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32166, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Kazieva, V., Gro\u00c3\u0178e, C., & Larsson, A. (2024). Towards a unified regional vision: simulation to foster cross-municipal cooperation and planning. Insights into Regional Development, 6(4), 54-81.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32167, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Kazymyr, V. (2024). Modeling of Defensive Drone Swarms with NetLogo.\u00a0Mathematical Modeling and Simulation of Systems, 377.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Modeling" + }, + { + "id": 32168, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Kemei, Z., Rotich, T., & Bitok, J. Modelling Population Dynamics Using Age-Structured System Of Partial Differential Equations.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry" + }, + { + "id": 32169, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Khairunnisa, G., Dewi, O. C., & Alkadri, M. F. (2024, September). Implementation of Green Behavior in Educational Building Through Human-based Retrofits Based on Agent-Based Modeling (ABM). In\u00a0IOP Conference Series: Earth and Environmental Science\u00a0(Vol. 1395, No. 1, p. 012023). IOP Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32170, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Khajeem Moghadam, A., Saghafian, B., Najarchi, M., & Delavar, M. (2024). Optimizing Stakeholder Behavior for Groundwater Management in Arid and Semi-arid Climates: A Multi-agent System Approach in Karaj Plain, Iran. Iranian Journal of Science and Techno", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32171, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Khanna, A., Rousell, N., Davis, T., Zhang, Y., Sheeler, D., Cioe, P., ... & Kahler, C. (2024). Social network dynamics of tobacco smoking and alcohol use among persons involved with the criminal legal system (PCLS): A modeling study. International Journal of Alcohol and Drug Research.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32172, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Khasraghi, G. S., & Nejat, A. (2024). Utilizing Agent-Based Modeling for Optimization of Wayfinding in Hospital: A Case Study. HERD: Health Environments Research & Design Journal, 19375867241248593.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Health Environments Research & Design, Computer Science" + }, + { + "id": 32173, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Khatami, S., & Frantz, C. (2024). Prompt Engineering Guidance for Conceptual Agent-based Model Extraction using Large Language Models. arXiv preprint arXiv:2412.04056.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 32174, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Khazaei, S., & Najafiani, M. (2024). Evaluation of Emergency Evacuation in Residential High-Rise Buildings Communities (Case Study: Punak Town of Zanjan). Emergency Management.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Emergency Management" + }, + { + "id": 32175, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Khazaii, J., Khazaei, A., Khayyam, H., & Jazar, R. N. (2024). Evolutionary Game Theory and Innovative Building Strategies. In Nonlinear Approaches in Engineering Application: Automotive Engineering Problems (pp. 283-294). Cham: Springer Nature Switzerland.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32176, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Kheirinejad, S., Bozorg-Haddad, O., Savic, D., Singh, V. P., & Lo\u00e1iciga, H. A. (2024). Developing a National-Scale Hybrid System Dynamics, Agent-Based, Model to Evaluate the Effects of Dietary Changes on the Water, Food, and Energy Nexus. Water Resources Management, 1-26.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32177, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Kickmeier-Rust\u00b9, M. D., Pasieka, M., & Baumgartner\u00b9, M. Herding Cats: Assessing Complex Procedural and Tacit Knowledge with Multi-agent. In Methodologies and Intelligent Systems for Technology Enhanced Learning, 14th International Conference (p. 255). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Methodology, Intelligent Systems, Technology Enhanced Learning" + }, + { + "id": 32178, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Kilic, O., & Tsang, A. (2024, May). Catfished! Impacts of Strategic Misrepresentation in Online Dating. In Proceedings of the 23rd International Conference on Autonomous Agents and Multiagent Systems (pp. 1011-1019).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32179, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Kim, G., Park, J., & Heo, G. (2024). Enhancing Radiological Emergency Response through Agent-Based Model Case 2: Time Required for Staff Assemble.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32180, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Kim, H. (2024). Exploring mobile OTT service user's psychological resistance toward wireless mobile caching networks and telecommunication operator's incentive policy, using agent-based model scenarios.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32181, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Kim, J., Conte, M., Oh, Y., & Park, J. (2024). From Barter to Market: an Agent-Based Model of Prehistoric Market Development.\u00a0Journal of Archaeological Method and Theory, 1-40.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32182, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Kim, S., Fattori, G., & Park, Y. (2024). A simple and efficient Distributed Trigger Counting algorithm based on local thresholds. ICT Express.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 32183, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Kimberly, J. (2024). Simulation Software and Frameworks: There are various software tools and frameworks, such as NetLogo, Mesa.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation Software, Frameworks" + }, + { + "id": 32184, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Kimpton, L., Challenor, P., & Salter, J. (2024). Uncertainty Quantification for Agent Based Models: A Tutorial. arXiv preprint arXiv:2409.16776.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32185, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "King, B. (2024) Using Systems Human Factors and Ergonomics to Identify and Mitigate the Risks Associated with Future Invasive Brain-Computer Interfaces.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Systems Human Factors and Ergonomics, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32186, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Kirac, E., Shaltayev, D., & Wood, N. (2024). Evaluating the Impact of Citizen Collaboration with Government Agencies in Disaster Response Operations: An Agent-Based Simulation Study. International Journal of Disaster Risk Reduction, 104469.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32187, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Knapp, A. C., Cruz, D. A., Mehrad, B., & Laubenbacher, R. C. (2024). Ensemble Kalman filter methods for agent-based medical digital twins.\u00a0bioRxiv, 2024-05.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32188, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Koning, E., & Gropp, W. Proposal for a Flexible Benchmark for Agent Based Models.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32189, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Kooijman, S. A. L. M. (2024). Ways to reduce or avoid juvenile-driven cycles in individual-based population models. Ecological Modelling, 490, 110649.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32190, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Kopels, M. C., & Ullah, I. I. (2024). Modeling post-Pleistocene megafauna extinctions as complex social-ecological systems.\u00a0Quaternary Research, 1-14.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 32191, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Kosak, O., Kastenm\u00fcller, P., Wanninger, C., & Reif, W. (2024, October). An Approach for Extended Swarm Formation Flight with Drones: PROTEASE 2.0. In International Symposium on Leveraging Applications of Formal Methods (pp. 263-280). Cham: Springer Nature Switzerland.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 32192, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "K\u00f6ster, T., Reinhardt, O., Hinsch, M., Bijak, J., & Uhrmacher, A. M. (2024). A Fast Embedded Language for Continuous-Time Agent-Based Simulation. Journal of Artificial Societies and Social Simulation, 27(1), 10.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 32193, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Kraeuter, K., Reith, C., Kolber, B. J., & Miller Neilan, R. (2024). Improved Efficiency and Sensitivity Analysis of 3-D Agent-based Model for Pain-related Neural Activity in the Amygdala. Spora: A Journal of Biomathematics, 10(1), 65-82.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Neural Activity, Modeling, Amygdala" + }, + { + "id": 32194, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Kramberger, T., & Abdelshafie, A. (2024) Simulation-optimization Model In Managing The Empty Container Movements Problem Through Repositioning Strategies.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation, Optimization, Repositioning" + }, + { + "id": 32195, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Krasilenko, V. G., Nikitovich, D. V., & Lazarev, A. A. (2024). Modeling nodes and cells of neuron-equivalentors as accelerators of equivalental-convolutional self-learning neural structures. Modeling, control and information technologies.\u2116 7: 247\u2013250.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Computer Science, Economics, Physics, Chemistry, Ecology, Miscellaneous" + }, + { + "id": 32196, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Kreig, J. A., Lenhart, S., Ponce, E., & Jager, H. I. (2024). Agent-based modeling to evaluate the effects of harvesting biomass and hunting on ring-necked pheasant (Phasianus colchicus) populations. Ecological Modelling, 492, 110705.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Modeling" + }, + { + "id": 32197, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Kremer-Herman, N., Gupta, A., & Severson, E. R. (2024). Blueprints for Machine Ethics: A Digital Terrarium for Socio-Ethical Artificial Agent Decisionmaking. IEEE Access.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32198, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Kritikou, A. I., Nikolaidi, M. E., & Chavianidis, T. (2024). The role of mobile applications in managing everyday stress through breathing. GSC Advanced Research and Reviews, 20(1), 283-299.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32199, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Kruijning, D. (2024). From policy to action: residents\u2019 responses to a top-down rainwater retention policy in Groningen (Doctoral dissertation).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32200, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Kuipers, E. (2024).\u00a0Integrated field-& agent-based modelling: understanding the dynamics of the common barbel in the Meuse river\u00a0(Master's thesis).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32201, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Kuljanin, G., Braun, M. T., Grand, J. A., Olenick, J. D., Chao, G. T., & Kozlowski, S. W. (2024). Advancing Organizational Science With Computational Process Theories. The Leadership Quarterly, 101797.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32202, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Kumar, H., Chakraborty, B., Kang, B., & Mukhopadhyay, S. (2024). Studying the Impact of Stochasticity on the Evaluation of Deep Neural Networks for Forest-Fire Prediction. arXiv preprint arXiv:2402.15163.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Statistics, Physics, Chemistry, Economics, History, Social Science, Education, Epidemiology" + }, + { + "id": 32203, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Kumar, L. (2024). RISK MITIGATION IN CLOUD-BASED IDENTITY MANAGEMENT SYSTEMS: BEST PRACTICES.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32204, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Kumar, V., Mistri, A., Jain, V., & Ghosh, M. (2024). Computational Engineering for 3D Bioprinting: Models, Methods, and Emerging Technologies. 3D Bioprinting from Lab to Industry, 301-322.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Engineering, 3D Bioprinting" + }, + { + "id": 32205, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Kumari, A. (2024). Fashion Business and Digital Transformation (Impact of Digital Marketing When Styles Meet Screens). BFC Publications.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Digital Marketing, Fashion, Economics, Computer Science, Sociology" + }, + { + "id": 32206, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Kuo, P. F., Wen, T. H., Chuang, T. W., Chiu, C. S., Ye, Y. J., & Putra, I. G. B. (2024). Comparing micro-level and macro-level models for epidemic diffusion in the metro system. Journal of Simulation, 1-14.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32207, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "K\u00fcrschner, T., Scherer, C., Radchuk, V., Blaum, N., & Kramer\u2010Schadt, S. (2024). Resource asynchrony and landscape homogenization as drivers of virulence evolution: The case of a directly transmitted disease in a social host. Ecology and Evolution, 14(2), e11065.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32208, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Kurchyna, V. (2024). Check for updates Can (and Should) Automated Surrogate Modelling Be Used for Simulation Assistance? In Multi-Agent-Based Simulation XXIV: 24th International Workshop, MABS 2023, London, UK, May 29\u2013June 2, 2023, Revised Selected Papers (p. 3). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Miscellaneous" + }, + { + "id": 32209, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Kyrychok, T., Klymenko, T., & Bardovskyi, B. (2024, January). Nanoscale fractal analysis of watermarked paper surface topography studied by atomic force microscopy. In\u00a0Sixteenth International Conference on Correlation Optics\u00a0(Vol. 12938, pp. 174-177). SPIE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Nanoscale fractal analysis" + }, + { + "id": 32210, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Laili, Y., Gong, J., Hu, K., Zhang, L., & Wang, F. (2024, August). Model Calibration for Agent-Based Simulation Using a Pattern Clustering Network. In\u00a0Asia Simulation Conference\u00a0(pp. 152-164). Singapore: Springer Nature Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, Modeling" + }, + { + "id": 32211, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Lais, R. S., Fitzner, J., Lee, Y. K., & Struckmann, V. (2024). Open-sourced modeling and simulating tools for decision-makers during an emerging pandemic or epidemic\u2013Systematic evaluation of utility and usability: A scoping review update. Dialogues in Health, 100189.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32212, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Lakmali, R. G. N., Genovese, P. V., & Abewardhana, A. A. B. D. P. (2024). Evaluating the Efficacy of Agent-Based Modeling in Analyzing Pedestrian Dynamics within the Built Environment: A Comprehensive Systematic Literature Review. Buildings, 14(7), 1945.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32213, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Lammers, D., Grimm, V., Requier, F., Focks, A., & Groeneveld, J.\u00a0\u00a0(2025).\u00a0Towards using the BEEHAVE honey bee model across climates: a heuristic approach to let egg-laying rates emerge from weather conditions, pollen storage and brood pheromones. SSRN 5334581.", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 32214, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Lamrani Alaoui, Y., El Fakir, A., & Tkiouat, M. (2024). A New Crowdfunding Model for Financial Inclusion Based on Donations and Interest-Free Debt: A Fuzzy Agent-Based Simulation Approach. International Journal of Islamic Finance and Sustainable Development, 16(4), 63-90.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Finance, Simulation, Economics, Computer Science, Islamic Finance, Development" + }, + { + "id": 32215, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Lan, H., Yang, Y., Fu, H., Liao, H., Liao, L., Huang, S., & Li, X. (2024). Dynamic disaster risk assessment of urban waterlogging on pedestrian flow by intelligent simulation of hydrodynamics coupled with agent-based models in Chao-yang river basin of Nanning, China.\u00a0Stochastic Environmental Research and Risk Assessment, 1-24.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Economics, History, Geology, Miscellaneous" + }, + { + "id": 32216, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Langbeheim, E., Saba, J., & Levy, S. T. (2024). Invented models\u2013relating students\u2019 constructions of computational models to their learning gains. Interactive Learning Environments, 1-16.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32217, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Laouar, W., Redjimi, K., & Redjimi, M. (2024). Towards an agent-based wireless sensor network simulator for hierarchical routing protocols. South Florida Journal of Development, 5(12), e4776-e4776.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32218, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Larson Jr, J. R., Cornell, C. A., & Aramovich, N. P. (2024). Building Better Theories: Prediction Intervals as a Tool for Theory Testing and Improvement. Basic and Applied Social Psychology, 1-23.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32219, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Lavaud, R., Marn, N., Domingos, T., Filgueira, R., Lika, K., Rakel, K., & Klanj\u0161\u010dek, T. (2024). Metabolic organization across scales of space and time. Ecological Modelling, 110951.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 32220, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Leal Martinez, D. (2024). Design and optimization of a decentralized multi-robot exploration behavior taking into account energy constraints.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32221, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Lee, H. S., Gweon, G. H., & Pallant, A. (2024). SupportingSimulation-MediatedScientific InquirythroughAutomatedFeedback. Uses of Artificial Intelligence in STEM Education, 198.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 32222, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Lee, I., Perret, B., DeLisi, J., Minocha, S., Peterson, K., & Malyn-Smith, J. (2024). The Decoding Approach For Integrating Computational Thinking Into High School Science Classrooms. In\u00a0Edulearn24 Proceedings\u00a0(pp. 5058-5067). IATED.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computation, Ecology, Education, Computer Science, Physics, Chemistry, Economics, History, Social Science, Miscellaneous" + }, + { + "id": 32223, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Lee, L. Y. (2024). Taxing Tobacco Companies To Close The Interracial Wealth Gap: An Alternative Policy to Address Compensation for Racial Discrimination.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Economics, History, Social Science, Education" + }, + { + "id": 32224, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Ledda, M., Pluchino, A., & Ragusa, M. (2024). Exploring the Role of Genetic and Environmental Features in Colorectal Cancer Development: An Agent-Based Approach.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32225, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Lemmen, C., Hokamp, S., \u00d6rey, S., & Scheffran, J. (2024). Viable North Sea (ViNoS): A NetLogo Agent-based Model of German Small-scale Fisheries. Journal of Open Source Software, 9(95), 5731.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 32226, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Le\u00f3n, J., Mart\u00ednez, C., Inzunza, S., Ogueda, A., & Urrutia, A. (2024). Improving Tsunami Risk Analysis by Integrating Spatial Resolution and the Population\u2019s Evacuation Capacities: A Case Study of Cartagena, Chile. International Journal of Disaster Risk Science, 1-16.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32227, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Le\u00f3n, J., Ogueda, A., Hurtado, L., Gubler, A., & Zamora, N. (2024). An integrated framework for analysing horizontal and vertical tsunami evacuation. A case study of Iquique, Chile. International Journal of Disaster Risk Reduction, 105137.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32228, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Leonard-Duke, J., Agro, S. M., Csordas, D. J., Bruce, A. C., Eggertsen, T. G., Tavakol, T. N., ... & Peirce, S. M. (2024). Multi-Scale Computational Model of Microvascular Remodeling in Idiopathic Pulmonary Fibrosis.\u00a0bioRxiv, 2024-03.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computational Modeling, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32229, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Li, N. (2024). Analyzing the Complexity of Public Opinion Evolution on Weibo: A Super Network Model.\u00a0Journal of the Knowledge Economy, 1-36.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 32230, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Li, J., Feng, Z., Zhang, W., Zhu, D., & Huang, Z. (2024). Evolution of green travel behaviour on dynamic social networks. Travel Behaviour and Society, 37, 100866.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32231, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Li, J., Niu, J., & Wang, J. (2024). Agent-based modelling and simulation of elderly residents\u2019 dynamic usage patterns in neighbourhood squares during summer. Building and Environment, 111598.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32232, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Li, J., Yuan, P., Liang, L., & Cao, J. (2024). Enhancing Supply Chain Resilience in Prefabricated Buildings: The Role of Blockchain Technology in Volatile, Uncertain, Complex, and Ambiguous Environments. Buildings, 14(9), 3006.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32234, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Li, X., Xu, Y., Zhang, Y., & Malthouse, E. C. (2024). Large Language Model-driven Multi-Agent Simulation for News Diffusion Under Different Network Structures. arXiv preprint arXiv:2410.13909.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32235, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Liang, H., Qian, Y., Zhu, M., & Chen, Y. (2024). Exploring the role of social networks in modeling drivers\u2019 route choice behavior. Transportation Research Part F: Traffic Psychology and Behaviour, 104, 154-169.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32236, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Liang, L., Phan, H., & Giabbanelli, P. J. (2024). Experimental evaluation of a machine learning approach to improve the reproducibility of network simulations. SIMULATION, 00375497241229753.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 32237, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Liang, Y., Wang, X., & Zheng, Q. (2024, December). Establishment and Research of Multi-agent Based Multi-Departmental Collaboration Model. In 2024 3rd International Conference on Public Service, Economic Management and Sustainable Development (PESD 2024) (pp. 455-461). Atlantis Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32238, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Lim, J., & Johnson, C. (2024). Judgmental Forecasting Uses Agent-Based Modeling and Simulation to Minimize Risks and Losses in Decision-Making. Jurnal Ilmiah Teknik Industri, 278-285. https://doi.org/10.23917/jiti.v23i02.4486", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Simulation, Economics, Computer Science, 23917/jiti" + }, + { + "id": 32239, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Lim, J., Vogel-Heuser, B., & Kovalenko, I. (2024). Large Language Model-Enabled Multi-Agent Manufacturing Systems.\u00a0arXiv preprint arXiv:2406.01893.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 32240, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Lin, C. Y., OA, M., Dhakal, S., Zipper, S., & Marston, L. (2024). Pychamp: A Crop-Hydrological-Agent Modeling Platform for Groundwater Management. Available at SSRN 4814225.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32241, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Lin, H., Zheng, H., & Wang, F. (2024). The influence of school climate on Chinese primary school students\u2019 bystander behavior in bullying: A variable-and person-centered dual-perspective analysis. Psychology of Violence.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32242, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Lin, J. H., Quan, Y. J., & Han, B. P. (2024). MetaIBM: A Python-based library for individual-based modelling of eco-evolutionary dynamics in spatial-explicit metacommunities. Ecological Modelling, 492, 110730.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32243, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Lin, L., Wei, X., & Chen, Y. (2024). Evolution of Policy-Driven Ecosystem of Original Innovation Talents. International Journal of Innovation Studies.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32244, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Lin, S., Wang, K., & Liu, X. Y. (2024, November). Analyzing Cascading Outbreak of GameStop Event: A Practical Approach Using Network Analysis and Large Language Models. In Proceedings of the 5th ACM International Conference on AI in Finance (pp. 428-436).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Network Analysis, Large Language Models, Finance, AI, Computer Science, Economics, Biology" + }, + { + "id": 32245, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Listopad, S., Matsoula, V., & Luchko, A. (2024). Modeling reflection in artificial intelligence systems: state of art and prospects. In ITM Web of Conferences (Vol. 59, p. 04005). EDP Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Artificial Intelligence, Computer Science, Physics, Chemistry, Ecology" + }, + { + "id": 32246, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Little, C. J., Banville, P. E., Ford, A. T., & Germain, R. M. (2026). Spatial signature of resource distribution is mediated by consumer body size and habitat preference\n bioRxiv. https://doi.org/10.1101/2024.06.24.600507", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32247, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Liu, J. (2024). Marketing strategy matching algorithm under Artificial Intelligence. 2024 Third International Conference on Distributed Computing and Electrical Circuits and Electronics (ICDCECE).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Marketing strategy" + }, + { + "id": 32248, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Liu, K., Jiang, G., Cheng, X., Hu, X., & Che, C. (2024). Strategic Cooperation in Ride-Hailing: Analyzing Operational Efficiency in San Francisco.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32249, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Liu, S. H., Weber, E. S., Manz, K. E., McCarthy, K. J., Chen, Y., Sch\u00fcffler, P. J., ... & Tracy, M. (2024). Assessing the Impact and Cost-Effectiveness of Exposome Interventions on Alzheimer\u2019s Disease: A Review of Agent-Based Modeling and Other Data Science Methods for Causal Inference. Genes, 15(11), 1457.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32250, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Liu, W., Meng, Q., Zhi, H., Li, Z., & Hu, X. (2024). A review of agent-based modeling in construction management: an analytical framework based on multiple objectives. Journal of Civil Engineering and Management, 30(3), 200-219.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32251, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Liu, X., Tan, Z., Liang, L., & Li, G. (2024). A Multidimensional Trust Evaluation Mechanism for Improving Network Security in Fog Computing. IEEE Transactions on Industrial Informatics.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 32252, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Liu, X., Zhang, L., Zhen, J., & Wang, W. (2024). Planning for service space of medium-and long-term shelters based on multi-agent evacuation simulation.\u00a0Natural Hazards, 1-28.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32253, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Liu, Y., Zhou, Y., Yang, L., & Xin, Y. (2024). Simulating staff activities in healthcare environments: An empirical multi-agent modeling approach.\u00a0Journal of Building Engineering, 108580.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32254, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Liu, Z., Gearty, Z., Richard, E., Orrill, C. H., Kayumova, S., & Balasubramanian, R. (2024). Bringing computational thinking into classrooms: a systematic review on supporting teachers in integrating computational thinking into K-12 classrooms. International Journal of STEM Education, 11(1), 51.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Social Science, Education" + }, + { + "id": 32255, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Liu, Z., Wang, Z., Chen, L., Tang, T., & Shen, Z. (2024). An Agent-Based Approach to Simulating Evacuation in Elderly Care Facilities with Disabled Older Adults.\u00a0International Journal of Disaster Risk Reduction, 104815.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32256, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Lopate, M. Z. (2024). Complexity and Great Power Decline (Doctoral dissertation, The Ohio State University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32257, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "L\u00f3pez, A. B., Pastor-Galindo, J., & Ruip\u00e9rez-Valiente, J. A. (2024). Frameworks, Modeling and Simulations of Misinformation and Disinformation: A Systematic Literature Review.\u00a0arXiv preprint arXiv:2406.09343.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32258, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "L\u00f3pez-Vargas, J. C., Meisel, J. D., C\u00e1rdenas-Aguirre, D. M., & Medina, P. (2024). Coordination mechanisms applied to logistical systems for local disaster preparedness: a Latin American case. Journal of Humanitarian Logistics and Supply Chain Management.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32259, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Lopolito, A., Caferra, R., Nigri, A., & Morone, P. (2024). An evaluation of the impact of mitigation policies on health and the economy by managing social distancing during outbreaks. Evaluation and Program Planning, 103, 102406.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Economics, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32260, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Louis, V., Page, S. E., Tansey, K. J., Jones, L., Bika, K., & Balzter, H. (2024). Tiger Habitat Quality Modelling in Malaysia with Sentinel-2 and InVEST.\u00a0Remote Sensing,\u00a016(2), 284.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32261, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Lovaco, J. (2024). Wildfire Management as a System of Systems: Systems Engineering Considerations Using Agent-Based Simulation and Large Language Models (Doctoral dissertation, Link\u00f6ping University Electronic Press).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32262, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Lovaco, J., Munjulury, R. C., Staack, I., & Krus, P. (2024). LARGE LANGUAGE MODEL-DRIVEN SIMULATIONS FOR SYSTEM OF SYSTEMS ANALYSIS IN FIREFIGHTING AIRCRAFT CONCEPTUAL DESIGN. In 34th Congress of the International Council of the Aeronautical Sciences, 2024.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32263, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Lu, H. C., & Lee, H. W. (2024). Agents of Discord: Modeling the Impact of Political Bots on Opinion Polarization in Social Networks.\u00a0Social Science Computer Review, 08944393241270382.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32264, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Lu, J., Tan, T., Sun, Z., & Jiang, C. (2024). Passenger flow simulation of hub airports incorporating interactive chain-based guidance. Journal of Simulation, 1-20.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32265, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Lu, X. S., Guo, R. Y., Huang, H. J., & Wang, S. H. (2024). Potential-based dynamic parking navigation for autonomous vehicles: Near-priority vs. distant-priority. Transport Policy.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32266, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Luo, X., & Du, L. (2024, July). Energy consumption simulations of rural residential buildings considering differences in energy use behavior among family members. In Building Simulation (pp. 1-24). Tsinghua University Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32267, + "sort": null, + "year": 2024, + "is_ccl": true, + "reference": "Lynch, A. R., Bradford, S., Zhou, A. S., Oxendine, K., Henderson, L., Horner, V. L., ... & Burkard, M. E. (2024). A survey of chromosomal instability measures across mechanistic models. Proceedings of the National Academy of Sciences, 121(16), e2309621121.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Chromosomal instability" + }, + { + "id": 32268, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Ma, Y., Hu, S., Li, X., Wang, Y., Liu, S., & Cheong, K. H. (2024). Students Rather Than Experts: A New AI For Education Pipeline To Model More Human-Like And Personalised Early Adolescences. arXiv preprint arXiv:2410.15701.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32269, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Mack, D. October Surprises: Threshold Dynamics. In\u00a0Proceedings of the 2023 International Conference of The Computational Social Science Society of the Americas\u00a0(p. 77). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computation, Sociology" + }, + { + "id": 32270, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Maddah, N., & Heydari, B. (2024). Building back better: Modeling decentralized recovery in sociotechnical systems using strategic network dynamics. Reliability Engineering & System Safety, 110085.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32271, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Magallanes, J. M. (2025). 10 Computational Representation of Social Complexity for Decision-Making. AI, Analytics and Strategic Decision-Making, 286.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computational Science" + }, + { + "id": 32272, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Mahajan, S. (2024). Navigating the cohesion-diversity trade-off: understanding the role of facilitators in co-creation using agent-based modelling. Philosophical Transactions A, 382(2285), 20240093.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32273, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Mahajana, S. Navigating the Cohesion-Diversity Tradeoff: Understanding the Role of Facilitators in Co-Creation Using ABM.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32274, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Maharani, S. N., & Rahmawati, S. A. (2024). Financial Revolution through Agent-based Artificial Simulation Computational Models for Predicting Market Behavior. KnE Social Sciences, 624-640.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computational Modeling, Economics, Social Science, KnE Social Sciences, Computer Science" + }, + { + "id": 32275, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Maiwald, J., & Sch\u00fctte, T. (2024). Prosumer Impact on Cellular Power Systems. Energies, 17(9), 2195.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32276, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Makarenya, T. A., Mannaa, A. S., Kalinichenko, A. I., & Petrenko, S. V. Cognitive Modeling as a Forecasting Tool. International Journal on Smart Sensing and Intelligent Systems, 17(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 32277, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Malanson, G. P., Dullinger, S., Pauli, H., Winkler, M., Saccone, P., & Jim\u00e9nez\u2010Alfaro, B. (2024). Species richness responds to buffer effectiveness and competitive priorities in simulations of alpine microrefugia. Journal of Biogeography.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32278, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Malikov, M. Rationality in Mixed Environments. In\u00a0Proceedings of the 2023 International Conference of The Computational Social Science Society of the Americas\u00a0(p. 243). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32279, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Malliaros, P., Pacheco-Jaramillo, A., & Robertson-Dean, M. (2024). Are in-kind transfer vouchers as flexible and efficient as cash?.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Economics, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32280, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Mangold-D\u00f6ring, A., Buddendorf, W. B., van den Brink, P. J., & Baveco, J. M. (2024). How relevant are temperature corrections of toxicity parameters in population models for environmental risk assessment of chemicals?. Ecological Modelling, 498, 110880.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32281, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Mannan, S., Fukuda, M., Stiber, M., & Si, D. (2024). Analysis and Improvement of MASS-based GIS.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, GIS, Computer Science, Ecology, Archaeology" + }, + { + "id": 32282, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Mansury, Y. (2024). I Won\u2019t Get Caught: An Agent-Based Model of Corruption with Incomplete Information. In The Indonesian Economy and the Surrounding Regions in the 21st Century: Essays in Honor of Iwan Jaya Azis (pp. 277-298). Singapore: Springer Nature Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32283, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Manzi, D., & Calderoni, F. (2024). The resilience of drug trafficking organizations: Simulating the impact of police arresting key roles. Journal of Criminal Justice, 91, 102165.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32284, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Manzo, G. (2024). Antecedents of generative thinking in analytical sociology: the contribution of Tom Fararo1. The Journal of Mathematical Sociology, 1-22.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32285, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Marcum-Dietrich, N. I., Bruozas, M., Becker-Klein, R., Hoffman, E., & Staudt, C. (2024). Precipitating Change: Integrating Computational Thinking in Middle School Weather Forecasting. Journal of Science Education and Technology, 1-18.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Ecology, Physics, Chemistry, Miscellaneous" + }, + { + "id": 32286, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Marino Carvalho, V. (2024). Towards a Reconciliation Between Simulational, Ludic, and Historiographical Practices in Research. Simulation & Gaming, 10468781241248705.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation, Gaming, Historiography" + }, + { + "id": 32287, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Mariz, M. (2024). Combining System Dynamics and Agent-Based Approaches to Model Urban Mobility (Master's thesis, Universidade do Porto (Portugal)).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32288, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Marques, A. T., Crispim-Mendes, T., Palma, L., Pita, R., Moreira, F., & Beja, P. (2024). Using individual-based demographic modelling to estimate the impacts of anthropogenic mortality on territorial predators. Ecological Modelling, 493, 110752.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32289, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Masaeli, Y., & Ahmadi, A. (2024). Assessing the suitability of groundwater resources based on farmers\u2019 predicted intentions and human\u2013water feedbacks. Journal of Hydrology, 132057.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Groundwater Resources" + }, + { + "id": 32290, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Mashood, K. K., & Chandrasekharan, S. (2024). The learning of modeling. In The Routledge Handbook of Philosophy of Scientific Modeling (pp. 412-426). Routledge.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Philosophy" + }, + { + "id": 32291, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Maslova, I. I., Manolov, A. I., Glushchenko, O. E., Kozlov, I. E., Tsurkis, V. I., Popov, N. S., ... & Ilina, E. N. (2024). Limitations in creating artificial populations in agent-based epidemic modeling: a systematic review. Journal of microbiology, epidemiology and immunobiology, 101(4), 530-545.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32292, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Matsuda, M., & Nishi, T. (2024). Enterprise E-Profiles for Construction of a Collaborative Network in Cyberspace. In\u00a0Enterprise Interoperability X: Enterprise Interoperability Through Connected Digital Twins\u00a0(pp. 75-86). Cham: Springer International Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32293, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Matsui\u00b9, K., & Hashimoto, T. Construction of a Simulation Model Regarding People's Reactions to the Stay-at-Home Request Policy During the COVID-19 Pandemic in Japan and Evaluation Using Linear Regression Analysis. In\u00a0Proceedings of the 2023 International Conference of The Computational Social Science Society of the Americas\u00a0(p. 89). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Mathematics, Social Science" + }, + { + "id": 32295, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Matyjaszkiewicz, A., & Sharpe, J. (2024). LimbNET: collaborative platform for simulating spatial patterns of gene networks in limb development. bioRxiv, 2024-08.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics" + }, + { + "id": 32296, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Maupin, C. K., Mohan, G., Choudhury, A., & Deepak, P. Network-based approaches to leadership: An organizing framework, review, and recommendations.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32297, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Mazhar Gharamaleki, M., & Elahi, N. (2024). Investigating the effect of tax on money on macroeconomic variables in a closed economy using the agent-based general equilibrium model. The Journal of Economic Policy.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Economics, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32298, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Mazzetto, S. (2024). Interdisciplinary Perspectives on Agent-Based Modeling in the Architecture, Engineering, and Construction Industry: A Comprehensive Review. Buildings, 14(11), 3480.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32299, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Medina-Labrador, M., Marroquin-Ciendua, F., Bonelo, J. G., G\u00f3mez, D. M., & Betancourt, M. V. P. Obstacles, Social Norms and Communication to Improve Service in Mass Transport. An Analysis in Bogot\u00e1\u2019s Bus Rapid Transit System.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Social Science" + }, + { + "id": 32300, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Meister, H., Meister, G., & Grycko, E. (2024). Does the Nash Solution Concept persist for Intelligent Agents in a Dynamic Game Environment?.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32301, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Meseguer, G. O., & Serrano, J. L. (2024). Implementation and training of primary school teachers in computational thinking: a systematic review.\u00a0Revista Iberoamericana de Educaci\u00f3n a Distancia,\u00a027(1), 255-281.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Education, Computer Science" + }, + { + "id": 32302, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Meskini, F. Z., & Aboulaich, R. (2024). Insurance Based on Waqf and Blockchain Technology: A Strong Social Impact & Efficiency.\u00a0WSEAS Transactions on Business and Economics,\u00a021, 741-752.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32303, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Mesquita, R. P., Leal, F., & De Queiroz, J. A. (2024). DIGITAL TWINS IN THE RETAIL INDUSTRY: A SYSTEMATIC LITERATURE REVIEW.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32304, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Metzcar, J. (2024).\u00a0Toward a General Framework of Multicellular Systems Biology with Application to Cellular Motility and Phenotype Control\u00a0(Doctoral dissertation, Indiana University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 32305, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Micheletti, T., Wimmler, M. C., Berger, U., Grimm, V., & McIntire, E. J. (2024). Beyond guides, protocols and acronyms: Adoption of good modelling practices depends on challenging academia's status quo in ecology.\u00a0Ecological Modelling,\u00a0496, 110829.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32306, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Michelini, M., Polizzi, E., & Vilone, D. (2024). Bad Polarization in Structurally Cohesive Communities.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32307, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Miller Neilan, R. (2024). BODINE: Enhancing NetLogo3D Simulations: Computational Efficiency and Online Accessibility of a Pain Model.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Ecology" + }, + { + "id": 32308, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Milne, R. J., Cotfas, L. A., Delcea, C., Cr\u0103ciun, L., & Mol\u0103nescu, A. G. (2024). Airplane Seating Assignment Greedy Algorithms that Separate Passengers Likely to be Susceptible to Infectious Disease from those Likely to be Infectious. IEEE Access.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 32309, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Miranda, R. D. S. V. (2024). Moderates and consensus formation in the Deffuant model (Doctoral dissertation, Universidade de S\u00c3\u00a3 o Paulo).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32310, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Mlika, F., Karoui, W., & Romdhane, L. B. (2024). Blockchain solutions for trustworthy decentralization in social networks.\u00a0Computer Networks, 110336.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Blockchain" + }, + { + "id": 32311, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Mo, C. Y. J. (2024). Design of Reinforcement Learning Control in Agent-Based Modeling: An Investigation of Systemic Risks in Interbank Lending Market (Doctoral dissertation, Stevens Institute of Technology).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32312, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Mobinizadeh, M., Mohammadshahi, M., Aboee, P., Fakoorfard, Z., Olyaeemanesh, A., & Mohamadi, E. (2024). The Application of System Simulation in the Health Sector: A Rapid Review.\u00a0Decision Making in Healthcare Systems, 11-17.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32313, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Moehler, M., & Thrasher, J. (2024). New Approaches to Social Contract Theory: Liberty, Equality, Diversity, and the Open Society. Oxford University Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32314, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Mohamed, Y. I., Khaleed, M., Ehab, S., Hassan, O. A., Fares, H. M., & Mohamed, O. A. Modeling and simulation of tumor growth.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 32315, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Mohammadi, M., & Gharakhani, S. (2024). Simulating Institutional Change for Governing Natural Common-Pool Resources: An Agent-Based Model Approach. Research Square.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32316, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Mohands, N., Bayhan, S., Sanfilippo, A., & Rub, H. A. (2024). Decentralized PV Energy Trading: A Case Study of Residential Households in Qatar. IEEE Access.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32317, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Moncada, J. A., Sanjab, A., & Delarue, E. The framing of decision-making under uncer-tainty may shape the adoption patterns of solar PV panels.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32318, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Montgomery, V. A., Wood\u2010Yang, A. J., Styczynski, M. P., & Prausnitz, M. R. (2024). Feasibility of engineered Bacillus subtilis for use as a microbiome\u2010based topical drug delivery platform.\u00a0Bioengineering & Translational Medicine, e10645.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Microbiology, Biotechnology, Medicine, Drug Delivery, Computer Science" + }, + { + "id": 32319, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Morales, D., Canessa, E., & Chaigneau, S. E. (2024). An Agent-Based Model of Foraging in Semantic Memory. In\u00a0Proceedings of the Annual Meeting of the Cognitive Science Society\u00a0(Vol. 46).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 32320, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Moreira, F., Dias, F. S., Dertien, J., Hasse, A. C., Borda-de-\u00c1gua, L., Carvalho, S., ... & Fern\u00e1ndez, N. (2024). Guidelines for connectivity conservation and planning in Europe.\u00a0ARPHA Preprints,\u00a05, e129021.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32321, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Mosiakova, I., Levchenko, F., Kalinina, L., Rogoza, V., & Pelekh, V. (2024). Transforming education for the STEM era. Amazonia Investiga, 13(79), 123-140.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32322, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Muhammad, R. F., & Kasahara, S. (2024). Agent-based simulation of fake news dissemination: the role of trust assessment and big five personality traits on news spreading. Social Network Analysis and Mining, 14(1), 75.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32323, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "M\u00fchlenbernd, R. (2024). How to use Evolutionary Game Theory to study evolutionary aspects of grammar. Language change for the worse, 281.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 32324, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Muir, E. J. (2024). Exploring the Swimming Behavior of a Hydromechanical Copepod in the Context of Positive Density Dependence (Doctoral dissertation, University of South Florida).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology" + }, + { + "id": 32325, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Mukaimine, W. Causal Relationship between Larval Resource Competition and Imaginal Reproductive Interference (Doctoral dissertation, School of Science and Technology, University of Tsukuba).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology" + }, + { + "id": 32326, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Mulder, K., Heierhoff, H., Lee, S. M., Tsou, J. J. Y., & Chen, W. (2024). Simulation of Polymer Fractal Formation Using a Triangular Network Growth Model. Langmuir.(2024). S", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Polymer, Mathematics, Physics, Chemistry" + }, + { + "id": 32327, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Murgatroyd, P., & Gaffney, V. Modelling the Logistics of Mantzikert.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 32328, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Murphy, D., Duncan, R. G., Chinn, C. A., Danish, J., Hmelo-Silver, C. E., Ryan, Z., ... & Stiso, C. Students\u2019 Prioritization of Initial and Direct Causal Mechanisms During Model Evaluation.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32329, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Musaeus, L. H., & Musaeus, P. (2024). Computational Thinking and Modeling: A Quasi-Experimental Study of Learning Transfer. Education Sciences, 14(9), 980.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computational Thinking" + }, + { + "id": 32330, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Muttaqien, I. Y., Tanugraha, S., Puspitaningrum, J. E., & Manik, H. A. W. (2024). Evaluation of Emergency Access Evacuation Routes Using Agent-Based Model Application.\u00a0Journal of Artificial Intelligence in Architecture,\u00a03(2), 71-80.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32331, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Nabinejad, S., & Sch\u00fcttrumpf, H. (2024). Agent-Based Modeling for Household Decision-Making in Adoption of Private Flood Mitigation Measures: The Upper Kan Catchment Case Study.\u00a0Water,\u00a016(14), 2027.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32332, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Nallur, V., Aghaei, P., & Finlay, G. (2024). Different Facets for Different Experts: A Framework for Streamlining The Integration of Qualitative Insights into ABM Development. arXiv preprint arXiv:2408.15725.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32333, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Nallur, V., Aghaei, P., & Finlay, G. (2024). Systematic Experimentation Using Scenarios in Agent Simulation: Going Beyond Parameter Space. arXiv preprint arXiv:2407.16294.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 32334, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Naraghi, N., Feng, Z., Lovreglio, R., Vishnupriya, V., Wilkinson, S., & Daemei, A. B. (2024). Simulating and visualising indoor seismic damage: A systematic literature review. International Journal of Disaster Risk Reduction, 104979.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32335, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Neef, N. E., Egner, L. E., & Kl\u00f6ckner, C. A. (2024). Subsidy free-riding is positively correlated to the development of energy efficiency in the housing stock. Environment, Development and Sustainability, 1-17.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Economics, Physics, Chemistry, Computer Science, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32336, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Nemichel, M., Timouyas, M., Regragui, Y., Bezza, H., & Laboratery, I. M. I. (2024). Dynamic Agent-Based Model for COVID-19 Epidemic Spread Using Social Network Information. In\u00a0International Conference on Advanced Intelligent Systems for Sustainable Development (AI2SD\u20192023): Advanced Intelligent Systems on Digital Health Technology, Volume 2\u00a0(p. 436). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32337, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Nguyen, D. T. (2024). Hybrid Simulation-based Lean Management Methodology to Improve the Sustainability of the Construction Phase (Doctoral dissertation, University of Kassel).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32338, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Nica, I. (2024). Bibliometric mapping in the landscape of cybernetics: insights into global research networks. Kybernetes.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Cybernetics, Economics, Physics, Computer Science, Sociology, Miscellaneous" + }, + { + "id": 32339, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Nicholson, J., & Ridgway, J. (2024). New viruses are inevitable; pandemics are optional\u2014Lessons for and from statistics.\u00a0Teaching Statistics.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Statistics" + }, + { + "id": 32340, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Niehorster-Cook\u00b9, L., Marghetis\u00b9, T., & Smaldino, P. Rational Voter Theory: An Agent-Based. In\u00a0Proceedings of the 2023 International Conference of The Computational Social Science Society of the Americas\u00a0(p. 258). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 32341, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Niki, M., & Kito, T. (2024). Evaluation of Micro-Level Circularity Indicators Using Agent-Based Modelling. In EcoDesign for Sustainable Products, Services and Social Systems II (pp. 205-222). Singapore: Springer Nature Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32342, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Nikounam Nezami, M., Toloie Eshlaghy, A., & Iranban, S. J. (2024). Modelling and simulation of supply chain resilience for unnecessary perishable foods using an agent-based modeling approach. Journal of Industrial Engineering and Management Studies, 84-97.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32343, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Nilsson Bruno, A., & Sch\u00fcssler, M. (2024). Determining evacuation times of different stadium layouts using agent-based modelling.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32344, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Niu, T., Huang, H., Du, Y., Zhang, W., Shi, L., & Zhao, R. (2024). General Automatic Solution Generation of Social Problems. arXiv preprint arXiv:2401.13945.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 32345, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Niu, T., Zhang, W., & Zhao, R. (2024). Solution-oriented Agent-based Models Generation with Verifier-assisted Iterative In-context Learning. arXiv preprint arXiv:2402.02388.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Chemistry" + }, + { + "id": 32346, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Niu, F. Urban Spatial Evolution Simulation: Theory, Method, and Practice. Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32347, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Nourali, Z., Shortridge, J. E., Bukvic, A., Shao, Y., & Irish, J. L. (2024). Simulation of Flood-Induced Human Migration at the Municipal Scale: A Stochastic Agent-Based Model of Relocation Response to Coastal Flooding.\u00a0Water,\u00a016(2), 263.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32348, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Ntomora, P. I., & Petrakos, K. (2024). Leveraging social network analysis in education through social robots: A review.\u00a0Global Journal of Engineering and Technology Advances,\u00a020(01), 055-066.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 32349, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Nurulloyev, F. (2024). \u041c\u0415\u0422\u041e\u0414\u0418\u041a\u0410 \u041e\u0411\u0423\u0427\u0415\u041d\u0418\u042f \u0428\u041a\u041e\u041b\u042c\u041d\u0418\u041a\u041e\u0412 \u0421\u041e\u0412\u0420\u0415\u041c\u0415\u041d\u041d\u042b\u0425 \u041f\u0420\u041e\u0413\u0420\u0410\u041c\u041c\u041d\u042b\u0425 \u0421\u0420\u0415\u0414\u0421\u0422\u0412.\u00a0\u0426\u0415\u041d\u0422\u0420 \u041d\u0410\u0423\u0427\u041d\u042b\u0425 \u041f\u0423\u0411\u041b\u0418\u041a\u0410\u0426\u0418\u0419,\u00a045(45).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Methodology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32350, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Oesterling, N., Ambrose, G., & Kim, J. (2024). Understanding the Emergence of Computational Institutional Science: A Review of Computational Modeling of Institutions and Institutional Dynamics. International Journal of the Commons, 18(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32351, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Ojha, N. K., Dubey, S. K., & Vaish, A. (2024). Computational Thinking Tools: Review and Current Status.\u00a0Revolutionizing Curricula Through Computational Thinking, Logic, and Problem Solving, 151-166.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computational Thinking" + }, + { + "id": 32352, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Oliveira, H. S. (2024). Optimizing Crowd Evacuation: Evaluation of Strategies for Safety and Efficiency.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32353, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Olmez, S., Heppenstall, A., Ge, J., Elsenbroich, C., & Birks, D. (2024). Mitigating housing market shocks: an agent-based reinforcement learning approach with implications for real-time decision support. Journal of Simulation, 1-19.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32354, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Olsen, M., Kuhn, D. R., & Raunak, M. S. (2024). Explaining the impact of parameter combinations in agent-based models. Journal of Computational Science, 102342.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32355, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Onai, A., & Tanaka, N. (2024). Categorizing resident evacuation behaviors within a flood-protected area. International Journal of River Basin Management, 1\u201316.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32356, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Onsomu, O. N., Terciyanl\u0131, E., & Ye\u015filata, B. (2024). Comprehensive review of energy management strategies: Considering battery energy storage system and renewable energy sources.\u00a0Engineering Reports, e12995.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32357, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Opalski, M., Szufel, P., Kami\u0144ski, B., Mashatan, A., & Pralat, P. (2024). Optimal roadworks schedule in multi-agent transportation models. European Journal of Transport and Infrastructure Research, 24(4), 41-61.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32358, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Ordu\u00f1a Moncada, A. F. (2024). Assessing the influence of communication in an agglomeration bonus model as a strategy for land conservation (Doctoral dissertation, BTU Cottbus-Senftenberg).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32359, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Orrick, K., Sommer, N., Rowland, F., & Ferraro, K. Predator\u2013prey interactions across hunting mode, spatial domain size, and habitat complexities. Ecology, e4316.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology" + }, + { + "id": 32360, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Osborne, J. M. (2024). An adaptive numerical method for multi\u2013cellular simulations of tissue development and maintenance. Journal of Theoretical Biology, 111922.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Numerical Methods, Computer Science, Physics, Mathematics" + }, + { + "id": 32361, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Osorio, C., Fuster, N., Chen, W., Men, Y., & Juan, A. A. (2024). Enhancing Accessibility to Analytics Courses in Higher Education through AI, Simulation, and e-Collaborative Tools.\u00a0Information,\u00a015(8), 430.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, AI, Simulation, e-Collaborative Tools" + }, + { + "id": 32362, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Ouattara, Y., & Lang, C. (2024). Enhancing Connectivity and Energy Efficiency in Mobile Wireless Sensor Networks with SHEM. Journal of Advances in Computer Networks, 12(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, Economics, History, Social Science, Education, Epidemiology" + }, + { + "id": 32363, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Ouhssini, M., Afdel, K., Akouhar, M., Agherrabi, E., & Abarda, A. (2024). Advancements in detecting, preventing, and mitigating DDoS attacks in cloud environments: A comprehensive systematic review of state-of-the-art approaches. Egyptian Informatics Journal, 27, 100517.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Ecology, Physics, Chemistry, Archaeology, Economics, History, Social Science, Education, Epidemiology" + }, + { + "id": 32364, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Ouhssini, M., Afdel, K., Akouhar, M., Agherrabi, E., & Abarda, A. Egyptian Informatics Journal.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science" + }, + { + "id": 32365, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Palacios, J. L. D. (2024). MATHEMATICAL MODELING OF PHAGE-BACTERIA POPULATION DYNAMICS.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Mathematics" + }, + { + "id": 32366, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Palmeiro, L. L., Mar\u00edn, A. A. L., & De las Heras P\u00e9rez, M. (2025). Strengths and Opportunities of Artificial Intelligence in Modeling, Argumentation, and Inquiry in the Experimental Science Classroom. In Utilizing ICT for Didactics of Social and Experimental Sciences (pp. 73-94). IGI Global.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32367, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Palmer, S., Ciubotariu, I., Ofori, R., Saenz, M., Ellison, B., & Prescott, M. P. (2024). School Nutrition Stakeholders Find Utility in MealSim: An Agent-Based Model. Journal of Nutrition Education and Behavior.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32368, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Papadimitriou, F. (2024). Complexity, Non-Locality and Riddledness in Landscape Dynamics. In\u00a0Modelling Landscape Dynamics: Determinism, Stochasticity and Complexity\u00a0(pp. 119-133). Wiesbaden: Springer Fachmedien Wiesbaden.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Landscape Dynamics" + }, + { + "id": 32369, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Pan, H., & Qian, J. (2024). Blockchain-Driven Music Copyright Distribution: An Agent-Based Modeling Perspective.\u00a0International Journal of Global Economics and Management,\u00a04(1), 594-600.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32370, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Pan, M., Zhao, X., & Li, Z. (2024). Diffusion mechanism of green building in industrial clusters: An agent-based modeling approach. Developments in the Built Environment, 100504.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32371, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Pang, J., Shi, Y., & Dai, J. (2024). An Intelligent Evaluation Method of Supply-Demand Matching Degree Based on ELECTRE III and VIKOR in Cloud Manufacturing Platform. IEEE Access.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32372, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Panizza, E. (2024). Modeling Flood Displacement Dynamics: Integrating Household Characteristics and Assessing Policy Implications. A study in the Khartoum State, Sudan.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32373, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Parra-Sanchez, \u00c1., Zorrilla-Mu\u00f1oz, V., Martinez-Navarrete, G., & Fernandez, E. (2024, August). Agent-Based Modeling: Investigating Technological Perception\u2019s Impact on Quality of Life in Older Adults with Age-Related Macular Degeneration. In The International Conference on Innovations in Computing Research (pp. 631-640). Cham: Springer Nature Switzerland.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Technology, Computer Science, Ecology, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32374, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Park, D., Hong, J., & Ryu, D. (2024). Heterogeneous expectations in the housing market: a sugarscape agent-based model. Journal of Housing and the Built Environment, 1-25.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32375, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Patel, J. (2024). Algorithmic approaches to simulating animal movement using agent-based models.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 32376, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Pathak, S., & Balakrishnan, P. V. (2024). The paradox of product scarcity: Catalyzing the speed of innovation diffusion. Journal of the Academy of Marketing Science, 1-21.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32377, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Patrick, S. M. (2024). Agent-Based Modelling for the Cost-Benefit Analysis of Adaptation Strategies: A Case Study from Inuit Nunangat. Journal of Computer Applications in Archaeology, 7(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32378, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Pardo, G. E., Cuevas, L. B., Pacheco\u2010Otalora, L. F., & Oruro, E. M. (2024). Altered Patterns of Maternal Behavior Transitions in Rats Exposed to Limited Bedding and Nesting Material Paradigm. Brain and Behavior, 14(10), e70113.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32379, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Parviziomran, E., Elliot, V., & Bergqvist, R. (2024). Financing dynamics in sustainable heavy-duty road transport: An agent-based modeling approach. Transportation Research Part D: Transport and Environment, 132, 104258.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 32380, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Pecoraro, F., Accordino, F., Cecconi, F., & Paolucci, M. ABM for Simulating the Access to Elective Surgery Services: The Issue of Patient Mobility in Italy. In Advances in Social Simulation: Proceedings of the 18th Social Simulation Conference, Glasgow, UK, 4\u20138 September 2023 (p. 73). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Social Simulation, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32381, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Peel, A., & Arastoopour Irgens, G. (2024). Characterizing Natural Selection Contextual Transfer with Epistemic Network Analysis: A Case for Unplugged Computational Thinking. Journal of Science Education and Technology, 1-13.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32382, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Pektas, E. (2024). Second Grade Student Engagement in Computational Thinking.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 32383, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Pessoa, P., Lopes, J. B., de Lima, J., Pinto, A., S\u00f8gaard J\u00f8rgensen, P., & S\u00e1-Pinto, X. (2024). Evolutionary literacy as a catalyst for sustainable futures: connecting biological evolution education and education for sustainability. Evolution: Education and Outreach, 17(1), 1-18.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32384, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Pettrachin, A., Gabrielli, L., Kim, J., & Ludwig-Dehm, S. (2024). Did exposure to asylum seeking migration affect the.\u00a0Computational Research in Ethnic and Migration Studies, 193.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32385, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Phadke, A., Medrano, F. A., Sekharan, C. N., & Chu, T. (2024). An Analysis of Trends in UAV Swarm Implementations in Current Research: Simulation Versus Hardware. Drone Systems and Applications.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32386, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Phadke, A., Medrano, F. A., Chu, T., Sekharan, C. N., & Starek, M. J. (2024). Modeling Wind and Obstacle Disturbances for Effective Performance Observations and Analysis of Resilience in UAV Swarms.\u00a0Aerospace,\u00a011(3), 237.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32387, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Pierron, M., Sueur, C., Shimada, M., MacIntosh, A. J., & Romano, V. (2024). Epidemiological Consequences of Individual Centrality on Wild Chimpanzees. American Journal of Primatology, e23682.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Epidemiology" + }, + { + "id": 32388, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Pires, A. V., Moustapha, M., Marelli, S., & Sudret, B. (2024). Reliability analysis of non-deterministic models using stochastic emulators.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Archaeology, Statistics" + }, + { + "id": 32389, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Plakantara, S. P., Karakitsiou, A., & Mantzou, T. Managing Risks in Smart Warehouses from the Perspective of Industry 4.0 Check for updates.\u00a0Disruptive Technologies and Optimization Towards Industry 4.0 Logistics, 1.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32390, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Podworny, S., Dvir, M., Frischemeier, D., & Ben-Zvi, D. (2024). Reasoning with data models and modeling in the big data era. Universit\u00e4tsbibliothek Paderborn.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 32391, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Polhill, G., McCormick, B. J., Roxburgh, N., Assefa, S., & Matthews, K. A'Theory of the Middle Range to Support Food Security and Circular Economy Value Chain Scenario Analysis. In Advances in Social Simulation: Proceedings of the 18th Social Simulation Conference, Glasgow, UK, 4\u20138 September 2023 (p. 177). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Social Science, Miscellaneous" + }, + { + "id": 32392, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Ponsiglione, A. M., Zaffino, P., Ricciardi, C., Di Laura, D., Spadea, M. F., De Tommasi, G., ... & Amato, F. (2024). Combining simulation models and machine learning in healthcare management: strategies and applications. Progress in Biomedical Engineering, 6(2), 022001.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Machine Learning, Simulation, Healthcare Management" + }, + { + "id": 32393, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Poostforoush, M. H., Monajemi, A., Daei-Karimzadeh, S., & Samadi, S. (2025). Comparative Comparison of the Efficiency of Hybrid Model of an Agent-based & Recursive Neural Network in Automating Algorithmic Trading Strategies in Global Financial Markets. International Journal of Finance & Managerial Accounting, 10(37), 209-234.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 32394, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Popescu, D. C., & Dumitrache, I. (2024). Software Platform Based on the hLARM Formalism for Modeling Complex Systems. Romanian Journal of Information Science and Technology, 27(1), 65-80.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 32395, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Popova, G., McCulloch, J., Ge, J., & Evans, P. (2024). D5. 3 Agent-based model at the European scale. ARPHA Preprints, 5, e144184.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32396, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Prajapati, S. P., Yadav, S., & Dhabolkar, S. Designing a constructionist epidemiology curriculum with Agent-based Models: An exploratory study.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 32397, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Prasad, S. (2024).\u00a0Investigating the Impact of Pandemic Scenarios on the Anesthesiology Department Healthcare Workers Availability: An Agent-Based Modeling Approach\u00a0(Master's thesis, The University of North Carolina at Charlotte).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32398, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Prather, J., Leinonen, J., Kiesler, N., Benario, J. G., Lau, S., MacNeil, S., ... & Zingaro, D. (2024). Beyond the Hype: A Comprehensive Review of Current Trends in Generative AI Research, Teaching Practices, and Tools. arXiv preprint arXiv:2412.14732.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 32399, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Prinz, A., M\u00f8ller-Pedersen, B., Fischer, J., & Thalheim, B. (2024). More Cases. In Understanding Modelling and Programming (pp. 75-102). Cham: Springer Nature Switzerland.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32400, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Prisse, M. M. G. C. Coupling for Multi-Models.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 32401, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Pujiono, E., Sadono, R., Imron, M. A., Sutomo, Januar, H. I., Kuswandi, R., ... & Hani, A. (2024). An agent-based model of agricultural land expansion in the mountain forest of Timor Island, Indonesia. Journal of Mountain Science, 21(7), 2263-2282.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Agriculture, Modeling, Indonesia, Computer Science" + }, + { + "id": 32402, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Purwani, A., Budijati, S. M., & Asih, H. M. (2024). Management of battery waste recycling by electric motorbike workshops: A literature review. OPSI, 17(1), 216-233.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32403, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Qolomany, B., Calay, T. J., Hossain, L., Mulahuwaish, A., & Bou Abdo, J. (2024). CCTFv2: Modeling Cyber Competitions. Entropy, 26(5), 384.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 32404, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Qin, H., Liang, Q., Chen, H., & De Silva, V. (2024). A two-way coupled CHANS model for flood emergency management, with a focus on temporary flood defences.\u00a0Environmental Modelling & Software, 106166.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Flood emergencies, Computer Science, Modeling, Ecology" + }, + { + "id": 32405, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Qiu, J., Tan, H., Yuan, S., Lv, C., Wang, P., Cao, S., & Zhang, Y. (2024). Selection of Urban Flood Shelter Locations Based on Risk Assessment. Water-Energy Nexus.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32406, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Qu, A., SHANG, Y., HAO, C., Tan, Q., & Yu, Z. The Effectiveness and Strategy Optimization of Air Pollution Control Policies Based on Abm. Available at SSRN 4974812.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32407, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Rabb, N. (2024).\u00a0Modeling Media Influence on the Formation of Misinformed Attitudes\u00a0(Doctoral dissertation, Tufts University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32408, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Ragonis, N., Rosenberg-Kima, R. B., & Hazzan, O. (2024). A computational thinking course for all preservice K-12 teachers: implementing the four pedagogies for developing computational thinking (4P4CT) framework. Educational technology research and development, 1-29.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Education" + }, + { + "id": 32409, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Rahn, S. A. (2024). Modeling and simulation of SARS-CoV-2 transmission in dynamic crowds (Doctoral dissertation, Technische Universit\u00e4t M\u00fcnchen).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Epidemiology" + }, + { + "id": 32410, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Raimbault, J. (2024, July). Spatial sensitivity of the evolutionary swarm chemistry model. In ALIFE 2024: Proceedings of the 2024 Artificial Life Conference. MIT Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Evolution" + }, + { + "id": 32411, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Rajasekaran, U., Malini, A., & Murugan, M. (2024). Artificial Intelligence in Autonomous Vehicles\u2014A Survey of Trends and Challenges. Scrivener Publishing LLC.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Artificial Intelligence, Autonomous Vehicles" + }, + { + "id": 32412, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Rajendran, V., & Ramasamy, R. K. (2024). Real-Time Evaluation of the Improved Eagle Strategy Model in the Internet of Things.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32413, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Rajkovic, K. (2024). Evaluating the performance of a self-organizing industrial symbiosis compared to a planned one: An agent-based modeling approach (Doctoral dissertation, University of Graz).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32414, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Raley, J. (2024).\u00a0The Impact of Mathematical Justifications on Conceptual Understanding\u00a0(Doctoral dissertation, University of South Carolina).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Mathematics" + }, + { + "id": 32415, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Ramadan, M. (2024). Solid Waste Processing Facility Improvement Using Lean Principles and Simulation Modeling.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32416, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Razakatiana, M., Kolski, C., Mandiau, R., & Mahatody, T. (2024). Human-Agent Team Based on Decision Matrices: Application to Road Traffic Management in Participatory Simulation. Human-Centric Intelligent Systems, 1-15.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32417, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Reed, M., Berglund, E., & Montoya, B (2024). An Agent-Based Modeling Perspective of Bio-Mediated Ureolysis. In Geo-Congress 2024 (pp. 446-455).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 32418, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Ren, S. (2024). Optimization of English Classroom Interaction Models Incorporating Machine Learning.\u00a0Journal of Electrical Systems,\u00a020(6s), 1669-1681.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Machine Learning, Optimization" + }, + { + "id": 32419, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Rende, A. N. N., Yilmaz, T., & Ulusoy, \u00d6. (2024). Crowd: A Social Network Simulation Framework. arXiv preprint arXiv:2412.10781.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Social Science, Computer Science" + }, + { + "id": 32420, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Rensink, J. (2024). What Are the Impacts of Leader Political Skill on Organizational Change? (Doctoral dissertation, Case Western Reserve University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32421, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "R\u00e9gis, C., Denis, J. L., Axente, M. L., & Kishimoto, A. (2024). Human-Centered AI: A Multidisciplinary Perspective for Policy-Makers, Auditors, and Users. CRC Press. https://doi.org/10.1201/9781003320791.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32422, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Reulier, R., Bonnet, G., & L\u2019Homme, F. (2024). Comparison of execution times of three multi-agent platforms (Netlogo/GAMA/Repast simphony) based on the LASCAR model. Journal of Simulation, 1-11.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32423, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Reyna-Gonz\u00e1lez, J. E., Falcon, A. W. C., Huiman, L. V. U., Pozo, M. A. S., & Vilca, Y. M. C. (2024). Simulation of blueberry production in Lambayeque, Peru: An agent-based approach. Edelweiss Applied Science and Technology, 8(6), 8534-8544.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32424, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Ribeiro-Rodrigues, E., & Bortoleto, A. P. (2024). A systematic review of agent-based modeling and simulation applications for analyzing pro-environmental behaviors. Sustainable Production and Consumption.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32425, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Rich, P., & Genot, E. (2024). Mutual Expected Rationality in Online Sharing: An Agent-Based Model Study. Topoi, 1-15.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32426, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Rieder, A., Chakraborty, S., Goyal, S., & Berndt, D. J. (2024). A critical realist approach to agent-based modeling: Unlocking prediction in non-positivist paradigms. Journal of Information Technology, 02683962241280657.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32427, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Robayo, C. F. L., Alb\u00e1n, L. M. V., S\u00e1nchez, M. M. S., Paredes, J. P. S., Morales, M. A. T., Zavala, E. F. T., ... & Lagla, J. P. S. (2024). Transformaci\u00f3n geom\u00e9trica con Scratch: impacto en formaci\u00f3n de profesores de Educaci\u00f3n B\u00e1sica.\u00a0Polo del Conocimiento,\u00a09(1), 1063-1082.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Education" + }, + { + "id": 32428, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Roderick, S., Damelin, D., & Stephens, A. L. (2024). 7 Students\u2019 systems modeling. Ways of Thinking in STEM-based Problem Solving: Teaching and Learning in a New Era, 87.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32429, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Roelofsen, R. (2025). The Influence of ACT-R\u2019s Declarative Memory System on the HUMAT Agent-Based Model (Doctoral dissertation).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Archaeology, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32430, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Rojas-Dom\u00ednguez, A., Mart\u00ednez-Vargas, I. U., & Alvarado, M. (2024). Modeling and Simulation of Genotypic TMB and Phenotypic immunogenicity Biomarkers in Cancer Immunoediting with Ising-Hamiltonian Characterization.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Immunology, Cancer, Computer Science, Modeling, Simulation, Biomarkers" + }, + { + "id": 32431, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Rojas Scheffer, V. (2024). Application of hydrogeological models coupled with agent-based models to address sustainable groundwater management in Latin America. Hydrogeology Journal, 1-15.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32432, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Romano, V., Puga-Gonzalez, I., MacIntosh, A. J., & Sueur, C. (2024). The role of social attraction and social avoidance in shaping modular networks. Royal Society Open Science, 11(2), 231619.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32433, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Ronzani, M., & Sulis, E. (2024). Improve Hospital Management Through Process Mining, Optimization, and Simulation: the CH4I-PM Project. KI-K\u00fcnstliche Intelligenz, 1-6.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Process Mining, Optimization, Simulation, Artificial Intelligence, Computer Science, Economics, Archaeology, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32434, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Roos, M. (2024). Complexity Economics. In Principles of Complexity Economics: Concepts, Methods and Applications (pp. 115-146). Cham: Springer International Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Complexity Economics" + }, + { + "id": 32435, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Roos, M. (2024). Feedback, Circular Causality, and System Dynamics. In Principles of Complexity Economics: Concepts, Methods and Applications (pp. 253-338). Cham: Springer International Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Complexity Economics, System Dynamics" + }, + { + "id": 32436, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Rusakov, A., & Maksimova, E. Assessment Dynamics Risks Infrastructural. In AISMA-2023: International Workshop on Advanced Information Security Management and Applications (p. 221). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 32437, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Russo, V., Andrighetto, G., Maretti, M., Polizzi, E., & Cecconi, F. (2024). Homophily and Insularity Dynamics in an Echo Chambers: Computational Models for the Study of the Conspiracy Subculture in Facebook.\u00a0Social Indicators Research, 1-25.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32438, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Sagar, S.\u00a0Towards Resilient Social IoT Sensors and Networks: A Trust Management Approach. Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32439, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Sagar, S., Mahmood, A., & Sheng, Q. Z. (2024). Understanding the Trustworthiness Management in the SIoT Network. Towards Resilient Social IoT Sensors and Networks: A Trust Management Approach, 11-49.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32440, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Sager, J., & Schrage, R. (2024). Mango. jl: A Julia-Based Multi-Agent Simulation Framework. Journal of Open Source Software, 9(102), 7098.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 32441, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Saig, R., & Hershkovitz, A. (2024). Expanding Digital Literacies Beyond the Digital: Infusing Computational Thinking into Unplugged Pedagogical Tools-Two Case Studies from Mathematics Education.\u00a0International Journal of Child-Computer Interaction, 100703.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Mathematics Education" + }, + { + "id": 32442, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Salas-Pe\u00f1a, A., & Garc\u00eda-Palomares, J. C. (2024). Simulation of knowledge transfer in complex networks by coupling ABM and GIS: a local road freight transport system as a case study.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32443, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Salazar, A. T., Medrano, M., Medina, M. D., Roa, J., & Pesantez, J. E. (2024). Enhancing Evacuation Warning Responsiveness: Exploring the Impact of Social Interactions through an Agent-Based Model Approach.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32444, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Salazar-Serna, K., Cadavid, L., & Franco, C. (2024). Analyzing Transport Policies in Developing Countries with ABM. arXiv preprint arXiv:2404.19745.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32445, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Salazar-Serna, K., Cadavid, L., & Franco, C. J. (2024). Modeling Urban Transport Choices: Incorporating Sociocultural Aspects. arXiv preprint arXiv:2407.21307.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32446, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Saleem, K., Wang, L., Bharany, S., Ouahada, K., Rehman, A. U., & Hamam, H. (2024). Intelligent multi-agent model for energy-efficient communication in wireless sensor networks. EURASIP Journal on Information Security, 2024(1), 9.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 32447, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Saley, A., & Idrissa, M. (2024) Computer Simulation Models of Infectious Diseases: Advantages and Limits. International Journal of Science and Research Methodology, 27(7).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 32448, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Samad, N. A., Osman, K., & Nayan, N. A. (2024). Computational Thinking Through the Engineering Design Process in Chemistry Education. International Journal of Educational Methodology, 9(issue-4-november-2023), 771-785.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Chemistry, Computer Science, Education" + }, + { + "id": 32449, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Samhitha, J. S. S., Sagar, K. A., Yaswanth, J. S., & Haritha, K. (2024, March). Early Forest Fire Prediction System Using Wireless Sensor Network. In 2024 2nd International Conference on Device Intelligence, Computing and Communication Technologies (DICCT) (pp. 232-237). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Wireless Sensor Network" + }, + { + "id": 32450, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Samimi, K., Zarei, E., & Pouyakian, M. (2024). Agent-Based Modeling and Simulation in System Safety and Risk Management. In Safety Causation Analysis in Sociotechnical Systems: Advanced Models and Techniques (pp. 405-432). Cham: Springer Nature Switzerland.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, System Safety, Simulation, Modeling, Risk Management" + }, + { + "id": 32451, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Samoylova, K., & Zamyatina, E. Design of Robust Business Processes Using Multimodel Approach. Available at SSRN 4801736.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32452, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "S\u00e1nchez-Maro\u00f1o, I. N. EGAR: Environment Generator for Agent-Based Research. In Advances in Practical Applications of Agents, Multi-Agent Systems, and Digital Twins: The PAAMS Collection: 22nd International Conference, PAAMS 2024, Salamanca, Spain, June 26\u201328, 2024, Proceedings (p. 217). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 32453, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Sano, H. (2024). Impacts of public disclosure on tax compliance using agent-based modeling. Journal of Economic Interaction and Coordination, 1-33.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Computer Science, Physics, Chemistry, Sociology, Urban Studies" + }, + { + "id": 32454, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Santucci, J. F., Capocchi, L., \u00d6ren, T., Szabo, C., & Neto, V. V. G. Synergies of Soft Computing and M&S 12. Body of Knowledge for Modeling and Simulation, 287.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32455, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Sanyal, M., Sengupta, P., Banerjee, P., Dutta, S., & Ozacar, B. H. (2024). River crossings of our childhood: Nezuko and Yasmine dis/orient computing education.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computing, Sociology" + }, + { + "id": 32456, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Sapienza, A., & Falcone, R. (2024). Flood Risk and Preventive Choices: A Framework for Studying Human Behaviors.\u00a0Behavioral Sciences,\u00a014(1), 74.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 32457, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Sapienza, A., & Falcone, R. (2024). Exploring the Dynamics of Learned, Pre-existing, and Partial Knowledge in Dependence Networks within Multi-Agent Systems.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32458, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Saranya, A., Naresh, R., Karuppiah, S., & Jenifer, M. (2024). Development of trust-based authorization and authentication framework for secure electronic health payment in cloud environment.\u00a0Soft Computing, 1-16.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32459, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Saravia, L. A., Balza, U., & Momo, F. (2024). Why there are more species in several small patches versus few large patches: A multispecies modelling approach. Functional Ecology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 32460, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Sarkar, M., Kweon, O., Kim, B. I., Choi, D. G., & Kim, D. Y. (2024). Synergizing Autonomous and Traditional Vehicles: A Systematic Review of Advances and Challenges in Traffic Flow Management With Signalized Intersections. IEEE Transactions on Intelligent Transportation Systems.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32461, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Sasaki, M., Monaco, C. J., Booth, D. J., & Nagelkerken, I. (2024). Ocean warming and novel species interactions boost growth and persistence of range\u2010extending tropical fishes but challenge that of sympatric temperate species in temperate waters. Journal of Biogeography.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Oceanography, Miscellaneous" + }, + { + "id": 32462, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Saula, A. Y., Rowlatt, C., & Bowness, R. (2024). Use of Individual-Based Mathematical Modelling to Understand More About Antibiotic Resistance Within-Host. In Antibiotic Resistance Protocols (pp. 93-108). New York, NY: Springer US.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Modeling" + }, + { + "id": 32463, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Savadatti, S. G., Srinivasan, K., & Hu, Y. C. (2024). A Bibliometric Analysis of Agent-Based Systems in Cybersecurity and Broader Security Domains: Trends and Insights. IEEE Access.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32464, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Scharf, I. (2024). Search patterns, resource regeneration, and ambush locations impact the competition between active and ambush predators.\u00a0Annals of the New York Academy of Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32465, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Schnieder, M., Hinde, C., & West, A. (2024). Digital Twin Concept in Last Mile Delivery and Passenger Transport (A Systematic Literature Review). Enterprise Interoperability X: Enterprise Interoperability Through Connected Digital Twins, 135-145.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32466, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Sch\u00f6ppl, K., & Hahn, U. (2024). Exploring Effects of Self-Censoring through Agent-Based Simulation. In\u00a0Proceedings of the Annual Meeting of the Cognitive Science Society\u00a0(Vol. 46).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 32467, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Schl\u00fcter, M., Hertz, T., Klein, A., & Wijermans, N. Disentangling the entangled in productive ways: modelling SES from a process-relational perspective.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32468, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Secchi, D., Gahrn-Andersen, R., & Neumann, M. (2024). Complexity in Systemic Cognition: Theoretical Explorations with Agent-Based Modeling. Systems, 12(8), 287.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32469, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Seex, L. (2024). The Self-Organisation of Lemur Social Systems. (Doctoral dissertation, University of Groningen).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 32470, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Sego, T. J., K\u00f6nig, M., Fonseca, L. L., Fain, B., Knapp, A. C., Tiwari, K., ... & Malik-Sheriff, R. S. (2024). EFECT--A Method and Metric to Assess the Reproducibility of Stochastic Simulation Studies.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Archaeology, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 32471, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Selje, T., Islam, R., & Heinz, B. (2024). An Assessment of Agent-Based Modelling Tools for Community-Based Adaptation to Climate Change.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32472, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Sen, S. (2024). Polarisation and Homophily: Experiments with a Contagion-Repulsion Combination Opinion Dynamics Model.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32473, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Senanayake, G. P., Kieu, M., Zou, Y., & Dirks, K. (2024). Agent-based simulation for pedestrian evacuation: A systematic literature review. International Journal of Disaster Risk Reduction, 104705.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Archaeology, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32474, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Sergeyuk, A., Golubev, Y., Bryksin, T., & Ahmed, I. (2024). Using AI-Based Coding Assistants in Practice: State of Affairs, Perceptions, and Ways Forward.\u00a0arXiv preprint arXiv:2406.07765.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Artificial Intelligence, Coding Assistants" + }, + { + "id": 32475, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Seuru, S., Burke, A., & Perez, L. (2024). Evidence of an age and/or gender-based division of labor during the Last Glacial Maximum in Iberia through rabbit hunting. Journal of Archaeological Science: Reports, 56, 104560.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Archaeology, Biology" + }, + { + "id": 32476, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Shadkam, E., & Irannezhad, E. A Comprehensive Review of Simulation Optimization Methods in Agricultural Supply Chains and Transition Towards an Agent-Based Intelligent Digital Framework for Agriculture 4.0. Available at SSRN 4791793.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation Optimization, Agriculture, Digital Framework, Computer Science" + }, + { + "id": 32477, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Shah, D., Belshe, R., Speyer, G., & Yalim, J. (2024). Measuring the Impact of Centralized High-Performance Computing with Research Collaboration Networks. SN Computer Science, 5(5), 600.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 32478, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Shahouni, R., Abbasi, M., Dibaj, M., & Akrami, M. (2024). Utilising Artificial Intelligence to Predict Membrane Behaviour in Water Purif", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Artificial Intelligence, Membrane Behaviour, Biology" + }, + { + "id": 32479, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Sharmila, L., Shelke, M. P., Venkatesan, R., Ramya, R., Umadevi, G., & Ishwarya, M. V. (2024). Computer Modeling Using Visualization of Measuring Method. Wireless Personal Communications, 1-14.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science, Miscellaneous" + }, + { + "id": 32480, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Sharypin, A., Galushko, O., Stavroiani, S., Stavroyany, S., & Kravchenko, I. (2024). The prospective evolution of social networks from the perspective of neurophenomenology.\u00a0Telos: Revista de Estudios Interdisciplinarios en Ciencias Sociales,\u00a026(2), 595-613.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32481, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Shen, Y., Hu, X., Wang, X., Zhang, M., Deng, L., & Wang, W. (2024, July). Integrated framework for space-and energy-efficient retrofitting in multifunctional buildings: A synergy of agent-based modeling and performance-based modeling. In\u00a0Building Simulation\u00a0(pp. 1-22). Tsinghua University Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 32482, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Shili, M., & Anwar, S. (2024). Leveraging Agent-Based Modeling and IoT for Enhanced E-Commerce Strategies. Information, 15(11), 680.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32483, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Shin, H. (2024). Quantifying Population Exposure to Long-term PM10: A City-wide Agent-based Assessment. arXiv preprint arXiv:2402.05029.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32484, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Shinde, S., P Kurhekar, M., Gulhane, M., & K Pikle, N. (2024). Design of a Novel Enhanced Machine Learning Model for Early Prediction of Cerebral Stroke. International Journal of Computing and Digital Systems, 16(1), 1-22.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 32485, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Siebe, H. (2024). Modelling the prevalence of hidden profiles with complex argument structures. In Proceedings of the Annual Meeting of the Cognitive Science Society (Vol. 46).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Cognitive Science, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32486, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Sihombing, D. J. C. (2024). Development of Membership Management Application for Fitness Center using Extreme Programming Methodology. Jurnal Ekonomi, 13(02), 736-744.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 32487, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Silva, C., & Xue, S. (2024). Situating spatial determinism in urban design and planning for sustainable walkability: a simulation of street morphology and pedestrian behaviour.\u00a0Discover Sustainability,\u00a05(1), 1-20.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32488, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Simmonds, J., G\u00f3mez H, J. A., & Ledezma, A. (2024). Testing the Feasibility of an Agent-Based Model for Hydrologic Flow Simulation. Information, 15(8), 448.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32489, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Singh, S. (2024).\u00a0A Qualitative Approach for Learning and Detection of Emergent Behaviors\u00a0(Doctoral dissertation, Northeastern University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32490, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Singh, S. K., Sharma, C., Mahadeva, R., Patole, S. P., & Maiti, A. (2024). Predicting forward osmosis performance with synthesized polyamide-based membrane: An integrated machine learning (MATLAB and ANN) and economic analysis framework. Journal of Cleaner Production, 141285.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Machine Learning, Economic Analysis, Computer Science, Membrane Science, Analysis, MATLAB, Economics" + }, + { + "id": 32491, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Sinha, G. K., & Purwar, A. K. (2024). Optimization Models in Water Resources Management and Security: A Critical Review. International Journal of Mathematical, Engineering & Management Sciences, 9(1), 129-146.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Optimization Models, Water Resources Management, Security" + }, + { + "id": 32492, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Sinha, R., Swanson, H., & Chandrasekharan, S. (2024). Epistemic Games at the Frontier: A Characterization of Emerging Science and Engineering Practices. In Proceedings of the 18th International Conference of the Learning Sciences-ICLS 2024, pp. 1822-1825. International Society of the Learning Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Science, Engineering, Learning Sciences" + }, + { + "id": 32493, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Smith, M. M., & Pauli, J. N. (2024). Small but connected islands can maintain populations and genetic diversity under climate change. Ecography, e07119.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 32494, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Soler-Navarro, D. J., Gim\u00e9nez, A., P\u00e9rez-Ibarra, I., Janssen, M. A., & Tenza-Peral, A. Environmental Strategies Increase the Resilience of Extensive Livestock Systems to Adverse Climate Conditions. Available at SSRN 5002017.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Climate Change" + }, + { + "id": 32495, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Soliman, K. S. (Ed.). (2024). Artificial Intelligence and Machine Learning: 41st IBIMA International Conference, IBIMA-AI 2023, Granada, Spain, June 26-27, 2023, Revised Selected Papers (Vol. 2101). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Artificial Intelligence, Machine Learning, Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32496, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Song, S., Wang, S., Jiao, C., & Ibarra, E. J. M. (2024). ABSESpy: An agent-based modeling framework for social-ecological systems. Journal of Open Source Software, 9(96), 6298.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32497, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Sorel, M., Gay, P. E., Vernier, C., Ciss\u00e9, S., & Piou, C. (2024). Upwind flight partially explains the migratory routes of locust swarms.\u00a0Ecological Modelling,\u00a0489, 110622.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32498, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Sosa, A. Z., & Rodr\u00edguez, L. G. R. (2024). Las Redes Sociales No Digitales en la Acci\u00f3n Colectiva: Modelo Basado en Agentes.\u00a0Psicumex,\u00a014, 1-32.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32499, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Souidi, M. E. H., Ledmi, M., Maarouk, T. M., Ledmi, A., & Laassami, F. (2024). IMAP-QL: an improved multi-agent pursuit path-planning based on Q-learning. International Journal of Systems, Control and Communications, 15(2), 159-178.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32500, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Spring, N. (2024). Multi-Agent Systems in Vehicular Edge Computing: A Communication-Centric Approach to Task Handovers (Doctoral dissertation, Technische Universit\u00e4t Wien).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32501, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Sp\u00e5ng, L. G., Neumann, W., Loeffler, D., & Ericsson, G. (2024). The Moose Trappers and Hunting Grounds of Vilhelmina: ABM-Simulation of Annual Cycles during the Stone Age. Current Swedish Archaeology, 32, 37-63.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Archaeology, Miscellaneous" + }, + { + "id": 32502, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Squadrani, L., Wert-Carvajal, C., M\u00fcller-Komorowska, D., Bohmbach, K., Henneberger, C., Verzelli, P., & Tchumatchenko, T. (2024). Astrocytes enhance plasticity response during reversal learning. Communications Biology, 7(1), 1-10.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Miscellaneous" + }, + { + "id": 32503, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Stacy, L. (2024). Agent-Based Modeling and Air Sampling Methods for Studying Aerosol Transmission.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32504, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Steinberg, S., Gresalfi, M., Vogelstein, L., & Brady, C. (2024). Coding choreography: Understanding student responses to representational incompatibilities between dance and programming. Journal of Research on Technology in Education, 56(3), 314-331.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32505, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Steinmann, P. (2024). Quantifying resilience under deep uncertainty (Doctoral dissertation, Wageningen University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32506, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Stephan, S., Galland, S., Narsis, O. L., Shoji, K., Vachenc, S., Gerart, S., & Nicolle, C. (2024). Agent-based approaches for biological modeling in oncology: A literature review.\u00a0Artificial Intelligence in Medicine, 102884.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32507, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Stine, A. A. K., & Crooks, A. (2024). Retention in Higher Education: An Agent-Based Model of Social Interactions and Motivated Agent Behavior.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32508, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Stolk, M. GroupRugs: Visualizing Group Motion.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 32509, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "St\u00f6ppler, F. How Abstract Mechanisms Come Alive: Modelling Network Path Dependence Using Qualitative Data. In Advances in Social Simulation: Proceedings of the 18th Social Simulation Conference, Glasgow, UK, 4\u20138 September 2023 (p. 435). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Network Path Dependence" + }, + { + "id": 32510, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Strasburg, M., & Christensen, S. (2024). Evaluating the Interaction of Emerging Diseases on White-Tailed Deer Populations Using an Agent-Based Modeling Approach. Pathogens, 13(7), 545.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science" + }, + { + "id": 32511, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Suchak, K., Kieu, M., Oswald, Y., Ward, J. A., & Malleson, N. (2024). Coupling an Agent-Based Model and Ensemble Kalman Filter for Real-Time Crowd Modelling. Royal Society Open Science.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 32512, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Sueur, C., Lombard, J., Capra, O., Beltzung, B., & Pel\u00e9, M. (2024). Exploration of the creative processes in animals, robots, and AI: who holds the authorship?. Humanities and Social Sciences Communications, 11(1), 1-12.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 32513, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Sulaimany, S., Bidkhori, G., & Khoshnaw, S. H. (2024). Causal loop and Stock-Flow Modeling of Signal Transduction Pathways. arXiv preprint arXiv:2409.01267.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology" + }, + { + "id": 32514, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Sullivan, A. (2024). Designing Technology-Enriched Learning Environments: The Effects of an Agent-Based Computer Model on Biology Students' Understanding of the COVID-19 Pandemic and the Nature of Models in Science.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 32515, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Sultan, H. M. K. M. M., & Abbas, A. F. Enhance Penetration Testing Techniques to Improve Cybersecurity with NetLogo, Nmap, and Wireshark.\u00a0Journal of Natural and Applied Sciences URAL, 100.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science, Cybersecurity, Networking" + }, + { + "id": 32516, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Sun, C., Li, G., Zhou, K., Huang, D., & Luo, Q. (2024). Towards a Sustainable Structure of an Urban Water\u2013Energy\u2013Food Nexus: Based on Network and Hierarchy Analysis. Water, 16(15), 2074.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Network Analysis, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32517, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Sun, H., Han, G., Zhang, X., & Ruan, X. (2024). Grasping Emergency Dynamics: A Review of Group Evacuation Techniques and Strategies in Major Emergencies. Journal of Safety Science and Resilience.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32518, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Sun, H., Yan, Y., & Han, Y. (2024). The influencing factors of green technology innovation in renewable energy companies based on hyper-network. Energy Informatics, 7(1), 1-33.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32519, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Sun, Y. T., Lee, H. C., Yu, Y. C., Wu, T. F., Althamary, I., & Huang, C. W. (2024). A Multi-Layer Blockchain Simulator and Performance Evaluation of Social Internet of Vehicles with Multi-Connectivity Management. arXiv preprint arXiv:2411.14000.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32520, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Sunday, A. O., Agbo, F. J., & Suhonen, J. (2024). Co-design Pedagogy for Computational Thinking Education in K-12: A Systematic Literature Review. Technology, Knowledge and Learning, 1-56.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32521, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Suro, F., Michel, F., & Stratulat, T. (2024). Integration of memory systems supporting non-symbolic representations in an architecture for lifelong development of artificial agents. Artificial Intelligence, 104228.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Archaeology, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32522, + "sort": null, + "year": 2024, + "is_ccl": true, + "reference": "Swanson, H. & Wilensky, U. (2024). Meta-theoretic competence for computational agent-based modeling. In Proceedings of the 2nd Annual ACM Symposium on Learning, Design and Technology, (pp. 38-46) New York: ACM. https://doi.org/10.1145/3663433.3663458", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computation, Technology, Modeling" + }, + { + "id": 32523, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Sznajd-Weron, K., & Kami\u0144ska, B. (2024). Impact of Cognitive Dissonance on Social Hysteresis: Insights from the Expressed and Private Opinions Model. Available at SSRN 4814235.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 32524, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Talebi, A. (2024). Simulation in discrete choice models evaluation: SDCM, a simulation tool for performance evaluation of DCMs. arXiv preprint arXiv:2407.17014.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation" + }, + { + "id": 32525, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Tan, F., Wang, J., De Steur, H., & Fan, S. (2024). Unveiling the predictive factors influencing consumers purchase intention towards biofortified products: A PLS-SEM model with agent-based simulation.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32526, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Tang, X., Lindgren, R., & Lira, M. (2024). Haptic Experiences Shape Student-Generated Gestures While Learning with Computational Environments. In\u00a0Proceedings of the 18th International Conference of the Learning Sciences-ICLS 2024, pp. 218-225. International Society of the Learning Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, History, Social Science, Education, Epidemiology" + }, + { + "id": 32527, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Tang, X., & Lira, M. (2024). Drawing and Talk Reveal Dynamic Shifts in Students' Developing Knowledge of Complex Systems. In\u00a0Proceedings of the 18th International Conference of the Learning Sciences-ICLS 2024, pp. 2123-2124. International Society of the Learning Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Learning Sciences" + }, + { + "id": 32528, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Tang, W., Yang, H., & Pi, J. (2024). Dynamics and Control Strategies for SLBRS Model of Computer Viruses Based on Complex Networks.\u00a0International Journal of Intelligent Systems,\u00a02024.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Ecology, Physics, Chemistry, Economics" + }, + { + "id": 32529, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Tian, F., Zhang, L., Zhu, L., Zhao, M., Liu, J., Dong, Q., & Zhao, Q. (2024). Advancements in Affective Disorder Detection: Using Multimodal Physiological Signals and Neuromorphic Computing Based on SNNs. IEEE Transactions on Computational Social Systems.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Miscellaneous" + }, + { + "id": 32530, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Timberlake, T. P., Tew, N. E., & Memmott, J. (2024). Gardens reduce seasonal hunger gaps for farmland pollinators. Proceedings B, 291(2033), 20241523.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 32531, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Tiwary, A., & Mukhopadhyay, S. (2024). Identifying Highly Reactive Nanoplastic Polymers Using Frontier Molecular Orbital Theory and Computationally Modeling Associated Cellular Uptake of Modified Nanopolymers in Gastrointestinal Environments.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computation, Molecular Orbital Theory, Nanoplastics, Cell Uptake, Gastrointestinal Environments" + }, + { + "id": 32532, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Tiwary, A., & Mukhopadhyay, S. Research Supervisors: Mr. Robert Gotwals3 and Dr. Sarah Shoemaker3 Raleigh Charter High School, Cary, North Carolina. Email: atiwary@ raleighcharterhs. org 2 North Carolina Central University, Biomedical and Biotechnology Research Institute. Email: smukhopadhyay@ nccu. edu.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 32533, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Thomas, A. (2024).\u00a0Grasp planning techniques for harvesting in a novel greenhouse simulation environment\u00a0(Doctoral dissertation, University of Guelph).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32534, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Thomas, S. R., & Aurora, S. R. (2024). The dynamic effects of transformational leadership on employee retention and employability over time: an agent-based model. Computational and Mathematical Organization Theory, 1-31.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32535, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Thompson, B. K. (2024).\u00a0Quantitative Modeling Tools for Invasive Species Management Decisions\u00a0(Doctoral dissertation, University of Washington).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32536, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Toprakl\u0131, A. Y. (2024). A Review and Implementation Guide for Basic Cellular Automata Models in Pedestrian Evacuation Simulation. Gazi University Journal of Science Part B: Art Humanities Design and Planning, 12(3), 517-530.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Archaeology, Miscellaneous" + }, + { + "id": 32537, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Topuz, E., & Y\u00fccel, G. Analyzing the Emergence and Dynamics of Pluralistic Ignorance with Agent-Based Models. In Advances in Social Simulation: Proceedings of the 18th Social Simulation Conference, Glasgow, UK, 4\u20138 September 2023 (p. 423). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Social Science, Miscellaneous" + }, + { + "id": 32538, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Torres, L. M. L., Meythaler, F. S. V., Mu\u00f1oz, J. L. C., & Soria, S. L. G. (2024). An\u00e1lisis de las intersecciones aleda\u00f1as al terminal terrestre de la ciudad de Tena-Ecuador. HOLOPRAXIS. Revista de Ciencia, Tecnolog\u00eda e Innovaci\u00f3n, 8(1), 117-147.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32539, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Tran\u00b9, L., Son\u00b9, T. C., Flynn, D., & Balduccini, M. A Simulation for Supply Chains Contract. In Logic Programming and Nonmonotonic Reasoning: 17th International Conference, LPNMR 2024, Dallas, TX, USA, October 11\u201314, 2024, Proceedings (p. 331). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation, Logic Programming, Reasoning" + }, + { + "id": 32540, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Tran, N. B., Nguyen, T. L., Nguyen, Q. V., & Nguyen, D. T. (2024). Optimizing Municipal Solid Waste (MSW) Collection and Transportation Network Using GIS and Agent-based Modeling Approach: A Case Study in Hung Yen City, Vietnam.\u00a0VNU Journal of Science: Earth and Environmental Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, GIS, Modeling, Computer Science, Vietnam, Urban Studies" + }, + { + "id": 32541, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Traore, C. A. D. G., Delay, E., Diop, D., & Bah, A. (2024). Agent-based model for analyzing the impact of movement factors of sahelian transhumant herds. Human-Centric Intelligent Systems, 1-19.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32542, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Tsintsaris, D., Tsompanoglou, M., & Ioannidis, E. (2024). Dynamics of Social Influence and Knowledge in Networks: Sociophysics Models and Applications in Social Trading, Behavioral Finance and Business.\u00a0Mathematics,\u00a012(8), 1141.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Mathematics, Sociology, Biology, Economics, Computer Science, Physics, Chemistry, Urban Studies" + }, + { + "id": 32543, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Tuekam Kakeu, S. V., Fotsing, E., Kameni, E. D., & Antonio Nkenlifack, M. J. (2024). An agent architecture for expressive spatial knowledge and reasoning in land use modeling and simulations. SIMULATION, 00375497241247040.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32544, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Tung, E., Mostafavi, A., Li, M., Li, S., Rasheed, Z., & Shafique, K. (2024). A System for Critical Facility and Resource Optimization in Disaster Management and Planning. arXiv preprint arXiv:2410.02956.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32545, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Tzouras, P. G., Mitropoulos, L., Karolemeas, C., Stravropoulou, E., Vlahogianni, E. I., & Kepaptsoglou, K. (2024). Agent-based simulation model of micro-mobility trips in heterogeneous and perceived unsafe road environments. Journal of Cycling and Micromobility Research, 100042.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32546, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Umlauft, M., Gojkovic, M., Harshina, K., Majbour, K., & Schranz, M. (2024). Bees, Bats and Glowworms: Swarm Algorithms for Optimizing Industrial Plants from the Bottom-Up. In Agents and Artificial Intelligence: 15th International Conference, ICAART 2023, Lisbon, Portugal, February 22\u201324, 2023, Revised Selected Papers (p. 3). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32547, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Umlauft, M., & Schranz, M. Using NetLogo to Simulate Large Production Plants: Simulation Performance: A Case Study.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 32548, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "van Bruggen, A. R., Hoekstra, J., Claassen, L., Princen, M., ter Hoeven, E., van Burgsteden, M., & te Br\u00f6mmelstroet, M. (2024). Transformative Modelling for Sustainable Mobility and Healthy Neighborhood Spatial Design: The Case of Enka. Available at SSRN 4744940.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32549, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "van den Hurk, M., Dechesne, M., & Dignum, F. Exploring the Stepwise Process and Consequences of Identity Fusion in Different Groups: An ABM. In Advances in Social Simulation: Proceedings of the 18th Social Simulation Conference, Glasgow, UK, 4\u20138 September 2023 (p. 397). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Social Science" + }, + { + "id": 32550, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "van den Ouweelen, T. M. R. (2024). Navigating Value Controversies.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32551, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Vandin, A. Statistical Model Checking of Python Agent-Based Models: An Integration. In Bridging the Gap Between AI and Reality: Second International Conference, AISoLA 2024, Crete, Greece, October 30\u2013November 3, 2024, Proceedings (p. 398). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Statistical Model Checking" + }, + { + "id": 32552, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "van Dongen, M. (2024). The Teaching Methods and Strategies of Programming Education within High Schools in The Netherlands.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32553, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "van Nes, E. H., Pujoni, D. G., Shetty, S. A., Straatsma, G., de Vos, W. M., & Scheffer, M. (2024). A tiny fraction of all species forms most of nature: Rarity as a sticky state.\u00a0Proceedings of the National Academy of Sciences,\u00a0121(2), e2221791120.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32554, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "van Oort, P. A. J., Fonteijn, H. M. J., & Hengeveld, G. M. (2024). DARTS: Modelling effects of shocks on global, regional, urban and rural food security. PLOS Complex Systems, 1(2), e0000006.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32555, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "van Zinnicq Bergmann, M. P., Griffin, L. P., Bodey, T. W., Guttridge, T. L., Aarts, G., Heithaus, M. R., ... & Papastamatiou, Y. P. (2024). Intraguild processes drive space\u2010use patterns in a large\u2010bodied marine predator community. Journal of Animal Ecology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Marine Biology, Zoology, Computer Science, Economics" + }, + { + "id": 32556, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Varela, L., Batall\u00e9s, M., Tambusso, P. S., Costoya, G., & Fari\u00f1a, R. A. (2024). The Megafauna3D Educational Environment: Harnessing the Combination of New and Traditional Technologies to Improve Geoscience Education and Outreach. Geosciences, 14(12), 321.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32557, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Velandia Lara, V. M.\u00a0Propuesta de lineamientos de usos de la malla vial basado en el an\u00e1lisis espacial y simulaci\u00f3n basada en agentes para la localidad de Chapinero (upz el Refugio y Chic\u00f3 Lago) en la ciudad de Bogot\u00e1\u00a0(Master's thesis, Universidad de La Sabana).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32558, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Veldhuis, A., Johry, A., Bekker, T., Jetten, M., Cronin, E. B., & Works, D. Design Futures. PROCEEDINGS OF CONSTRUCTIONISM/FABLEARN 2023, 30.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32559, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Verhoog, M. (2024) How Marketing and Sales can Push and Accelerate Residential Refurbishment.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Marketing, Sales, Residential Refurbishment" + }, + { + "id": 32560, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Verma, P., Sood, S. K., Kaur, H., Kumar, M., Wu, H., & Gill, S. S. (2024). Data Driven Stochastic Game Network-Based Smart Home Monitoring System Using IoT-Enabled Edge Computing Environments. IEEE Transactions on Consumer Electronics.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 32561, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Vestad, A., & Yang, B. (2024). Human Factors in Cybersecurity, Vol. 127, 2024, 83-93 AHFE. Human Factors in Cybersecurity, 83.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Human Factors" + }, + { + "id": 32562, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Vidal-Lamolla, P., Molinos-Senante, M., Oliva-Felipe, L., Alvarez-Napagao, S., Cort\u00e9s, U., Mart\u00ednez-Gomariz, E., ... & Poch, M. (2024). Assessing urban water demand-side management policies before their implementation: An agent-based model approach. Sustainable Cities and Society, 105435.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32563, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Vidler, A., & Walsh, T. (2024). Modelling Opaque Bilateral Market Dynamics in Financial Trading: Insights from a Multi-Agent Simulation Study. arXiv preprint arXiv:2405.02849.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32564, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Vigna, I., Millington, J., Ascoli, D., Comino, E., Pezzoli, A., & Besana, A. (2024). A picit jeu: Agent-based modelling with serious gaming for a fire-resilient landscape. Journal of Environmental Management, 370, 122529.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Gaming, Landscape" + }, + { + "id": 32565, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Vijayan, M., Patil, A., & Kapse, V. (2024). An agent-based computational model on household electricity consumption in Indian cities. Journal of Green Building, 19(1), 235-260.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32566, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Vo\u00df, J. N. (2024).\u00a0Konzeption und Entwicklung einer didaktischen Modellierungs-und Simulationsplattform f\u00fcr MARS\u00a0(Doctoral dissertation, Hochschule f\u00fcr Angewandte Wissenschaften Hamburg).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32567, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Vulic, J., Jacobson, M. J., & Levin, J. A. (2024). Exploring Education as a Complex System: Computational Educational Research with Multi-Level Agent-Based Modeling. Education Sciences, 14(5), 551.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32568, + "sort": null, + "year": 2024, + "is_ccl": true, + "reference": "Wagh, A., Levy, S., Horn, M., Guo, B., & Wilensky, U. (2024) Learning to Reason About Natural Selection as a Computational Process by Programming Agent-Based Models in a Code-First Environment. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 32569, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Wagh, A., Rosenbaum, L. F., Fuhrmann, T., Eloy, A., Blikstein, P., & Wilkerson, M. (2024). Toward Ontological Alignment: Coordinating Student Ideas with the Representational System of a Computational Modeling Unit for Science Learning. Cognition and Instruction, 1-32.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 32570, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Wagh, A., Vogelstein, L., & Champion, D. (2024). Fused Representations: Linking Choreographic and Digital NetLogo Modeling through Intermodal Inquiry. In\u00a0Proceedings of the 18th International Conference of the Learning Sciences-ICLS 2024, pp. 714-721. International Society of the Learning Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32571, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Wan, L., Lv, Y., Wang, Z., & Tian, Y. (2024). The synergistic evolution of supply-demand composite system for airport green development: A case study in Guangzhou Baiyun International Airport, China. PloS one, 19(4), e0302303.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32572, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Wang, C., Zhou, Z., & Zheng, G. (2024). Efficient weighted multi-source trust aggregation scheme for edge computing offloading. Social Network Analysis and Mining, 14(1), 33.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32573, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Wang, H. (2024).\u00a0Impacts of Altruism and Uncertainty on Consumption: Three Essays\u00a0(Doctoral dissertation, University of Guelph).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32574, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Wang, H., Li, F., Zou, Y., Yang, M., Chen, Z., & Nie, X. (2024). How do smallholder farmers run towards agricultural modernization under multiple stressors in China's coastal zones: an agent-based modeling approach. Environment, Development and Sustainability, 1-27.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32575, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Wang, H., Lu, Q., Zhang, Z., Lin, J., & Wu, Q. (2024). Study on separation of CO2 condensation from natural gas based on cellular automaton method.\u00a0Energy Sources, Part A: Recovery, Utilization, and Environmental Effects,\u00a046(1), 3663-3683.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 32576, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Wang, M., Wang, H. H., Koralewski, T. E., Grant, W. E., White, N., Hanan, J., & Grimm, V. (2024). From known to unknown unknowns through pattern-oriented modelling: Driving research towards the Medawar zone.\u00a0Ecological Modelling,\u00a0497, 110853.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Modeling, Pattern-oriented modeling" + }, + { + "id": 32577, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Wang, S., Chang, J., Xue, J., Sun, H., Zeng, F., Liu, L., ... & Li, X. (2024). Coupling behavioral economics and water management policies for agricultural land-use planning in basin irrigation districts: Agent-based socio-hydrological modeling and application. Agricultural Water Management, 298, 108845.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32578, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Wang, W., Sawleshwarkar, S., & Piraveenan, M. (2024). Computational Approaches of Modelling Human Papillomavirus Transmission and Prevention Strategies: A Systematic Review. arXiv preprint arXiv:2404.19235.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 32579, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Wang, W., & Wu, F. (2024). Dynamic simulation for reclaimed water reuse under multi-intervention policies in China. Heliyon, 10(3).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32580, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Wang, X., Jin, L., & Wang, S. (2024). Research on Network Public Opinion in War Damage Incident of Major Water Conservancy Projects. IEEE Access.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32581, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Wang, X., He, X., Sun, X., Qin, M., Pan, R., & Yang, Y. (2024, January). The Diffusion Path of Distributed Photovoltaic Power Generation Technology driven by Individual Behavior. In\u00a0Proceedings of the 4th International Conference on Economic Management and Big Data Applications, ICEMBDA 2023, October 27\u201329, 2023, Tianjin, China.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32582, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Wang, Z., Yue, C., & Wang, J. (2024). Evaluating parameter inversion efficiency in Heterogeneous Groundwater models using Karhunen-Lo\u00e8ve expansion: a comparative study of genetic algorithm, ensemble smoother, and MCMC. Earth Science Informatics, 1-17.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, History, Economics, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32583, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Wang, Z. Z., Xu, S. Q., & Guan, Y. J. (2024). Impact of the innovation promotion strategy on digital technology diffusion in regional innovation ecosystems. Technology Analysis & Strategic Management, 1-17.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32584, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Wanniarachchi, C., Wimalaratne, P., & Karunanayaka, K. (2024). Formation Control Algorithms for Drone Swarms and The Single Point of Failure Crisis: A Review. In 2024 IEEE 33rd International Symposium on Industrial Electronics (ISIE) (pp. 1-6). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32585, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Wasesa, H. A., & Prasetio, E. A. Prediction of Battery Electric Vehicle (BEV) Adoption in Indonesia Using Agent-Based Modelling and Simulation: An Integrated Model Implementation.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32586, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Wasesa, M., Rizaldi, A., Stam, A., Zuidwijk, R., & Van Heck, E. (2024). Advancing Smart Sustainable Seaports: Auction-based Truck Appointment System for Automated Container Terminal.\u00a0IEEE Access.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32587, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Weitzel, E. M., Wilson, K. M., Spake, L., Schaffnit, S. B., Lynch, R., Sear, R., ... & Sosis, R. (2024). Cost structures and socioecological conditions impact the fitness outcomes of human alloparental care in agent-based model simulations. Evolution and Human Behavior, 45(5), 106613.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Socioecological conditions, Agent-based model simulations" + }, + { + "id": 32588, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Wen, C. T., Liu, C. C., Li, C. Y., Chang, M. H., Chiang, S. H. F., Lin, H. M., ... & Biswas, G. (2024). The learning analytics of computational scientific modeling with self-explanation for subgoals and demonstration scaffolding. Computers & Education, 105043.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 32589, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Wen, F., Chen, Y., & Pan, C. (2024, May). Cooperative tracking control of cross-domain heterogeneous unmanned systems via adaptive neural backstepping. In 2024 7th International Symposium on Autonomous Systems (ISAS) (pp. 1-6). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Chemistry" + }, + { + "id": 32590, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Weng, X., Pan, D., & Jin, Y. (2024). An Adaptive Distributed Consumer Trust Model for Social Commerce. Applied Artificial Intelligence, 38(1), 2385857.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32591, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Westbury, S. O. (2024). RULER: Prebugging with Proxy-Based Programming.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Programming" + }, + { + "id": 32592, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Westerveld, J., & Verbraeck, A. A. Recurring COVID-19 Vaccinations.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32593, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Wiegel, E., & Yorke-Smith, N. (2024). An Agent-Based Market Analysis of Urban Housing Balance in The Netherlands. Real Estate, 1(1), 80-135.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32594, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Wiggins, D. E., & Solomonides, A. E. 2024. Modeling a Viral Epidemic With a Concurrent \u201cMisinfodemic\u201d.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32595, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Williams, A., Mesoudi, A., Williams, A. J., & Mesoudi, A. Testing the effect of circumscription on the evolution of social complexity in the Valley of Oaxaca, Mexico, using 2 agent-based models 3.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32596, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Wong, J., Nack, E., Steelman, Z., Erway, S., & Bastian, N. D. (2024, June). A methodology for representing and assessing artificial intelligence decision aids within modeling and simulation. In\u00a0Artificial Intelligence and Machine Learning for Multi-Domain Operations Applications VI\u00a0(Vol. 13051, pp. 143-167). SPIE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Artificial Intelligence, Modeling, Simulation, Machine Learning, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science" + }, + { + "id": 32597, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Woo, K., & Falloon, G. (2024). Integrating coding across the curriculum: a scoping review. Computer Science Education, 1-22.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Coding, Computer Science" + }, + { + "id": 32598, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Wood, T., An, G., Bryant, C. E., & Ferguson, B. J. (2024). Modelling molecular differences in the innate immune system responses of chickens and ducks to highly pathogenic avian influenza virus.\u00a0bioRxiv, 2024-07.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Molecular Biology, Virology, Animal Science, Computer Science, Economics, Ecology" + }, + { + "id": 32599, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Wu, J. (2024). Evaluation of Social Network Influence. In Social Network Computing (pp. 453-490). Singapore: Springer Nature Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32600, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Wu, J. (2024). Homogeneity in Social Networks. In Social Network Computing (pp. 159-188). Singapore: Springer Nature Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32601, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Wu, J. (2024). Introduction to Social Network Computing. In Social Network Computing (pp. 3-43). Singapore: Springer Nature Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32602, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Wu, J. (2024). Modeling and Simulation of Social Networks. In Social Network Computing (pp. 551-573). Singapore: Springer Nature Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32603, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Wu, J. (2024). Power Laws in Social Networks. In Social Network Computing (pp. 257-284). Singapore: Springer Nature Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32604, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Wu, J. (2024). Small World in Social Networks. In Social Network Computing (pp. 219-256). Singapore: Springer Nature Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32605, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Wu, L., Sun, Z., Liu, J., Shan, D., Ma, X., & Zhu, T. (2024). Unveiling the impact of heterogeneous driving behaviors on traffic flow: A mesoscale multi-agent modeling approach. Computers and Electrical Engineering, 119, 109500.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32606, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Wu, Y. (2024, November). Research on product quality control based on multiagent modeling. In International Conference on Optics, Electronics, and Communication Engineering (OECE 2024) (Vol. 13395, pp. 340-344). SPIE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Optics, Electronics, Communication Engineering, Modeling" + }, + { + "id": 32607, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Wurth, B., & Kazakov, R. Combining SD and ABM: Fram", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 32608, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Xiang, L., Mirakhur, Z., Pilny, A., & Krall, R. (2024). Measuring and Comparing High School Teachers\u2019 and Undergraduate Students\u2019 Knowledge of Complex Systems. Education Sciences, 14(8), 837.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32609, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Xie, S., Gan, C., & Lawniczak, A. T. (2024). Analyzing Decision-Making in Cognitive Agent Simulations Using Generalized Linear Mixed-Effects Models. Mathematics, 12(23), 3768.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32610, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Xu, J., & Bi, Y. (2024). An Agent-Based Modeling Approach for the Diffusion Analysis of Electric Vehicles With Two-Stage Purchase Choice Modeling. Journal of Computing and Information Science in Engineering, 24(6), 064502.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32611, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Xu, S., Hsu, S. C., Du, E., Song, L., Lam, C. M., Liu, X., & Zheng, C. (2024). Agent-Based Modeling in Water Science: From Macroscale to Microscale. ACS ES&T Water.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32612, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Xu, W., & Zhang, K. (2024). Ant Colony Optimization for Urban Flood Rescue Routing: Integrating Agent-Based Simulation and Multi-Center Vehicle Routing. Available at SSRN 4998292.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32613, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Xu, Z., Ban, F., & Fotia, P. (2024). Efficient QoS processing for internet of medical things using non-cooperative game theory: resource allocation in cloud framework. Annals of Operations Research, 1-16.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32614, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Yalabadi, A. K., Yazdani-Jahromi, M., Abdidizaji, S., Garibay, I., & Garibay, O. O. (2024). Controlling the Misinformation Diffusion in Social Media by the Effect of Different Classes of Agents.\u00a0arXiv preprint arXiv:2401.11524.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32615, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Yan, Z., & Yeo, J. (2024). Competing Mechanisms in Bacterial Invasion of Human Colon Mucus Probed with Agent-based Modeling. Biophysical Journal.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Physics, Miscellaneous" + }, + { + "id": 32616, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Yang, Q., Tang, Y., & Gao, D. (2024). Agent-based evolutionary game dynamics uncover the dual role of resource heterogeneity in the evolution of cooperation. Journal of Theoretical Biology, 111952.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32617, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Yang, X., & Zeng, X (2024). Combined with the Internet technology of college student training mode innovation and student management mechanism optimization. Applied Mathematics and Nonlinear Sciences, 9(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32618, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Yates, J. W. (2024). Integrated pharmacokinetic-pharmacodynamic and agent-based modelling in drug development: Current status and future perspectives. Advanced Drug Delivery Reviews, 115474.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Pharmacokinetics, Drug Development, Modeling" + }, + { + "id": 32619, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Yin, L., Yin, F., & Silverman, R. M. (2024). Rethinking demolition plans to fight neighborhood blight in shrinking cities: Applying agent-based policy simulations. Cities, 150, 105035.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32620, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Yin, X., Xiao, S., Zhang, X., & Ruan, F. (2024). Social Network Analysis of a Norovirus Outbreak at a Primary School\u2014Zhuhai City, Guangdong Province, China, 2023. China CDC Weekly, 6(44), 1142-1146.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32621, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Yirenkyi, E. (2024). An agent-based modeling approach to household adaptation for flooding and coastal erosion at Channel-Port aux Basque. Earth ArXiv.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 32622, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "You, X., & Zhou, Z. (2024). A Multi-attribute Large Group Decision-making Method Based on Interval-valued Pythagorean Fuzzy Number.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32623, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Young, E. (2024). Where the Smoke Was Coming From: Risk Assessment, Social Ties, and Expanding Roles in the Evacuation of the Beverly Hills Supper Club Fire (Doctoral dissertation, University of Delaware).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32624, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Youssefi, K. A., Gojkovic, M., & Schranz, M. (2024). Artificial Bee Colony Algorithm: Bottom-Up Variants for the Job-Shop Scheduling Problem.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32625, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Yu, C. L. (2024). Developing a Theory of Mind: A Multi-method Perspective (Doctoral dissertation).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32626, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Yu, J. H., & Chie, B. T. (2024). Interplay and Implications of Urban Renewal under Dual Laws-An Agent-Based Simulation. Advances in Management and Applied Economics, 14(5).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32627, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Yu, Y., Li, H., Liu, Y., & Ma, Y. (2024). Integrating Multi-Model Simulations to Address Partial Observability in Population Dynamics: A Python-Based Ecological Tool. Applied Sciences, 15(1), 89.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 32628, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Yu, Y., Lu, Q., & Fu, Y. (2024). Dynamic Trust Management for the Edge Devices in Industrial Internet.\u00a0IEEE Internet of Things Journal.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32629, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Yuan, X., Wang, J., Hu, S., Cheung, A., & Lu, Z. (2024). KoroT-3E: A Personalized Musical Mnemonics Tool for Enhancing Memory Retention of Complex Computer Science Concepts. arXiv preprint arXiv:2409.10446.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 32630, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Yust, A. E. (2024). BODINE: Exploring the Versatility of Agent-Based Modeling in NetLogo: Lessons from Education and Research.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32631, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Yunping, Z. H. A. N. G., Jianping, L. I. N., Yimin, H. U. A. N. G., Zebin, C. H. E. N., Chenhui, Z. H. U., & Hao, Y. U. A. N. (2024). Delineation of urban growth boundary based on FLUS model under the perspective of land use evaluation in hilly mountainous areas. Journal of Mountain Science, 21(5), 1647-1662.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Land Use Evaluation, Computer Science, Archaeology, Urban Studies, Economics, History, Physics, Chemistry, Social Science, Education" + }, + { + "id": 32632, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Zaffar, M. A., Kumar, R., & Zhao, K. (2024). Competitive dynamics in a multi-sided mobile payment platform market: an agent-based modeling perspective. International Journal of Bank Marketing, (ahead-of-print).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32633, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Zagorskas, J., & Turskis, Z. (2024). Enhancing Sustainable Mobility: Evaluating New Bicycle and Pedestrian Links to Car-Oriented Industrial Parks with ARAS-G MCDM Approach.\u00a0Sustainability,\u00a016(7), 2994.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32634, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Zahwa, F., Simic, M., & Cheng, C. T. Fuzzy-Based Traffic Light Control Strategy: The Good, the Bad, and the Ugly. In Big Data Analytics and Data Science: Proceedings of Eighth International Conference on Information System Design and Intelligent Applications (ISDIA 2024), Volume 3 (p. 53). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Fuzzy-Based Traffic Light Control Strategy" + }, + { + "id": 32635, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Zambonelli, F., Bergenti, F., Mariani, S., & Monica, S. (2024). Islands of cooperation emerge by stigmergic interactions in iterated spatial games. PLOS ONE, 19(7), e0306915.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32636, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Zambrano Garc\u00eda, P. A. (2024). Sostenibilidad ambiental de la cadena de suministro de la franquicia: un modelo basado en agentes para el an\u00e1lisis de la influencia de los mecanismos de gobernanza en la adopci\u00f3n de pr\u00e1cticas verdes (Doctoral dissertation, Universidad Nacional de Colombia).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32637, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Zamudio Sosa, A., & Rueda Rodr\u00edguez, L. G. (2024). Non-Digital Social Networks in Collective Action: Agent-Based Model. Psicumex, 14.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32638, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Zanette, E. M., Bialozyt, R. B., Santos, M. M., de Almeida e Silva, A. S., Messaoudi, Y., Alcolea, M., ... & Culot, L. Predicting Frugivore Generated Seed Rain in Different Environmental Contexts: A Modeling Approach Applied to a Forest Specialist. Available at SSRN 5047520.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Forest Specialist" + }, + { + "id": 32639, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Zedadra, O., Guerrieri, A., Seridi, H., Benzaid, A., & Fortino, G. (2024). Inverse Firefly-Based Search Algorithms for Multi-Target Search Problem.\u00a0Big Data and Cognitive Computing,\u00a08(2), 18.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 32640, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Zedadra, O., Zedadra, A., Guerrieri, A., Seridi, H., & Ghelis, D. (2024). A New Multi-Robots Search and Rescue Strategy based on Penguin Optimization Algorithm. Scalable Computing: Practice and Experience, 25(5), 4428-4441.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 32641, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Zeinali Kalkhoran, A., Platt, L. S., Iovine, N., Brown, S., & Pollitt, B. (2024). An agent-based modeling approach for infection prevention predesign: simulating the spread of pathogens between humans and the environment in an Intensive Care Unit. Architectural Engineering and Design Management, 1-22.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32642, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Zellner, M. L., & Massey, D. (2024). Modeling benefits and tradeoffs of green infrastructure: Evaluating and extending parsimonious models for neighborhood stormwater planning. Heliyon.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32643, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Zhang, C., Wu, X., Zhao, S., Madani, H., Chen, J., & Chen, Y. (2024). Multi-agent simulation of the effects of Japanese electricity market policies on the low-carbon transition. Energy Strategy Reviews, 52, 101333.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32644, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Zhang, G., Wang, X., Wang, G., Suo, X., Qiu, Y., Luo, R. H., ... & Li, Y. (2024). Nanoparticles insert a three dimensional cavity structure of proteins for function inhibition: The Case of CeO2 and SARS-CoV-2. Nano Today, 55, 102183.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Nanoparticles, Protein, Chemistry, Physics, Computer Science, Economics, History, Miscellaneous" + }, + { + "id": 32645, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Zhang, J. (2024). Exploring the intra-platoon planning problem for heterogeneous train traffic under virtual coupling in the railway network via simulation. Journal of Rail Transport Planning & Management, 30, 100442.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32646, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Zhang, J., Sun, Z., Chen, L., Li, J., Wang, Q., Li, Y., ... & Dou, Z. (2024). Rapid assessment of the vulnerability of densely populated urban communities under major epidemics. International Journal of Disaster Risk Reduction, 105082.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32647, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Zhang, J., Yang, Y. E., Abeshu, G. W., Li, H., Hung, F., Lin, C. Y., & Leung, L. R. (2024). Exploring the food-energy-water nexus in coupled natural-human systems under climate change with a fully integrated agent-based modeling framework. Journal of Hydrology, 131048.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 32648, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Zhang, J., Rong, L., & Gong, Y. (2024). An Agent-Based Transmission Model of Major Infectious Diseases Considering Places: Forecast and Control. Mathematics, 12(6), 811.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Transmission" + }, + { + "id": 32649, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Zhang, R., & Bing, S. U. N. (2024). Complex adaptive system theory, agent-based modeling, and simulation in dominant technology formation. Journal of Systems Engineering and Electronics, 35(1), 130-153.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Social Science, Education, Epidemiology" + }, + { + "id": 32650, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Zhang, X., Pitera, K., & Wang, Y. (2024). Exploring parking choices under the coexistence of autonomous and conventional vehicles.\u00a0Physica A: Statistical Mechanics and its Applications, 129542.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Physics" + }, + { + "id": 32651, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Zhang, Y. (2024). An Investigation of the Housing Market and the Supply Modelling Process (Doctoral dissertation, University of Toronto (Canada)).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32652, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Zhang, Y., Ma, B., Cao, L., & Liu, Y. (2024). A Data-Driven Pandemic Simulator with Reinforcement Learning. Electronics, 13(13), 2531.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 32653, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Zhang, Y., Zhang, B., & Hou, J. (2024). Simulation Study on Student Residential Energy Use Behaviors: A Case Study of University Dormitories in Sichuan, China. Buildings, 14(5), 1484.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32654, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Zhang, Y., Zhang, X., & Song, J. (2024). Enterprise intelligent financial sharing mechanism in the security environment of the internet of things. International Journal of Information and Computer Security, 24(1-2), 80-97.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32655, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Zhang, Z., Tang, Y., Tao, C., Zhang, J., Dong, F., Liu, S., ... & Wang, X. (2024). Mesoscopic ring element growth and deformation induced biofilm streamer evolution in microfluidic channels. Water Science & Technology, wst2024168.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 32656, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Zhao, L. (2024, June). Foregrounding Agency in Participatory Design with Children. In\u00a0Proceedings of the 23rd Annual ACM Interaction Design and Children Conference\u00a0(pp. 994-996).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32657, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Zhao, X. (2024). Transaction Management in Blockchains (Doctoral dissertation, University of Macau).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32658, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Zhao, Y., Zhu, Z., Zhang, Y., Yang, Y., Guo, Y., & Zhou, W. (2024). Unveiling the evolution of urban rail transit network: considering ridership attributes. Transportation Letters, 1-12.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32659, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Zheng, Y. (2024). Uncovering Learning in Maker Education: Employing Collective Documentation and Natural Language Processing to Identify Knowledge Construction in Complex Open-Ended Learning Environments (Doctoral dissertation, Teachers College, Columbia University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Archaeology, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32660, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Zhong, Y. (2024). Rural Small Business Entrepreneurship Strategy Analysis with Optimization in Cooperation Industry Using Evolutionary Game Theory.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32661, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Zhou, B. (2024). A Cautionary Note on the Application of GIS in Spatial Optimization Modeling. Journal of Geographic Information System, 16(01), 89-113.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "GIS, Spatial Optimization Modeling" + }, + { + "id": 32662, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Zhou, X., Zhou, Y., Gong, Y., Cai, Z., Qiu, A., Xiao, Q., ... & Bai, Z. (2024, June). \" Bee and I need diversity!\" Break Filter Bubbles in Recommendation Systems through Embodied AI Learning. In\u00a0Proceedings of the 23rd Annual ACM Interaction Design and Children Conference\u00a0(pp. 44-61).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Recommendation Systems, AI Learning, Interaction Design, Children Conference" + }, + { + "id": 32663, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Zhu, J. (2024). The impact of merchant-induced reviews on consumers\u2019 shopping behavior from the perspective of the digital economy. Current Psychology, 1-16.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32664, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Zhu, J., Zhang, C., Zhang, M., & Yuan, J. (2024). Modeling and Simulation of Technological Innovation Diffusion of High-performance Construction Materials in Transportation Engineering. Case Studies in Construction Materials, e03838.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32665, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Zhuang, T., & Lin, Z. (2024).The why, what, and how of AI-based coding in scientific research.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 32666, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Zosh, C., Dhameja, N., Ren, Y., & Pape, A. (2024). A Guide and General Method for Estimating Parameters and their Confidence Intervals in Agent-Based Simulations with Stochasticity.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32667, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Zou, X., Yan, G., Mohammed, K. J., Suhatril, M., Khadimallah, M. A., Marzouki, R., ... & Escorcia-Gutierrez, J. (2024). Advancements in nano-enhanced steel structures for earthquake resilience: Integrating metallic elements, AI, and sensor technology for engineering disasters mitigation in steel buildings. Steel and Composite Structures, 53(4), 443-460.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 32668, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Al Aziz, R. R., & Oktavianto, D. (2024). Perancangan Model Simulasi Sistem Parkir Berbasis Agen Untuk Peningkatan Efisiensi Dan Pengalaman Pengguna.\u00a0Jurnal Gembira: Pengabdian Kepada Masyarakat,\u00a02(03), 700-708.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32669, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Alaminos, A., & Alaminos-Fern\u00e1ndez, A. (2024). Teor\u00eda de juegos y Modelo Bifactorial-Inercia Incertidumbre.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32670, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Almenar Vicente, B. (2024). Dise\u00f1o y programaci\u00f3n de bots de inteligencia artificial para juegos de gesti\u00f3n de recursos (Doctoral dissertation, Universitat Polit\u00e8cnica de Val\u00e8ncia).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32671, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Alvarado Maldonado, Z. K. (2024). Seguridad y Salud ocupacional de los trabajadores de obras en una empresa constructora de la regi\u00f3n San Mart\u00edn\u20132024.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32672, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Ametys, C. M. S. (2024). MASTER G\u00e9omatique-Parcours ScIences G\u00e9omatiques en environneMent et Am\u00e9nagement (SIGMA).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Miscellaneous" + }, + { + "id": 32673, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Arvizu, C. C. Modelo complejo de la cadena de suministro en NetLogo.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 32674, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Ballesteros Baham\u00f3n, A. L. (2024). An\u00e1lisis de las din\u00e1micas de interacci\u00f3n en la intermediaci\u00f3n y su incidencia en las Capacidades de Absorci\u00f3n Potenciales en un Sistema de Innovaci\u00f3n Agr\u00edcola.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32675, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Bazzanella, E., Barros, M. M., & Santos, F. (2024). Refatora\u00e7ao da Extensao NetLogo de Aprendizagem por Refor\u00e7o para Integra\u00e7ao com a Biblioteca BURLAP. In Este documento re\u00fane os trabalhos apresentados nas sess\u00f5es t\u00e9cnicas da 18\u00aa edi\u00e7\u00e3o do Workshop-Escola de Sistemas de Agentes, Seus Ambientes e Aplica\u00e7\u00f5es\u2013Wesaac 2024, realizado na Universidade de Bras\u00edlia, entre 14 e 16 de agosto de 2024. Durante as sess\u00f5es t\u00e9cnicas, foram apresentados 21 artigos que (p. 51).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32676, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Blasco Sevilla, E. (2024). Integraci\u00f3n de Godot y SPADE para la construcci\u00f3n de entornos 3D para la navegaci\u00f3n de robots (Doctoral dissertation, Universitat Polit\u00e8cnica de Val\u00e8ncia).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Archaeology, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32677, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Cabuya-Padilla, D. E., & Castaneda-Marroquin, C. A. (2024). Marco de referencia para el modelamiento y simulaci\u00f3n de la ciberdefensa mar\u00edtima-MARCIM: estado del arte y metodolog\u00eda.\u00a0DYNA,\u00a091(231), 169-179.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32678, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "C\u00e1rdenas Benavides, E. S. Optimizando el dise\u00f1o instruccional mediante algoritmos gen\u00e9ticos (Doctoral dissertation, Universidad Nacional de Colombia).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Algorithm Design, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32679, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Castillo Losada, L. T. (2024). La educaci\u00f3n ambiental y las TIC en la educaci\u00f3n secundaria y media en Colombia: una revisi\u00f3n de literatura.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32680, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Castillo Orellana, M. N. (2024). Medici\u00f3n de la nerviosidad en un plan maestro de producci\u00f3n mediante el uso de sistema multi agentes. Direcci\u00f3n de Bibliotecas, Universidad de Concepci\u00f3n.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 32681, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "CAZA, O., & RUDY, R. (2024). MODELO DE DIRECCIONAMIENTO VIAL MEDIANTE ALGORITMO DE COLONIA DE HORMIGAS Y TEORIA DE GRAFOS EN LA TRANSITABILIDAD VIAL DE EXTRANCA RIO SECO (Doctoral dissertation).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32682, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Civil, R. D. M. I., & de Inversi\u00f3n, A. D. T. Presentaci\u00f3n del Programa de Investigaci\u00f3n 70593, la Red sobre Respuestas a la Corrupci\u00f3n Asociada al Crimen Organizado Transnacional y su Grupo de Derecho Privado. H\u00c9CTOR OLASOLO, 41.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Miscellaneous" + }, + { + "id": 32683, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Correia, L. G., & Mena-Chalco, J. P. A INFLU\u00caNCIA DE AUTOCITA\u00c7\u00d5ES NO FATOR DE IMPACTO: UMA COMPARA\u00c7\u00c3O DE DUAS POL\u00cdTICAS DE C\u00c1LCULO.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32684, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "DE CASTRO, C. J. X. B. CONCEI\u00c7\u00c3O JACQUELINE XAVIER BARBOSA DE CASTRO MERCADO DE CAPITAIS ARTIFICIAL: UMA SIMULA\u00c7\u00c3O BASEADA EM AGENTES.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32685, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "de Tutor\u00edas, H., Miras, R. M. S., Morales, J. M. R., Calder\u00f3n, C. A., Stanek, M., & Rivi\u00e9re, J. Gu\u00eda docente de Epistemolog\u00eda y ciencias sociales computacionales (MD6/56/1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32686, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "dos Santos Filho, E. C. (2024). Avalia\u00e7\u00e3o de Pol\u00edticas P\u00fablicas de Seguran\u00e7a no Brasil: aplicando o Modelo Baseado em Agentes. Editora Dial\u00e9tica.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32687, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Ferreira12, E., Rete, O., & de Janeiro\u2013RJ\u2013Brasil, R. (2024). Simula\u00e7ao de Rotatitividade de Pessoal de TI atrav\u00e9s de um Sistema Multiagente: Desenvolvimento e Aplica\u00e7oes. In Este documento re\u00fane os trabalhos apresentados nas sess\u00f5es t\u00e9cnicas da 18\u00aa edi\u00e7\u00e3o do Workshop-Escola de Sistemas de Agentes, Seus Ambientes e Aplica\u00e7\u00f5es\u2013Wesaac 2024, realizado na Universidade de Bras\u00edlia, entre 14 e 16 de agosto de 2024. Durante as sess\u00f5es t\u00e9cnicas, foram apresentados 21 artigos que (p. 73).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32688, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Flores Brice\u00f1o, F. (2024). Variantes del modelo de Deffuant para din\u00e1mica de opini\u00f3n en poblaciones estructuradas (Master's thesis).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32689, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Garc\u00eda-Bouza Garc\u00eda, L. A. (2024). Causas del hundimiento de Albert Rivera tras las elecciones del 10-N (2019): ideolog\u00eda, discurso y estrategia pol\u00edtica del l\u00edder de ciudadanos en twitter.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32690, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Garz\u00f3n L\u00f3pez, M. M. Metaheur\u00edstica inspirada en Inteligencia Colectiva humana para problemas de optimizaci\u00f3n num\u00e9rica continua.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 32691, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Gaudou, B., & Adam, C. (2024, November). Une enqu\u00eate sur les perceptions de la mobilit\u00e9 pour informer un simulateur multi-agent de choix modal. In Les 32\u00e8mes Journ\u00e9es Francophones sur les Syst\u00e8mes Multi-Agents (JFSMA 2024).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Perception, Computer Science, Miscellaneous" + }, + { + "id": 32692, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Grande Avalos, F. J. Modelado basado en agentes para el estudio de la din\u00e1mica poblacional de Ctenocephalides felis en ambientes dom\u00e9sticos. Rena\u0142i.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 32693, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Herrera Salgado, C. A. (2024). Impacto del liderazgo y transformacional en seguridad y el coaching sobre la cultura de seguridad en el sector minero en Antioquia.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32694, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Hidalgo, \u00c1. L. N., Valbuena, S. B., & Robayo, D. \u00c1. (2024). Las organizaciones como proceso evolutivo de conocimiento: perspectivas para su aplicaci\u00f3n en el estudio del narcotr\u00e1fico. Revista Criminalidad, 66(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32695, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Huanachin Ttito, H. L. (2024). Implementaci\u00f3n de comunidades de aprendizaje profesionales en CETPRO de la UGEL 06: percepciones y desaf\u00edos.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32696, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Jaramillo, M. L., & Andrade, M. C. Herramientas digitales para la ense\u00f1anza de la programaci\u00f3n en el \u00e1mbito educativo.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 32697, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "JIM\u00c9NEZ, N. H., AGUDELO, A. M. M., & BOTERO, S. L. H\u00c9CTOR OLASOLO BEATRIZ GOENA VIVES.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 32698, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Junior, G. T., de Macedo, W. C., Santos, B. L., Coelho, J. V. R., & Neto, V. V. G. Modelagem e Simula\u00e7ao de Evacua\u00e7oes de Emerg\u00eancia em Est\u00e1dios: Uma Abordagem Baseada em Agentes utilizando NetLogo.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Modeling, Simulation, NetLogo" + }, + { + "id": 32699, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Lengruber, H. (2024). Estrat\u00e9gias pedag\u00f3gicas e recursos educacionais para o ensino de computa\u00e7\u00e3o para alunos com defici\u00eancia visual: uma revis\u00e3o sistem\u00e1tica de literatura.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 32700, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Lanza, E. Predicci\u00f3n de Latencia en Microservicios con Modelos de Deep Learning. CACIC2024.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 32701, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "L\u00f3pez Rivera, Y. M.\u00a0Un modelo estoc\u00e1stico en cadenas de suministro agroalimentaria resilientes con alcance de exportaci\u00f3n. Caso de estudio aguacate Hass\u00a0(Doctoral dissertation, Universidad Nacional de Colombia).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32702, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Neves, J. E. D. A. (2024).\u00a0Minera\u00e7\u00e3o de dados aplicada a simula\u00e7\u00e3o de cen\u00e1rios complexos em sistemas multiagentes\u00a0(Doctoral dissertation).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32703, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Pobuda, P. (2024). El gemelo digital de la econom\u00eda: Herramienta propuesta para el dise\u00f1o y la evaluaci\u00f3n de pol\u00edticas. Propuestas para el Desarrollo, 8(VIII), 133-144.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32704, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Rebelato, J. G. B., Tacla, C. A., & Lugo, G. G. Abordagens multiagentes para resili\u00eancia e reestabelecimento do fornecimento de energia el\u00e9trica: Uma perspectiva log\u00edstica na colabora\u00e7\u00e3o entre bases de atendimento durante eventos clim\u00e1ticos severos. In Este documento re\u00fane os trabalhos apresentados nas sess\u00f5es t\u00e9cnicas da 18\u00aa edi\u00e7\u00e3o do Workshop-Escola de Sistemas de Agentes, Seus Ambientes e Aplica\u00e7\u00f5es\u2013Wesaac 2024, realizado na Universidade de Bras\u00edlia, entre 14 e 16 de agosto de 2024. Durante as sess\u00f5es t\u00e9cnicas, foram apresentados 21 artigos que (p. 27).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32705, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Roddeck, W. (2024). Wirtschaftssysteme und stochastische Prozesse. In Die Welt der Modelle und Simulationen: Wie der Mensch seit alters her versucht die Zukunft vorherzusagen (pp. 137-158). Wiesbaden: Springer Fachmedien Wiesbaden.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Economics, Miscellaneous" + }, + { + "id": 32706, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Rodr\u00edguez, R. A. L. (2024). Antropolog\u00eda y medici\u00f3n demogr\u00e1fica en el Estado multicultural colombiano. Tabula Rasa, (52), 13-43.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Miscellaneous" + }, + { + "id": 32707, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Rouchier, J. (2024). L\u2019\u00e9thique des mod\u00e8les de simulation: une question d\u2019interpr\u00e9tation?. L'Ann\u00e9e sociologique, 74(2), 495-527.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ethics, Interpretation" + }, + { + "id": 32708, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "SALAS, D. U. LA L\u00daDICA Y SIMULACI\u00d3N COMO HERRAMIENTAS PARA LA EDUCACI\u00d3N AMBIENTAL ESTUDIO DE CASO: PROBLEM\u00c1TICA DE PEQUE\u00d1OS PRODUCTORES AGR\u00cdCOLAS DE COLOMBIA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 32709, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Salinas, \u00c1. J. M. (2024). Algunas implicaciones en la l\u00f3gica sociol\u00f3gica al usar la inteligencia artificial.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32710, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Sampaio, F. F. (2024). A Modelagem Computacional no Ensino: Apresenta\u00e7\u00e3o e Reflex\u00f5es. Medi@ \u00e7\u00f5es, 12(2), 147-157.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32711, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Santos, A. R., & Santos, F. Introductory Guide to Agent-Based Simulation Development on the GAMA Platform 2. In Este documento re\u00fane os trabalhos apresentados nas sess\u00f5es t\u00e9cnicas da 18\u00aa edi\u00e7\u00e3o do Workshop-Escola de Sistemas de Agentes, Seus Ambientes e Aplica\u00e7\u00f5es\u2013Wesaac 2024, realizado na Universidade de Bras\u00edlia, entre 14 e 16 de agosto de 2024. Durante as sess\u00f5es t\u00e9cnicas, foram apresentados 21 artigos que (p. 96).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32712, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Silva, T. V. F. Jogos S\u00e9rios Com Temas Ambientais: Cen\u00e1rios, Formatos E Aplica\u00e7\u00f5es. Available at SSRN 5063745.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32713, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Sosa, A. Z., & Rodr\u00edguez, L. G. R. (2024). Las Redes Sociales No Digitales en la Acci\u00f3n Colectiva: Modelo Basado en Agentes. Psicumex, 14, 1-32.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 32714, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Vargas-Alejo, V., Montero-Moguel, L., & Reyes-Rodr\u00edguez, A. (2024). Evoluci\u00f3n de Sistemas Conceptuales Durante un Programa de Actualizaci\u00f3n Docente Basado en Modelaci\u00f3n Matem\u00e1tica. Bolema: Boletim de Educa\u00e7\u00e3o Matem\u00e1tica, 38, e230198.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32715, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Zonas, C., & De, M. D. E. Agenda Ambiental Para Focalizar Acciones De Intervenci\u00f3n en Las Ciudades Que Componen Las Tres Zonas Metropolitanas Del Estado De Hidalgo: Pachuca, Tula Y Tulancingo.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Urban Studies" + }, + { + "id": 32716, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Correia, L. G. A influ\u00eancia de autocita\u00e7\u00f5es de peri\u00f3dicos no Fator de Impacto: uma an\u00e1lise a partir da simula\u00e7\u00e3o de redes sociais acad\u00eamicas.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32717, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Cukla, A. R., & Mota, F. P. Vis\u00e3o computacional em a\u00e7\u00e3o e sistemas multiagentes.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 32718, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "de Azevedo, G. T. (2024). S\u00f3lidos de Revolu\u00e7\u00e3o e Produ\u00e7\u00e3o de Sorvetes Geom\u00e9tricos: Forma\u00e7\u00e3o em Matem\u00e1tica e Pensamento Computacional. REMATEC, 19(47), e2024038-e2024038.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Mathematics, Computer Science, Miscellaneous" + }, + { + "id": 32719, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Gispert Segu\u00e9s, S. (2024). Modelitzaci\u00f3 i estudi de patrons de mobilitat amb agents. Cas aplicat a Terrassa (Bachelor's thesis, Universitat Polit\u00e8cnica de Catalunya).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32720, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "\u0627\u0645\u0627\u0645\u06cc, & \u062f\u0647\u0642\u0627\u0646\u06cc \u0633\u0627\u0646\u06cc\u062c. (2024). \u0628\u0631\u0631\u0633\u06cc \u0645\u0633\u06cc\u0631 \u0631\u0641\u062a\u0627\u0631 \u0648 \u0622\u0633\u06cc\u0628\u200c\u0634\u0646\u0627\u0633\u06cc \u0628\u0647\u0631\u0647\u200c\u0628\u0631\u062f\u0627\u0631\u06cc \u0627\u0632 \u0645\u0646\u0627\u0628\u0639 \u0622\u0628 \u062f\u0634\u062a \u0645\u06cc\u0627\u0646\u062f\u0648\u0622\u0628 \u0628\u0627 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0631\u0648\u06cc\u06a9\u0631\u062f ABM-FTA. \u067e\u0698\u0648\u0647\u0634 \u0622\u0628 \u0627\u06cc\u0631\u0627\u0646.\u200e", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32721, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "\u062e\u0632\u0627\u0639\u06cc\u060c \u0635\u0641\u0627 \u0648 \u0646\u062c\u0641\u06cc\u0627\u0646\u06cc. (2024). \u0627\u0631\u0632\u06cc\u0627\u0628\u06cc \u062a\u062e\u0644\u06cc\u0647 \u0627\u0636\u0637\u0631\u0627\u0631\u06cc \u0645\u062c\u062a\u0645\u0639\u200c\u0647\u0627\u06cc \u0645\u0633\u06a9\u0648\u0646\u06cc \u0628\u0627 \u0633\u0627\u062e\u062a\u0645\u0627\u0646\u200c\u0647\u0627\u06cc \u0628\u0644\u0646\u062f (\u0645\u0637\u0627\u0644\u0639\u0647 \u0645\u0648\u0631\u062f\u06cc: \u0634\u0647\u0631\u06a9 \u067e\u0648\u0646\u06a9 \u0632\u0646\u062c\u0627\u0646). \u0645\u062c\u0644\u0647 \u0645\u062f\u06cc\u0631\u06cc\u062a \u0627\u0648\u0631\u0698\u0627\u0646\u0633.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 32722, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "\u064a\u0648\u0633\u0641 \u0628\u0646 \u0641\u0631\u0627\u062c \u0627\u0644\u0641\u0631\u0627\u062c. (2024). \u0628\u0631\u0646\u0627\u0645\u062c \u062a\u0637\u0648\u0631 \u0645\u0647\u0646\u064a \u0642\u0627\u0626\u0645 \u0639\u0644\u0649 \u0627\u0644\u0646\u0645\u0630\u062c\u0629 \u0627\u0644\u0628\u064a\u0626\u064a\u0629 \u0648\u062f\u0648\u0631\u0647 \u0641\u064a \u062a\u0639\u0632\u064a\u0632 \u062a\u0635\u0648\u0631\u0627\u062a \u0645\u0639\u0644\u0645\u064a \u0627\u0644\u0639\u0644\u0648\u0645 \u0646\u062d\u0648 \u0645\u0646\u0647\u062c\u064a\u0629 STEAM: \u062f\u0631\u0627\u0633\u0629 \u0646\u0648\u0639\u064a\u0629.\u00a0\u0645\u062c\u0644\u0629 \u0627\u0644\u0639\u0644\u0648\u0645 \u0627\u0644\u062a\u0631\u0628\u0648\u064a\u0629 \u0648 \u0627\u0644\u0646\u0641\u0633\u064a\u0629,\u00a017(2), 597-563.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 32723, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Kongkhunthod, N., Praneetpolgrang, P., & Sirinam, P. (2024). \u0e23\u0e30\u0e1a\u0e1a \u0e15\u0e23\u0e27\u0e08 \u0e08\u0e31\u0e1a \u0e01\u0e32\u0e23 \u0e1a\u0e38\u0e01\u0e23\u0e38\u0e01 \u0e17\u0e32\u0e07 \u0e44\u0e0b\u0e40\u0e1a\u0e2d\u0e23\u0e4c \u0e41\u0e1a\u0e1a \u0e40\u0e23\u0e35 \u0e22\u0e25 \u0e44\u0e17 \u0e21\u0e4c \u0e14\u0e49\u0e27\u0e22 \u0e01\u0e32\u0e23 \u0e40\u0e23\u0e35\u0e22\u0e19 \u0e23\u0e39\u0e49 \u0e02\u0e2d\u0e07 \u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07 \u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a \u0e40\u0e2a\u0e23\u0e34\u0e21 \u0e2a\u0e23\u0e49\u0e32\u0e07 \u0e04\u0e27\u0e32\u0e21 \u0e41\u0e02\u0e47\u0e07\u0e41\u0e01\u0e23\u0e48\u0e07 \u0e41\u0e25\u0e30 \u0e21\u0e35 \u0e1b\u0e23\u0e30\u0e2a\u0e34\u0e17\u0e18\u0e34\u0e20\u0e32\u0e1e \u0e14\u0e49\u0e32\u0e19 \u0e01\u0e32\u0e23 \u0e23\u0e31\u0e01\u0e29\u0e32 \u0e04\u0e27\u0e32\u0e21 \u0e21\u0e31\u0e48\u0e19\u0e04\u0e07 \u0e1b\u0e25\u0e2d\u0e14\u0e20\u0e31\u0e22 \u0e44\u0e0b\u0e40\u0e1a\u0e2d\u0e23\u0e4c \u0e43\u0e19 \u0e2d\u0e07\u0e04\u0e4c\u0e01\u0e23. Journal of Engineering and Digital Technology (JEDT), 12(2), 95-110.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 32724, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "\u9db4\u5cf6\u5f70. (2024). \u5206\u6563\u52d5\u7684\u907f\u96e3\u8a98\u5c0e\u30b7\u30b9\u30c6\u30e0\u306b\u304a\u3051\u308b\u6545\u969c\u767a\u751f\u304c\u907f\u96e3\u8a98\u5c0e\u6027\u80fd\u306b\u4e0e\u3048\u308b\u5f71\u97ff. \u4eba\u5de5\u77e5\u80fd\u5b66\u4f1a\u7b2c\u4e8c\u7a2e\u7814\u7a76\u4f1a\u8cc7\u6599, 2024(DOCMAS-026), 03.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Fault, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32725, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "\u9648\u6b63\u5b81, & \u5434\u4eae. (2024). \u4e24\u6816\u767b\u9646\u5782\u76f4\u6295\u9001\u6307\u6325\u63a7\u5236\u6548\u80fd\u8bc4\u4f30\u6a21\u578b\u7814\u7a76. \u8230\u8239\u7535\u5b50\u5de5\u7a0b, 44(4), 24-27.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32726, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "\u80e1\u666f\u535a, \u6768\u514b\u5dcd, \u848b\u5e73, & \u59dc\u6c5f. (2024). \u57fa\u4e8e\u590d\u6742\u9002\u5e94\u6027\u7406\u8bba\u7684\u65e0\u4eba\u673a\u4f5c\u6218\u8bd5\u9a8c\u4ea4\u4e92\u534f\u4f5c\u95ee\u9898\u7814\u7a76. \u8230\u8239\u7535\u5b50\u5de5\u7a0b, 44(4), 6-10.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32727, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "\u5bae\u5d0e\u6b63\u4e5f. (2024). \u666e\u53ca\u901f\u5ea6\u3068\u4ea4\u53cb\u95a2\u4fc2: \u9ad8\u9f62\u8005\u306e\u30a4\u30ce\u30d9\u30fc\u30b7\u30e7\u30f3\u63a1\u7528\u306f\u306a\u305c\u9045\u3044\u306e\u304b.\u00a0\u7814\u7a76 \u6280\u8853 \u8a08\u753b,\u00a038(4), 476-493.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32728, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "\u66fe\u8363\u71ca, \u674e\u5f3c\u7a0b, \u9648\u521a, & \u718a\u5c27. (2024). \u57fa\u4e8e\u7ebf\u4e0a\u7ebf\u4e0b\u8d85\u7f51\u7edc\u6a21\u578b\u7684\u8206\u8bba\u6f14\u5316\u4eff\u771f\u5206\u6790. Application Research of Computers/Jisuanji Yingyong Yanjiu, 41(2), 507-514.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32729, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "\u6811\u5efa\u9a6c, \u6dd1\u5a9b\u6768, \u745b\u6ed5, & \u4f73\u8d3a\u5f20. (2024). \u4f9b\u5e94\u94fe\u91d1\u878d\u4e2d\u533a\u5757\u94fe\u6280\u672f\u7684\u6269\u6563\u6a21\u578b\u4eff\u771f\u7814\u7a76\u2014\u2014\u4ee5\u6838\u5fc3\u4f01\u4e1a\u4e3a\u4f8b.\u00a0\u8d22\u7ecf\u4e0e\u7ba1\u7406\u00b7 \u56fd\u9645\u5b66\u672f\u8bba\u575b,\u00a03(7).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32730, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Burghardt, M., Ruth, N., & Niekler, A. Einleitung: Zur Rolle von Tools in den Digital Humanities.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32731, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Mudrini\u0107, V. (2024). Primjena sustava Replit u osnovno\u0161kolskoj nastavi informatike u domeni ra\u010dunalnog razmi\u0161ljanja i programiranja (Doctoral dissertation, University of Pula. Faculty of Informatics in Pula).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, History, Miscellaneous" + }, + { + "id": 32732, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "\u010cern\u00fd, J. H. K. (2024). Agentov\u011b orientovan\u00e9 modelov\u00e1n\u00ed revolu\u010dn\u00edch proces\u016f1. Sociol\u00f3gia, 56(3), 189-219.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 32733, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "\u5927\u9808\u8cc0\u662d\u5f66. (2024). \u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u6307\u5411\u8a00\u8a9e\u306e\u904e\u53bb\u30fb\u73fe\u5728\u30fb\u672a\u6765.\u00a0\u4eba\u5de5\u77e5\u80fd,\u00a039(3), 335-341.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 32734, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "\u4f50\u3005\u6728\u590f\u8f1d, & \u30b5\u30b5\u30ad\u30ca\u30c4\u30ad. (2024). \u30de\u30eb\u30c1\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u30b7\u30df\u30e5\u30ec\u30fc\u30b7\u30e7\u30f3\u7528\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af\u306e\u958b\u767a\u3068\u8a55\u4fa1.\u00a0\u4eba\u9593\u60c5\u5831\u5b66\u7814\u7a76\u79d1\u5e74\u8a8c, (29), 82-85.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 32735, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "\u76f8\u6fa4\u666f, & \u4e0a\u91ce\u7384\u592a. (2024). \u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u30d9\u30fc\u30b9\u30e2\u30c7\u30eb\u306b\u304a\u3051\u308b\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u306e\u7570\u8cea\u6027\u3092\u8868\u73fe\u3059\u308b\u78ba\u7387\u5206\u5e03\u306e\u63a8\u5b9a. \u4eba\u5de5\u77e5\u80fd\u5b66\u4f1a\u8ad6\u6587\u8a8c, 39(5), A-N82_1.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Probability, Computer Science, Economics, Archaeology, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32736, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "\uc591\uc724\uc601, & \uae40\uc7ac\uadfc. (2024). \uc0dd\ud0dc\ud559 NetLogo \uc2e4\uc2b5 \ud504\ub85c\uadf8\ub7a8 \uac1c\ubc1c\uc744 \uc704\ud574 \uc608\ube44 \uc0dd\ubb3c\uad50\uc0ac\ub4e4\uc774 \uacaa\uc740 \uc5b4\ub824\uc6c0 \ubc0f \uac1c\uc120\uc810 \ud0d0\uc0c9. \uc0dd\ubb3c\uad50\uc721 (\uad6c \uc0dd\ubb3c\uad50\uc721\ud559\ud68c\uc9c0), 52(1), 13-31.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32737, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Diallo, A. O., Doniec, A., Lozenguez, G., & Mandiau, R. (2024). Approche centr\u00e9e agent pour l\u2019intermodalit\u00e9 bas\u00e9e sur des donn\u00e9es r\u00e9elles. Revue Ouverte d'Intelligence Artificielle, 5(1), 95-129.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32738, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "DIARRA, A., KONE, M., & BOUHALOUAN, D. (2024). Outil Intelligent Distribu\u00e9 pour l\u2019\u00e9laboration de pronostics m\u00e9dicaux-MedProMas (Doctoral dissertation).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32739, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "\u0413\u0435\u0440\u0435\u043d\u043a\u043e, \u0421. (2024). \u041a\u043e\u0433\u043d\u0456\u0442\u0438\u0432\u043d\u043e-\u0444\u0443\u043d\u043a\u0446\u0456\u043e\u043d\u0430\u043b\u044c\u043d\u0438\u0439 \u043f\u043e\u0442\u0435\u043d\u0446\u0456\u0430\u043b \u0448\u0442\u0443\u0447\u043d\u043e\u0433\u043e \u0456\u043d\u0442\u0435\u043b\u0435\u043a\u0442\u0443 \u0432 \u0433\u0440\u0430\u0444\u0456\u0447\u043d\u043e\u043c\u0443 \u0434\u0438\u0437\u0430\u0439\u043d\u0456.\u00a0Scientific Collection \u00abInterConf\u00bb, 192, 123-125.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 32740, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "\u0417\u0456\u043d\u043e\u0432\u2019\u0454\u0432\u0430, \u041e. \u0413. (2024). \u0406\u043c\u0456\u0442\u0430\u0446\u0456\u0439\u043d\u0435 \u043c\u043e\u0434\u0435\u043b\u044e\u0432\u0430\u043d\u043d\u044f \u0432 \u043e\u0441\u0432\u0456\u0442\u043d\u044c\u043e\u043c\u0443 \u043f\u0440\u043e\u0446\u0435\u0441\u0456 \u043f\u0456\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0438 \u0406\u0422-\u0441\u043f\u0435\u0446\u0456\u0430\u043b\u0456\u0441\u0442\u0456\u0432.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32741, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "\u0410\u0444\u0430\u043d\u0430\u0441\u044c\u0435\u0432, \u0410. \u041f., & \u041a\u043e\u043b\u043c\u043e\u0433\u043e\u0440\u043e\u0432\u0430, \u0421. \u0421. \u0412\u041e\u0417\u041c\u041e\u0416\u041d\u041e\u0421\u0422\u042c \u041f\u0420\u0418\u041c\u0415\u041d\u0415\u041d\u0418\u042f NETLOGO \u0412 \u0417\u0410\u0414\u0410\u0427\u0415 \u0421\u0411\u041e\u0420\u0410 \u0414\u0410\u041d\u041d\u042b\u0425. \u0421\u0430\u043d\u043a\u0442-\u041f\u0435\u0442\u0435\u0440\u0431\u0443\u0440\u0433\u0441\u043a\u0438\u0439 \u0433\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439 \u043b\u0435\u0441\u043e\u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442 \u0438\u043c. \u0421\u041c \u041a\u0438\u0440\u043e\u0432\u0430 \u041a\u041e\u041d\u0424\u0415\u0420\u0415\u041d\u0426\u0418\u042f: \u0410\u041a\u0422\u0423\u0410\u041b\u042c\u041d\u042b\u0415 \u0412\u041e\u041f\u0420\u041e\u0421\u042b \u041b\u0415\u0421\u041d\u041e\u0413\u041e \u0425\u041e\u0417\u042f\u0419\u0421\u0422\u0412\u0410 \u0421\u0430\u043d\u043a\u0442-\u041f\u0435\u0442\u0435\u0440\u0431\u0443\u0440\u0433, 09\u201310 \u043d\u043e\u044f\u0431\u0440\u044f 2023 \u0433\u043e\u0434\u0430 \u041e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0442\u043e\u0440\u044b: \u0421\u0430\u043d\u043a\u0442-\u041f\u0435\u0442\u0435\u0440\u0431\u0443\u0440\u0433\u0441\u043a\u0438\u0439 \u0433\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439 \u043b\u0435\u0441\u043e\u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442 \u0438\u043c. \u0421\u041c \u041a\u0438\u0440\u043e\u0432\u0430.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Miscellaneous" + }, + { + "id": 32742, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "\u0412\u043b\u0430\u0441\u043e\u0432, \u041c. \u0410., & \u0411\u043e\u043b\u044c\u0448\u0430\u043a\u043e\u0432, \u0420. \u0421. (2024). \u041e\u0431\u0437\u043e\u0440 \u0421\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e\u0433\u043e \u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f \u0420\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043e\u043a \u0412 \u041e\u0431\u043b\u0430\u0441\u0442\u0438 \u041c\u043e\u0434\u0435\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0416\u0435\u043b\u0435\u0437\u043d\u043e\u0434\u043e\u0440\u043e\u0436\u043d\u044b\u0445 \u0421\u0442\u0430\u043d\u0446\u0438\u0439. \u042d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u044b\u0439 \u041d\u0430\u0443\u0447\u043d\u044b\u0439 \u0416\u0443\u0440\u043d\u0430\u043b\" \u041c\u043e\u043b\u043e\u0434\u0430\u044f \u041d\u0430\u0443\u043a\u0430 \u0421\u0438\u0431\u0438\u0440\u0438\", (2 (24)).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32743, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "\u0421\u0438\u043c\u0430\u0432\u043e\u043d\u044f\u043d, \u041a. \u042e. \u041f\u0420\u041e\u0415\u041a\u0422\u0418\u0420\u041e\u0412\u0410\u041d\u0418\u0415 \u0418\u041d\u0424\u041e\u0420\u041c\u0410\u0426\u0418\u041e\u041d\u041d\u042b\u0425 \u0421\u0418\u0421\u0422\u0415\u041c. \u041f\u0420\u041e\u0415\u041a\u0422\u0418\u0420\u041e\u0412\u0410\u041d\u0418\u0415 WEB-\u0421\u0410\u0419\u0422\u0410, \u041a\u0410\u041a \u0418\u041d\u0424\u041e\u0420\u041c\u0410\u0426\u0418\u041e\u041d\u041d\u041e\u0419 \u0421\u0418\u0421\u0422\u0415\u041c\u042b.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 32744, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "\u0413\u0430\u0439\u043d\u0430\u043d\u043e\u0432, \u0414. \u0410., \u041c\u0438\u0433\u0440\u0430\u043d\u043e\u0432\u0430, \u041b. \u0418., & \u0421\u0430\u0439\u0444\u0443\u043b\u043b\u0438\u043d\u0430, \u041b. \u0414. (2024). \u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435\u043c \u0438\u043d\u0434\u0438\u0432\u0438\u0434\u043e\u0432 \u043d\u0430 \u0440\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u043c \u0440\u044b\u043d\u043a\u0435 \u0442\u0440\u0443\u0434\u0430: \u043f\u043e\u0434\u0445\u043e\u0434\u044b, \u043c\u043e\u0434\u0435\u043b\u0438 \u0438 \u043f\u0435\u0440\u0441\u043f\u0435\u043a\u0442\u0438\u0432\u044b. Ars Administrandi (\u0418\u0441\u043a\u0443\u0441\u0441\u0442\u0432\u043e \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f), 459-480.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32745, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "\u0413\u043e\u0441\u0442\u0435\u043d\u0438\u043d\u0430, \u0412. \u0418., \u041c\u0435\u043b\u044c\u043d\u0438\u043a\u043e\u0432, \u0421. \u041b., \u041b\u0430\u043f\u044b\u043a\u043e, \u0422. \u041f., \u042e\u0434\u0438\u043d\u0430, \u0415. \u041d., & \u041b\u0438\u043c\u043e\u043d\u043e\u0432\u0430, \u041c. \u0410. (2024). \u0420\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043c\u0443\u043b\u044c\u0442\u0438\u0430\u0433\u0435\u043d\u0442\u043d\u044b\u0445 \u0441\u0438\u043c\u0443\u043b\u044f\u0446\u0438\u043e\u043d\u043d\u044b\u0445 \u043c\u043e\u0434\u0435\u043b\u0435\u0439 \u0434\u043b\u044f \u0438\u0437\u0443\u0447\u0435\u043d\u0438\u044f \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441\u0442\u0435\u0439\u043a\u0445\u043e\u043b\u0434\u0435\u0440\u043e\u0432 \u0432 \u0441\u0444\u0435\u0440\u0435 \u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0438 \u043e\u0431\u0443\u0447\u0435\u043d\u0438\u044f \u0432 \u0443\u0433\u043e\u043b\u044c\u043d\u043e\u0439 \u043f\u0440\u043e\u043c\u044b\u0448\u043b\u0435\u043d\u043d\u043e\u0441\u0442\u0438. \u0423\u0433\u043e\u043b\u044c, 1180(5), 115-123.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32746, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "\u041d\u0430\u0431\u0438\u0435\u0432\u0430, \u0410. \u0418., & \u0418\u0441\u0445\u0430\u043a\u043e\u0432, \u0410. \u0420. \u041c\u0423\u041b\u042c\u0422\u0418\u0410\u0413\u0415\u041d\u0422\u041d\u041e\u0415 \u041c\u041e\u0414\u0415\u041b\u0418\u0420\u041e\u0412\u0410\u041d\u0418\u0415 \u042d\u041c\u0415\u0420\u0414\u0416\u0415\u041d\u0422\u041d\u041e\u0413\u041e \u041f\u041e\u0412\u0415\u0414\u0415\u041d\u0418\u042f \u0422\u0415\u041f\u041b\u041e\u0412\u042b\u0425 \u0416\u0423\u041a\u041e\u0412.\u00a0\u0411\u0411\u041a 30+ 22.1 \u042238, 32.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 32747, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "\u041a\u0430\u043b\u044f\u0433\u0438\u043d\u0430, \u0414. \u0410., \u0418\u043b\u043b\u0430\u0440\u0438\u043e\u043d\u043e\u0432\u0430, \u0412. \u0418., & \u0428\u0430\u0440\u043d\u0438\u043d, \u0418. \u0410. (2024) \u041f\u0440\u043e\u0435\u043a\u0442\u043d\u044b\u0439 \u041f\u043e\u0434\u0445\u043e\u0434 \u041a \u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044e \u041b\u043e\u0433\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u043c\u0438 \u041f\u0440\u043e\u0446\u0435\u0441\u0441\u0430\u043c\u0438 \u0412 \u0423\u0441\u043b\u043e\u0432\u0438\u044f\u0445 \u0426\u0438\u0444\u0440\u043e\u0432\u043e\u0439 \u042d\u043a\u043e\u043d\u043e\u043c\u0438\u043a\u0438.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32748, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "\u041a\u0443\u0437\u043d\u0435\u0446\u043e\u0432, \u0410. \u0412., \u0421\u0435\u0440\u043e\u0432, \u041d. \u0410., & \u0410\u0434\u043e\u0434\u0438\u043d\u0430, \u041c. \u041c. (2024). \u0420\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b \u0434\u043b\u044f \u043c\u043d\u043e\u0433\u043e\u0430\u0433\u0435\u043d\u0442\u043d\u043e\u0433\u043e \u043c\u043e\u0434\u0435\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0438\u0441\u0442\u043e\u0440\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u0441\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432. \u0412\u0435\u0441\u0442\u043d\u0438\u043a \u0412\u0413\u0423. \u0421\u0435\u0440\u0438\u044f: \u0421\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439 \u0430\u043d\u0430\u043b\u0438\u0437 \u0438 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0435 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438, (3), 17-32.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32749, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "\u041c\u0430\u0441\u043b\u043e\u0431\u043e\u0435\u0432, \u0410. \u0412. (2024). \u041e\u0431\u043e\u0431\u0449\u0435\u043d\u043d\u0430\u044f \u041c\u0435\u0442\u043e\u0434\u043e\u043b\u043e\u0433\u0438\u044f \u041f\u043e\u0441\u0442\u0440\u043e\u0435\u043d\u0438\u044f \u041c\u0443\u043b\u044c\u0442\u0438\u0430\u0433\u0435\u043d\u0442\u043d\u044b\u0445 \u0421\u0438\u0441\u0442\u0435\u043c \u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0416\u0438\u0437\u043d\u0435\u0441\u043f\u043e\u0441\u043e\u0431\u043d\u043e\u0441\u0442\u044c\u044e \u041a\u0440\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u0418\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440. \u041d\u0430\u0434\u0435\u0436\u043d\u043e\u0441\u0442\u044c \u0418 \u041a\u0430\u0447\u0435\u0441\u0442\u0432\u043e \u0421\u043b\u043e\u0436\u043d\u044b\u0445 \u0421\u0438\u0441\u0442\u0435\u043c, (2 (46)), 134-146.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32750, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "\u041c\u0430\u0440\u043a\u0456\u043d\u0430, \u041b. \u041c., \u0413\u0443\u043c\u0435\u043d\u044e\u043a, \u041b. \u041e., \u0421\u0430\u0446\u0438\u043a, \u0412. \u041e., & \u0413\u0443\u043c\u0435\u043d\u044e\u043a, \u041f. \u041e. \u0417\u0410\u0421\u0422\u041e\u0421\u0423\u0412\u0410\u041d\u041d\u042f \u0428\u0422\u0423\u0427\u041d\u041e\u0413\u041e \u0406\u041d\u0422\u0415\u041b\u0415\u041a\u0422\u0423 \u0412 \u041c\u041e\u0414\u0415\u041b\u042e\u0412\u0410\u041d\u041d\u0406 \u0412\u2019\u042f\u0417\u041a\u041e\u0421\u0422\u0406 \u0417\u0410\u041c\u0406\u0421\u0423 \u0421\u041f\u0418\u0420\u0422\u041e\u0412\u041e\u0413\u041e \u0412\u0418\u0420\u041e\u0411\u041d\u0418\u0426\u0422\u0412\u0410 \u041d\u0410 \u041e\u0421\u041d\u041e\u0412\u0406 \u041c\u0423\u041b\u042c\u0422\u0418\u0410\u0413\u0415\u041d\u0422\u041d\u0418\u0425 \u0421\u0418\u0421\u0422\u0415\u041c. \u041c\u0418 \u0420\u0410\u0414\u0406 \u0412\u0406\u0422\u0410\u0422\u0418 \u0412\u0410\u0421 \u0423 \u041b\u041d\u0422\u0423!, 11.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32751, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "\u041c\u0438\u0445\u0430\u0439\u043b\u043e\u0432\u0438\u0447, \u041d. \u0420. \u041a. \u0421., & \u0421\u0438\u043c\u0430\u0432\u043e\u043d\u044f\u043d, \u041a. \u042e. (2024). \u041f\u0420\u041e\u0415\u041a\u0422\u0418\u0420\u041e\u0412\u0410\u041d\u0418\u0415 \u0418\u041d\u0424\u041e\u0420\u041c\u0410\u0426\u0418\u041e\u041d\u041d\u042b\u0425 \u0421\u0418\u0421\u0422\u0415\u041c. \u041f\u0420\u041e\u0415\u041a\u0422\u0418\u0420\u041e\u0412\u0410\u041d\u0418\u0415 WEB-\u0421\u0410\u0419\u0422\u0410, \u041a\u0410\u041a \u0418\u041d\u0424\u041e\u0420\u041c\u0410\u0426\u0418\u041e\u041d\u041d\u041e\u0419 \u0421\u0418\u0421\u0422\u0415\u041c\u042b. \u0421\u0442\u043e\u043b\u044b\u043f\u0438\u043d\u0441\u043a\u0438\u0439 \u0432\u0435\u0441\u0442\u043d\u0438\u043a, 6(10).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Miscellaneous" + }, + { + "id": 32752, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "\u041c\u043e\u043b\u043e\u0434\u0435\u0446\u044c\u043a\u0430, \u041a., & \u0412\u0435\u0440\u0435\u0442\u044e\u043a, \u0421. (2024). \u0406\u043c\u0456\u0442\u0430\u0446\u0456\u0439\u043d\u0430 \u043c\u043e\u0434\u0435\u043b\u044c \u043f\u043e\u0448\u0438\u0440\u0435\u043d\u043d\u044f \u0432\u0456\u0440\u0443\u0441\u0443 \u0432 \u043c\u0435\u0440\u0435\u0436\u0456 \u0437 \u043f\u0440\u0456\u043e\u0440\u0438\u0442\u0435\u0442\u043d\u0438\u043c \u043f\u0440\u0438\u0454\u0434\u043d\u0430\u043d\u043d\u044f\u043c. \u041e\u0440\u0433\u0430\u043d\u0456\u0437\u0430\u0442\u043e\u0440 \u043a\u043e\u043d\u0444\u0435\u0440\u0435\u043d\u0446\u0456\u0457, 39.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 32753, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "\u041f\u043e\u043f\u043e\u0432, \u0410. \u0410. \u0418\u0421\u041f\u041e\u041b\u042c\u0417\u041e\u0412\u0410\u041d\u0418\u0415 \u041c\u0423\u041b\u042c\u0422\u0418\u0410\u0413\u0415\u041d\u0422\u041d\u041e\u0419 \u041c\u0415\u0422\u041e\u0414\u041e\u041b\u041e\u0413\u0418\u0418 \u0414\u041b\u042f \u041c\u041e\u0414\u0415\u041b\u0418\u0420\u041e\u0412\u0410\u041d\u0418\u042f \u0421\u0411\u041e\u0420\u0410 \u0418 \u0422\u0420\u0410\u041d\u0421\u041f\u041e\u0420\u0422\u0418\u0420\u041e\u0412\u041a\u0418 \u041e\u0422\u0425\u041e\u0414\u041e\u0412. \u0418\u043d\u0436\u0438\u043d\u0438\u0440\u0438\u043d\u0433 \u043f\u0440\u0435\u0434\u043f\u0440\u0438\u044f\u0442\u0438\u0439 \u0438 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0437\u043d\u0430\u043d\u0438\u044f\u043c\u0438, 264.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32754, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "\u041e\u0441\u043f\u0430\u043d\u043e\u0432\u0430, \u0410. \u041a. (2024). \u0411\u0411\u041a 74.3 \u042642.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 32755, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "\u0421\u0430\u0432\u0435\u043d\u043a\u043e\u0432\u0430, \u0414. \u0410. (2024) \u0420\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u0441\u043a\u043e\u0440\u0438\u043d\u0433\u043e\u0432\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0431\u0430\u043d\u043a\u0430. \u0411\u0411\u041a 1 \u041d 34, 43.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science" + }, + { + "id": 32756, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "\u0421\u0430\u0433\u0438\u043c\u043e\u0432, \u041c. \u041a. (2024). \u0423\u041f\u0420\u0410\u0412\u041b\u0415\u041d\u0418\u0415 \u041c\u041e\u0422\u0418\u0412\u0410\u0426\u0418\u0415\u0419 \u0422\u0420\u0423\u0414\u0410 \u041f\u0415\u0420\u0421\u041e\u041d\u0410\u041b\u0410 \u0413\u041e\u0421\u0423\u0414\u0410\u0420\u0421\u0422\u0412\u0415\u041d\u041d\u041e\u0419 \u0421\u041b\u0423\u0416\u0411\u042b.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32757, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "\u0428\u0430\u0433\u0430\u043b\u0456\u043d, \u041a. \u0410. (2024). \u0412\u0434\u043e\u0441\u043a\u043e\u043d\u0430\u043b\u0435\u043d\u043d\u044f \u043c\u0435\u0442\u043e\u0434\u0456\u0432 \u0437\u0430\u0445\u0438\u0441\u0442\u0443 \u0432\u0456\u0434 \u0430\u0442\u0430\u043a \u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0438 \u0456\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0443 \u0440\u0435\u0447\u0435\u0439: \u043a\u0432\u0430\u043b\u0456\u0444\u0456\u043a\u0430\u0446\u0456\u0439\u043d\u0430 (\u0431\u0430\u043a\u0430\u043b\u0430\u0432\u0440\u0441\u044c\u043a\u0430) \u0440\u043e\u0431\u043e\u0442\u0430 125 \u00ab\u041a\u0456\u0431\u0435\u0440\u0431\u0435\u0437\u043f\u0435\u043a\u0430\u00bb.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Cybersecurity \n\nArchaeology \n\nBiology \n\nComputer Science \n\nEconomics \n\nHistory \n\nPhysics \n\nChemistry \n\nSocial Science \n\nEducation \n\nEpidemiology" + }, + { + "id": 32758, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Yezhova, Y., & Maslova, N. (2024). \u0412\u0418\u041a\u041e\u0420\u0418\u0421\u0422\u0410\u041d\u041d\u042f AGENTSCRIPT \u0414\u041b\u042f \u0421\u0422\u0412\u041e\u0420\u0415\u041d\u041d\u042f \u0411\u0410\u0413\u0410\u0422\u041e\u0420\u0406\u0412\u041d\u0415\u0412\u0418\u0425 \u041c\u041e\u0414\u0415\u041b\u0415\u0419 \u0410\u0413\u0415\u041d\u0422\u041d\u041e\u0413\u041e \u041c\u041e\u0414\u0415\u041b\u042e\u0412\u0410\u041d\u041d\u042f. Scientific Papers of Donetsk National Technical University. Series:\u201cComputer Engineering and Automation\", 54-66.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Scientific Papers" + }, + { + "id": 32759, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "\u039a\u03b1\u03c1\u03c5\u03c0\u03af\u03b4\u03bf\u03c5, \u0391. (2024). \u03a4\u03b5\u03c7\u03bd\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03ad\u03c2 \u03ba\u03b1\u03b9\u03bd\u03bf\u03c4\u03bf\u03bc\u03af\u03b5\u03c2 \u03c3\u03c4\u03b7\u03bd \u03b5\u03ba\u03c0\u03b1\u03af\u03b4\u03b5\u03c5\u03c3\u03b7: \u03c0\u03c1\u03bf\u03ba\u03bb\u03ae\u03c3\u03b5\u03b9\u03c2 \u03c0\u03bf\u03c5 \u03c0\u03c1\u03bf\u03ba\u03cd\u03c0\u03c4\u03bf\u03c5\u03bd \u03bc\u03b5 \u03c4\u03b7 \u03c7\u03c1\u03ae\u03c3\u03b7 \u03c4\u03c9\u03bd \u03c4\u03b5\u03c7\u03bd\u03bf\u03bb\u03bf\u03b3\u03b9\u03ce\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b1\u03c2 \u03ba\u03b1\u03b9 \u03b5\u03c0\u03b9\u03ba\u03bf\u03b9\u03bd\u03c9\u03bd\u03b9\u03ce\u03bd (\u03a4\u03a0\u0395) \u03c3\u03c4\u03b7\u03bd \u03c0\u03c1\u03c9\u03c4\u03bf\u03b2\u03ac\u03b8\u03bc\u03b9\u03b1 \u03b5\u03ba\u03c0\u03b1\u03af\u03b4\u03b5\u03c5\u03c3\u03b7.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Technology, Education, Economics" + }, + { + "id": 32760, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "\u0e23\u0e38\u0e48\u0e07 \u0e17\u0e34\u0e27\u0e32 \u0e40\u0e14\u0e0a\u0e30 \u0e1b\u0e23\u0e32\u0e01\u0e23\u0e21, & \u0e0a\u0e31\u0e22\u0e27\u0e31\u0e12\u0e19\u0e4c \u0e43\u0e1a\u0e44\u0e21\u0e49. (2024). \u0e01\u0e32\u0e23 \u0e1b\u0e23\u0e30\u0e22\u0e38\u0e01\u0e15\u0e4c \u0e43\u0e0a\u0e49 \u0e41\u0e1a\u0e1a \u0e08\u0e33\u0e25\u0e2d\u0e07 \u0e08\u0e32\u0e01 \u0e15\u0e31\u0e27\u0e41\u0e17\u0e19 \u0e01\u0e31\u0e1a \u0e07\u0e32\u0e19 \u0e27\u0e34\u0e08\u0e31\u0e22 \u0e17\u0e32\u0e07 \u0e18\u0e38\u0e23\u0e01\u0e34\u0e08. \u0e27\u0e32\u0e23\u0e2a\u0e32\u0e23 \u0e40\u0e01\u0e29\u0e15\u0e23\u0e28\u0e32\u0e2a\u0e15\u0e23\u0e4c \u0e18\u0e38\u0e23\u0e01\u0e34\u0e08 \u0e1b\u0e23\u0e30\u0e22\u0e38\u0e01\u0e15\u0e4c, 18(28), 119-142.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Agriculture, Business, Economics, Agriculture, Statistics" + }, + { + "id": 32761, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Grospietsch, F., Stinken-R\u00f6sner, L., Renger, A., Krell, M., & Lenzer, S. (2024). Barrieren beim Betreiben naturwissen-schaftlicher Erkenntnisgewinnung und wie ihnen mit Konzepten partizipations-f\u00f6rderlicher Digitalisierung begegnet werden kann.\u00a0MNU Journal,\u00a04.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32762, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Ainurohmah, S. (2024).\u00a0Desain Ui/ux Aplikasi Sistem Lampu dan Suhu Otomatis pada Rumah Cerdas untuk Lansia\u00a0(Doctoral dissertation, Universitas Islam Indonesia).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32763, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Ardyantha, D. R., & Abidin, M. R. I. (2024). Perancangan Identitas Visual Sebagai Representasi Cv Mulya Tempe Surabaya. Barik-jurnal S1 Desain Komunikasi Visual, 6(1), 192-206.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32764, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Farrand, J., Mulyatno, I. P., & Adietya, B. A. (2024). ANALISA EVAKUASI PENUMPANG DENGAN METODE PENDEKATAN SIMULASI BERDASARKAN ATURAN IMO MSC. 1/CIRC. 1533 PADA KAPAL PENYEBRANGAN PENUMPANG 5000 GT. Jurnal Teknik Perkapalan, 12(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32765, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Hardjana, A. C. (2024). Analisis Tipografi Dalam Konten Instagram@ Disbudparkotasemarang Sebagai Penguatan City Branding Semarang Simpul Ekonomi Jawa. Nirmana, 43-49.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32766, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Abadi, B., & Haghaninia, M. (2023). Drivers of Forecasting the Behavioral Intention and Acceptance Behavior of the Hail Canon Technology (HCT): Using Logistic and System Dynamics Modeling. Chinese Geographical Science, 1-16.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Logistic and System Dynamics Modeling" + }, + { + "id": 32767, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Abdelshafie, A., Rupnik, B., & Kramberger, T. (2023). Simulated Global Empty Containers Repositioning Using Agent-Based Modelling. Systems, 11(3), 130.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32768, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Abdolhosseini, S., Ghandehari, M., Ansari, A., & Roozmand, O. (2023). Joint pricing and inventory management in a competitive market using reinforcement learning: a combination of the agent-based and simulation-optimization approaches. International Journal of Management Science and Engineering Management, 18(2), 77-87.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Computer Science, Management Science, Physics, Engineering, Mathematics" + }, + { + "id": 32769, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Adam, C. (2023). Simulating the impact of cognitive biases on the mobility transition. arXiv preprint arXiv:2302.03554.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 32770, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Adams, J. W., Duprey, M., Khan, S., Cance, J., Rice, D. P., & Bobashev, G. (2023). Examining buprenorphine diversion through a harm reduction lens: an agent-based modeling study. Harm Reduction Journal, 20(1), 150.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32771, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Addido, J., Borowczak, A. C., & Walwema, G. B. (2023). Teaching Newtonian physics with LEGO EV3 robots: An integrated STEM approach. Eurasia Journal of Mathematics, Science and Technology Education, 19(6), em2280.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Physics, Mathematics, STEM, Computer Science, Biology" + }, + { + "id": 32772, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Adu-Kankam, K. O., & Camarinha-Matos, L. M. (2023). Modeling Collaborative Behaviors in Energy Ecosystems. Computers, 12(2), 39.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 32773, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Adzinets, D., & Alooeff, E. (2023). Field Service Management (FSM) Simulation Model. International Scientific Journal \u201cIndustry 4.0\u201d, 8(6), 321-325.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32774, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Aghamohammadghasem, M., Azucena, J., Hashemian, F., Liao, H., Zhang, S., & Nachtmann, H. (2023, December). System simulation and machine learning-based maintenance optimization for an inland waterway transportation system. In\u00a02023 Winter Simulation Conference (WSC)\u00a0(pp. 267-278). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 32775, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Agnelli, J. P., Buffa, B., Knopoff, D., & Torres, G. (2023). A Spatial Kinetic Model of Crowd Evacuation Dynamics with Infectious Disease Contagion. Bulletin of Mathematical Biology, 85(4), 23.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Infectious Disease" + }, + { + "id": 32776, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ahedo, V., Santos, I., Gal\u00e1n, J. M., & Izquierdo, L. R. (2023). La identificaci\u00f3n de enlaces ausentes como competici\u00f3n Kaggle para la ense\u00f1anza de teor\u00eda de redes. Direcci\u00f3n y Organizaci\u00f3n, (79), 18-28.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32777, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ahmad, F., Shah, Z., & Al-Fagih, L. (2023). Applications of Evolutionary Game Theory in Urban Road Transport Network: A State of the Art Review. Sustainable Cities and Society, 104791.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Evolutionary Game Theory, Urban Road Transport Network, Sustainable Cities and Society" + }, + { + "id": 32778, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Aksu, B., & Aksu, M. V. (2023). Organizational Mnemonics of Gray Collar Workers: Implementing SNA, ABM, and ANT. In Management and Organizational Studies on Blue-and Gray-collar Workers: Diversity of Collars (pp. 105-117). Emerald Publishing Limited.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Organizational Studies" + }, + { + "id": 32779, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Al-Bazi, A., Madi, F., Monshar, A. A., Eliya, Y., Adediran, T., & Khudir, K. A. (2023). Modelling the impact of non-pharmaceutical interventions on COVID-19 exposure in closed-environments using agent-based modelling. International Journal of Healthcare Management, 1-15.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32780, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Alam, A. (2023, March). Leveraging the Power of \u2018Modeling and Computer Simulation\u2019for Education: An Exploration of its Potential for Improved Learning Outcomes and Enhanced Student Engagement. In 2023 International Conference on Device Intelligence, Computing and Communication Technologies,(DICCT) (pp. 445-450). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 32781, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Albo Ismail, W. K. F., & Ucan, O. N. (2023). VANET PERFORMANCE EVALUATION IN TERMS OF NODES DISTRIBUTION, MOBILITY MODELS, AND ROUTING PROTOCOLS. Technium, 8, 32-45.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32782, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Alghamdi, A. A. (2023). A novel intelligent agent-based framework for appropriate stream selection from perceptive of career counseling. PeerJ Computer Science, 9, e1256.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 32783, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Alkanjr, B., & Mahgoub, I. (2023). A Novel Deception-Based Scheme to Secure the Location Information for IoBT Entities. IEEE Access, 11, 15540-15554.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, IEEE Access" + }, + { + "id": 32784, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ali, A. T., Leucker, M., Schuldei, A., Stellbrink, L., & Sachenbacher, M. (2023, September). A Comparative Analysis of Multi-agent Simulation Platforms for Energy and Mobility Management. In European Conference on Multi-Agent Systems (pp. 295-311). Cham: Springer Nature Switzerland.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32785, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ali, G. A., Abubakar, H., Alzaeemi, S. A. S., Almawgani, A. H., Sulaiman, A., & Tay, K. G. (2023). Artificial dragonfly algorithm in the Hopfield neural network for optimal Exact Boolean k satisfiability representation. Plos one, 18(9), e0286874.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 32786, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Allison, A., Stephens, S., Blackett, P., Lawrence, J., Dickson, M. E., & Matthews, Y. (2023). Simulating the Impacts of an Applied Dynamic Adaptive Pathways Plan Using an Agent-Based Model: A Tauranga City, New Zealand, Case Study. Journal of Marine Science and Engineering, 11(2), 343.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32787, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Almaguer, D., Islas, C., Padilla, P., Prado, M. A., & Vizuet, D. F. Manejo biol\u00f3gico de una plaga usando un modelo multiagentes. P\u00e4di Bolet\u00edn Cient\u00edfico de Ciencias B\u00e1sicas e Ingenier\u00edas del ICBI, 10, 140-146.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 32788, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Alsammak, I. L. H., Mahmoud, M. A., Gunasekaran, S. S., Ahmed, A. N., & AlKilabi, M. (2023). Nature-Inspired Drone Swarming for Wildfires Suppression Considering Distributed Fire Spots and Energy Consumption. IEEE Access, 11, 50962-50983.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Astronomy" + }, + { + "id": 32789, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Altuwariki, S. (2023). Modelling land use using demographic forecasting and local optimisation: A case study of general education provision in Riyadh, Saudi Arabia (Doctoral dissertation, UCL (University College London)).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32790, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Alves, D. B., de Souza Junior, A. J., & da Motta Jafelice, R. S. (2023). Intelligence technologies in Mathematics Education: AnyLogic for the production of learning objects. Revista Internacional de Pesquisa em Educa\u00e7\u00e3o Matem\u00e1tica, 13(3), 1-23.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Education, Economics" + }, + { + "id": 32791, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Amakama, N. J., Dusserre, G., Cadiere, A., Schuette, R. W., & Zacharewicz, G. (2023, April). Risk Management and Disaster Response In the Oil and Gas Industry: Modelling and Implementation of Interoperable Healthcare Systems Solution for Disaster Response in the Oil and Gas Industry. In Colloque IMT 2023:\u00abS\u00e9curit\u00e9 et R\u00e9silience\u00bb.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32792, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Amakama, N. J., Dusserre, G., Cadiere, A., & Schuette, R. W. (2023, September). Assessing the Impact of Wait Times on Patient Mortality Outcomes in a Hypothetical Oil and Gas Industry Disaster Scenario: An Agent-Based Modeling Approach Using NetLogo. In QPSS 2023-Qatar Process Safety Symposium.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, NetLogo, Agent-Based Modeling, Oil and Gas Industry" + }, + { + "id": 32793, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Amissah, M. (2023). Modelling and analysis of heterogeneous data to improve process flow in the emergency department (Doctoral dissertation, University of Warwick).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32794, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ammoneit, R., Reudenbach, C., & Peter, C. (2023). Developing geographic computer modeling competencies in higher education. Journal of Geography in Higher Education, 1-23.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Geography, Economics" + }, + { + "id": 32795, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Amparore, E., Beccuti, M., Castagno, P., Pernice, S., Franceschinis, G., & Pennisi, M. (2023). From compositional Petri Net modeling to macro and micro simulation by means of Stochastic Simulation and Agent-Based models. ACM Transactions on Modeling and Performance Evaluation of Computing Systems, 9(1), 1-30.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Modeling, Simulation, Agent-Based Models" + }, + { + "id": 32796, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Amrita, S., & Sankaran, S. (2023, April). Modeling the Impact of Fake Data Dissemination During Covid-19. In International Symposium on Intelligent Informatics: Proceedings of ISI 2022 (pp. 471-486). Singapore: Springer Nature Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Ecology, Archaeology" + }, + { + "id": 32797, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "An, Y., & Park, S. (2023). Developing an Agent-Based Model to Mitigate Famine Risk in North Korea: Insights from the \u201cArtificial North Korean Collective Farm\u201d Model. Land, 12(4), 735.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32798, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "An, Y., Lin, X., Li, H., & Wang, Y. (2023). Sandpile-simulation-based graph data model for MVD generative design of shield tunnel lining using information entropy. Advanced Engineering Informatics, 57, 102108.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Graph Data Model, Computer Science, Engineering Informatics" + }, + { + "id": 32799, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Andelfinger, P., & Uhrmacher, A. M. (2023). Synchronous speculative simulation of tightly coupled agents in continuous time on CPUs and GPUs. SIMULATION, 00375497231158930.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Simulation" + }, + { + "id": 32800, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Annette, H. (2023). Modellieren und Forschen: Zum Inhalt. Unterricht Biologie, 2023(482), 4-48.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Teaching, Research" + }, + { + "id": 32801, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Anusha, C. D., & Raju, K. G. (2023, November). RWA for multi-domain optical network using OBGP. In AIP Conference Proceedings (Vol. 2587, No. 1). AIP Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32802, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Apostolidis-Afentoulis, V., & Sakellariou, I. (2023). Teleo-Reactive Agents in a Simulation Platform. Proceedings of the 15th International Conference on Agents and Artificial Intelligence, 1, 26\u201336.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, AI, Computer Science, Agents, Artificial Intelligence" + }, + { + "id": 32803, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Appiagyei, B. D., Belhoucine-Guezouli, L., Bessah, E., & Morsli, B. (2023). Simulating land use and land cover change in a semi-arid region from 1989 to 2039: the case of Hafir-Zariffet forest, Tlemcen, Algeria. GeoJournal, 1-15.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32804, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Arc\u00f3n, V., Caridi, I., Pinasco, J. P., & Schiaffino, P. (2023). Segregation patterns for non-homogeneous locations in Schellings model.\u00a0Communications in Nonlinear Science and Numerical Simulation,\u00a0120, 107140.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32805, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ardon, L., Vann, J., Garg, D., Spooner, T., & Ganesh, S. (2023, May). Phantom-A RL-driven Multi-Agent Framework to Model Complex Systems. In Proceedings of the 2023 International Conference on Autonomous Agents and Multiagent Systems (pp. 2742-2744).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32806, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Aringhieri, R., Di Cunzolo, M., Dutto, M., Genga, L., Guastalla, A., Locatelli, M., ... & Boccuzzi, A. (2023). Simulation, optimization, and process mining: practicals applications in healthcare. In Proceedings of the 3rd National Conference on Artificial Intelligence (Ital-IA 2023) (pp. 1-6). CEUR Workshop Proceedings.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation, optimization, process mining" + }, + { + "id": 32807, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ariza Angarita, Y. (2023). Auto organizaci\u00f3n para la innovaci\u00f3n curricular: una mirada desde las universidades (Doctoral dissertation, Universidad Sim\u00f3n Bol\u00edvar, Venezuela).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32808, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Armitage, J., & Magnusson, T. (2023). Agential Scores: Exploring Emergent, Self-Organising and Entangled Music Notation. In Proceedings of the 8th International Conference on Technologies for Music Notation and Representation (Northeastern University, Boston, Massachusetts, USA, 2023).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Music Notation, Music, Technology" + }, + { + "id": 32809, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Arnold, E. G., Burroughs, E. A., Burroughs, O., & Carlson, M. A. (2023). Using physical simulations to motivate the use of differential equations in models of disease spread. International Journal of Mathematical Education in Science and Technology, 1-14.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Physics, Computer Science" + }, + { + "id": 32810, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Assayed, S., & Maheshwari, P. (2023). Agent-Based Simulation for University Students Admission: Medical Colleges in Jordan Universities. Computer Science & Engineering: An International Journal (CSEIJ), 13(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 32811, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ataeizadeh, F. (2023). Different Fairness Perceptions in Different Fairness Problems: Algorithmic Decisions and Strategic Interactions (Doctoral dissertation, Carleton University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32812, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "\u00c1vila, D. Spin-glass y la mano invisible de Adam Smith (Doctoral dissertation, Universidad Nacional de Colombia).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32813, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Awad, M. (2023). Analysis and modeling of what honey bees (Apis mellifera L.) bring back to the hive and how that affects the health of the hive and humans (Doctoral dissertation, Colorado State University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32814, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Azari, B. (2023). Developing a New Three-Dimensional Finite-Difference Explicit in Time Solver Package for MODFLOW (Doctoral dissertation, The University of Memphis).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology" + }, + { + "id": 32815, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Azin, B. (2023). Integrated Charging Facility Developments and Incentive-Based Demand Management for Electric Vehicles Using Agent-Based Simulation (Doctoral dissertation, The University of Utah).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32816, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Baccino, L., & Villata, S. (2023, May). How Does a Minority Opinion Spread?: An Agent-Based Model on the Opposition Between a Silent Majority and a Loud Minority. In The International FLAIRS Conference Proceedings (Vol. 36).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32817, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Baden-B\u00f6hm, F., Dauber, J., & Thiele, J. (2023). Biodiversity measures providing food and nesting habitat increase the number of bumblebee (Bombus terrestris) colonies in modelled agricultural landscapes. Agriculture, Ecosystems & Environment, 356, 108649.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Agriculture" + }, + { + "id": 32818, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Bai, Y (2023). Research on Civil Engineering Cost Prediction Based on Decision Tree Algorithm. Academic Journal of Architecture and Geotechnical Engineering, 5(1), 39-44.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 32819, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Bai, Y., Deng, X., Weng, C., Hu, Y., Zhang, S., & Wang, Y. (2023). Investigating climate adaptation in semi-arid pastoral social-ecological system: A case in Hulun Buir, China. Environmental and Sustainability Indicators, 100321.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32820, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Baldauf, T. (2023). sfctools-A toolbox for stock-flow consistent, agent-based models. Journal of Open Source Software, 8(87), 4980.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 32821, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Banerjee, D. (2023). Knowledge and Innovation on the Road to Adoption of Green Infrastructure Technology: Stormwater Management in Fast-Growing, Arid-Climate Utah Cities and Towns (Doctoral dissertation, The University of Utah).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32822, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Barrett, M. C. (2023). Lithics in Perspective: Indeterminacy, Simulation, and the Formation of Lithic Assemblages (Doctoral dissertation, The University of Auckland, New Zealand).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32823, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Barricelli, B. R., Fischer, G., Fogli, D., M\u00f8rch, A., Piccinno, A., & Valtolina, S. (2023). Cultures of Participation in the Digital Age-Artificial and/or Human Intelligence: Nurturing Computational Fluency in the Digital Age.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32824, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Barth, L., Schweiger, L., Benedech, R., & Ehrat, M. (2023). From data to value in smart waste management: Optimizing solid waste collection with a digital twin-based decision support system. Decision Analytics Journal, 100347.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32825, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Batta, E., & Stephens, C. R. (2023). Evolutionary success of the thrifty genotype depends on both behavioral adaptations and temporal variability in the food environment. Scientific Reports, 13(1), 7975.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32826, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Batzke, M., & Ernst, A. (2023). Conditions and Effects of Norm Internalization. Journal of Artificial Societies and Social Simulation, 26(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32827, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Bayram, A. (2023). Hybrid LCA\u2013ABM of dairy farming systems including nonlinear optimization under environmental, technical and economic constraints (Doctoral dissertation, University of Luxembourg,\u200b\u200b Luxembourg).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32828, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Becote, B. (2023). Defining a Cyber Operations Performance Framework via Computational Modeling (Doctoral dissertation, Dakota State University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 32829, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Beerman, J. T. (2023). To Err Is Human: The Effect of Mistakes in Social Simulations (Doctoral dissertation, Miami University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32830, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Beerman, J. T., Beaumont, G. G., & Giabbanelli, P. J. (2023). A framework for the comparison of errors in agent-based models using machine learning. Journal of computational science, 72, 102119.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Machine Learning, Computer Science, Economics, Ecology, Archaeology, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32831, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Belcore, O. M., Di Gangi, M., & Polimeni, A. (2023). Connected Vehicles and Digital Infrastructures: A Framework for Assessing the Port Efficiency. Sustainability, 15(10), 8168.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32832, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "B\u00e9ler, C., Zacharewicz, G., Bisgambiglia, P. A., Poggi, B., Poux, F., & Thierry, A. S. (2024). Towards (An Aggregated) Territorial Digital Twin: From Smart-village to Smart-territory via the Territorial System of Digital Twin. In Concepts in Smart Societies (pp. 328-356). CRC Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32833, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Bell, A.R., Rakotonarivo, O.S., Bhargava, A., Duthie, A.B., Zhang, W., Sargent, R., Lewis, A.R. and Kipchumba, A., (2023). Financial incentives often fail to reconcile agricultural productivity and pro-conservation behavior. Communications Earth & Environment, 4(1), 27.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Agriculture, Economics" + }, + { + "id": 32834, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Bellv\u00e9, A. M. (2023). Reconstructing animal-vectored nutrient fluxes in paleoenvironments: A case-study of Aotearoa New Zealand\u2019s burrowing procellariiforms (Doctoral dissertation, ResearchSpace@ Auckland).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 32835, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Bemthuis, R., Govers, R., & Lazarova-Molnar, S. (2023, October). Using process mining for face validity assessment in agent-based simulation models: an exploratory case study. In International Conference on Cooperative Information Systems (pp. 311-326). Cham: Springer Nature Switzerland.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Process Mining, Simulation, Computer Science, Economics, Archaeology, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32836, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Benham, S. S. (2023). Landscape Genetics of the Gulf Coast Tick, Amblyomma maculatum (Doctoral dissertation, Old Dominion University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 32837, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Bennai, M. T., Guessoum, Z., Mazouzi, S., Cormier, S., & Mezghiche, M. (2023). Multi-agent medical image segmentation: A survey. Computer Methods and Programs in Biomedicine, 107444.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 32838, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Berger, T., Bonte, T., Idel Mahjoub, Y., & Sallez, Y. (2023). Proposition of a software-assisted methodology to solve safety issues in reconfigurable assembly systems in a short time. International Journal of Computer Integrated Manufacturing, 1-26.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 32839, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Bernardini, G., D\u2019Orazio, M., & Quagliarini, E. (2023, September). Coupled Multi-risk Mitigation in Historical Urban Outdoor Built Environment: Preliminary Strategies Evaluation Through Typological Scenarios. In International Conference on Structural Analysis of Historical Constructions (pp. 1212-1226). Cham: Springer Nature Switzerland.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32840, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Bhat, S., Godse, R., Mestry, S., & Naik, V. (2023). Studying the Impact of Transportation During Lockdown on the Spread of COVID-19 Using Agent-Based Modeling. In ICAART (1) (pp. 80-92).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32841, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Biondo, A. E., Mazzarino, L., & Pluchino, A. (2023). Noise and Financial Stylized Facts: A Stick Balancing Approach. Entropy, 25(4), 557.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Financial Modeling" + }, + { + "id": 32842, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Bischoff, R. J., & Padilla-Iglesias, C. (2023). A description and sensitivity analysis of the ArchMatNet agent-based model.\u00a0PeerJ Computer Science,\u00a09, e1419.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Ecology" + }, + { + "id": 32843, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Bj\u00f8rn\u00e5s, K. L., Railsback, S., & Piccolo, J. (2023). Modifying and parameterizing the individual-based model inSTREAM for Atlantic salmon and brown trout in the regulated Gullsp\u00e5ng River, Sweden. MethodsX, 102243.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 32844, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Blake-Westa, J. C., & Bersa, M. U. (2023). ScratchJr design in practice: Low floor, high ceiling. International Journal of Child-Computer Interaction, 100601.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32845, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Blakely, B., Horsthemke, W., Evans, N., & Harkness, D. (2023). Case Study A: A Prototype Autonomous Intelligent Cyber-Defense Agent. In Autonomous Intelligent Cyber Defense Agent (AICA) A Comprehensive Guide (pp. 395-408). Cham: Springer International Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 32846, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Bogani, A., Faccenda, G., Riva, P., Richetin, J., Pancani, L., & Sacchi, S. (2023). The near-miss effect in flood risk estimation: A survey-based approach to model private mitigation intentions into agent-based models. International Journal of Disaster Risk Reduction, 103629.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32847, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Bolea P\u00e9rez, D. (2023). Integration of social values in a multi-agent platform running in a supercomputer (Bachelor's thesis, Universitat Polit\u00e8cnica de Catalunya).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 32848, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Boman, B. M., Dinh, T. N., Decker, K., Emerick, B., Modarai, S., Opdenaker, L., ... & Schleiniger, G. (2023). Beyond the Genetic Code: A Tissue Code?. bioRxiv, 2023-03.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Miscellaneous" + }, + { + "id": 32849, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Bommi, R. M., Rajeev, S. V. S., Navya, S., Teja, V. S., & Supriya, U. (2023). Smart Health Care Waste Segregation and Safe Disposal. Mathematics and Computer Science, Volume 2, 205.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Mathematics\nComputer Science" + }, + { + "id": 32850, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Borah, D. K., Zhang, H., Zellner, M., Ahmadisharaf, E., Babbar-Sebens, M., Quinn, N., ... & Lott, C. (2023). Total Maximum Daily Load Implementation Modeling, Planning, and Design: A Synthesis of Resources for Watershed Stakeholders. In World Environmental and Water Resources Congress 2023 (pp. 1298-1312).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32851, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Bort, J., Wiklund, J., Crawford, G. C., Lerner, D. A., & Hunt, R. A. (2023). The Strategic Advantage of Impulsivity in Entrepreneurial Action: An Agent-Based Modeling Approach. Entrepreneurship Theory and Practice, 10422587231178882.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Entrepreneurial Action, Agent-Based Modeling, Modeling" + }, + { + "id": 32852, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Boss, L. N. (2023). Exploring Decentralized System Architectures and Their Influence on Performance and Robustness (Doctoral dissertation, The George Washington University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32853, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Bourceret, A., Amblard, L., & Mathias, J. D. (2023). How do farmers\u2019 environmental preferences influence the efficiency of information instruments for water quality management? Evidence from a social-ecological agent-based model. Ecological Modelling, 478, 110300.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32854, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Bowen, G. M., Wiseman, D., Shanahan, M. C., Khan, S., Gonsalves, A., Sengupta, P., ... & Carter, A. (2023). STEM in Canadian Teacher Education: An Overview. Reforming Science Teacher Education Programs in the STEM Era: International and Comparative Perspectives, 53-70.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32855, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Bozzi, A., Jimenez, J. F., Hernandez-Rodriguez, C., Gonzalez-Neira, E. M., & Trentesaux, D. (2023, July). Platoon-Based Distributed Control for Automated Material Handling Systems. In 2023 9th International Conference on Control, Decision and Information Technologies (CoDIT) (pp. 2257-2262). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Control, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32856, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Brazier, F. (2023, January). The Influence of National Culture on Evacuation Response Behaviour and Time: An Agent-Based Approach. In Multi-Agent-Based Simulation XXIII: 23rd International Workshop, MABS 2022, Virtual Event, May 8\u20139, 2022, Revised Selected Papers (Vol. 13743, p. 41). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Agent-Based Simulation, Time" + }, + { + "id": 32857, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Brewer, L. L. (2023). Distruptions in Supply Chain: An Agent-Based Model Simulation to Measure Resiliency and Performance During Disasters (Doctoral dissertation, The University of North Carolina at Charlotte).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32858, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Breitwieser, L., Hesam, A., Rademakers, F., Luna, J. G., & Mutlu, O. (2023, February). High-performance and scalable agent-based simulation with BioDynaMo. In Proceedings of the 28th ACM SIGPLAN Annual Symposium on Principles and Practice of Parallel Programming (pp. 174-188).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Programming, Computer Science, Parallel Programming" + }, + { + "id": 32859, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Briggs, T. W. (2023). Essays in Computational Social and Organization Science: Manager-Subordinate Proximity, Informal Networks, and the Flynn Effect (Doctoral dissertation, George Mason University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32860, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Brocardo, J., Vale, I., & Menezes, L. (2022). A investiga\u00e7\u00e3o em resolu\u00e7\u00e3o de problemas, racioc\u00ednio, comunica\u00e7\u00e3o e modela\u00e7\u00e3o: Uma an\u00e1lise de 30 anos de publica\u00e7\u00f5es na revista Quadrante. Quadrante, 31(2), 63-93.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Resolution, Communication, Modeling, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32861, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Brodsky, J. The Role of Astrobiology in Systems Thinking Education. In Guidebook for Systems Applications in Astrobiology (pp. 210-222). CRC Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Astrobiology, Systems Thinking" + }, + { + "id": 32862, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Broitman, D., & Czamanski, D. (2023). Resilience in a noisy urban system. Regional Science Policy & Practice.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32863, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Broutin, L. (2023). Prospecteurs des dunes et d'ailleurs: une \u00e9tude g\u00e9ographique de l'expertise antiacridienne en Mauritanie (Doctoral dissertation, Universit\u00e9 Paris-Nanterre).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Geography, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32864, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Brudney, E. M. (2023). Building More Inclusive University Makerspaces for Students with Disabilities (Doctoral dissertation, The University of North Carolina at Chapel Hill).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32865, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Bryndin, E. (2023). Development of Artificial Intelligence of Ensembles of Software and Hardware Agents by Natural Intelligence on the Basis of Self-Organization. Journal of Research in Social Science and Humanities, 2(10), 13-22.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 32866, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Bui, H., Sakurahara, T., Reihani, S., Kee, E., & Mohaghegh, Z. (2023). Probabilistic Validation: Computational Platform and Application to Fire Pra of Nuclear Power Plants. ASCE-ASME Journal of Risk and Uncertainty in Engineering Systems, Part B: Mechanical Engineering, 1-42.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Probabilistic Validation" + }, + { + "id": 32867, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Burrow, A. K., McEntire, K. D., & Maerz, J. C. (2023). Estimating the potential drivers of dispersal outcomes for juvenile gopher frogs (Rana capito) using agent-based models. Frontiers in Ecology and Evolution, 11, 1026541.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Agent-based models" + }, + { + "id": 32868, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Bwire, C., Mohan, G., Karthe, D., Caucci, S., & Pu, J. (2023). A Systematic Review of Methodological Tools for Evaluating the Water, Energy, Food, and One Health Nexus in Transboundary Water Basins. Environmental Management, 1-16.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32869, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Calabr\u00f2, G., Le Pira, M., Giuffrida, N., Fazio, M., Inturri, G., & Ignaccolo, M. (2023). A spatial agent-based model of e-commerce last-mile logistics towards a delivery-oriented development. Transportation Research Interdisciplinary Perspectives, 21, 100895.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32870, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Calafat Montes, M. (2023). A Ssimulation model of passenger flow at the airport security system (Bachelor's thesis, Universitat Polit\u00e8cnica de Catalunya).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32871, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Calay, T. J., Qolomany, B., Mulahuwaish, A., Hossain, L., & Abdo, J. B. (2023, September). CCTFv1: Computational Modeling of Cyber Team Formation Strategies. In International Conference on Social Computing, Behavioral-Cultural Modeling and Prediction and Behavior Representation in Modeling and Simulation (pp. 199-208). Cham: Springer Nature Switzerland.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32872, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Calero Valdez, A., Nakayama, J., Vervier, L., Nunner, H., & Ziefle, M. (2023, July). Using Agent-Based Modeling to Understand Complex Social Phenomena-A Curriculum Approach. In International Conference on Human-Computer Interaction (pp. 368-377). Cham: Springer Nature Switzerland.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32873, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Cao, Z., Zhu, J., Tang, B., & Chen, T. (2023). System dynamics simulation of occupational health and safety management causal model based on NetLogo. Heliyon.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32874, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Caprioli, C., Bottero, M., & De Angelis, E. (2023). Combining an agent-based model, hedonic pricing and multicriteria analysis to model green gentrification dynamics. Computers, Environment and Urban Systems, 102, 101955.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32875, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Carrillo, C. C., Charbonneau, B. R., Altman, S., Keele, J. A., Pucherelli, S. F., Passamaneck, Y. J., ... & Swannack, T. M. (2023). Patterns of dreissenid mussel invasions in western US lakes within an integrated gravity model framework. Journal of Environmental Management, 332, 117383.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32876, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Casta\u00f1\u00f3n\u2013Puga, M., Tirado\u2013Ramos, A., Khatchikian, C., Suarez, E. D., Palafox\u2013Maestre, L. E., & Gaxiola\u2013Pacheco, C. G. (2023, June). Towards an Earned Value Management Didactic Simulator to Engineering Management Teaching. In\u00a0International Conference on Computational Science\u00a0(pp. 780-792). Cham: Springer Nature Switzerland.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computation, Engineering, Management" + }, + { + "id": 32877, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Casta\u00f1\u00f3n-Puga, M., Rosales-Cisneros, R. F., Acosta-Prado, J. C., Tirado-Ramos, A., Khatchikian, C., & Aburto-Camacllanqui, E. (2023). Earned Value Management Agent-Based Simulation Model. Systems, 11(2), 86.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32878, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Catola, M., & Leoni, S. (2023). Pollution Abatement and Lobbying in a Cournot Game: An Agent-Based Modelling Approach. Computational Economics, 1-28.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32879, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Cavallo, D., & Brice\u00f1o, A. (2023). Rizomas, epistemolog\u00eda y aprendizaje: reformulaci\u00f3n y reestructuraci\u00f3n de los entornos de aprendizaje. Revista 180, 1.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32880, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "\u010cech, P., Matto\u0161, M., Anderkov\u00e1, V., Babi\u010d, F., Alhasnawi, B. N., Bure\u0161, V., ... & Triantafyllou, I. (2023). Architecture-Oriented Agent-Based Simulations and Machine Learning Solution: The Case of Tsunami Emergency Analysis for Local Decision Makers. Information, 14(3), 172.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32881, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Cegielski, W. H. (2024). Networks, Agent-Based Modeling, and Archaeology. The Oxford Handbook of Archaeological Network Research, 280.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 32882, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Celik, B., & Zorba, Y. (2023). AN APPLICATION OF AGENT-BASED TRAFFIC FLOW MODEL FOR MARITIME SAFETY MANAGEMENT EVALUATION.\u00a0International Journal of Maritime Engineering,\u00a0165(A1), 55-70.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32883, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "\u00c7ET\u0130NER, B., & YA\u015eARCAN, H. The El Farol Bar Problem: A Comparative Analysis of Expectation Models Used in Decision Making. End\u00fcstri M\u00fchendisli\u011fi, 34, 90-108.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Economics, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32884, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Chaabani, S., Einum, S., Jaspers, V. L., Asimakopoulos, A. G., Zhang, J., & Muller, E. (2023). Impact of the antidepressant Bupropion on the Dynamic Energy Budget of Daphnia magna.\u00a0Science of The Total Environment, 895, 164984.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 32885, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Chatterjee, A., Cao, Q., Sajadi, A., & Ravandi, B. (2023). Deterministic random walk model in NetLogo and the identification of asymmetric saturation time in random graph. Applied Network Science, 8(1), 1-11.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Network Science" + }, + { + "id": 32886, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Chella, A., Gaglio, S., Mannone, M., Pilato, G., Seidita, V., Vella, F., & Zammuto, S. (2023). Quantum planning for swarm robotics. Robotics and Autonomous Systems, 104362.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 32887, + "sort": null, + "year": 2023, + "is_ccl": true, + "reference": "Chen, J., & Wilensky, U. J. (2023). Measuring Young Learners\u2019 Open-ended Agent-based Programming Practices with Learning Analytics. Proceedings of AERA Annual Meeting 2023.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Learning Analytics, Agent-based Programming, Education" + }, + { + "id": 32888, + "sort": null, + "year": 2023, + "is_ccl": true, + "reference": "Chen, J., & Wilensky, U. J. (2023). Tortuga: Building Interactive Scaffolds for Agent-based Modeling and Programming in NetLogo. Proceedings of ISLS Annual Meeting 2023. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 32889, + "sort": null, + "year": 2023, + "is_ccl": true, + "reference": "Chen, J., Zhao, L., Horn, M. S., & Wilensky, U. J. (2023, June). The Pocketworld Playground: Engaging Online, Out-of-School Learners with Agent-based Programming. In\u00a0Proceedings of the 22nd Annual ACM Interaction Design and Children Conference\u00a0(pp. 267-277).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32890, + "sort": null, + "year": 2023, + "is_ccl": true, + "reference": "Chen, J., Horn, M. S., & Wilensky, U. J. (2023, June). NetLogo AR: Bringing Room-Scale Real-World Environments Into Computational Modeling for Children. In\u00a0Proceedings of the 22nd Annual ACM Interaction Design and Children Conference\u00a0(pp. 736-739).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Interaction Design, Children\u2019s Conference" + }, + { + "id": 32891, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Chen, X., Wang, Z., Yang, H., Ford, A. C., & Dawson, R. J. (2023). Enhanced urban growth modelling: Incorporating regional development heterogeneity and noise reduction in a cellular automata model-a case study of Zhengzhou, China. Sustainable Cities and Society, 99, 104959.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32892, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Chen, Y., Wang, C., Du, X., Shen, Y., & Hu, B. (2023). An agent-based simulation framework for developing the optimal rescue plan for older adults during the emergency evacuation.\u00a0Simulation Modelling Practice and Theory, 102797.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation Modelling, Computer Science, Ecology, Archaeology" + }, + { + "id": 32893, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Cheng, S., Giabbanelli, P. J., & Kuang, Z. (2023, May). Identifying the Building Blocks of Social Simulation Models: A Qualitative Analysis using Open-Source Codes in NetLogo. In\u00a02023 Annual Modeling and Simulation Conference (ANNSIM)\u00a0(pp. 306-317). IEEE", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 32894, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Cheng, Y. (2023). Significance of Digital Landscape Architecture. In Digital Landscape Architecture: Logic, Structure, Method and Application (pp. 7-44). Singapore: Springer Nature Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32895, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Chetouani, M., Dignum, V., Lukowicz, P., & Sierra, C. (2023). The Advanced Course on Human-Centered AI: Learning Objectives. In Human-Centered Artificial Intelligence: Advanced Lectures (pp. 3-7). Cham: Springer International Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Miscellaneous" + }, + { + "id": 32896, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Chica, M., Hermann, R. R., & Lin, N. (2023). Adopting different wind-assisted ship propulsion technologies as fleet retrofit: An agent-based modeling approach. Technological Forecasting and Social Change, 192, 122559.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Urban Studies" + }, + { + "id": 32897, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Chiri\u021b\u0103, N., Delcea, C., Nica, I., & IONESCU, \u015e. A. (2023). Financial contagion and identifying speculative frenzies: Unraveling price bubbles in cryptocurrency markets. Theoretical & Applied Economics, 30(3).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Sociology" + }, + { + "id": 32898, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Chour, K., Reddinger, J. P., Dotterweich, J., Childers, M., Humann, J., Rathinam, S., & Darbha, S. (2023). An agent-based modeling framework for the multi-UAV rendezvous recharging problem. Robotics and Autonomous Systems, 166, 104442.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32899, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Christen Marote, S. (2023). An\u00e1lisis de sistemas e instalaciones en torno a la arquitectura regenerativa, eficiencia energ\u00e9tica y optimizaci\u00f3n de recursos naturales (Bachelor's thesis, Universitat Polit\u00e8cnica de Catalunya).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32900, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Christensen, K., Ma, Z. G., & J\u00f8rgensen, B. N. (2023). Multi-Agent Based Simulation for Investigating Electric Vehicle Adoption and Its Impacts on Electricity Distribution Grids and CO2 Emissions. In Energy Informatics. Academy Conference 2023.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32901, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Chu, C. M., & Van Noi, N. (2023). Optimising truck arrival management and number of service gates at container terminals. Maritime Business Review, 8(1), 18-31.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32902, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Chu, J., Morikawa, H., & Chen, Y. (2023). Simulation of SARS-CoV-2 epidemic trends in Tokyo considering vaccinations, virus mutations, government policies and PCR tests. BioScience Trends, 17(1), 38-53.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Economics, Computer Science, Epidemiology" + }, + { + "id": 32903, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Chueca Del Cerro, C. (2023). Polarisation and protest mobilisation around secessionist movements: an agent-based model of online and offline social networks (Doctoral dissertation, University of Glasgow).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32904, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Cline, D. H., & Munson, J. (2024). Epigraphic Networks in Cross-Cultural Perspective. The Oxford Handbook of Archaeological Network Research, 363.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Archaeology, Biological Science, Miscellaneous" + }, + { + "id": 32905, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Cinquemani, L. (2023). Nationsim, a story-driven approach to Agent-Based Modeling of Nations interacting (Master's thesis, NTNU).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32906, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Cockx, B. J. R., Foster, T., Clegg, R. J., Alden, K., Arya, S., Stekel, D. J., ... & Kreft, J. U. (2023). Is it selfish to be filamentous in biofilms? Individual-based modeling links microbial growth strategies with morphology using the new and modular iDynoMiCS 2.0.\u00a0bioRxiv, 2023-06.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biological Modeling, Microbial Growth, Morphology, BioRxiv" + }, + { + "id": 32907, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Coelho, H. (2023). Interdisciplinary Practice in Education. In Theory and Practice in the Interdisciplinary Production and Reproduction of Scientific Knowledge (pp. 147-155). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32908, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Cogoni, F., Bernard, D., Kazhen, R., Valitutti, S., Lobjois, V., & Cussat-Blanc, S. (2023). ISiCell: involving biologists in the design process of agent-based models in cell biology.\u00a0bioRxiv, 2023-06.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Agent-based models, Cell biology" + }, + { + "id": 32909, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Corlu, M. S., Kurutas, B. S., & Ozel, S. (2023). Effective Online Professional Development: A Facilitator's Perspective. In M. Ludwig, S. Barlovits, A. Caldeira, & A. Moura (Eds.), Research On STEM Education in the Digital Age. Proceedings of the ROSEDA Conference (pp. 9-23). WTM.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32910, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Cort\u00e9s, C. E., & Stefoni, B. (2023). Trajectory Simulation of Emergency Vehicles and Interactions with Surrounding Traffic. Journal of Advanced Transportation, 2023.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32911, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Costas, J., Puche, J., Ponte, B., Gupta, M. (2023). An agent-based simulator for quantifying the cost of uncertainty in production systems. Simulation Modelling Practice and Theory, 123. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32912, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Covitt, B. A., Gunckel, K. L., Berkowitz, A., Woessner, W. W., & Moore, J. (2023). Employing a Groundwater Contamination Learning Experience to Build Proficiency in Computational Modeling for Socioscientific Literacy. Journal of Science Education and Technology, 1-23.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computing, Ecology, Sociology, Technology, Science, Urban Studies" + }, + { + "id": 32913, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Crespi, C., Scollo, R. A., Fargetta, G., & Pavone, M. (2023). A sensitivity analysis of parameters in an agent-based model for crowd simulations. Applied Soft Computing, 146, 110684.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32914, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Crespi, C., Scollo, R. A., Fargetta, G., & Pavone, M. (2023, February). How a Different Ant Behavior Affects on the Performance of the Whole Colony. In Metaheuristics: 14th International Conference, MIC 2022, Syracuse, Italy, July 11\u201314, 2022, Proceedings (pp. 187-199). Cham: Springer International Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Metaheuristics, Colony" + }, + { + "id": 32915, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Crevier, L. P. (2023). Bears, spirals, and stakeholders: agent-based models and the need for stakeholder involvement in their development and implementation (Doctoral dissertation, University of British Columbia).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32916, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Cuevas, E., Zald\u00edvar, D., & P\u00e9rez-Cisneros, M. (2023). Exploring the Potential of Agent Systems for Metaheuristics. In New Metaheuristic Schemes: Mechanisms and Applications (pp. 11-74). Cham: Springer Nature Switzerland.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32917, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Cuevas, E., Zald\u00edvar, D., & P\u00e9rez-Cisneros, M. (2023). New Metaheuristic Schemes: Mechanisms and Applications (Vol. 246). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32918, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Cui, T., & Cao, S. (2024). Development of the Female Internet Celebrity Economy Based on MATLAB Analysis Mode. In INTERNET FINANCE AND DIGITAL ECONOMY: Advances in Digital Economy and Data Analysis Technology The 2nd International Conference on Internet Finance and Digital Economy, Kuala Lumpur, Malaysia, 19\u201321 August 2022 (pp. 275-288).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32919, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Cui, T., & Cao, S. (2023, August). 2024 World Scientific Publishing Company. In Internet Finance And Digital Economy: Advances In Digital Economy And Data Analysis Technology-Proceedings Of The 2nd International Conference (p. 275). World Scientific.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Digital Economy, Data Analysis Technology, Economics" + }, + { + "id": 32920, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "da Silva Gallo, E. R., Bertella, M. A., & da Fonseca, C. N. (2023). Avers\u00e3o \u00e0 perda em um mercado acion\u00e1rio virtual: uma abordagem agent-based. Revista de Economia, 43(81), 442-471.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Computer Science, Miscellaneous" + }, + { + "id": 32921, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Daems, D., & Boogers, S. (2023). The Power of Emergence: The Effects of Bottom-Up Decision-Making in Resource Exploitation Strategies on Community Sustainability in Iron Age to Hellenistic Anatolia. In Modelling Human-Environment Interactions in and beyond Prehistoric Europe (pp. 133-142). Cham: Springer International Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32922, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Dagien\u0117, V., G\u00fclbahar, Y., Grgurina, N., L\u00f3pez-Pernas, S., Saqr, M., Apiola, M., & Stupurien\u0117, G. (2023). Computing Education Research in Schools. In Past, Present and Future of Computing Education Research: A Global Perspective (pp. 481-520). Cham: Springer International Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computing, Ecology, History" + }, + { + "id": 32923, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Davey, T. (2023). Cohesion: A Measure of Organisation and Epistemic Uncertainty of Incoherent Ensembles. Entropy, 25(12), 1605.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32924, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "David, J., & Wu, J. (Eds.). (2023).\u00a0Mathematics of Public Health: Mathematical Modelling from the Next Generation\u00a0(Vol. 88). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Mathematics" + }, + { + "id": 32925, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Davis, P. K. (2023). Supporting Social Science and Management Areas. In Body of Knowledge for Modeling and Simulation: A Handbook by the Society for Modeling and Simulation International (pp. 373-382). Cham: Springer International Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32926, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "De Cubber, L., Lefebvre, S., Lancelot, T., Jorge, D. S. F., & Gaudron, S. M. (2023). Unravelling mechanisms behind population dynamics, biological traits and latitudinal distribution in two benthic ecosystem engineers: A modelling approach. Progress in Oceanography, 103154.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 32927, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "de Gauna, D. E. R., S\u00e1nchez, L. E., Ruiz-Iniesta, A., Villalonga, C., & Serrano, M. A. (2023). Towards an integrated swarm intelligence framework for urban mobility: A systematic review and proposed theoretical model. Journal of King Saud University-Computer and Information Sciences, 101836.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32928, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "de Jager, M., Buitendijk, N. H., Baveco, J. M., van Els, P., & Nolet, B. A. (2023). Limiting scaring activities reduces economic costs associated with foraging barnacle geese: Results from an individual\u2010based model.\u00a0Journal of Applied Ecology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Economics, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32929, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "De La Paz, S., Levin, D. M., & Butler, C. (2023). Addressing an Unfulfilled Expectation: Teaching Students With Disabilities to Write Scientific Arguments. Written Communication, 07410883221149093.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Writing, Communication, Teaching, Education" + }, + { + "id": 32930, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "De Luca, G., & Simoni, M. (2023). The role of trust in the diffusion of privacy-invading digital technologies. Technology Analysis & Strategic Management, 1-14.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32931, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "De Nicola, R., Di Stefano, L., Inverso, O., & Valiani, S. (2023). Modelling flocks of birds and colonies of ants from the bottom up. International Journal on Software Tools for Technology Transfer, 1-17.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 32932, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "de Souza, G. F., & Lopes, P. T. C. (2023). APLICA\u00c7\u00c3O DO PENSAMENTO COMPUTACIONAL NO ENSINO, UMA REVIS\u00c3O SISTEM\u00c1TICA DE LITERATURA. Interfaces Cient\u00edficas-Educa\u00e7\u00e3o, 12(1), 144-165.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32933, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "de Sousa Oliveira, K. K., da Silva Marcolino, A., de Deus, W. S., Falc\u00e3o, T. P., & Barbosa, E. F. (2023). Pensamento Computacional na Programa\u00e7\u00e3o Introdut\u00f3ria e Habilidades do S\u00e9culo XXI: Um Mapeamento Sistem\u00e1tico da Literatura.\u00a0Revista Novas Tecnologias na Educa\u00e7\u00e3o,\u00a021(2), 519-531.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32934, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "do Amaral Pinto, G., & Alberte, E. P. V. (2023). Modelagem baseada em agentes aplicada a estudos para incorpora\u00e7\u00e3o imobili\u00e1ria: um panorama acerca da literatura. SIMP\u00d3SIO BRASILEIRO DE TECNOLOGIA DA INFORMA\u00c7\u00c3O E COMUNICA\u00c7\u00c3O NA CONSTRU\u00c7\u00c3O, 4, 1-11.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32935, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Debacher, N. M., Kuster, L. F., dos Santos, A. F., Vahldick, A., & Santos, F. (2023, September). Back to the Promotion-EvacSIM: a Serious Game to Practice Requirements Elicitation on an Agent-based Simulation. In Anais do XX Encontro Nacional de Intelig\u00eancia Artificial e Computacional (pp. 169-183). SBC.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32936, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Debie, E., Kasmarik, K., & Garratt, M. (2023). Swarm robotics: A Survey from a Multi-tasking Perspective. ACM Computing Surveys.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 32937, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "DelaPaz-Ru\u00edz, N., Augustijn, E. W., Farnaghi, M., & Zurita-Milla, R. (2023). Spatiotemporal domestic wastewater variability: Assessing implications of population mobility in pollutants dynamics. AGILE: GIScience Series, 4, 23.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 32938, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Delcea, C., & Chirita, N. (2023). Exploring the Applications of Agent-Based Modeling in Transportation. Applied Sciences, 13(17), 9815.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Ecology" + }, + { + "id": 32939, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Delcea, C., & Cotfas, L. A. (2023). Risk Assessment and Transport Cost Reduction Based on Grey Clustering. In Advancements of Grey Systems Theory in Economics and Social Sciences (pp. 139-178). Singapore: Springer Nature Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32940, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Delcea, C., Yang, Y., Liu, S., & Cotfas, L. A. (2023). Agent-Based Modelling in Grey Economic Systems. In Emerging Studies and Applications of Grey Systems (pp. 105-139). Singapore: Springer Nature Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32941, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Deshpande, S., & Hsieh, S. J. (2023). Cyber-Physical System for Smart Traffic Light Control. Sensors, 23(11), 5028.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies" + }, + { + "id": 32942, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Dimka, J. (2023). An Agent-Based Simulation Model of Epidemic Spread in a Residential School for Children with Disabilities. Scandinavian Journal of Disability Research, 25(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32943, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ding, H., & Xie, L. (2023). Simulating rumor spreading and rebuttal strategy with rebuttal forgetting: An agent-based modeling approach. Physica A: Statistical Mechanics and its Applications, 128488.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, History, Economics, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32944, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Domenteanu, A., Delcea, C., Chiri\u021b\u0103, N., & Ioan\u0103\u0219, C. (2023). From Data to Insights: A Bibliometric Assessment of Agent-Based Modeling Applications in Transportation. Applied Sciences, 13(23), 12693.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32945, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Dong, D. (2023). Agent-based cloud simulation model for resource management. Journal of Cloud Computing, 12(1), 1-24.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 32946, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Dong, J., Tian, M., Li, X., & Crossan, M. Effects of human capital and learning rate: When organizations meet with information distortion and environmental dynamism. European Management Review.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32947, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Doran, J. W., Thompson, R. N., Yates, C. A., & Bowness, R. (2023). Mathematical methods for scaling from within-host to population-scale in infectious disease systems. Epidemics, 100724.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Infectious Disease Systems" + }, + { + "id": 32948, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Doroudi, S. (2023). The forgotten African American innovators of educational technology: stories of education, technology, and civil rights. Learning, Media and Technology, 1-17.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32949, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "dos Santos, N. T., dos Prazeres, J. B., Braga, R. M., & do Esp\u00edrito Santo, A. O. A DIMENS\u00c3O CR\u00cdTICA DA MODELAGEM MATEM\u00c1TICA E DA EDUCA\u00c7\u00c3O AMBIENTAL: REVIS\u00c3O DE LITERATURA E APLICA\u00c7\u00c3O PR\u00c1TICA. MODELAGEM MATEM\u00c1TICA: RE/CONSTRU\u00c7\u00c3O DE PERSPECTIVAS, 15.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32950, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Du, W., Zhu, S., Tong, L., Cai, K., & Liang, Z. (2023). Robust gate assignment to minimise aircraft conflicts. Transportmetrica B: Transport Dynamics, 11(1), 2185497.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32951, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Dutcher, K. E., Nussear, K. E., Heaton, J. S., Esque, T. C., & Vandergast, A. G. (2023). Move it or lose it: Predicted effects of culverts and population density on Mojave desert tortoise (Gopherus agassizii) connectivity. Plos one, 18(9), e0286820.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32952, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ebrie, A. S., Paik, C., Chung, Y., & Kim, Y. J. (2023). Environment-Friendly Power Scheduling Based on Deep Contextual Reinforcement Learning. Energies, 16(16), 5920.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32953, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Edali, M. (2023). Using linear regression metamodels for evaluating interventions in an individual-based influenza epidemic model. Simulation Modelling Practice and Theory, 126, 102772.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Regression" + }, + { + "id": 32954, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Egger, C., Mayer, A., Bertsch-H\u00f6rmann, B., Plutzar, C., Schindler, S., Tramberend, P., ... & Gaube, V. (2023). Effects of extreme events on land-use-related decisions of farmers in Eastern Austria: the role of learning. Agronomy for Sustainable Development, 43(3), 39.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32955, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Eglash, R. (2023). Ethno-biomathematics: A Decolonial Approach to Mathematics at the Intersection of Human and Nonhuman Design. In\u00a0Ubiratan D\u2019Ambrosio and Mathematics Education: Trajectory, Legacy and Future\u00a0(pp. 289-303). Cham: Springer International Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Anthropology, Ethnography, Design" + }, + { + "id": 32956, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "El-Maghraby, I. M., Jahin, H., & El-Hagla, K. S. (2023, September). Computational-based Generative Design Exploration, Multi-Agent System as an Approach. In LET IT GROW, LET US PLAN, LET IT GROW. Nature-based Solutions for Sustainable Resilient Smart Green and Blue Cities. Proceedings of REAL CORP 2023, 28th International Conference on Urban Development, Regional Planning and Information Society (pp. 145-154). CORP\u2013Competence Center of Urban and Regional Planning.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computational" + }, + { + "id": 32957, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Elara, L., & McCarthy, K. S. (2023). Exploring Supports to Enhance Learning from Online Virtual Experiments in Science. American Journal of Distance Education, 1-19.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32958, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Elsayed, P., Mostafa, H., & Marzouk, M. (2023). BIM based framework for building evacuation using Bluetooth Low Energy and crowd simulation. Journal of Building Engineering, 106409.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Archaeology, Ecology, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32959, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Elsner, J., Sadler, T., Kirk, E., Rawson, R., Friedrichsen, P., & Ke, L. (2023). Using Multiple Models to Learn about COVID-19 Breadcrumb. The Science Teacher, 90(3).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32960, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "EMELYANOV, I., KIRILCHUK, I., BARKOV, A., & PERSIDSKAYA, K. (2023). USE OF INTELLIGENT TRANSPORT SYSTEMS TO IMPROVE ENVIRONMENTAL SAFETY OF ROAD TRANSPORT IN THE KURSK REGION. \u041c\u0438\u0440 \u0442\u0440\u0430\u043d\u0441\u043f\u043e\u0440\u0442\u0430 \u0438 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043c\u0430\u0448\u0438\u043d, 59.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32961, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Epstein, J. M. (2023). Inverse generative social science: Backward to the future. Journal of artificial societies and social simulation: JASSS, 26(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32962, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Erceg, M. (2023). Primjena modeliranja temeljenog na agentima u simulaciji tr\u017ei\u0161ta (Doctoral dissertation, University of Split. Faculty of economics Split).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Computer Science, Physics, Chemistry, Ecology, Miscellaneous" + }, + { + "id": 32963, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Escobar, H., Cuevas, E., Toski, M., Ceron, F., & Perez-Cisneros, M. (2023). An agent-based model for public security strategies by predicting crime patterns.\u00a0IEEE Access.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32964, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Eslamizadeh, S., Ghorbani, A., & Weijnen, M. (2023). Establishing industrial community energy systems: Simulating the role of institutional designs and societal attributes. Journal of Cleaner Production, 138009.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32965, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Esmaelnezhad, D., Taghizadeh-Yazdi, M., Mahdiraji, H. A., & Vrontis, D. (2023). International strategic alliances for collaborative product Innovation: An agent-based scenario analysis in biopharmaceutical industry. Journal of Business Research, 158, 113663.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Strategic Alliances, Innovation, Agent-Based Modeling, Business Research" + }, + { + "id": 32966, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Essghaier, F., Chargui, T., Hsu, T., Bekrar, A., Allaoui, H., Trentesaux, D., & Goncalves, G. (2023). Fuzzy multi-objective truck scheduling in multi-modal rail-road Physical Internet hubs.\u00a0Computers & Industrial Engineering, 109404.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Fuzzy Multi-objective Truck Scheduling" + }, + { + "id": 32967, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Estrada-Jimenez, L. A., Kalateh, S., Hojjati, S. N., & Barata, J. (2023, June). A Bio-inspired and Altruistic-Based Framework to Support Collaborative Healing in a Smart Manufacturing Shop-Floor. In\u00a0Doctoral Conference on Computing, Electrical and Industrial Systems\u00a0(pp. 111-121). Cham: Springer Nature Switzerland.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32969, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Estrada-Jimenez, L. A., Pulikottil, T. B., Nikghadam-Hojjati, S., & Barata, J. (2023). Self-organization in Smart Manufacturing-Background, Systematic Review, Challenges and Outlook. IEEE Access.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Systematic Review, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32970, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Evans, B. (2023). Strategic decision-making in multi-agent markets: The emergence of endogenous crises and volatility (Doctoral dissertation).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32971, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Farhat, D. (2023). The economics and evolution of heroic behavior. Theoretical & Applied Economics, 30(3).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Economics" + }, + { + "id": 32972, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Fayad, P., Hadjipetrou, S., Leventis, G., Kavroudakis, D., & Kyriakidis, P. (2023). Designing an Agent-Based Model for a City-Level Simulation of COVID-19 Spread in Cyprus. In Proceedings of the 13th International Conference on Simulation and Modeling Methodologies, Technologies and Applications (SIMULTECH 2023) (pp. 218-224).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32973, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Feng, J., Liu, B., Tang, J., & Wang, Q. E. (2023). The Emergence of the Contractor\u2019s Innovation Capability at Project Level: An Agent-Based Modeling Approach. Buildings, 13(12), 2941.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32974, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Feng, J. R., Zhao, M., Yu, G., Zhang, J., & Lu, S. (2023). Dynamic risk analysis of accidents chain and system protection strategy based on complex network and node structure importance. Reliability Engineering & System Safety, 109413.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32975, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Feng, S., Laili, Y., Zhang, L., & Zhang, L. (2023, January). Model Library System Based on Multi-Domain Simulation Model Integration Interface. In Intelligent Networked Things: 5th China Conference, CINT 2022, Urumqi, China, August 7-8, 2022, Revised Selected Papers (pp. 491-500). Singapore: Springer Nature Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 32976, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Feng, Y., Zhou, C., Zou, Q., Liu, Y., Lyu, J., & Wu, X. (2023). A goal-based approach for modeling and simulation of different types of system-of-systems. Journal of Systems Engineering and Electronics, 34(3), 627-640.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32977, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Feuerwerker, S., Cockrell, R. C., & An, G. (2023). Characterizing the Crosstalk Between Programmed Cell Death Pathways in Cytokine Storm With an Agent-Based Model. Surgical Infections.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 32978, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ferrare, F. D. Otimiza\u00e7\u00e3o do UAM usando modelagem de VTOL baseada em sistemas multiagentes (Doctoral dissertation, Universidade de S\u00e3o Paulo).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32979, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ferreyra Coroy, V. M. (2023). Introducci\u00f3n al concepto de integral mediante un contexto de aproximaci\u00f3n de la longitud de una curva asociada a la columna vertebral con apoyo de tecnolog\u00eda digital (Master's thesis, Tesis (MC)--Centro de Investigaci\u00f3n y de Estudios Avanzados del IPN Departamento de Matem\u00e1tica Educativa).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Computer Science, Physics, Economics, History, Miscellaneous" + }, + { + "id": 32980, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Fikirli, \u00d6., & \u015eahin, H. T\u00fcrkiye\u2019de e-ticaret dif\u00fczyon patikas\u0131: Ajan bazl\u0131 modelleme. Afyon Kocatepe \u00dcniversitesi \u0130ktisadi ve \u0130dari Bilimler Fak\u00fcltesi Dergisi, 25(2), 265-283.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 32981, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Filandri, M., Pasqua, S., & Priori, E. (2023). Breaking through the glass ceiling. Simulating policies to close the gender gap in the Italian academia.\u00a0Socio-Economic Planning Sciences, 88, 101655.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 32982, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Fischer, H., Wijermans, N., & Schl\u00fcter, M. (2023). Testing the Social Function of Metacognition for Common\u2010Pool Resource Use. Cognitive Science, 47(3), e13212.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32983, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Francos, R. M., & Bruckstein, A. M. (2023). Guaranteed Evader Detection in Multi-Agent Search Tasks using Pincer Trajectories. arXiv preprint arXiv:2305.00533.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, Social Science, Education, Epidemiology" + }, + { + "id": 32984, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Flores L\u00f3pez, A. C. (2023). Modelizaci\u00f3n basada en el individuo de sistemas de tratamiento anaerobio en biopilas de suelos contaminados por hidrocarburos de petr\u00f3leo (Bachelor's thesis, Quito: UCE).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32985, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Foini, D., Rzyska, M., Baschmakov, K., & Murino, S. (2023). CrowdLogo: crowd simulation in NetLogo. arXiv preprint arXiv:2302.11036.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 32986, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Francos, R. M., & Bruckstein, A. M. (2023, September). Spiral Sweeping Protocols for Detection of Smart Evaders. In Annual Conference Towards Autonomous Robotic Systems (pp. 89-100). Cham: Springer Nature Switzerland.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32987, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Freire, M., Marichal, R., Dufrechou, E., & Ezzatti, P. (2023, August). in Sparse Matrix Kernels. In Cloud Computing, Big Data & Emerging Topics: 11th Conference, JCC-BD&ET 2023, La Plata, Argentina, June 27\u201329, 2023, Proceedings (p. 17). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32988, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Fuhrmann, T., Wagh, A., Rosenbaum, L. F., Eloy, A., Wilkerson, M., & Blikstein, P. (2023). How Can Computational Modeling Help Students Shift Their Ideas Towards Scientifically Accurate Explanations?. In Proceedings of the 17th International Conference of the Learning Sciences-ICLS 2023, pp. 441-448. International Society of the Learning Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computing, Ecology, Learning Sciences" + }, + { + "id": 32989, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Gamalaldin, Y. (2023). The role of procedural utility in land market dynamics in Greater Cairo: an agent based model application. Environment and Planning B: Urban Analytics and City Science.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32990, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Gao, D., & Yang, Y. (2023). Identifying the impact of artifacts-based exploration and exploitation on routines\u2019 formation dynamics: An agent-based model. Journal of Artificial Societies and Social Simulation, 26(3), 5.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32991, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Garcia Davalos, A. (2023). Mobile advertising spreading through personal social networks using a viral approach and branded apps (Doctoral dissertation, Enxe\u00f1ar\u00eda telem\u00e1tica).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32992, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Garcia-Diaz, J. G. (2023). WNT LIGAND-SPECIFIC SIGNALING IN BONE (Doctoral dissertation, Johns Hopkins University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Signaling, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32993, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Garcia, J. M., & Bittencourt, R. A. (2023, April). Um Mapeamento Sistem\u00e1tico da Literatura sobre Pensamento Computacional na Perspectiva dos Fundamentos Te\u00f3ricos de Aprendizagem. In Anais do III Simp\u00f3sio Brasileiro de Educa\u00e7\u00e3o em Computa\u00e7\u00e3o (pp. 01-12). SBC.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32994, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Garcia Davalos, A. (2023). Mobile advertising spreading through personal social networks using a viral approach and branded apps (Doctoral dissertation, Enxe\u00f1ar\u00eda telem\u00e1tica).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32995, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Garcia-Davalos, A., & Garcia-Duque, J. (2023). A Simplified Mobile Advertising Model to Study Advertising Spreading through Personal Social Networks and Branded Apps. Journal of Promotion Management, 1-34.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32996, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Garnelo, I., & Islas, C. (2023). \u00bf Hasta d\u00f3nde alcanza realmente la potencia explicativa de los modelos basados en la autoorganizaci\u00f3n en el \u00e1mbito del aprendizaje? How far does the explanatory power of models based on self-organization really reach in the field of learning?. LATAM Revista Latinoamericana de Ciencias Sociales y Humanidades, 4(2), 3307-3320.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32997, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Garz\u00f3n, M., \u00c1lvarez-Pomar, L., & Rojas-Galeano, S. (2023, February). An Agent-Based Model of Follow-the-leader Search Using Multiple Leaders. In Metaheuristics: 14th International Conference, MIC 2022, Syracuse, Italy, July 11\u201314, 2022, Proceedings (pp. 499-505). Cham: Springer International Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32998, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Gaur, S., & Singh, R. (2023). A Comprehensive Review on Land Use/Land Cover (LULC) Change Modeling for Urban Development: Current Status and Future Prospects. Sustainability, 15(2), 903.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 32999, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Geldart, E. A., Love, O. P., Barnas, A. F., Harris, C. M., Gilchrist, H. G., & Semeniuk, C. A. (2023). A colonial-nesting seabird shows limited heart rate responses to natural variation in threats of polar bears. Royal Society Open Science, 10(10), 221108.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33000, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Genin, A., Dupont, G., Valencia, D., Zucconi, M., Avila-Thieme, M. I., Navarrete, S., & Wieters, E. (2023). Easy, fast and reproducible Stochastic Cellular Automata with'chouca'. bioRxiv, 2023-11.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Stochastic Cellular Automata, Computer Science, Miscellaneous" + }, + { + "id": 33001, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Gerdes, L., Aigner, E., Meretz, S., Pahl, H., Schlemm, A., Scholz-W\u00e4ckerle, M., ... & Sutterl\u00fctti, S. (2023). COMMONSIM: Simulating the utopia of COMMONISM. Review of Evolutionary Political Economy, 1-37.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33002, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ghaitaranpour, A., Koocheki, A., & Mohebbi, M. (2023). Simulation of bread baking with a conceptual agent-based model: An approach to study the effect of proofing time on baking behavior.\u00a0Journal of Food Engineering, 111920.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Economics, Physics, Chemistry, Archaeology, Modeling" + }, + { + "id": 33003, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ghaleb, M., & Azzedin, F. (2023). Trust-Aware Fog-Based IoT Environments: Artificial Reasoning Approach. Applied Sciences, 13(6), 3665.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33004, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ghazimirsaeid, S. S., Jonban, M. S., Mudiyanselage, M. W., Marzband, M., Martinez, J. L. R., & Abusorrah, A. (2023). Multi-agent-based Energy Management of multiple Grid-connected green buildings. Journal of Building Engineering, 106866.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Energy Management, Grid-connected buildings" + }, + { + "id": 33005, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Giltri, M. (2023). From Real Affective States towards Affective Agents Modeling (Doctoral dissertation, University of Milano-Bicocca).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33006, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "G\u00f3mez Herrera, J. S. Aplicaci\u00f3n de un modelo de simulaci\u00f3n para evaluar la difusi\u00f3n de taxis el\u00e9ctricos en Colombia (Doctoral dissertation, Universidad Nacional de Colombia).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33007, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Gong, R., Hase, K., Ishikawa, N., Koshiba, R., & Minagawa, T. (2023). Pandemic Offline Informatics Education Using NetLogo-based Simulation for Course Scheduling in Japan. Bulletin of the Technical Committee on Learning Technology (ISSN: 2306-0212), 23(1), 13-19.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 33008, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Gotschalk, P. A. (2023). Affluenza. In Dictionary of Ecological Economics (pp. 7-8). Edward Elgar Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 33009, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Grajdura, S., Espeland, S., LanzDuret-Hernandez, J., & Rowangould, D. SARAH GRAJDURA, PH. D. Transportation Research Part D: Transport and Environment, 104, 103190.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Transportation Research" + }, + { + "id": 33010, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Granger, J. N. (2023). Behavioral and Geophysical Factors Influencing Success in Long Distance Navigation (Doctoral dissertation, Duke University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33011, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Grgurina, N., Tolboom, J., & de Vries, B. P. (2023, October). Evaluating the New Secondary Informatics Curriculum in The Netherlands: The Teachers\u2019 Perspective. In International Conference on Informatics in Schools: Situation, Evolution, and Perspectives (pp. 155-166). Cham: Springer Nature Switzerland.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Informatics, Economics" + }, + { + "id": 33012, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Gr\u00f8nbakken, J. A. (2023). Mathematical modeling of multi-agent search & task allocation (Master's thesis).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Mathematics" + }, + { + "id": 33013, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Grotzer, T. A., & Solis, S. L. (2023). Thinking Like an Earthling: Children's Reasoning About Individual and Collective Action Related to Environmental Sustainability. Topics in Cognitive Science.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33014, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Gruzauskas, V., Burinskiene, A., & Krisciunas, A. (2023). Application of Information-Sharing for Resilient and Sustainable Food Delivery in Last-Mile Logistics. Mathematics, 11(2), 303.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Mathematics" + }, + { + "id": 33015, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Gu, H., Feng, L., & Zhen, X. (2022). Study on the stability of anaerobic digestion of food waste and the waste mushroom substrate based on SBR reactor and Netlogo simulation. Journal of Material Cycles and Waste Management, 1-17.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 33016, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "G\u00dcLMEZ, B. (2023). Market zinciri \u00fcr\u00fcn da\u011f\u0131t\u0131m\u0131 probleminin farkl\u0131 genetik algoritma versiyonlar\u0131 ile \u00e7\u00f6z\u00fcm\u00fc ve kar\u015f\u0131la\u015ft\u0131rmas\u0131. Osmaniye Korkut Ata \u00dcniversitesi Fen Bilimleri Enstit\u00fcs\u00fc Dergisi, 6(1), 180-196.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Computer Science" + }, + { + "id": 33017, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Gumahad, B., & Collins, A. (2023). Visualizing and Characterizing Emergent Behavior of Drone Swarm Systems with Agent-Based Modeling. In IIE Annual Conference. Proceedings (pp. 1-6). Institute of Industrial and Systems Engineers (IISE).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Agent-Based Modeling, Computer Science, Economics, Ecology, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33018, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Gunaratne, C., Hatna, E., Epstein, J. M., & Garibay, I. (2023). Generating mixed patterns of residential segregation: An evolutionary approach. Journal of Artificial Societies and Social Simulation, 26(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33019, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "G\u00fcrcan, \u00d6., Szczepanska, T., & Antosz, P. (2023, September). A Guide to Re-implementing Agent-Based Models: Experiences from the HUMAT Model. In Conference of the European Social Simulation Association (pp. 519-531). Cham: Springer Nature Switzerland.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33020, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Haase, K., Reinhardt, O., Lewin, W. C., Weltersbach, M. S., Strehlow, H. V., & Uhrmacher, A. M. (2023). Agent-Based Simulation Models in Fisheries Science. Reviews in Fisheries Science & Aquaculture, 1-24.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33021, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Haberle, I., Bav\u010devi\u0107, L., & Klanjscek, T. Fish condition as an indicator of stock status: Insights from condition index in a food\u2010limiting environment. Fish and Fisheries.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Fish" + }, + { + "id": 33022, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Haddad, B. M., & Solomon, B. D. (Eds.). (2023). Dictionary of Ecological Economics: Terms for the New Millennium. Edward Elgar Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Ecological Economics" + }, + { + "id": 33023, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Haensel, M., Schmitt, T. M., & Bogenreuther, J. (2023). Teaching the Modeling of Human\u2013Environment Systems: Acknowledging Complexity with an Agent-Based Model. Journal of Science Education and Technology, 1-11.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33024, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "H\u00e4gglund, M. (2023). Agent Based Modelling for Simulating the Interregional Patient Mobility in Italy. CARING IS SHARING\u2013EXPLOITING THE VALUE IN DATA FOR HEALTH AND INNOVATION, 297.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33025, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Hamdi, M., & Go\u00efta, K. (2023). Analysis of Groundwater Depletion in the Saskatchewan River Basin in Canada from Coupled SWAT-MODFLOW and Satellite Gravimetry. Hydrology, 10(9), 188.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Groundwater, Geology, Satellite, Physics, Chemistry, Hydrology" + }, + { + "id": 33026, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Hamdi, M., & Go\u00efta, K. (2023). Estimation of Aquifer Storativity Using 3D Geological Modeling and the Spatial Random Bagging Simulation Method: The Saskatchewan River Basin Case Study (Central Canada). Water, 15(6), 1156.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Geology, Modeling, Simulation, Spatial Analysis, Water Science" + }, + { + "id": 33027, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Hamed, N. A., & Hasson, S. T. (2023, April). A Developed Centralized Stable Clustering Approach for Vehicular Networks. In 2023 IEEE 12th International Conference on Communication Systems and Network Technologies (CSNT) (pp. 867-872). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33028, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Han, F., Zeng, J., Lin, J., Zhao, Y., & Gao, C. (2023). A stochastic hierarchical optimization and revenue allocation approach for multi-regional integrated energy systems based on cooperative games. Applied Energy, 350, 121701.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Optimization, Revenue Allocation, Cooperative Games" + }, + { + "id": 33029, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Han, J., Tan, Q., Ji, Q., Li, Y., Liu, Y., & Wang, Y. (2023). Simulating the CCUS technology diffusion in thermal power plants: An agent-based evolutionary game model in complex networks. Journal of Cleaner Production, 421, 138515.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33030, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Han, N., & Liu, Z. (2023). Targeting alternative splicing in cancer immunotherapy. Frontiers in Cell and Developmental Biology, 11.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Cell and Developmental Biology, Frontiers" + }, + { + "id": 33031, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Han, Y. (2023). The Integration of New Media Communication and Social Network Based on Computer Technology. Media and Communication Research, 4(7), 13-21.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 33032, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Han, Z., Mitani, Y., Kawano, K., Taniguchi, H., Honda, H., Meng, L., & Li, Z. (2023). Quantitative assessment of flooding risk based on predicted evacuation time: A case study in Joso city, Japan. International Journal of Disaster Risk Reduction, 104113.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33033, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Hanisch, S., Eirdosh, D., & Morgan, T. (2023). Evolving cooperation and sustainability for common pool resources. In Learning evolution through socioscientific issues (pp. 127-147). UA Editora.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Sociology" + }, + { + "id": 33034, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Hanisch, S., & Eirdosh, D. (2023). Behavioral Science and Education for Sustainable Development: Towards Metacognitive Competency. Sustainability, 15(9), 7413.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Education, Economics" + }, + { + "id": 33035, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Hartman, C. R. A. (2023). Hierarchically Embedded Social Dynamics in Vampire Bats (Doctoral dissertation, The Ohio State University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 33036, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Hassanpour, S., Gonzalez, V. A., Zou, Y., Liu, J., Wang, F., del Rey Castillo, E., & Cabrera-Guerrero, G. (2023). Incorporation of BIM-based probabilistic non-structural damage assessment into agent-based post-earthquake evacuation simulation. Advanced Engineering Informatics, 56, 101958.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33037, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Hatzis, J. J., Kim, J., & Klockow-McClain, K. E. (2024). An Agent-Based Modeling Approach to Protective Action Decision-Related Travel during Tornado Warnings. Natural Hazards Review, 25(1), 04023057.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33038, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Hayes, C. G. (2023).\u00a0Expanding the Fisheries Management Tackle Box: A Multiple-Model Approach to Support Better Decisions\u00a0(Doctoral dissertation, University of Maryland, College Park).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33039, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Hayes, R. (2023). Epistemic Agency in Lab: When, Why, and How Introductory College Biology Students Direct Their Own Science Investigations (Doctoral dissertation, Tufts University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33040, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Hayes, R. J. (2023). Towards a Formal Theory of Humor in Organizations (Doctoral dissertation, Old Dominion University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33041, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Hazlerigg, C. R., Mintram, K. S., Tyler, C. R., Weltje, L., & Thorbek, P. (2023). HARNESSING MODELLING FOR ASSESSING THE POPULATION RELEVANCE OF EXPOSURE TO ENDOCRINE ACTIVE CHEMICALS. Environmental Toxicology and Chemistry.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33042, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Hedger, R. D., Sundt\u2010Hansen, L. E., Ju\u00e1rez\u2010G\u00f3mez, A., Alfredsen, K., & Foldvik, A. (2023). Exploring sensitivities to hydropeaking in Atlantic salmon parr using individual\u2010based modelling. Ecohydrology, e2553.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Modeling" + }, + { + "id": 33043, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "H\u00e9nard, A., Rivi\u00e8re, J., Peillard, E., Kubicki, S., & Coppin, G. (2023). A unifying method-based classification of robot swarm spatial self-organisation behaviours. Adaptive Behavior, 10597123231163948.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 33044, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Heppenstall, A., Polhill, J. G., Batty, M., Hare, M., Salt, D., & Milton, R. (2023). Exascale Agent-Based Modelling for Policy Evaluation in Real-Time (ExAMPLER)(Short Paper). In 12th International Conference on Geographic Information Science (GIScience 2023). Schloss Dagstuhl-Leibniz-Zentrum f\u00fcr Informatik.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33045, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Heras, A., Sanchez-Enguix, V., Alberola, J. M., & Perez-Pascual, A. (2023). A BOARD GAME-BASED VIRTUAL ENVIRONMENT FOR INTELLIGENT BOTS PROGRAMMING. In INTED2023 Proceedings (pp. 3062-3068). IATED.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Miscellaneous" + }, + { + "id": 33046, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Herath, G. B., & Secchi, D. (2023). Organization-cognition fit: Supplementing or complementing team's capabilities?. In Organizational Cognition (pp. 120-144). Routledge.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Organization" + }, + { + "id": 33047, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Herberich, M. M., Gayler, S., & Tielb\u00f6rger, K. (2023). Environmental heterogeneity promotes coexistence among plant life-history strategies through stabilizing mechanisms in space and time. Basic and Applied Ecology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 33048, + "sort": null, + "year": 2023, + "is_ccl": true, + "reference": "Hershkovitz, A., Bain, C., Kelter, J., Peel, A., Wu, S., Horn, M. S., & Wilensky, U. (2023). Contribution of Computational Thinking to STEM Education: High School Teachers' Perceptions after a Professional Development Program. Journal of Computers in Mathematics and Science Teaching, 42(1), 35-65.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computational Thinking" + }, + { + "id": 33049, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Hicks, D. E. (2023). An Introduction to Complexity Pedagogy: Using Critical Theory, Critical Pedagogy and Complexity in Performance and Literature. Stylus Publishing, LLC.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33050, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Hipkiss, C. V. (2023). Stress in paradise: Reconstructing late holocene hydroclimate to investigate the role of drought in the timing of human migration and colonisation in the tropical South Pacific (Doctoral dissertation, University of Southampton).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33051, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Hu, H., & Wang, N. (2023). Dynamics of Business-IT Alignment: A Complex Adaptive System Model. PACIS 2023 Proceedings,\u00a016.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33052, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Hu, W., Dong, Z., Huang, X., Gao, Y., Zhang, Z., & Hao, J. (2023, April). Photovoltaic inverter anomaly detection method based on LSTM serial depth autoencoder. In Journal of Physics: Conference Series (Vol. 2474, No. 1, p. 012026). IOP Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "LSTM serial depth autoencoder" + }, + { + "id": 33053, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Hu, X., Yang, Z., Sun, J., & Zhang, Y. (2023). Optimal pricing strategy for electric vehicle battery swapping: Pay-per-swap or subscription?. Transportation Research Part E: Logistics and Transportation Review, 171, 103030.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 33054, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Huang, R., Liu, G., Li, K., Liu, Z., Fu, X., & Wen, J. (2023). Evolution of residents' cooperative behavior in neighborhood renewal: An agent-based computational approach. Computers, Environment and Urban Systems, 105, 102022.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33055, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Huang, Y., Guo, Z., Chu, H., & Sengupta, R. (2023). Evacuation Simulation Implemented by ABM-BIM of Unity in Students\u2019 Dormitory Based on Delay Time. ISPRS International Journal of Geo-Information, 12(4), 160.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science" + }, + { + "id": 33056, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Huber, M., & Karaali, G. (2023). Mathematics and Society. Journal of Humanistic Mathematics, 13(2), 1-3.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Mathematics" + }, + { + "id": 33057, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Huber, R., Sp\u00e4ti, K., & Finger, R. (2023). A behavioural agent-based modelling approach for the ex-ante assessment of policies supporting precision agriculture. Ecological Economics, 212, 107936.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Modelling" + }, + { + "id": 33058, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Huckins, E. (2023). Challenges and opportunities for consumers and producers in Central Iowa local food systems (Doctoral dissertation, Iowa State University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33059, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Hughes, J. D., Langevin, C. D., Paulinski, S. R., Larsen, J. D., & Brakenhoff, D. (2023). FloPy Workflows for Creating and Constructing Structured and Unstructured MODFLOW 6 Models. Groundwater.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33060, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Hui, H., Gong, Z., An, J., & Qi, J. (2023). A dynamic Bayesian-based comprehensive trust evaluation model for dispersed computing environment.\u00a0China Communications,\u00a020(2), 278-288.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33061, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Hulkkonen, M., Kaaronen, R. O., Kokkola, H., Mielonen, T., Clusius, P., Xavier, C., ... & Malila, J. (2023). Modeling non-linear changes in an urban setting: From pro-environmental affordances to responses in behavior, emissions and air quality. Ambio, 52(5), 976-994.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33062, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Husarek, D. (2023). Analysis of sector-coupling effects between the mobility sector and the energy system under consideration of energy transport and charging infrastructure (Doctoral dissertation, Technische Universit\u00e4t Darmstadt).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33063, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Hussain, H., & de Vries, M. (2023). Extending the Meta Model for Enterprise Systems Dynamics from a Software Tooling Perspective. In Proceedings of the 15th International Joint Conference on Knowledge Discovery, Knowledge Engineering and Knowledge Management (IC3K 2023) (Vol. 2, pp. 50-61). SCITEPRESS.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33064, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Iancu, L. D., Dragoi, P. A., & Delcea, C. (2023, June). Computer Modeling of Evacuation Patterns Comparison and Crowd Dynamics: A Use of NetLogo. In\u00a0IBIMA Conference on Artificial intelligence and Machine Learning\u00a0(pp. 356-367). Cham: Springer Nature Switzerland.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 33065, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ibrahim, S., & Maheshwari, P. (2023, March). Non-Pharmaceutical Intervention measures in the UAE\u2013What Next?. In 2023 International Conference on Computational Intelligence and Knowledge Economy (ICCIKE) (pp. 226-231). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33066, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Iii, B. Y. (2023). Combining Block-Based Programming With Robotics Kits to Support a Middle School Computing Curriculum (Doctoral dissertation, Vanderbilt University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Chemistry" + }, + { + "id": 33067, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ilagan, J. B., & Ilagan, J. R. (2023, July). Teaching Diffusion of Innovations Involving Technology Startups Using Agent-Based Simulation Modeling: Architecture and Design Considerations. In International Conference on Human-Computer Interaction (pp. 298-311). Cham: Springer Nature Switzerland.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33068, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ilyas, N. A. J. I. (2023). Comparison of a posteriori error estimators. The 14th Edition of\" Journ\u00e9es d'Analyse Num\u00e9rique Optimisation, 75(256), 1659-1674.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Comparison" + }, + { + "id": 33069, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ionescu, \u0218., Chiri\u021b\u0103, N., Nica, I., & Delcea, C. (2023). An Analysis of Residual Financial Contagion in Romania\u2019s Banking Market for Mortgage Loans. Sustainability, 15(15), 12037.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33070, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Isherwood, A., Koehler, M., & Slater, D. (2023, December). Using Evolutionary Model Discovery to Develop Robust Policies. In 2023 Winter Simulation Conference (WSC) (pp. 130-137). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Evolutionary Model Discovery" + }, + { + "id": 33071, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ismael, W. K. F. A., & Ucan, O. (2023). Vanet performance evaluation in terms of nodes distribution, mobility models, and routing protocols. Technium: Romanian Journal of Applied Sciences and Technology, 8, 32-45.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33072, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Iswara, L., Gunawan, F. E., & Alamsjah, F. (2023, April). Assessing task difficulty, team-member ability, and motivation on the team productivity by an agent-based model. In AIP Conference Proceedings (Vol. 2594, No. 1). AIP Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33073, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Itahashi, K. (2023). Effeteness of Programing Education in Science Classroom\u2014Through a Review of Studies on Programming Education.\u00a0JSSE Research Report,\u00a037(5), 29-34.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Programming Education, Science Classroom" + }, + { + "id": 33074, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ivanova, Y. A. (2023, September). Building Drawing Simulation Models for the Purposes of Industrial Design. In 2023 International Conference on Information Technologies (InfoTech) (pp. 1-4). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Chemistry" + }, + { + "id": 33075, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ivanova, Y. (2023). APPLICATIONS OF DIGITAL TRANSFORMATIONS AND SIMULATION MODELING IN AEROSPACE ENGINEERING AND SECURITY. International Journal on Information Technologies & Security, 15(3).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Ecology, Archaeology, Security" + }, + { + "id": 33076, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Jagutis, M., Russell, S., & Collier, R. (2023). Flexible simulation of traffic with microservices, agents & REST. International Journal of Parallel, Emergent and Distributed Systems, 1-17.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology" + }, + { + "id": 33077, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Jahn, L., Rendsvig, R. K., & St\u00e6rk-\u00d8stergaard, J. (2023). Detecting Coordinated Inauthentic Behavior in Likes on Social Media: Proof of Concept. arXiv preprint arXiv:2305.07350.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33078, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Jaimez-Gonz\u00e1lez, C. R., Erazo-Palacios, J., & Garc\u00eda-Mendoza, B. (2023). BlockCode: A Web Application to Create Games that Support the Learning of Computer Programming Logic. International Journal of Emerging Technologies in Learning, 18(15).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 33079, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Jayathilake, P., Victori, P., Pavillet, C., Voukantsis, D., Miar Cuervo, A., Arora, A., ... & Buffa, F. M. (2023). Metabolic Symbiosis between Oxygenated and Hypoxic Tumour Cells: An Agent-based Modelling Study.\u00a0bioRxiv, 2023-07.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modelling" + }, + { + "id": 33080, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "JE, O. (2023). SIX TIPS FOR BETTER CODING WITH CHATGPT. Nature, 618.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Coding" + }, + { + "id": 33081, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Jen, T., Brady, C. E., Vogelstein, L., & Ayalon, E. (2023). Designing for Feelings: Disruptive Beginnings in Youths\u2019 Designs of Mixed Reality Activities for Sustainability. In Proceedings of the 17th International Conference of the Learning Sciences-ICLS 2023, pp. 950-953. International Society of the Learning Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Learning Sciences" + }, + { + "id": 33082, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Jevti\u0107, M., Mladenovi\u0107, S., & Grani\u0107, A. (2023). Source Code Analysis in Programming Education: Evaluating Learning Content with Self-Organizing Maps. Applied Sciences, 13(9), 5719.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 33083, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ji, J. (2023, October). Construction of public policy decision-making model based on big data analysis from the perspective of sustainable development. In Second International Conference on Sustainable Technology and Management (ICSTM 2023) (Vol. 12804, pp. 434-441). SPIE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Construction, Big Data, Sustainable Development" + }, + { + "id": 33084, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Jialin, L. I. U., Xianyu, Z. H. A. N. G., & Da, P. A. N. G. (2023). Research progress of adaptive therapy strategy based on Darwinian dynamics in tumor therapy. China Oncology, 33(4), 397-402.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Tumor Therapy, Darwinian Dynamics" + }, + { + "id": 33085, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Jiang, F., & Chen, Z. (2023, May). Behavior Simulation of Disturbed UAV Based on NetLogo. In 2023 5th International Conference on Intelligent Control, Measurement and Signal Processing (ICMSP) (pp. 1143-1147). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 33086, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Jiang, J., & Sun, R. (2023, April). Research on the opinion evolution process under the effect of time delay. In Third International Conference on Artificial Intelligence and Computer Engineering (ICAICE 2022) (Vol. 12610, pp. 1499-1506). SPIE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Opinion Evolution, Artificial Intelligence, Computer Engineering, Conference, SPIE" + }, + { + "id": 33087, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Jiang, J., & Sun, R. (2023, June). Model of the evolution of opinion propagation under the effect of group pressure. In International Conference on Pure, Applied, and Computational Mathematics (PACM 2023) (Vol. 12725, pp. 8-16). SPIE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33088, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Jiang, X., Jia, R., & Yang, L. (2023). Assessing the economic ripple effect of flood disasters in light of the recovery process: Insights from an agent\u2010based model. Risk analysis.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Economics, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33089, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Jie, Y. A. N. G. Assessment of train passengers\u2019 pre-and post-boarding behaviors and insights into platform and carriage design, preference, and satisfaction (Doctoral dissertation, RMIT University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33090, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Jin, C. (2023). A dynamic management mechanism for object cooperation in the social Internet of Things (Doctoral dissertation, University of Manchester).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33091, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Jin, H., Zhang, S., Zhang, B., Dong, S., Liu, X., Zhang, H., & Tan, J. (2023). Evolutionary game decision-making method for network attack and defense based on regret minimization algorithm. Journal of King Saud University-Computer and Information Sciences, 35(3), 292-302.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33092, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Jing, K. (2023). Design of control algorithms for false information dissemination in smart city social media based on symmetric triangle interval. Soft Computing, 1-15.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 33093, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Johnson, M., Lewis, T., Martin, K., Cesare, A., Schmitt, A., Lengerich, E., ... & Divyak, C. (2023). The Science of COVID-19. The Science Teacher, 90(3).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33094, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Jones, J. M (2023). A processual theory of strategic consensus (Doctoral dissertation, University of Georgia).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33095, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "J\u00f8rgensen, B. N., da Silva, L. C. P., & Ma, Z. (Eds.). (2023). Energy Informatics: Third Energy Informatics Academy Conference, EI. A 2023, Campinas, Brazil, December 6\u20138, 2023, Proceedings, Part II (Vol. 14468). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33096, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "J\u00fcnger, J., & G\u00e4rtner, C. (2023). Simulationsverfahren. In Computational Methods f\u00fcr die Sozial-und Geisteswissenschaften (pp. 423-434). Wiesbaden: Springer Fachmedien Wiesbaden.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computation, Social Science, Economics, Archaeology, Computer Science, Miscellaneous" + }, + { + "id": 33097, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "J\u00fanior, A. O., Calvo-Rolle, J. L., & Leit\u00e3o, P. (2023, April). Artificial Intelligence Data-Driven Petri nets Approach for Virtualizing Digital Twins. In 2023 IEEE International Conference on Industrial Technology (ICIT) (pp. 1-6). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Artificial Intelligence, Petri nets, Digital Twins" + }, + { + "id": 33098, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "K\u00e4fer, T., Charpenay, V., & Harth, A. (2023). BOLD: A Benchmark for Linked Data User Agents and a Simulation Framework for Dynamic Linked Data Environments.\u00a0arXiv preprint arXiv:2307.09114.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 33099, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Kaimal, A. M., & Singhal, R. S. (2023). Bigels for controlled gastric release of ascorbic acid: Impact on rheology, texture, thermal stability and antioxidant activity. Food Hydrocolloids for Health, 100171.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Rheology, Texture, Thermal Stability, Antioxidant Activity" + }, + { + "id": 33100, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Karalidis, K., Roumpos, C., Servou, A., Paraskevis, N., & Pavloudakis, F. (2023). A Scenario-Based Analysis for the Selection of Post-Mining Land Uses Applying a Cellular Automata Model. Materials Proceedings, 15(1), 4.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33101, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Karimian, H., Fan, Q., Li, Q., Chen, Y., & Shi, J. (2023). Spatiotemporal transmission of infectious nanochemical particles in water environment: A case study of Covid-19. Chemosphere, 139065.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Infectious Diseases, Chemistry, Environmental Science, Physics, Epidemiology, Computer Science" + }, + { + "id": 33102, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Karutz, R., Klassert, C. J., & Kabisch, S. (2023). On Farmland and Floodplains\u2014Modeling Urban Growth Impacts Based on Global Population Scenarios in Pune, India. Land, 12(5), 1051.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33103, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Katalevsky, D. (2023). New Governance Approaches to Prevent the Collapse of Complex Socioeconomic Systems. Foresight and STI Governance, 17(3), 56-67.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology\nEcology" + }, + { + "id": 33104, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Kavitha, P., & Latha, S. D (2023). Genetic fuzzy logic algorithm as intelligent agents for swarm intelligence application. ICTACT Journal on Soft Computing, 14(3), 3243-48.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Genetic fuzzy logic\nswarm intelligence" + }, + { + "id": 33105, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ke, L., Kirk, E., Lesnefsky, R., & Sadler, T. D. (2023). Exploring system dynamics of complex societal issues through socio-scientific models. In Frontiers in Education (Vol. 8). Frontiers Media SA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33106, + "sort": null, + "year": 2023, + "is_ccl": true, + "reference": "Kelter, J., Wilensky, U., & Potvin, J. (2023). Introducing Land Constraints to Macroeconomic Agent-Based Models. In Z. Yang & S. N\u00fa\u00f1ez-Corrales (Eds.), Proceedings of the 2022 Conference of The Computational Social Science Society of the Americas (pp. 35\u201348). Springer International Publishing. https://doi.org/10.1007/978-3-031-37553-8_3", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Macroeconomic, Agent-Based Models, Computational Social Science, Physics, Computer Science, Economics" + }, + { + "id": 33107, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Khaddage, F., Lattemann, C., & Gebbing, P. (2023, February). Towards User2Machine Model for Higher Education-Enforced by Covid19 Pandemic. In Learning in the Age of Digital and Green Transition: Proceedings of the 25th International Conference on Interactive Collaborative Learning (ICL2022), Volume 2 (pp. 163-171). Cham: Springer International Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33108, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Khair, F., Wijaya, D. I., & Yulianto, H. D. (2023, August). Basic model simulation for disaster evacuation routes evaluation using agent based modeling (ABM). In AIP Conference Proceedings (Vol. 2485, No. 1). AIP Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33109, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Khajouei, M. S. H., Pilevari, N., Radfar, R., & Mohtashami, A. (2023). Iran\u2019s Steel Chain Interactive Network Mapping. International Journal of ISSI.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33110, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Khan, J. R., Siddiqui, F. A., Rizwan, W., & Hamid, I. (2023). State of the Art Systematic Literature Review on Selection of Top Ten WSN Simulators\u2013Part A.\u00a0Journal of Independent Studies and Research Computing,\u00a021(2), 42-49.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33111, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Khan, Z., Koubaa, A., Benjdira, B., & Boulila, W. (2023). A game theory approach for smart traffic management.\u00a0Computers and Electrical Engineering,\u00a0110, 108825.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Game Theory" + }, + { + "id": 33112, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Khound, P., Will, P., Tordeux, A., & Gronwald, F. (2023). The Over-Damped String Stability Condition for a Platooning System.\u00a0System Theory, Control and Computing Journal,\u00a03(1), 12-19.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33113, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Kiel, L. (2023). The Importance of Replication In Uncertain Epistemic Landscapes (Master's thesis).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33114, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Kim, G., & Heo, G. (2023). Agent-based radiological emergency evacuation simulation modeling considering mitigation infrastructures. Reliability Engineering & System Safety, 109098.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Radiological Emergency, Simulation, Infrastructure" + }, + { + "id": 33115, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Kim, Y. J., & Wang, J. (2023). Nondestructive Testing of Bridge Decks: Case Study and Suggestions. ACI Structural Journal, 120(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33116, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Kleiner, G., Rybachuk, M., & Ushakov, D. (2023, July). Behavioral Model of Interaction Between Economic Agents and the Institutional Environment. In Modeling and Simulation of Social-Behavioral Phenomena in Creative Societies: Second International Conference, MSBC 2022, Vilnius, Lithuania, September 21\u201323, 2022, Proceedings (p. 48). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33117, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "KLINEC, M. (2023). Agentno modeliranje dinamike tropov volkov v okolju NetLogo (Doctoral dissertation, Univerza v Ljubljani, Fakulteta za ra\u010dunalni\u0161tvo in informatiko).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 33118, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Knepper, H. J., Evans, M. D., & Henley, T. J. (Eds.). (2023). Intersectionality and Crisis Management: A Path to Social Equity. Taylor & Francis.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33119, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ko, C., Cho, W., Hwang, B., Chang, B., Kang, W., & Ko, D. W. (2023). Simulating Hunting Effects on the Wild Boar Population and African Swine Fever Expansion Using Agent-Based Modeling. Animals, 13(2), 298.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Simulation, Modeling" + }, + { + "id": 33120, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Koch, J., & De Schamphelaere, K. A. (2023). Investigating population level toxicity of the antidepressant citalopram in harpacticoid copepods using in vivo methods and bioenergetics\u2010based population modeling. Environmental Toxicology and Chemistry.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 33121, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Koenig, L. J., Khurana, N., Islam, M. H., Gopalappa, C., & Farnham, P. G. (2023). Closing the gaps in the continuum of depression care for persons with HIV: modeling the impact on viral suppression in the United States. AIDS, 37(7), 1147-1156.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33122, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Koide, R., Yamamoto, H., Nansai, K., & Murakami, S. (2023). Agent-based model for assessment of multiple circular economy strategies: Quantifying product-service diffusion, circularity, and sustainability. Resources, Conservation and Recycling, 199, 107216.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33123, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Kolligs, T. (2023). The Slow Spread of Environmentally Friendly Action: An agent-based model simulation of social networks (Master's thesis, Stockholm University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33124, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Kolodner, J. L. (2023). Learning engineering: What it is, why I\u2019m involved, and why I think more of you should be. Journal of the Learning Sciences, 32(2), 305-323.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Learning sciences" + }, + { + "id": 33125, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Kong, L., Wang, L., Cao, Z., & Wang, X. (2023). Resilience evaluation of UAV swarm considering resource supplementation. Reliability Engineering & System Safety, 109673.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33126, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Kortsch, S., Saravia, L., Cirtwill, A. R., Timberlake, T., Memmott, J., Kendall, L., ... & Strona, G. (2023). Landscape composition and pollinator traits interact to influence pollination success in an individual\u2010based model. Functional Ecology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Miscellaneous" + }, + { + "id": 33127, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "K\u00f6stler, V. (2023). Zwischen Pr\u00e4zision und Sensitivit\u00e4t: Generierung eines Studienkorpus am Beispiel einer Fragestellung zu K\u00fcnstlicher Intelligenz (KI) in Bildungsprozessen. MedienP\u00e4dagogik: Zeitschrift f\u00fcr Theorie und Praxis der Medienbildung, 54, 1-27.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 33128, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Kousar, H., Fatima, S., Ahmed, S. I., Sajithra, S., Kushwaha, S., & Balaji, N. A. (2023, September). AI Based Security for Internet of Transportation Systems. In 2023 4th International Conference on Smart Electronics and Communication (ICOSEC) (pp. 701-708). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Artificial Intelligence, Security, Electronics, Communication" + }, + { + "id": 33129, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Kout, A., Bouaita, B., Beghriche, A., Labed, S., Chikhi, S., & Bourennane, E. B. (2023). A Hybrid Optimization Solution for UAV Network Routing. Engineering, Technology & Applied Science Research, 13(2), 10270-10278.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33130, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Kumar, P., Raglin, A., & Richardson, J. (2023, July). General Agent Theory of Mind: Preliminary Investigations and Vision. In International Conference on Human-Computer Interaction (pp. 504-515). Cham: Springer Nature Switzerland.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33131, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Kumar, R., & Agrawal, N. (2023). Analysis of multi-dimensional Industrial IoT (IIoT) data in Edge-Fog-Cloud based architectural frameworks: A survey on current state and research challenges. Journal of Industrial Information Integration, 100504.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Industrial Information Integration, IoT, Research Challenges, Survey" + }, + { + "id": 33132, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Kumari, S. (2023). Trust Management in Social Internet of Things: Challenges and Future Directions. International Journal of Computing and Digital Systems, 14(1), 1-xx.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Trust Management" + }, + { + "id": 33133, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Kunz, N., Chesney, T., Trautrims, A., & Gold, S. (2023). Adoption and transferability of joint interventions to fight modern slavery in food supply chains. International Journal of Production Economics, 258, 108809.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33134, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Kuroswiski, A. R., Medeiros, F. L. L., De Marchi, M. M., & Passaro, A. (2023). Beyond visual range air combat simulations: validation methods and analysis using agent-based models. The Journal of Defense Modeling and Simulation, 15485129231211915.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33135, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Kusumah, H., & Wasesa, M. (2023). Unraveling the Most Influential Determinants of Residential Segregation in Jakarta: A Spatial Agent-Based Modeling and Simulation Approach. Systems, 11(1), 20.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33136, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Lang, D., & Ertsen, M. W. (2023). Modelling farmland dynamics in response to farmer decisions using an advanced irrigation-related agent-based model. Ecological Modelling, 486, 110535.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33137, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Langbeheim, E., Ben-Hamo, S., Weintraub, G., & Shapira, S. (2023, April). Reasoning about crowd evacuations as emergent phenomena when using participatory computational models. In Frontiers in Education (Vol. 8, p. 1137828). Frontiers.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33138, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Larsson, A., & Gro\u00dfe, C. (2023). Data use and data needs in critical infrastructure risk analysis. Journal of Risk Research, 26(5), 524-546.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33139, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Le, H. (2023). Automated Discovery of Candidate Simulation Models for Steering Behavior Simulation (Doctoral dissertation, Georgia State University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33140, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Le, N. T. T. (2023). Multi-agent reinforcement learning for traffic congestion on one-way multi-lane highways. Journal of Information and Telecommunication, 1-15.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33141, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Le Pira, M., Marcucci, E., Gatta, V., Ignaccolo, M., & Inturri, G. (2023). 16. Participatory decision-support tools for stakeholder engagement in urban freight transport policy making. Handbook on City Logistics and Urban Freight: 0, 327.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33142, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ledder, G. (2023). Modeling in Biology. In Mathematical Modeling for Epidemiology and Ecology (pp. 3-44). Cham: Springer International Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematical Modeling" + }, + { + "id": 33143, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Lee, I. P. A., Eldakar, O. T., Gogarten, J. P., & Andam, C. P. (2023). Protocol for an agent-based model of recombination in bacteria playing a public goods game. STAR protocols, 4(4), 102733.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 33144, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Lee, I. P. A., Eldakar, O. T., Gogarten, J. P., & Andam, C. P. (2023). Recombination as an enforcement mechanism of prosocial behavior in cooperating bacteria. iScience.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33145, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Lei, H., Wang, H., Wang, L., Dong, Y., Cheng, J., & Cai, K. (2023). An Analysis of the Evolution of Online Public Opinion on Public Health Emergencies by Combining CNN-BiLSTM+ Attention and LDA. Journal of Computer and Communications, 11(4), 190-199.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33146, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Le\u00f3n, J., Ogueda, A., Gubler, A., Catal\u00e1n, P., Correa, M., Casta\u00f1eda, J., & Beninati, G. (2023). Increasing resilience to catastrophic near-field tsunamis: systems for capturing, modelling, and assessing vertical evacuation practices. Natural Hazards, 1-27.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, Economics, History, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33147, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Leonard-Duke, J., Bonham, C., & Peirce, S. M. (2023). Low Vascular Endothelial Growth Factor Levels and Increasing Environmental Stiffness Potentiate Vascular Hyper-remodeling in Computational Model of Idiopathic Pulmonary Fibrosis. In A65. THE ALVEOLAR NICHE IN THE SPOTLIGHT OF LUNG FIBROSIS (pp. A2190-A2190). American Thoracic Society.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Vascular Biology, Computational Modeling, Pulmonary Fibrosis" + }, + { + "id": 33148, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Lessnau, T. A. (2023). An agent-based model of the canadian housing market (Doctoral dissertation, Universit\u00e9 du Qu\u00e9bec en Outaouais).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33149, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Lestari, D. P., Kosasih, R., Sari, I., & Amalia, A. (2023, August). Fire detection system on surveillance videos using faster region-based convolutional neural network for high buildings evacuation. In AIP Conference Proceedings (Vol. 2431, No. 1). AIP Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33150, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Lestari, D. P., Putra, H. D., & Sari, I. (2023, July). Prototype of evacuation management system on high rise building using stochastic dynamical optimization system. In AIP Conference Proceedings (Vol. 2689, No. 1). AIP Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33151, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Li, D., Yang, J., Li, J., Zhao, N., Ju, W., & Guo, M. (2023). Agent-Based Modeling and Simulation (ABMS) on the influence of adjusting medical service fees on patients' choice of medical treatment. BMC Health Services Research, 23(1), 928.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Computer Science, Physics, Chemistry, Health Services, Sociology" + }, + { + "id": 33152, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Li, H., & Zhang, H. (2023). Cost-effectiveness analysis of COVID-19 screening strategy under China's dynamic zero-case policy. Frontiers in Public Health, 11, 1099116.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Economics, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33153, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Li, J., Wan, Q., & Yu, Z. (2023, November). Research on network security algorithms in distributed computing environment. In International Conference on Internet of Things and Machine Learning (IoTML 2023) (Vol. 12937, pp. 82-87). SPIE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Network security algorithms" + }, + { + "id": 33154, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Li, L., Yuwen, Z., Zhu, J., Li, P., Duan, M., & Guo, X. Decision Support for Regeneration Mode of Old Community Under Multi-Agent Interaction: Evidence from China. Available at SSRN 4570595.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33155, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Li, P. (2023). \u57fa\u4e8e\u7edf\u8ba1\u5206\u6790\u65b9\u6cd5\u7684\u7f51\u7ea2\u76f4\u64ad\u5e26\u8d27\u6548\u679c\u5f71\u54cd\u56e0\u7d20\u7814\u7a76 (Doctoral dissertation, Arizona State University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33156, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Li, W., Lv, M., Hao, J., Chen, J., & Yu, K. Dynamic Simulation and Control Strategy Exploration of Unsafe Behavior of Coal Mine Staff. Maoyun and Hao, Jian and Chen, Jing and Yu, Kai, Dynamic Simulation and Control Strategy Exploration of Unsafe Behavior of Coal Mine Staff.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33157, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Li, W., Zhang, Q., Deng, S., Zhou, B., Wang, B., & Cao, J. (2023). Q-Learning Improved Lightweight Consensus Algorithm for Blockchain-structured Internet of Things. IEEE Internet of Things Journal.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 33158, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Li, W., Zhou, L., Hao, J., Yu, K., Chen, J., Liu, P., & Feng, R. (2023). Dynamic simulation and control strategy exploration of the unsafe behavior of coal mine employees. Resources Policy, 86, 104067.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33159, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Li, X., Xu, D., Ding, C., Lu, W., Wang, M., Yan, W., ... & Li, Y. (2023). Comparative analysis of domestic and foreign coal mine safety supervision modes based on knowledge map.\u00a0Environmental Science and Pollution Research, 1-13.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33160, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Li, Y., Yang, M., & Zhang, S. (2023). Study on the influence diffusion of SMEs in open-source communities from the perspective of complex networks. Mathematical Biosciences and Engineering, 20(7), 12731-12749.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Mathematics, Physics, Economics, History, Social Science, Education, Miscellaneous" + }, + { + "id": 33161, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Lian, C., Liu, J., & Wang, J. (2023, May). Resource Support for \u201cMobilization\u2013Participation\u201d in Public Health Emergencies Based on a Complex Network Evolutionary Game. In Healthcare (Vol. 11, No. 10, p. 1506). MDPI.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33162, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Lian, C., & Wang, J. (2023). Multi-actor cooperation for emergency supply support: a simulation of behavior diffusion based on social networks. Natural Hazards, 1-22.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33163, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Liang, Z., V\u00e1rady, G., & Zagor\u00e1cz, M. B. (2023). Sustainable Application of Automatically Generated Multi-Agent System Model in Urban Renewal. Sustainability, 15(9), 7308.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33164, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Liao, H., Holgu\u00edn-Veras, J., & Calder\u00f3n, O. (2023). Comparative analysis of the performance of humanitarian logistic structures using agent-based simulation. Socio-Economic Planning Sciences, 101751.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33165, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Liao, R., Liu, W., & Yuan, Y. (2023). Resilience Improvement and Risk Management of Multimodal Transport Logistics in the Post\u2013COVID-19 Era: The Case of TIR-Based Sea\u2013Road Multimodal Transport Logistics. Sustainability, 15(7), 6041.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33166, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Lienhard, D. Z. (2023). Reducing Abortion Rates Without Restricting Legal Access to Abortion: Evidence From Comparative Analysis of Relevant Policies and Demographic Indicators in 15 Post-Soviet Countries and Adaptive Agent-Based Modeling of Unintended Pregnancies (Doctoral dissertation, Arizona State University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33167, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Lili, A., Tian, X., Wenbin, Y., & Xinbo, W. (2023). Modeling and Simulation of Spaceborne, Near-Spaceborne, and Airborne Integrated Collaborative Remote Sensing System Based on DoDAF. Journal of System Simulation, 35(5), 936.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Modeling, Simulation, Remote Sensing, System Simulation" + }, + { + "id": 33168, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Lima, H. P. D. Formigas de correi\u00e7\u00e3o do g\u00eanero Eciton (Latreille, 1804): intera\u00e7\u00e3o predador presa, forrageio e nidifica\u00e7\u00e3o (Doctoral dissertation, Universidade de S\u00e3o Paulo).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 33169, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Lin, C. Y. (2023). Co-evolution in Complex Adaptive Water Systems from Long-Term Planning to Short-Term Responses (Doctoral dissertation, Lehigh University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 33170, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ling, B., Raynor, E. J., Joern, A., & Goodin, D. G. (2023). Dynamic Plant\u2013Herbivore Interactions between Bison Space Use and Vegetation Heterogeneity in a Tallgrass Prairie. Remote Sensing, 15(22), 5269.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology" + }, + { + "id": 33171, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Liu, C., Liu, S., Zhang, J., Wang, L., Guo, X., Li, G., & Wang, W. (2023). An optimal design method of emergency evacuation space in the high-density community after earthquake based on evacuation simulation. Natural Hazards, 1-27.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33172, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Liu, H., & Gu, X. (2023). Leveraging AI, big data and educational technology to promote collaborative learning and improve cyberlearning courses: synopsis and linked presentations of the workshop at Orlando, Florida, 4-6 June 2019, and the online workshop, 13-14 August 2020. International Journal of Smart Technology and Learning, 3(2), 118-137.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33173, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Liu, M., & Liu, T. (2023). An Agent-Based Approach to Adaptive Design Based on Influences Mediated by Artifacts. In International Conference on-Design Computing and Cognition (pp. 605-625). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33174, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Liu, S., & Li, Y. (2023). Dynamic Simulation Study on Evolution Law and Intervention Strategy of Public Opinion Information of Major Public Health Events. Advances in Applied Sociology, 13(5), 422-440.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Sociology, Economics, Computer Science, Statistics" + }, + { + "id": 33175, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Liu, Y. (2023). Application: Simulation Model of Pedestrian Flows in the Re-design of Built Environment Around Metro Stations. In Built Environment and Walking & Cycling Around Metro Stations (pp. 97-121). Singapore: Springer Nature Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33176, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Liu, Y., Song, D., Wang, Z., Yu, X., & Wang, R. (2023, July). Walkability Assessment Using Agent-Based Model: Why It Becomes An Advantageous Way. In World Congress of Architects (pp. 367-374). Cham: Springer International Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33177, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Locatelli, M., Pellegrini, L., Accardo, D., Sulis, E., Tagliabue, L. C., & DI GIUDA, G. M. (2023, September). People flow management in a healthcare facility through crowd simulation and agent-based modeling methods. In JOURNAL OF PHYSICS. CONFERENCE SERIES (pp. 1-6).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Miscellaneous" + }, + { + "id": 33178, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Lomos, C., Luyten, J. W., & Tieck, S. (2023). Implementing ICT in classroom practice: what else matters besides the ICT infrastructure?. Large-scale Assessments in Education, 11(1), 1-28.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33179, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Long, Y., Yang, C., Li, X., Lu, W., Zhang, Q., & Gao, J. (2023). Forecasting law enforcement frequency of internet+ coal mine safety supervision.\u00a0International Journal of Energy Sector Management.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33180, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Lorente, P. J., & Pereda, M. (2023, March). An Iterated Prisoner\u2019s Dilemma Tool to Play and Learn Inside and Outside the Class. In IoT and Data Science in Engineering Management: Proceedings of the 16th International Conference on Industrial Engineering and Industrial Management and XXVI Congreso de Ingenier\u00eda de Organizaci\u00f3n (pp. 59-63). Cham: Springer International Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33181, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Lorig, F., Vanh\u00e9e, L., & Dignum, F. (2023). Agent-Based Social Simulation for Policy Making. In Human-Centered Artificial Intelligence: Advanced Lectures (pp. 391-414). Cham: Springer International Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33182, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Lou, J., Borjigin, S., Tang, C., Saadat, Y., Hu, M., & Niemeier, D. A. (2023). Facility design and worker justice: COVID\u201019 transmission in meatpacking plants. American Journal of Industrial Medicine.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33183, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Lu, J., Wang, C., Li, J., Li, X., Zhao, J., & Wang, X. (2023, August). Trust evaluation model in new power system edge computing. In International Conference on Optoelectronic Information and Functional Materials (OIFM 2023) (Vol. 12781, pp. 8-16). SPIE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33184, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Lu, P., Li, Y., Wen, F., & Chen, D. (2023). Agent-based modeling of mass shooting case with the counterforce of policemen. Complex & Intelligent Systems, 1-21.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Social Science, Education, Epidemiology" + }, + { + "id": 33185, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Lu, P., Zhang, Z., & Li, M. (2023). Individual heights and phase transition under crowd emergencies: Agent-based modeling from 2 to 3D. Artificial Intelligence Review, 1-23.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, Miscellaneous" + }, + { + "id": 33186, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Lu, P., Zhang, Z., Onyebuchi, C. H., & Zheng, L. (2024). Agent-based modeling of high-rise building fires reveals self-rescue behaviors and better fire protection designs. Engineering Applications of Artificial Intelligence, 127, 107401.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 33187, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Lu, Q., & Hua, J. (2023). Micro-Household Human Capital Investment Decisions and a Simulation Study from the Intergenerational Conflict Perspective. International Journal of Environmental Research and Public Health, 20(3), 1696.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33188, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Lu, Y., Ou, D., Zhou, Z., Li, H., Deng, Y., Deng, Y., & Zhang, Z. (2023). Simulation analysis of passengers\u2019 rescheduling strategies in metro station under COVID-19. Tunnelling and Underground Space Technology, 134, 105023.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Metro station, COVID-19" + }, + { + "id": 33189, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Lucas, P., & Feliciani, T. (2023). Investigating social phenomena with agent-based models. In Research Handbook on Digital Sociology (pp. 146-160). Edward Elgar Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33190, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Luckner, K., & Fikfak, V. (2023). Not all nations at all times: How States Imitate Each Other\u2019s Behavior Towards Non-Compliance with International Law Norms: an ABM proposal. In iCourts Working Paper 318; Proceedings of the AMPM-Workshop@JURIX2022.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33191, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Luo, F., Ijeluola, S. A., Westerlund, J., Walker, A., Denham, A., Walker, J., & Young, C. (2023). Supporting Elementary Teachers\u2019 Technological, Pedagogical, and Content Knowledge in Computational Thinking Integration. Journal of Science Education and Technology, 1-14.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Technology, Pedagogy, Knowledge, Education" + }, + { + "id": 33192, + "sort": null, + "year": 2023, + "is_ccl": true, + "reference": "Lynch, A. R., Bradford, S., Zhou, A. S., Oxendine, K., Henderson, L., Horner, V. L., ... & Burkard, M. E. (2023). A survey of CIN measures across mechanistic models. bioRxiv, 2023-06.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33193, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Lyu, G., & Brennan, R. W. (2024). Evaluating a self-manageable architecture for industrial automation systems. Robotics and Computer-Integrated Manufacturing, 85, 102627.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Robotics, Manufacturing" + }, + { + "id": 33194, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ma, J., & Xiao, C. (2023). Large-scale fire spread model for traditional Chinese building communities. Journal of Building Engineering, 105899.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33195, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ma, J., Xu, S., Zhang, L., Li, Z., Qian, Z., & Cao, K. Y. (2023). Study on the Evolution Mechanism of Lane Change Decision in Urban Expressway Diversion Area. Tehni\u010dki vjesnik, 30(5), 1503-1516.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, History, Mathematics, Miscellaneous" + }, + { + "id": 33196, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ma, Y., Wei, X., Zhao, H., Zhao, D., Wang, S., Han, T., ... & Gao, K. (2023). UAV-based emergency treatment plan for flood disasters at the Hongyanhe nuclear power plant. Ecological Indicators, 154, 110676.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 33197, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ma, J., Zhao, J., Sun, G., & Peng, S. (2023, December). ANYLOGIC-Based Dynamics Model of the Bass New Product Diffusion Process. In\u00a0Proceedings of the 2023 3rd International Conference on Business Administration and Data Science (BADS 2023)\u00a0(Vol. 19, p. 26). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Dynamics, Business Administration and Data Science" + }, + { + "id": 33198, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Mabey, C. S., Peiffer, E. E., MacCarty, N., & Mattson, C. A. (2023). Simulating the Adoption and Social Impact of Improved Cookstoves in Uganda Using Agent-Based Modeling and Neural Networks. Journal of Mechanical Design, 145(12).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33199, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Madhavi, M., Kusumaniswari, V., Srinivas, G. S. H., Nayak, T. P. K., & Shivaji, M. (2023, March). Land Development Interface. In 2023 9th International Conference on Advanced Computing and Communication Systems (ICACCS) (Vol. 1, pp. 314-319). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33200, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Maghaydah, S., Maheshwari, P., & Alomari, K. M. (2023, March). Agent-Based Modelling and Simulation of Crowd Evacuation: Case Study for Electric Train Cabin. In 2023 International Conference on Business Analytics for Technology and Security (ICBATS) (pp. 1-7). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33201, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Maheshwari, P. (2023). Agent-Based Simulation for University Students Admission: Medical Colleges in Jordan Universities. Computer Science & Engineering: An International Journal (CSEIJ), 13(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 33202, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Maheshwari, P., & Devi, Y. (2023). Investigating the relationship between Lean Six Sigma performance strategy with digital twin modeling: Practices and factors.\u00a0Journal of Cleaner Production, 140449.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Digital Twin Modeling, Lean Six Sigma, Computer Science, Economics, Archaeology, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33203, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "MAKSIMYCHEV, O., MEZENTSEV, K., & VOLOSOVA, A. (2023). INFORMATION AND COMMUNICATION TECHNOLOGIES AND ELEMENTS OF ARTIFICIAL INTELLIGENCE IN INTELLIGENT TRANSPORT SYSTEMS. \u041c\u0438\u0440 \u0442\u0440\u0430\u043d\u0441\u043f\u043e\u0440\u0442\u0430 \u0438 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043c\u0430\u0448\u0438\u043d, 3390, 62.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33204, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Malanson, G. P., Testolin, R., Pansing, E. R., & Jim\u00e9nez\u2010Alfaro, B. (2023). Area, environmental heterogeneity, scale and the conservation of alpine diversity. Journal of biogeography, 50(4), 743-754.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Miscellaneous" + }, + { + "id": 33205, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Malik, J., Putra, H. C., Sun, K., & Hong, T. (2023, May). On the applicability of various levels of detail for occupant behavior representation and modeling in building performance simulation. In Building Simulation (pp. 1-18). Beijing: Tsinghua University Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33206, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Malik, S., Khan, M. A., El-Sayed, H., & Khan, M. J. (2023). Should Autonomous Vehicles Collaborate in a Complex Urban Environment or Not?. Smart Cities, 6(5), 2447-2483.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33207, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Manju, T., Rehman, S., & Sankar, M. G. A. (2023). Multi Domain Optical Network Routing Using OBGP and OSPF. International Journal for Recent Developments in Science & Technology, 7(2), 146-152.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Optics, Networking, Routing, Science & Technology" + }, + { + "id": 33208, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Mannone, M., Seidita, V., & Chella, A. (2023). Modeling and designing a robotic swarm: A quantum computing approach. Swarm and Evolutionary Computation, 101297.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Miscellaneous" + }, + { + "id": 33209, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Manzi, D. (2023). THE RESILIENCE OF CRIMINAL NETWORKS: AN AGENT-BASED SIMULATION ASSESSING DRUG TRAFFICKING ORGANIZATIONS REACTIONS TO LAW ENFORCEMENT ATTEMPTS AT DISRUPTION (Doctoral dissertation, Universit\u00e0 Cattolica del Sacro Cuore).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33210, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Marah, H., & Challenger, M. (2023). An Architecture for Intelligent Agent-Based Digital Twin for Cyber-Physical Systems. In Digital Twin Driven Intelligent Systems and Emerging Metaverse (pp. 65-99). Singapore: Springer Nature Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 33211, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Marchand, G. C., & Hilpert, J. C. (2024). Contributions of complex systems approaches, perspectives, models, and methods in educational psychology. In Handbook of educational psychology (pp. 139-161). Routledge.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33212, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Marin Gutierrez, D., V\u00e1zquez Salceda, J., \u00c1lvarez Napagao, S., & Gnatyshak, D. (2023). Adding preferences and moral values in an agent-based simulation framework for high-performance computing. In International Workshop on Coordination, Organizations, Institutions, Norms and Ethics for Governance of Multi-Agent Systems (COINE), co-located with AAMAS 2023: papers accepted for presentation.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 33213, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Marron, A., Cohen, I. R., Frankel, G., Harel, D., & Szekely, S. (2023). Challenges in Modeling and Unmodeling Emergence, Rule Composition, and Networked Interactions in Complex Reactive Systems. In MODELSWARD (pp. 202-209).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33214, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Marsteller, R. B., & Bodzin, A. M. (2023). GIVING ONLINE LEARNING THE PERSONAL TOUCH. Teaching and Learning Online: Science for Secondary Grade Levels, 107.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33215, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Martens, Chris, Alexander Card, Henry Crain, and Asha Khatri. \"Modeling Game Mechanics with Ceptre.\"\u00a0IEEE Transactions on Games\u00a0(2023).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 33216, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Mart\u00ed, P., Jord\u00e1n, J., & Julian, V. (2023). A flexible approach for demand-responsive public transport in rural areas. Computer Science and Information Systems, (00), 74-74.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 33217, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Marwal, A., & Silva, E. A. (2023). City affordability and residential location choice: A demonstration using agent based model. Habitat International, 136, 102816.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33218, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Masa, R. C., Barca, M. \u00c1. M., & Baquedano, E. P. (2023). Desarrollo de un modelo h\u00edbrido para reproducir el crecimiento de la placa de ateroma.\u00a0Jornada de J\u00f3venes Investigadores e Investigadoras del I3A,\u00a011.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33219, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Mateos, A., H\u00f6lzchen, E., & Rodr\u00edguez, J. (2023). Sabretooths, giant hyenas, and hominins: Shifts in the niche of scavengers in Iberia at the Epivillafranchian-Galerian transition. Palaeogeography, Palaeoclimatology, Palaeoecology, 111926.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 33220, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Mattia, S., Paolo, M., & Stefano, N. (2023). Virtual earth cloud: a multi-cloud framework for enabling geosciences digital ecosystems. International Journal of Digital Earth, 16(1), 43-65.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Geology" + }, + { + "id": 33221, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Maupin, C. K., Mohan, G., Choudhury, A., Deepak, P., & Jin, F. (2023). Network-based approaches to leadership: An organizing framework, review, and recommendations. The Leadership Quarterly, 101753.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33222, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Mayerhoffer, D. M. (2023). One Model, Multiple Stories? Using Agent-Based Models to Unveil Structural Similarities in a Complex World (Doctoral dissertation, Otto-Friedrich-Universit\u00e4t Bamberg, Fakult\u00e4t Sozial-und Wirtschaftswissenschaften).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33223, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "McClure, C. J., & Rolek, B. W. (2023). Pitfalls arising from site selection bias in population monitoring defy simple heuristics. Methods in Ecology and Evolution, 14(6), 1489-1499.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33224, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "McCue-Weil, L., Knight, M., Driscoll, M., Jenkins, P., & Sorensen, J. (2023). A Case Study on the Practical Use of Low-Fidelity Modeling to Mitigate the Spread of COVID-19 Amongst the Underserved Farmworker Community. La Matematica, 1-19.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33225, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "McCune, J. CBai, Y. (2023). Research on Civil Engineering Cost Prediction Based on Decision Tree Algorithm. Academic Journal of Architecture and Geotechnical Engineering, 5(1), 39-44.. (2023). Computational Concepts, Practices, and Perspectives in K-8 Computer Science Teaching Readiness (Doctoral dissertation, Grand Canyon University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 33226, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "McElhaney, K. W., Basu, S., McBride, E., Hutchins, N., & Biswas, G. (2023). Design and Implementation of a Week-long, High School Curriculum Unit Integrating Physics and Computational Modeling. In Proceedings of the 17th International Conference of the Learning Sciences-ICLS 2023, pp. 497-504. International Society of the Learning Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Physics, Computational Modeling, Learning Sciences" + }, + { + "id": 33227, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "McEligot, K. (2023). Integrated Coastal Flood Mitigation Policies for Myrtle Beach, South Carolina Utilizing a Federated Hurricane Mitigation Modeling Framework (Doctoral dissertation, George Mason University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33228, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "McGough, A., Kavak, H., & Mahabir, R. (2023). Is more always better? Unveiling the impact of contributor dynamics on collaborative mapping. Computational and Mathematical Organization Theory, 1-14.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33229, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "McNeill, G., Sondag, M., Powell, S., Asplin, P., Turkay, C., Moller, F., & Archambault, D. (2023, April). From Asymptomatics to Zombies: Visualization-Based Education of Disease Modeling for Children. In Proceedings of the 2023 CHI Conference on Human Factors in Computing Systems (pp. 1-17).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Visualization, Education, Computer Science, Health, Social Science" + }, + { + "id": 33230, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Mellmann, H., Taliaronak, V., & Hafner, V. V. (2023, May). Towards an Anticipatory Mechanism for Complex Decisions in a Bio-Hybrid Beehive. In Concurrency, Specification and Programming: Revised Selected Papers from the 29th International Workshop on Concurrency, Specification and Programming (CS&P'21), Berlin, Germany (pp. 145-173). Cham: Springer International Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 33231, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Men, F., Wang, M., & Dong, F. (2023, August). Research on Simulation Technology of Intelligent Manufacturing Scene Operation Mechanism Based on Evolutionary Game Theory. In Journal of Physics: Conference Series (Vol. 2562, No. 1, p. 012064). IOP Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation Technology, Evolutionary Game Theory" + }, + { + "id": 33232, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Menzemer, L. W., Ronchi, E., Karsten, M. M. V., Gwynne, S., & Frederiksen, J. (2023). A scoping review and bibliometric analysis of methods for fire evacuation training in buildings. Fire Safety Journal, 103742.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33233, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Meyer, D., & Yon, G. G. V. (2023). epiworldR: Fast Agent-Based Epi Models. Journal of Open Source Software, 8(90), 5781.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 33234, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Meza, A., Ari, I., Al Sada, M., & Ko\u00e7, M. (2023). Relevance and potential of the Arctic Sea Routes on the LNG trade. Energy Strategy Reviews, 50, 101174.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33235, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Mi, J., Yao, C., Zhao, X., & Li, F. (2023). Research on the Diffusion Mechanism of Green Technology Innovation Based on Enterprise Perception. Computational Economics, 1-30.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Urban Studies" + }, + { + "id": 33236, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Mi, J., Yao, C., Zhao, X., & Li, F. (2023). The impact of innovation evolution and interaction control on interfirm network performance. Technology Analysis & Strategic Management, 1-17.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33237, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Miao, H., Zhang, G., Yu, P., Shi, C., & Zheng, J. (2023). Dynamic Dose-Based Emergency Evacuation Model for Enhancing Nuclear Power Plant Emergency Response Strategies. Energies, 16(17), 6338.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33238, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Minggang, Y., Yanjie, N., Xueda, L., Dongge, Z., Peng, Z., Ming, H., & Ling, L. (2023). Adaptive dynamic reconfiguration mechanism of unmanned swarm topology based on an evolutionary game. Journal of Systems Engineering and Electronics.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, History, Economics, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 33239, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Miranda, L., Baggio, J., & Ozmen Garibay, O. (2023). Evolutionary model discovery of human behavioral factors driving decision-making in irrigation experiments. JASSS: Journal of Artificial Societies and Social Simulation, 26(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33240, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Miszczak, J.A., Rule switching mechanisms in the Game of Life with synchronous and asynchronous updating policy, Physica Scripta, 98,115210 (2023). arXiv:2310.05979 DOI:10.1088/1402-4896/acfc6c ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Physica Scripta, Computer Science, Miscellaneous" + }, + { + "id": 33241, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Mitcham, J. (2023). Agent-Based Simulation of Police Funding Tradeoffs Through the Lens of Legitimacy and Hardship. Journal of Artificial Societies and Social Simulation, 26(3).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33242, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Mitcham, J. (2023). Simulation Modeling for Robust and Just Public Policy Decision-Making (Doctoral dissertation, University of Massachusetts Boston).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33243, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Mittal, S., Wittman, R. L., Gibson, J., Huffman, J., & Miller, H. (2023). Providing a User Extensible Service-Enabled Multi-Fidelity Hybrid Cloud-Deployable SoS Test and Evaluation (T&E) Infrastructure: Application of Modeling and Simulation (M&S) as a Service (MSaaS). Information, 14(10), 528.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 33244, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Miyazaki, S. (2023). Heterodox modeling: practicing well-tuned provisioning or commoning with networked multi-agent environments. Review of Evolutionary Political Economy, 1-14.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33245, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Mobinizadeh, M., Mohammadshahi, M., Aboee, P., Fakoorfard, Z., Olyaeemanesh, A., & Mohamadi, E. (2023). The Application of System Simulation in the Health Sector: A Rapid Review.\u00a0Decision Making in Healthcare Systems,\u00a0513, 11.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Health Sector, Simulation, Decision Making" + }, + { + "id": 33246, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Modu, B., Polovina, N., & Konur, S. (2023). Agent-Based Modeling of Malaria Transmission. IEEE Access, 11, 19794-19808.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33247, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Moghaddam, R. M., & Aghazadeh, N. (2023). Lung Parenchyma Segmentation from CT Images with a Fully Automatic Method. Multimedia Tools and Applications, 1-23.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, CT Images, Multimedia" + }, + { + "id": 33248, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Mohammadi, N., Mesgari, M. S., & Klein-Paste, A. (2023). An Empirical Agent-Based Model for Residential Segregation, Case Study: Tehran. ISPRS-International Archives of the Photogrammetry, Remote Sensing and Spatial Information Sciences, 48, 71-78.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33249, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Mohammadi, V., Rahmani, A. M., Darwesh, A., & Sahafi, A. (2023). Fault tolerance in fog-based Social Internet of Things. Knowledge-Based Systems, 265, 110376.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33250, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Mohammed, G. B., Shitharth, S., & Sucharitha, G. (2023). A Novel Trust Evaluation and Reputation Data Management Based Security System Model for Mobile Edge Computing Network. In\u00a0Security and Risk Analysis for Intelligent Edge Computing\u00a0(pp. 155-170). Cham: Springer International Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Security, Risk Analysis, Computer Science, Mathematics, Engineering, Economics, Security, Intelligence, Network, Digital, Physics, Regulation" + }, + { + "id": 33251, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Mohammed, R., Kennedy-Clark, S., & Reimann, P. (2023). Using Immersive Technologies to build Primary Preservice Teacher Confidence in Science. Journal of Computers in Mathematics and Science Teaching, 42(3), 205-226.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Social Science, Education" + }, + { + "id": 33252, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Mohandes, N., Bayhan, S., Sanfilippo, A., & Rub, H. A. (2023). Peer-to-peer trade and the sharing economy at distribution level: A review of the literature. IEEE Access.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33253, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Mongkhonvanit, K., Hummer, T. M., & Chen, J. (2023, June). Velo: Exploring Animal Behavior Modeling through Hybrid Robotics-Simulation Learning Experience. In Proceedings of the 22nd Annual ACM Interaction Design and Children Conference (pp. 701-704).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Archaeology" + }, + { + "id": 33254, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Monroe, J., Bolton, E. R., & Berglund, E. Z. (2023). Evaluating Peer-to-Peer Electricity Markets across the US Using an Agent-Based Modeling Approach. Advances in Environmental and Engineering Research, 4(1), 1-40.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33255, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Moosavi, S. F., Salehnia, N., Seifi, A., AsgharpourMasouleh, A., & Salehnia, N. Designing and Calibrating an Agent\u2010Based Platform to Evaluate the Effect of Climate Variables on Residential Water Demand. Water and Environment Journal.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33256, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Moreno, A., Jorba, J., Peralta, C., C\u00e9sar, E., Sikora, A., & Hanzich, M. (2023). A methodology for selecting a performance-convenient ABMS development framework on HPC platforms. Simulation Modelling Practice and Theory, 102812.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 33257, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Morell, J. (2023). A Complexity-Based Plan for Evaluating Transformation. Journal of MultiDisciplinary Evaluation, 19(45), 105-130.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33258, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Moritz, M., Cross, B., & Hunter, C. E. (2023). Artificial pastoral systems: a review of agent-based modelling studies of pastoral systems. Pastoralism, 13(1), 31.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 33259, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Moritz, M., Hunter, C. E., Peart, D. C., Buffington, A., Yoak, A. J., Thomas, J. R., ... & Hamilton, I. M. (2023). Coupled Demographic Dynamics of Herds and Households Constrain Livestock Population Growth in Pastoral Systems. Human Ecology, 1-13.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33260, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Moritz, M., Hunter, C. E., Peart, D. C., & Hamilton, I. M. Agent-Based Modeling in Mixed Methods Research. In The Handbook of Teaching Qualitative and Mixed Research Methods (pp. 322-325). Routledge.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33261, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Morsi, N., Kamel, S., Sabry, H., & Assem, A. (2023). Computational design for architectural space planning of commercial exhibitions: A framework for visitors interaction using parametric design and agent-based modeling. Architecture and Planning Journal (APJ), 28(3), 11.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33262, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Mou, S., Zhong, K., & Ma, Y. (2023). Regulating the Big Data-Based Discriminatory Pricing in Platform Retailing: A Tripartite Evolutionary Game Theory Analysis. Mathematics, 11(11), 2579.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33263, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Mousavi Moghaddam, R., & Aghazadeh, N. (2023). Lung Parenchyma Segmentation from CT Images with a Fully Automatic Method. Multimedia Tools and Applications, 1-23.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 33264, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Mponela, P., Le, Q. B., Snapp, S., Villamor, G. B., Tamene, L., & Borgemeister, C. (2023). MASSAI: Multi-agent system for simulating sustainable agricultural intensification of smallholder farms in Africa. MethodsX, 11, 102467.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33265, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "M\u00fcller, B., Gosal, A., & Ziv, G. (2023, September). An Agent-Based Model of UK Farmers' Decision-Making on Adoption of Agri-environment Schemes Chunhui Li, Meike Will, Nastasija Gruji\u0107, Jiaqi Ge\u00ae. In Advances in Social Simulation: Proceedings of the 17th Social Simulation Conference, European Social Simulation Association (p. 463). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Social Science, Computer Science" + }, + { + "id": 33266, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Musaeus, L. H., Caspersen, M. E., & Musaeus, P. (2023, September). A Template for Teaching Computational Modelling in High School. In Proceedings of the 18th WiPSCE Conference on Primary and Secondary Computing Education Research (pp. 1-10).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computational Modelling" + }, + { + "id": 33267, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Mussawar, O., Mayyas, A., & Azar, E. (2023). Built Form and Function as Determinants of Urban Energy Performance: An Integrated Agent-based Modeling Approach and Case Study. Sustainable Cities and Society, 104660.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33268, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Mussawar, O., Urs, R. R., Mayyas, A., & Azar, E. (2023). Performance and prospects of urban energy communities conditioned by the built form and function: A systematic investigation using agent-based modeling. Sustainable Cities and Society, 99, 104957.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33269, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Naredo, E., Sansores, C., Godinez, F., L\u00f3pez, F., Urbano, P., Trujillo, L., & Ryan, C. (2023). Comprehensive Analysis of Learning Cases in an Autonomous Navigation Task for the Evolution of General Controllers. Mathematical and Computational Applications, 28(2), 35.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33270, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Navarrete L\u00f3pez, C. F. (2023). Metodolog\u00edas epidemiol\u00f3gicas de an\u00e1lisis de datos para la operaci\u00f3n y gesti\u00f3n de redes de abastecimiento urbano de agua (Doctoral dissertation, Universitat Polit\u00e8cnica de Val\u00e8ncia).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33271, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Navarro Osma, R. (2023). Implementaci\u00f3n del juego jGomas en Spade 3 (Doctoral dissertation, Universitat Polit\u00e8cnica de Val\u00e8ncia).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33272, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Neal, A., Ballard, T., & Palada, H. (2023). HOW TO PUBLISH AND REVIEW A COMPUTATIONAL MODEL. Computational Modeling for Industrial-Organizational Psychologists, 122.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 33273, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Nespeca, V., Comes, T., & Brazier, F. (2023). A Methodology to Develop Agent-Based Models for Policy Support Via Qualitative Inquiry. Journal of Artificial Societies and Social Simulation, 26(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Methodology, Qualitative Inquiry" + }, + { + "id": 33274, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Neumann, M., Dirksen, V., & Dickel, S. On the construction of plausible futures in interpretive agent-based modelling. In An Interpretive Account to Agent-based Social Simulation (pp. 170-188). Routledge.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33275, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Newman, J. D. (2023). Determining the influence of organism level processes on the population dynamics of Bactrocera tryoni (Doctoral dissertation, Queensland University of Technology).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33276, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ng, L. T. (2023). AGENT-BASED COMPUTATIONAL GEOMETRY (Doctoral dissertation, University of Washington).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 33277, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Nguyen, D. T. (2023). Hybrid Simulation-based Lean Management Methodology to Improve the Sustainability of the Construction Phase (Doctoral dissertation, University of Kassel).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33278, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Nica, I., Georgescu, I., Delcea, C., & Chiri\u021b\u0103, N. (2023). Toward Sustainable Development: Assessing the Effects of Financial Contagion on Human Well-Being in Romania. Risks, 11(11), 204.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33279, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Nichols, A. C. (2023). An Artificial Honeybee Colony Algorithm to Quantify Adaptability via Resilience for Space System Architectures (Doctoral dissertation, The University of Alabama).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33280, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Nitsch, F., Schimeczek, C., Frey, U., & Fuchs, B. (2023). FAME-Io: Configuration tools for complex agent-based simulations. Journal of Open Source Software, 8(84).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 33281, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Noormohammadi, R., Khatami Firoozabadi, S. M., Alamtabriz, A., Ehtesham Rasi, R., & Daneshvar, A. (2023). Estimating the amount of fuel consumption and air pollution caused by the traffic of buses rapid transit using agent-based modeling. Journal of Environmental Science and Technology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 33282, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Noubar, H. B. K., Holagh, S. R., & Sadri, A. (2023). Identifying Factors Affecting Green Consumer Purchase Behavior on E-Commerce Websites. TalTech Journal of European Studies, 13(1), 40-62.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33283, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Nurdiansyah, H., Almubaroq, H. Z., Risdhianto, A., & Mualim, M. (2023). EVALUATION OF THE SPREAD OF RADICALISM, EXTREMISM, AND TERRORISM IN INDONESIA'S DEFENSE USING AGENT-BASED SIMULATIONS. International Journal of Humanity Studies (IJHS), 6(2), 228-239.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33284, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Obaid, A. N., & Namah, A. J. (2023). Effectiveness of Artificial Intelligence in Graphic Design. Remittances Review, 8(4).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Artificial Intelligence, Graphic Design" + }, + { + "id": 33285, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ocak, C., Yadav, A., Vogel, S., & Patel, A. (2023). Teacher Education Faculty\u2019s Perceptions About Computational Thinking Integration for Pre-service Education. Journal of Technology and Teacher Education, 31(3), 299-349.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33286, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ogami, T., & Nishinari, K. (2023). Features of ladders during evacuation from oil and LNG plants. Physica A: Statistical Mechanics and its Applications, 128745.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Physics, Miscellaneous" + }, + { + "id": 33287, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ogunsakin, R., Mehandjiev, N., & Marin, C. A. (2023). Towards adaptive digital twins architecture. Computers in Industry, 149, 103920.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33288, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Oktavia Mulyono, Y., Sukhbaatar, U., & Cabrera, D. (2023). \u2018Hard\u2019and \u2018Soft\u2019Methods in Complex Adaptive Systems (CAS): Agent Based Modeling (ABM) and the Agent Based Approach (ABA). Journal of Systems Thinking, 1-33.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33289, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Olagoke, A., Jeltsch, F., Tietjen, B., Berger, U., Ritter, H., & Maa\u00df, S. (2023). Small\u2010scale heterogeneity shapes grassland diversity in low\u2010to\u2010intermediate resource environments.\u00a0Journal of Vegetation Science,\u00a034(4), e13196.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33290, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Oliveira, H., Mendes, F., & Henriques, A. (2022). A investiga\u00e7\u00e3o sobre o ensino e a aprendizagem de temas matem\u00e1ticos publicada em 30 anos da revista Quadrante. Quadrante, 31(2), 32-62.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33291, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "O\u2019Brien, W., Cal\u00ec, D., De Simone, M., Tabadkani, A., Azar, E., Rajus, V. S., ... & Rysanek, A. (2023). Introduction to Occupant Modeling. In W. O'Brien & F. Tahmasebi (Eds.), Occupant-Centric Simulation-Aided Building Design: Theory, Application, and Case Studies (pp. 104-144). Routledge.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33292, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "O\u2019Neill, M. (2023). Coordination games and regional economic transitions. Territory, Politics, Governance, 1-19.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Economics, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33293, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "O'Shea, T., Bates, P., & Neal, J. Testing the impact of direct the indirect flood warnations on population environment using an agent-based model. Natural Hazards and Earth System Sciences, 20,\u00a02281-2305.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33294, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Osoianu, F. (2023). Utilizarea datelor etnografice \u00een crearea de medii \u0219i agen\u021bi pentru simularea comportamentului criminal real (Doctoral dissertation, Universitatea Tehnic\u0103 a Moldovei).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33295, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ouda, E., Sleptchenko, A., & Simsekler, M. C. E. (2023). Comprehensive review and future research agenda on discrete-event simulation and agent-based simulation of emergency departments. Simulation Modelling Practice and Theory, 102823.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33296, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ozulumba, T., Montalbine, A. N., Ortiz-C\u00e1rdenas, J. E., & Pompano, R. R. (2023). New tools for immunologists: models of lymph node function from cells to tissues. Frontiers in Immunology, 14, 1183286.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Immunology, Modeling, Cells, Tissue, Lymph Node" + }, + { + "id": 33297, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Paape, N., Van Eekelen, J. A. W. M., & Reniers, M. A. (2023). Review of simulation software for cyber-physical production systems with intelligent distributed production control. International Journal of Computer Integrated Manufacturing, 1-23.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Ecology, Archaeology, Social Science, Education" + }, + { + "id": 33298, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Pacheco, V. C., dos Santos Bonfim, G., Junior, M. C. B., Alberte, E. P. V., & Costa, D. B. (2023). Modelagem baseada em agentes para a gest\u00e3o da seguran\u00e7a no canteiro de obras: uma an\u00e1lise da produ\u00e7\u00e3o cient\u00edfica. SIMP\u00d3SIO BRASILEIRO DE GEST\u00c3O E ECONOMIA DA CONSTRU\u00c7\u00c3O, 13, 1-9.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33299, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Palanca, J., Rincon, J. A., Carrascosa, C., Julian, V. J., & Terrasa, A. (2023). Flexible Agent Architecture: Mixing Reactive and Deliberative Behaviors in SPADE. Electronics, 12(3), 659.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 33300, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Palma-Morales, O. J., Noguera-Hidalgo, \u00c1. L., Hern\u00e1ndez-Sandoval, J. S., & \u00c1vila-Robayo, D. S. (2023). Redes de narcotr\u00e1fico mar\u00edtimo: un an\u00e1lisis desde la complejidad y la simulaci\u00f3n de sistemas sociales. Revista Cient\u00edfica General Jos\u00e9 Mar\u00eda C\u00f3rdova, 21(43), 743-764.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33301, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Panbumrungkij, T., & Vannametee, E. (2023). \u0e01\u0e32\u0e23 \u0e28\u0e36\u0e01\u0e29\u0e32 \u0e1e\u0e24\u0e15\u0e34\u0e01\u0e23\u0e23\u0e21 \u0e01\u0e32\u0e23 \u0e40\u0e25\u0e37\u0e2d\u0e01 \u0e2a\u0e16\u0e32\u0e19 \u0e17\u0e35\u0e48 \u0e17\u0e48\u0e2d\u0e07\u0e40\u0e17\u0e35\u0e48\u0e22\u0e27 \u0e41\u0e25\u0e30 \u0e01\u0e32\u0e23 \u0e01\u0e23\u0e30\u0e08\u0e32\u0e22 \u0e15\u0e31\u0e27 \u0e02\u0e2d\u0e07 \u0e19\u0e31\u0e01\u0e17\u0e48\u0e2d\u0e07\u0e40\u0e17\u0e35\u0e48\u0e22\u0e27 \u0e14\u0e49\u0e27\u0e22 \u0e41\u0e1a\u0e1a \u0e08\u0e33\u0e25\u0e2d\u0e07 \u0e15\u0e31\u0e27\u0e41\u0e17\u0e19: \u0e01\u0e23\u0e13\u0e35 \u0e28\u0e36\u0e01\u0e29\u0e32 \u0e08\u0e31\u0e07\u0e2b\u0e27\u0e31\u0e14 \u0e0a\u0e25\u0e1a\u0e38\u0e23\u0e35: A Case Study of Chon Buri Province. Journal of Letters, 52(2), 1-30.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33302, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Panteli\u0107, S., Milovanovi\u0107, B., \u0110ogatovi\u0107, M., \u017divanovi\u0107, P., Baj\u010deti\u0107, S., Tica, S., & Na\u0111, A. (2023). Consequence Assessment Model for Gasoline Transport: Belgrade Case Study Based on Multi-Agent Simulation. Sustainability, 15(3), 2598.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33303, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Panzer, M., & Gronau, N. (2023). Designing an adaptive and deep learning based control framework for modular production systems. Journal of Intelligent Manufacturing, 1-24.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 33304, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Patel, V. (2023). The impacts of climate change on structurally interconnected social-ecological systems: using integrated spatial modelling to assess beehive migration patterns in Western Australia (Doctoral dissertation, The University of Western Australia).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33305, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Paudel, R., & Ligmann-Zielinska, A. (2023). A Largely Unsupervised Domain-Independent Qualitative Data Extraction Approach for Empirical Agent-Based Model Development. Algorithms, 16(7), 338.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33306, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Paul, P. N. T., Diarra, M., Dione, D., & Dathe, H. (2023, October). An Agent-Based Model for Studying Effects of Mosquito Bites Protection and the Intra-host Treatment on the Malaria Transmission. In Proceedings of the Future Technologies Conference (pp. 298-308). Cham: Springer Nature Switzerland.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33307, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Pavone, M. (2023, February). How a Different Ant Behavior Affects on the Performance of the Whole Colony. In Metaheuristics: 14th International Conference, MIC 2022, Syracuse, Italy, July 11\u201314, 2022, Proceedings (Vol. 13838, p. 187). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Metaheuristics, Colony" + }, + { + "id": 33308, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Pecoraro, F., Accordino, F., Cecconi, F., & Paolucci, M. (2023). Agent Based Modelling for Simulating the Interregional Patient Mobility in Italy. Studies in Health Technology and Informatics, 302, 297-301.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33309, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Pedreschi, D., Dignum, F., Morini, V., Pansanella, V., & Cornacchia, G. (2023). Towards a Social Artificial Intelligence. In Human-Centered Artificial Intelligence: Advanced Lectures (pp. 415-428). Cham: Springer International Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33310, + "sort": null, + "year": 2023, + "is_ccl": true, + "reference": "Peel, A., Dabholkar, S., Anton, G., Horn, M., & Wilensky, U. (2023). Characterizing changes in teacher practice and values through co-design and implementation of computational thinking integrated biology units. Computer Science Education, 1-26.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 33311, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Peleg, R., Lahav, O., Hagab, N., Talis, V., & Levy, S. T. (2023). Listening to or looking at models: Learning about dynamic complex systems in science among learners who are blind and learners who are sighted. Journal of Computer Assisted Learning.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Ecology" + }, + { + "id": 33312, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Pellet, T. L. (2023). Essays in Macroeconomics, Production Networks and Monetary History (Doctoral dissertation, Northwestern University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Macroeconomics\nProduction Networks\nMonetary History" + }, + { + "id": 33313, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Peng, Y., Lopez, J. M. R., Santos, A. P., Mobeen, M., & Scheffran, J. (2022). Simulating exposure-related human mobility behavior at the neighborhood-level under COVID-19 in Porto Alegre, Brazil. Cities, 104161.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33314, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Peng, L., & Luo, S. (2023). Exploration of tolerance of unfairness under COVID-19 mortality salience and its effect on epidemic development. Journal of Pacific Rim Psychology, 17, 18344909231165188.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Economics" + }, + { + "id": 33315, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Pe\u00f1uela Escobar, L. F. (2023). Agent-based Modelling for Assessing Potential Water-Related Conflicts (Doctoral dissertation, Escuela Colombiana de Ingenier\u00eda).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33316, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Perdana, M. J. G., Mulyatno, I. P., Santosa, A. W. B., & dibantu Komputer, L. D. K. K. (2023). Analisa Evakuasi Pada Kapal KM. Kirana IX 9168 GT Menggunakan Metode Agent Based Modelling Simulation Dalam Kondisi Kebakaran. Jurnal Teknik Perkapalan, 11(2), 93.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33317, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Perez Aguilar, D. A. (2023). Dise\u00f1o de un clasificador para el mantenimiento predictivo de una red de distribuci\u00f3n el\u00e9ctrica utilizando Deep Learning (Doctoral dissertation, University of Piura, Peru).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33318, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Peters, M. (2023). Smallholder Market Systems: Understanding System Behavior and the Role of Relationships (Doctoral dissertation, The George Washington University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33319, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Pietzsch, B. W., Schmidt, A., Groeneveld, J., Bahlburg, D., Meyer, B., & Berger, U. (2023). The impact of salps (Salpa thompsoni) on the Antarctic krill population (Euphausia superba): an individual-based modelling study. Ecological Processes, 12(1), 1-16.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Modeling" + }, + { + "id": 33320, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Platas-L\u00f3pez, A., Guerra-Hern\u00e1ndez, A., Quiroz-Castellanos, M., & Cruz-Ram\u00edrez, N. (2023). Agent-Based Models Assisted by Supervised Learning: A Proposal for Model Specification. Electronics, 12(3), 495.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 33321, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Potturi, A. (2023). MASS JAVA Benchmarking (Doctoral dissertation, University of Washington).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33322, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Potvin, J. (2023). Data with direction: design research leading to a system specification for \u2018an internet of rules\u2019 (Doctoral dissertation, Universit\u00e9 du Qu\u00e9bec en Outaouais).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33323, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Prakayaphun, T., Hayashi, Y., Vichiensan, V., & Takeshita, H. (2023). Identifying Impacts of School-Escorted Trips on Traffic Congestion and the Countermeasures in Bangkok: An Agent-Based Simulation Approach. Sustainability, 15(23), 16244.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33324, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Pr\u00e9dhumeau, M., & Manley, E. (2023). A synthetic population for agent-based modelling in Canada. Scientific Data, 10(1), 148.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 33325, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Prinz, A., Engebretsen, M., Gj\u00f8s\u00e6ter, T., M\u00f8ller-Pedersen, B., & Xanthopoulou, T. D. (2023). Models, systems, and descriptions. Frontiers in Computer Science, 5, 1031807.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science, Biology, Ecology, Miscellaneous" + }, + { + "id": 33326, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Prnjak, A., Zaharija, G., Mladenovi\u0107, M., & Neja\u0161mi\u0107, D. (2023). USING SIMULATION IN TEACHING ARTIFICIAL INTELLIGENCE. In INTED2023 Proceedings (pp. 6954-6960). IATED.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation, Artificial Intelligence" + }, + { + "id": 33327, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Purbani, D., Marzuki, M. I., Ontowirjo, B., Zein, F. M., & Wisha, U. J. Tsunami Evacuation Model Assessment in the Panimbang Subdistrict, Banten Province, Indonesia: GIS-and Agent-Based Modeling Approaches. Banten Province, Indonesia: GIS-and Agent-Based Modeling Approaches.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Geology" + }, + { + "id": 33328, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Qabaja, H., Ashqer, M. I., Bikdash, M., & Ashqar, H. I. (2023). A Meso-Scale Petri Net Model to Simulate a Massive Evacuation along the Highway System. Future Transportation, 3(1), 311-328.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33329, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Qi, J. (2023). Advancing Green Stormwater Infrastructure Through Understanding the Influences of Social Factors (Doctoral dissertation, The University of North Carolina at Charlotte).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Social Science, Miscellaneous" + }, + { + "id": 33330, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Qi, X., Xie, J., Huang, H., Li, J., & Yuan, W. (2023). Reconciling grain production and environmental costs during rural livelihood transitions: a simulation-based approach in southern China.\u00a0Food Security, 1-19.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33331, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Quagliarini, E., Bernardini, G., & D'Orazio, M. (2023). How Increasing Temperature Scenarios Can Alter Terrorist Act Risk in Different Historical Squares? A Simulation-Based Approach in Typological Italian Squares. Heritage,\u00a06(7), 5151-5188.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33332, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Rabb, N., & Cowen, L. (2023). Cognitive Cascades within Media Ecosystems: Simulating Fragmentation, Selective Exposure and Media Tactics to Investigate Polarization. In International Conference on Complex Networks and Their Applications (pp. 3-15). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33333, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Rabb, N., Cowen, L., & de Ruiter, J. P. (2023). Investigating the effect of selective exposure, audience fragmentation, and echo-chambers on polarization in dynamic media ecosystems. Applied Network Science, 8(1), 78.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33334, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Rahman, S., & Li, S. (2023, March). Multi-Agent-Based Modeling of Deshopping Behavior Considering Two or More Shops or Web Sites. In 2023 International Conference on Information Management (ICIM) (pp. 104-109). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33335, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Raimbault, J., & Pumain, D. (2023, July). Innovation dynamics in multi-scalar systems of cities. In ALIFE 2023: Ghost in the Machine: Proceedings of the 2023 Artificial Life Conference. MIT Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33336, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Rajanikanth, K. N., Sait, M. R., & Kashi, S. R. (2023, February). Enhancing Immersive User Experience Quality of StudoBot Telepresence Robots with Reinforcement Learning. In 2023 International Conference on Advances in Intelligent Computing and Applications (AICAPS) (pp. 1-6). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 33337, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Rakotoarisoa, M. M., Reulier, R., & Delahaye, D. (2023). Agent-Based Modelling of the Evolution of Hydro-Sedimentary Connectivity: The Case of Flash Floods on Arable Plateaus. Applied Sciences, 13(5), 2967.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33338, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ran, P., Jie, M. C., Keyuan, M. D., Yehao, B. L., & Xueliang, B. L. (2023). Research on Traditional Performing Places in Wuling Mountain Area of China. Convergence of Contemporary Thought in Architecture, Urbanism, and Heritage Studies, 237.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33339, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Rangoni, R., & Jager, W. Social Dynamics von Littering and Adaptable Clean Solutions Explored Usage Agent-Based Modelling Download PDF. Journal out Artificial Societies and Socially Simulation, 20(2), 1.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 33340, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Rankin, P., Meunier, L., & Kontopoulou, M. (2023, May). Characterization and identification of microplastics in freshwater systems. In AIP Conference Proceedings (Vol. 2607, No. 1). AIP Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33341, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Rappel, O., Ben-Asher, J. Z., & Bruckstein, A. M. (2023). Exploration of unknown indoor regions by a swarm of energy-constrained drones. arXiv preprint arXiv:2305.08957.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology" + }, + { + "id": 33342, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Rathee, G., Garg, S., Kaddoum, G., Choi, B. J., Benslimane, A., & Hassan, M. M. (2023). A secure and trusted context prediction for next generation autonomous vehicles. Alexandria Engineering Journal, 78, 131-140.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Urban Studies" + }, + { + "id": 33343, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Rattner, B. A., Bean, T. G., Beasley, V. R., Berny, P., Eisenreich, K. M., Elliott, J. E., ... & Salice, C. J. (2023). Wildlife ecological risk assessment in the 21st century: Promising technologies to assess toxicological effects.\u00a0Integrated Environmental Assessment and Management.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Wildlife ecological risk assessment" + }, + { + "id": 33344, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Regis, S., Manicom, O., & Doncescu, A. (2023). An agent-based model of COVID-19 pandemic and its variants using fuzzy subsets and real data applied in an island environment. The Knowledge Engineering Review, 38, e2.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33345, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Reimuth, A., Hagenlocher, M., Yang, L. E., Katzschner, A., Harb, M., & Garschagen, M. (2023). Urban growth modelling for the assessment of future climate and disaster risks: approaches, gaps and needs. Environmental Research Letters.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33346, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Reinhard, A., & Zaia, S. (2023). Photogrammetry and GIS in Human-Occupied Digital Landscapes. Advances in Archaeological Practice, 1-13.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Archaeology, Computer Science, Geography" + }, + { + "id": 33347, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ren, J., Li, H., Zhang, M., Wu, C., & Yu, X. (2023). A Self-powered Sensor Network Data Acquisition, Modeling and Analysis Method for Cold Chain Logistics Quality Perception. IEEE Sensors Journal.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33348, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Rennels, L., & Chasins, S. E. (2023). How Domain Experts Use an Embedded DSL. Proceedings of the ACM on Programming Languages, 7(OOPSLA2), 1499-1530.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Programming Languages, Computer Science, ACM on Programming Languages" + }, + { + "id": 33349, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Richards, S., G\u00e1mez, S., & Harris, N. C. (2023). Modeling effects of habitat structure on intraguild predation frequency and spatial coexistence between jaguars and ocelots. Behavioral Ecology, arad080.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Archaeology, Miscellaneous" + }, + { + "id": 33350, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Richmond, P., Chisholm, R., Heywood, P., Chimeh, M. K., & Leach, M. (2023). FLAME GPU 2: A framework for flexible and performant agent based simulation on GPUs. Software: Practice and Experience.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics" + }, + { + "id": 33351, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Rivi\u00e8re, J., H\u00e9nard, A., Peillard, E., Kubicki, S., & Coppin, G. (2023, May). How to Grasp the Complexity of Self-Organised Robot Swarms?. In French Regional Conference on Complex Systems (FRCCS 2023).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 33352, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Robak, A., Bush, S., & Bjornlund, H. (2023). Advancing the impact identification step of benefit-cost analysis of potable water infrastructure investments: A systems method for identifying important impacts pre-monetisation. Water Research, 239, 120058.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33353, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Roberts, S., Lebbin, P., Gwynne, S., Thomas, R., Dabkowski, R., Law, A., ... & Grewal, A. (2023). Communicable Disease Transmission in Air Travel: Human Behavior\u2013Phase 1 Report (No. DOT/FAA/AM-23/28). United States. Department of Transportation. Federal Aviation Administration. Office of Aviation. Civil Aerospace Medical Institute.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33354, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Robinson, J. A., Kandu\u010d, T., Sarigiannis, D., & Kocman, D. (2023). Simulating the impact of particulate matter exposure on health-related behaviour: A comparative study of stochastic modelling and personal monitoring data. Health & Place, 83, 103111.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Health-related behaviour, Modelling, Personal monitoring, Stochastic modelling" + }, + { + "id": 33355, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Rodr\u00edguez, J., H\u00f6lzchen, E., Caso-Alonso, A. I., Berndt, J. O., Hertler, C., Timm, I. J., & Mateos, A. (2023). Computer simulation of scavenging by hominins and giant hyenas in the late Early Pleistocene. Scientific Reports, 13(1), 14283.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science, Biology, Ecology, Physics, Chemistry" + }, + { + "id": 33356, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Rodriguez, M., Boixader, F., Epelde, F., Bruballa, E., De Giusti, A., Wong, A., ... & Luque, E. (2023, June). Resilience Analysis of an Emergency Department in Stressful Situations. In Conference on Cloud Computing, Big Data & Emerging Topics (pp. 45-54). Cham: Springer Nature Switzerland.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33357, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Rodr\u00edguez, S. S., & Alatriste, F. R. (2023). La coopetencia como un fen\u00f3meno emergente. Un modelo basado en agentes. Revista Universidad y Empresa, 25(45), 1-31.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 33358, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Rodr\u00edguez-Arias, A., Alonso-Betanzos, A., Guijarro-Berdi\u00f1as, B., & S\u00e1nchez-Marro\u00f1o, N. (2023). Agent-Based Model: Simulating a Virus Expansion Based on the Acceptance of Containment Measures.\u00a0arXiv preprint arXiv:2307.15723.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33359, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Roma, G. Agent-Based Music Live Coding: Sonic adventures in 2D. Organised Sound, 1-10.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 33360, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Roosta, A., Kaths, H., Barthauer, M., Erdmann, J., Fl\u00f6tter\u00f6d, Y. P., & Behrisch, M. (2023, June). The state of bicycle modeling in sumo. In SUMO Conference Proceedings (Vol. 4, pp. 55-64).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 33361, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Rouleau, M. D. (2023). Agent-based modeling (ABM). In Dictionary of Ecological Economics (pp. 8-8). Edward Elgar Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33362, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ruiz-Martin, C. (2023). Theory and foundations of modeling and simulation. Simulation, 99(5), 431-432.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Modeling, Simulation" + }, + { + "id": 33363, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Rumsey, K., Francom, D., & Shen, A. (2023). Generalized Bayesian MARS: Tools for Emulating Stochastic Computer Models. arXiv preprint arXiv:2306.01911.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Bayesian Statistics, Computer Science, arXiv" + }, + { + "id": 33364, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Russo, R., & Blikstein, P. (2023). Beyond Disinformation: An Agent-Based Modeling and Curriculum for the Post-Truth World. In Proceedings of the 17th International Conference of the Learning Sciences-ICLS 2023, pp. 2125-2126. International Society of the Learning Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Modeling, Computer Science, Learning Sciences" + }, + { + "id": 33365, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Rusinko, J. (2023). 2012-Rusinko-Swan-Agent-Based Fabric Modeling Using Differential Equations.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 33366, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Saba, J., Hel-Or, H., & Levy, S. T. (2023). Promoting learning transfer in science through a complexity approach and computational modeling. Instructional Science, 1-33.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33367, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Saba, J., Kapur, M., & Roll, I. (2023, June). The Development of Multivariable Causality Strategy: Instruction or Simulation First?. In\u00a0International Conference on Artificial Intelligence in Education\u00a0(pp. 41-53). Cham: Springer Nature Switzerland.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Causality, Artificial Intelligence, Education" + }, + { + "id": 33368, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Sabal, J., Kapur, M., & Roll, I. 1 Hebrew University of Jerusalem, Jerusalem, Israel 2. In Artificial Intelligence in Education: 24th International Conference, AIED 2023, Tokyo, Japan, July 3\u20137, 2023, Proceedings (p. 41). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Artificial Intelligence, Education" + }, + { + "id": 33369, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "S\u00e1ez, P., Herrera, C., Booth, C., Belmokhtar-Berraf, S., & Parada, V. (2023). A product-driven system with an evolutionary algorithm to increase flexibility in planning a job shop. PloS one, 18(2), e0281807.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33370, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "S\u00e1ez, P., Herrera, C., & Parada, V. (2023). Reducing Nervousness in Master Production Planning: A Systematic Approach Incorporating Product-Driven Strategies. Algorithms, 16(8), 386.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33371, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Safdar, M. F., Nowak, R. M., & Pa\u0142ka, P. (2023). Exploring artificial intelligence algorithms for electrocardiogram (ECG) signal analysis: A comprehensive review.\u00a0Computers in Biology and Medicine, 107908.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 33372, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Sagar, S. (2023). Trust Computational Heuristics for Social Internet of Things (Doctoral dissertation, Macquarie University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33373, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Saint-Pierre, P., & Savy, N. (2023). Agent-based modeling in medical research, virtual baseline generator and change in patients\u2019 profile issue.\u00a0The International Journal of Biostatistics.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Statistics" + }, + { + "id": 33374, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Saisridhar, P., Th\u00fcrer, M., & Avittathur, B. (2023). Assessing supply chain responsiveness, resilience and robustness (Triple-R) by computer simulation: a systematic review of the literature.\u00a0International Journal of Production Research, 1-31.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Ecology, Social Science, Miscellaneous" + }, + { + "id": 33375, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Salazar-Serna, K., Cadavid, L., Franco, C. J., & Carley, K. M. (2023, September). Simulating Transport Mode Choices in Developing Countries. In International Conference on Social Computing, Behavioral-Cultural Modeling and Prediction and Behavior Representation in Modeling and Simulation (pp. 209-218). Cham: Springer Nature Switzerland.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Transport Mode Choices, Social Computing, Behavioral-Cultural Modeling, Behavior Representation, Simulation" + }, + { + "id": 33376, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Salman, M. Y., & Hasar, H. (2023). Review on Environmental Aspects in Smart City Concept: Water, Waste, Air Pollution and Transportation Smart Applications using IoT Techniques. Sustainable Cities and Society, 104567.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33377, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "S\u00e1nchez, S., & Alatriste, F. R. (2023). Coopetition as an Emerging Phenomenon: A Model Based on Agents. Universidad & Empresa, 25(45), 1.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Economics" + }, + { + "id": 33378, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Sanfilippo, D. The Aesthetics of Musical Complex Systems. Organised Sound, 1-11.", + "doesnt_really_use_netlogo": true, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 33379, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Sang, B., Aghamohammadi, N., & Md Noor, R. (2023). The Effects of Dynamic Strategy and Updating Network Structure Towards Customer Participation Innovation Performance. Journal of the Knowledge Economy, 1-31.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33380, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Santana-Robles, F., Granillo-Macias, R., Armas-Alvarez, B., & Rodr\u00edguez, Z. B. (2023). Modelos matem\u00e1ticos para la evacuaci\u00f3n de personas en la cadena de suministro humanitaria: una revisi\u00f3n. Ingenio y Conciencia Bolet\u00edn Cient\u00edfico de la Escuela Superior Ciudad Sahag\u00fan, 10(19), 48-60.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33381, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Santos, J. I., Pereda, M., Ahedo, V., & Gal\u00e1n, J. M. (2023, July). NetLogo Teaching Tool to Illustrate the Cooling Process in Simulated Annealing Using the Metropolis Model. In\u00a0Industry 4.0: The Power of Data: Selected Papers from the 15th International Conference on Industrial Engineering and Industrial Management\u00a0(pp. 19-27). Cham: Springer International Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, Economics, History, Engineering, Miscellaneous" + }, + { + "id": 33382, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Santos, M., Garc\u00eas, C., Ferreira, A., Carvalho, D., Travassos, P., Bastos, R., ... & Cabral, J. A. (2023). Side effects of European eco schemes and agri-environment-climate measures on endangered species conservation: Clues from a case study in mountain vineyard landscapes. Ecological Indicators, 148, 110155.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33383, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Santucci, J. F., Capocchi, L., \u00d6ren, T., Szabo, C., & Graciano Neto, V. V. (2023). Synergies of Soft Computing and M&S. In Body of Knowledge for Modeling and Simulation: A Handbook by the Society for Modeling and Simulation International (pp. 287-309). Cham: Springer International Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33384, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Sapienza, A., & Falcone, R. (2023). An Autonomy-Based Collaborative Trust Model for User-IoT Systems Interaction. In Intelligent Distributed Computing XV (pp. 178-187). Cham: Springer International Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 33385, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Sapienza, A., & Falcone, R. (2023). Exploiting autonomy in a User-IoT system collaborative trust model. International Journal of Parallel, Emergent and Distributed Systems, 1-13.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33386, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Sapino, F., Haer, T., Saiz-Santiago, P., & P\u00e9rez-Blanco, C. D. (2023). A multi-agent cellular automata model to explore water trading potential under information transaction costs. Journal of Hydrology, 618, 129195.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33387, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Sarnatskyi, V. V., & Baklan, I. V. (2023). CTRACEENV: A PLATFORM FOR DEVELOPMENT AND ANALYSIS OF AGENT-BASED EPIDEMIOLOGICAL MODELS.\u00a0\u0412\u0427\u0415\u041d\u0406 \u0417\u0410\u041f\u0418\u0421\u041a\u0418, 234-240.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 33388, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Saval, A., Minh, D. P., Chapuis, K., Tranouez, P., Caron, C., Daud\u00e9, \u00c9., & Taillandier, P. (2023). Dealing with mixed and non-normative traffic. An agent-based simulation with the GAMA platform. Plos one, 18(3), e0281658.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33389, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Sazzad, A., Nawer, N., Mahbub Rimi, M., Habibul Kabir, K., & Foysal Haque, K. (2023). Designing of an Underwater-Internet of Things (U-IoT) for Marine Life Monitoring. In The Fourth Industrial Revolution and Beyond: Select Proceedings of IC4IR+ (pp. 291-303). Singapore: Springer Nature Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33390, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Schmickl, T., & Karsai, I. (2023). Self-complexification through integral feedback in eusocial paper wasps of various levels of sociality. Heliyon, 9(9).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 33391, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Schmolke, A., Galic, N., & Hinarejos, S. (2023). SolBeePop: A model of solitary bee populations in agricultural landscapes. Journal of Applied Ecology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science" + }, + { + "id": 33392, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Schoeman, I., & Chakwizira, J. (2023). Advancing a Performance Management Tool for Service Delivery in Local Government. Administrative Sciences, 13(2), 31.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33393, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Scholz, G., Wijermans, N., Paolillo, R., Neumann, M., Masson, T., Chappin, \u00c9., ... & Kocheril, G. (2023). Social Agents? A Systematic Review of Social Identity Formalizations. Journal of Artificial Societies and Social Simulation, 26(2), 6.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Social Science" + }, + { + "id": 33394, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Schubert, D. (2023, September). Using Survey Data to Develop Agent-Based Models of Spatial Segregation. In Conference of the European Social Simulation Association (pp. 609-619). Cham: Springer Nature Switzerland.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 33395, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Secchi, D. (2023). The relevance of social dynamics and dispositions on non-traditional aids to the strategic process. In Cognitive aids in strategy (Vol. 6, pp. 135-157). Emerald Publishing Limited.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33396, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Seger, H. (2023). Agent-based and contact network modeling applications for Escherichia coli transmission in commercial feedlot settings (Doctoral dissertation, Kansas State University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33397, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Seizovic, A., Thorpe, D., Goh, S., & Skoufer, L. (2023). Cybernetics and battle management system (BMS) in network soldier system application. Australian Journal of Multi-Disciplinary Engineering, 1-23.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 33398, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Sell\u00e1n Vera, K. B. (2023). Modelado basado en agentes para comprobar la validez de un sistema industrial circular en Santa Elena, Ecuador (Bachelor's thesis, La Libertad: Universidad Estatal Pen\u00ednsula de Santa Elena, 2023).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33399, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Sengupta, R., Vankeerberghen, G., Wen, R., Rao, J., & Chen, Y. (2023). GIS\u2010enabled historiography to determine travel routes during the Western Han period via agent\u2010based models and least\u2010cost path analysis. Transactions in GIS, 27(4), 1090-1103.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "GIS, History, Agent-based models, Least-cost path analysis" + }, + { + "id": 33400, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Sengupta, S., Kovalevsky, D. V., Bouwer, L. M., & Scheffran, J. (2023). Urban Planning of Coastal Adaptation under Sea-Level Rise: An Agent-Based Model in the VIABLE Framework. Urban Science, 7(3), 79.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33401, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Serena, L., Marzolla, M., D\u2019Angelo, G., & Ferretti, S. (2023). A review of multilevel modeling and simulation for human mobility and behavior. Simulation Modelling Practice and Theory, 102780.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Simulation, Modeling, Computer Science" + }, + { + "id": 33402, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Seuru, Samuel, Liliana Perez, and Ariane Burke. \"Why Were Rabbits Hunted in the Past? Insights from an Agent-Based Model of Human Diet Breadth in Iberia During the Last Glacial Maximum.\" Modelling Human-Environment Interactions in and beyond Prehistoric Europe. Cham: Springer International Publishing, 2023. 107-123.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33403, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Shaaban, M. (2023). Viability of the social\u2013ecological agroecosystem (ViSA). SoftwareX, 101360.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 33404, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Shahangian, S. A., Tabesh, M., Yazdanpanah, M., Akbarzadeh, A., Raoof, M. A., Zobeidi, T., ... & Sitzenfrei, R. Introducing a Novel Hybrid Agent-Based Framework for Simulating the Adoption of Residential Water Conservation Behaviors. In World Environmental and Water Resources Congress 2023 (pp. 775-788).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33405, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Shaharuddin, R. A., & Misro, M. Y. (2023). Controlling Traffic Congestion in Urbanised City: A Framework Using Agent-Based Modelling and Simulation Approach. ISPRS International Journal of Geo-Information, 12(6), 226.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33406, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Shakya, J., Ghribi, C., & Merghem-Boulahia, L. (2023). Agent-based modeling and simulation for 5G and beyond networks: A comprehensive survey. Simulation Modelling Practice and Theory, 102855.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Simulation, Modeling" + }, + { + "id": 33407, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Shangguan, Y., Tian, X., Jin, S., Gao, K., Hu, X., Yi, W., ... & Wang, S. (2023). On the Fundamental Diagram for Freeway Traffic: Exploring the Lower Bound of the Fitting Error and Correcting the Generalized Linear Regression Models. Mathematics, 11(16), 3460.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Statistics, Computer Science, Physics, Chemistry, Economics" + }, + { + "id": 33408, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Shen, X., & Zhou, Y. (2023, April). Analysis and Research on Express Packaging Recycling Logistics System Based on Netlogo. In 2023 IEEE 3rd International Conference on Electronic Communications, Internet of Things and Big Data (ICEIB) (pp. 124-129). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Research, Logistics, Computer Science, Economics, Engineering, Network, Data, Internet, Statistics" + }, + { + "id": 33409, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Shinde, S. B., & Kurhekar, M. P. (2023, June). Agent-based modeling of complex adaptive systems: An interdisciplinary approach. In AIP Conference Proceedings (Vol. 2705, No. 1). AIP Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling" + }, + { + "id": 33410, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Shobayo, P. (2023). Enhancing the competitiveness of inland waterway transport: a multi-methodological approach applied to port barge congestion and urban areas (Doctoral dissertation, University of Antwerp).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33411, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Siatras, V., Bakopoulos, E., Mavrothalassitis, P., Nikolakis, N., & Alexopoulos, K. (2023). On the Use of Asset Administration Shell for Modeling and Deploying Production Scheduling Agents within a Multi-Agent System. Applied Sciences, 13(17), 9540.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33412, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Sikk, K. (2023). Exploring Environmental Determinism with Agent-Based Simulation of Settlement Choice. In Modelling Human-Environment Interactions in and beyond Prehistoric Europe (pp. 143-154). Cham: Springer International Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 33413, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Siljak, H., Kennedy, J., Byrne, S., & Einicke, K. (2023, February). Noise mitigation of UAV operations through a complex networks approach. In INTER-NOISE and NOISE-CON Congress and Conference Proceedings (Vol. 265, No. 5, pp. 2208-2214). Institute of Noise Control Engineering.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Noise mitigation, Networks, UAVs" + }, + { + "id": 33414, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Simms, I. J. (2023). Are Food Banks Impacting Food Retail? Examining the Relationship Between Hunger Relief Distributions and Retail Transactions in a Local Food Environment (Doctoral dissertation, Case Western Reserve University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33415, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Singh, S. K., Sharma, C., & Maiti, A. (2023). Modeling and experimental validation of forward osmosis process: Parameters selection, permeate flux prediction, and process optimization. Journal of Membrane Science, 121439.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Experimental validation, Parameter selection, Perfora flux prediction, Process optimization" + }, + { + "id": 33416, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Slingerland, G., Nikolic, I., & Brazier, F. (2023). It's in the social network: The Social Neighbourhood model to unravel local social structures for liveable and safe neighbourhoods. Cities, 135, 104215.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33417, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Smaldino, P. (2023). Modeling social behavior: Mathematical and agent-based models of social dynamics and cultural evolution. Princeton University Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33418, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Smith, M. M., & Pauli, J. N. Connectivity maintains genetic diversity and population persistence within an archipelagic refugia even under declining lake ice. Mechanisms of species recovery for a forest carnivore in a changing landscape, 173.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 33419, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Snyder, S., Zhu, K., Vega, R., Nowzari, C., & Parsa, M. (2023). Zespol: A Lightweight Environment for Training Swarming Agents.\u00a0arXiv preprint arXiv:2306.17744.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 33420, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Sobkowicz, P. (2023). Social Depolarization and Diversity of Opinions\u2014Unified ABM Framework. Entropy, 25(4), 568.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33421, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Sondakh, D. E., Pungus, S. R., & Tombeng, M. T. (2023). Pengenalan Computational Thinking Bagi Siswa Vokasi SMKN 1 Sorong. Servitium Smart Journal, 2(2), 90-98.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 33422, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Sotnik, G., Choporov, S., & Shannon, T. (2023). The Role of Social Identity in a Population's Adoption of Prosocial Common-Pool Behavior. Journal of Artificial Societies and Social Simulation, 26(3).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Social Science, Miscellaneous" + }, + { + "id": 33423, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Soto, M. D. C. S., Ram\u00edrez, M. R., Rojas, E. M., & Barajas, S. M. (2023). La simulaci\u00f3n computacional del ecosistema social Entorno Laboral-Escuela. Revista Ib\u00e9rica de Sistemas e Tecnologias de Informa\u00e7\u00e3o, (E61), 296-306.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33424, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Souidi, M. E. H., Maarouk, T. M., Ledmi, M., Ledmi, A., & Rahab, H. (2023). Multi-Pursuer Multi-Evader Games Based on Dynamic Elimination Priorities of the Dominated Strategies. Journal of Computer and Systems Sciences International, 1-14.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33425, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Soumya, K. V., Sujitha, S., Kanaujia, S., Agarwalla, S., Sameer, S., & Manzoor, T. (2023, February). Silent Surveillance Autonomous Drone For Disaster Management And Military Security Using Artificial Intelligence. In 2023 3rd International Conference on Innovative Practices in Technology and Management (ICIPTM) (pp. 1-4). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Artificial Intelligence, Technology, Disaster Management, Military Security, Computer Science, Economics, Archaeology, Physics, Engineering, Miscellaneous" + }, + { + "id": 33426, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Soy, O., & Tavacioglu, L. (2023). Satisfaction of Istanbul Citizens with Urban Public Transportation. Transactions on Maritime Science, 12(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33427, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Speelman, E. N., Escano, E., Marcos, D., & Becu, N. (2023). Serious games and citizen science; from parallel pathways to greater synergies. Current Opinion in Environmental Sustainability, 64, 101320.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33428, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Squazzoni, F., & Bianchi, F. (2023). Exploring Interventions on Social Outcomes with In Silico, Agent-Based Experiments. In Causality in Policy Studies: a Pluralist Toolbox (pp. 217-234). Cham: Springer International Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33429, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Stavropoulou, E., Mitropoulos, L., Tzouras, P. G., Karolemeas, C., & Kepaptsoglou, K. (2023, March). An Evaluation of Agent-Based Models for Simulating E-Scooter Sharing Services in Urban Areas. In Smart Energy for Smart Transport: Proceedings of the 6th Conference on Sustainable Urban Mobility, CSUM2022, August 31-September 2, 2022, Skiathos Island, Greece (pp. 959-976). Cham: Springer Nature Switzerland.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33430, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Stellbrink, L., Kojan, L., & Calero Valdez, A. (2023, July). Making Assumptions Transparent: Iterative Exploratory Modeling as a Stepping Stone for Agent-Based Model Development. In International Conference on Human-Computer Interaction (pp. 389-402). Cham: Springer Nature Switzerland.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Computer Science, Economics, Sociology, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33431, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Stern, J. L., Siddiqi, A., & Grogan, P. T. (2023). Effects of individual strategies for resource access on collaboratively maintained irrigation infrastructure. Systems Engineering, 1-17.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33432, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Sterrett, S. G. (2023). How mathematics figures differently in exact solutions, simulations, and physical models. In Working Toward Solutions in Fluid Dynamics and Astrophysics: What the Equations Don\u2019t Say (pp. 5-29). Cham: Springer International Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Mathematics" + }, + { + "id": 33433, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Stolpe, K., & Hallstr\u00f6m, J. (2023). Visual Programming as a Tool for Developing Knowledge in STEM Subjects: A Literature Review. Programming and Computational Thinking in Technology Education, 130-169.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Programming, Technology Education" + }, + { + "id": 33434, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Su, Y., & Jiang, X. Simulation research on knowledge flow in a collaborative innovation network. Expert Systems, e13280.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation" + }, + { + "id": 33435, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Su, M. (2023). Fostering Deep Understandings of Emergent Science Concepts (Doctoral dissertation, Arizona State University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 33436, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Su, M., Ha, J., & Xin, Y. (2023). Investigating the Efficacy of an Ontological Framework for Teaching Natural Selection Using Agent-Based Simulations. In Proceedings of the 17th International Conference of the Learning Sciences-ICLS 2023, pp. 106-113. International Society of the Learning Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Learning Sciences" + }, + { + "id": 33437, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Sulis, E., Mariani, S., & Montagna, S. (2023). A survey on agents applications in healthcare: Opportunities, challenges and trends. Computer Methods and Programs in Biomedicine, 107525.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Healthcare, Computer Science, Economics, Medicine" + }, + { + "id": 33438, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Summad, E., Al Kindi, M., Ouhmidou, I., & Al Kindi, A (2023). An Agent-based Modeling Approach for Effective Innovation Ecosystem Orchestration. In Proceedings of the\u00a0International Conference on Industrial Engineering and Operations Management.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33439, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Sun, X., Hu, C., Liu, T., Yue, S., Peng, J., & Fu, Q. (2023). Translating Virtual Prey-Predator Interaction to Real-World Robotic Environments: Enabling Multimodal Sensing and Evolutionary Dynamics. Biomimetics, 8(8), 580.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 33440, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Sun, Z., Bai, R., & Bai, Z. (2023). The Application of Simulation Methods During the COVID-19 Pandemic: A Scoping Review. Journal of Biomedical Informatics, 104543.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation Methods, COVID-19, Computer Science, Economics, Archaeology, Journal, Biomedical Informatics" + }, + { + "id": 33441, + "sort": null, + "year": 2023, + "is_ccl": true, + "reference": "Swanson, H., Lawrence, L., Arnell, J., Dawkins, A., Jones, B., Sherin, B., & Wilensky, U. (2023, June). How Co-Designing Computational Modeling Activities Helped Teachers Implement Responsive Teaching Strategies. In\u00a0Proceedings of the 2023 Symposium on Learning, Design and Technology\u00a0(pp. 79-86).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 33442, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Sznajd-Weron, K., Je\u02db drzejewski, A., & Kami\u0144ska, B. (2023). Toward Understanding of the Social Hysteresis: Insights From Agent-Based Modeling. Perspectives on Psychological Science, 17456916231195361.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33443, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Tack, E., \u00c9n\u00e9e, G., Gaillard, T., Fotsing, J. M., & Flouvat, F. (2023, February). Towards User-Centred Validation and Calibration of Agent-Based Models. In 15th International Conference on Agents and Artificial Intelligence (Vol. 1, pp. 322-329). SCITEPRESS-Science and Technology Publications.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33444, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Taha, M. A., Sah, M., & Direkoglu, C. (2023). Identification of Locations in Mecca using Image Pre-Processing, Neural Networks and Deep Learning.\u00a0Arabian Journal for Science and Engineering, 1-21.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Image Pre-Processing, Neural Networks, Deep Learning" + }, + { + "id": 33445, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Tan, Q., Han, J., & Liu, Y. (2023). Examining the synergistic diffusion process of carbon capture and renewable energy generation technologies under market environment: A multi-agent simulation analysis. Energy, 282, 128815.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33446, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Tang, X., & Lira, M. (2023). Drawing Upon Computational Experiences to Navigate Ontologies. In Proceedings of the 17th International Conference of the Learning Sciences-ICLS 2023, pp. 926-929. International Society of the Learning Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computing, Learning Sciences" + }, + { + "id": 33447, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Tang, Y., Cui, A., & Hu, Y. (2023, September). Research on the Ideological and Political System of Logistics System Simulation Course in the Context of Artificial Intelligence. In 2023 4th International Conference on Artificial Intelligence and Education (ICAIE 2023) (pp. 519-525). Atlantis Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33448, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Tang, Y., & Javeed, S. A. (2023). The dynamics of entrepreneurial agglomeration formation: Social selection and simulation. Plos one, 18(9), e0291615.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33449, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Tantiwong, C., Dunster, J. L., Cavill, R., Tomlinson, M. G., Wierling, C., Heemskerk, J. W., & Gibbins, J. M. (2023). An agent-based approach for modelling and simulation of glycoprotein VI receptor diffusion, localisation and dimerisation in platelet lipid rafts. Scientific Reports, 13(1), 3906.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 33450, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Tarantino, R., Panunzi, G., & Romano, V. (2023). Modeling of Hardy-Weinberg Equilibrium Using Dynamic Random Networks in an ABM Framework. In International Conference on Complex Networks and Their Applications (pp. 241-250). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Dynamic Random Networks" + }, + { + "id": 33451, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Tarazona, M., Mula, J., & Poler, R. (2023, March). Optimisation of Production Scheduling and Sequencing Problems in Industry 4.0. In IoT and Data Science in Engineering Management: Proceedings of the 16th International Conference on Industrial Engineering and Industrial Management and XXVI Congreso de Ingenier\u00eda de Organizaci\u00f3n (pp. 107-112). Cham: Springer International Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Optimization, Industry 4.0, Engineering Management, Industrial Engineering, Data Science" + }, + { + "id": 33452, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Tashtoush, B., Alyahya, W. E., Al Ghadi, M., Al-Omari, J., & Morosuk, T. (2023). Renewable energy integration in water desalination: State-of-the-art review and comparative analysis. Applied Energy, 352, 121950.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33453, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Taub\u00f6ck, S., Sch\u00f6fecker, A., Lederm\u00fcller, K., Krakovsky, M., Sharma, S., Reismann, M., ... & Wurzer, G. (2023). PASSt\u2013Predictive Analytics Services f\u00fcr Studienerfolgsmanagement. Zeitschrift f\u00fcr Hochschulentwicklung, 18(Sonderheft Hochschullehre), 251-277.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33454, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Tedeschi, L. O. (2023). The prevailing mathematical modelling classifications and paradigms to support the advancement of sustainable animal production. animal, 100813.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Animal Production" + }, + { + "id": 33455, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Tian, Y., Zhao, Y., Zhang, X., Li, S., & Wu, H. Incorporating Carbon Sequestration into Lake Management: A New Perspective on Climate Change. Science of The Total Environment, 895, 164939.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Climate Change, Carbon Sequestration" + }, + { + "id": 33456, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Tian, Z. (2023, October). Multi-Stage Vertex-Centric Programming for Agent-Based Simulations. In Proceedings of the 22nd ACM SIGPLAN International Conference on Generative Programming: Concepts and Experiences (GPCE'23), October 22--23, 2023, Cascais, Portugal.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Programming" + }, + { + "id": 33457, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Tian, Z., Lindner, P., Nissl, M., Koch, C., & Tannen, V. (2023). Generalizing Bulk-Synchronous Parallel Processing for Data Science: From Data to Threads and Agent-Based Simulations. Proceedings of the ACM on Management of Data, 1(2), 1-28.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 33458, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Tittonell, P. (2023). Trade-Offs Around Production and Livelihood Decisions. In A Systems Approach to Agroecology (pp. 317-353). Cham: Springer Nature Switzerland.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Agriculture" + }, + { + "id": 33459, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Tom\u00e1s, V. R., Garc\u00eda, L. A., & Alonso, A. L. (2023). An agent-based platform to evaluate V2X routing road traffic scenarios. Simulation Modelling Practice and Theory, 102750.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33460, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Tr\u010dek, D. (2023). Trust Management Methodology and Agents Simulations Framework for Conflict Research. Advanced Theory and Simulations, 2200705.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33461, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Trinh, T. T., & Munro, A. (2023). Integrating a choice experiment into an agent-based model to simulate climate-change induced migration: The case of the Mekong River Delta, Vietnam. Journal of Choice Modelling, 48, 100428.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33462, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Trivedi, A., Pandey, M., Ramesh, G., & Chhabra, R. (2023). An agent based modeling approach to evaluate crowd movement strategies and density at bathing areas during Kumbh Mela-2019. Multimedia Tools and Applications, 1-39.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33463, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Tshakwanda, P. M., Arzo, S. T., & Devetsikiotis, M. (2023, March). Multi-agent-based simulation of intelligent network system. In 2023 IEEE 13th Annual Computing and Communication Workshop and Conference (CCWC) (pp. 0813-0819). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33464, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Tsurushima, A. (2023, January). Efficient Visual Sign Assignment for Crowd Evacuation Guidance Considering Risks and Multiple Objectives. In Agents and Artificial Intelligence: 14th International Conference, ICAART 2022, Virtual Event, February 3\u20135, 2022, Revised Selected Papers (pp. 3-26). Cham: Springer International Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 33465, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Tyagi, H., Kumar, R., & Pandey, S. K. (2023). A detailed study on trust management techniques for security and privacy in IoT: Challenges, trends, and research directions. High-Confidence Computing, 100127.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33466, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Udayakumar, R., Kalam, M. A., Sugumar, R., & Elankavi, R. (2023). Assessing Learning Behaviors Using Gaussian Hybrid Fuzzy Clustering (GHFC) in Special Education Classrooms. Journal of Wireless Mobile Networks, Ubiquitous Computing, and Dependable Applications (JoWUA), 14(1), 118-125.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33467, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Uhrmacher, A. M., Frazier, P., H\u00e4hnle, R., Kl\u00fcgl, F., Lorig, F., Lud\u00e4scher, B., ... & Wilsdorf, P. (2023). 4.3 Context, composition, automation and communication: towards sustainable simulation studies. Computer Science Methods for Effective and Sustainable Simulation Studies, 30(4), 53.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "* Computer Science\n* Biology\n* Ecology\n* Archaeology\n* Miscellaneous" + }, + { + "id": 33468, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Umlauft, M., Gojkovic, M., Harshina, K., & Schranz, M. (2023). Bottom-Up Bio-Inspired Algorithms for Optimizing Industrial Plants. In ICAART (1) (pp. 59-70).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 33469, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Urbane, L. M., Chen, C., Lindell, M., & Wang, H. (2023). Which Mode Should I Choose to Evacuate: Analyze and Synthesize Case Studies of Rapid-Onset Disasters. In International Conference on Transportation and Development 2023 (pp. 72-83).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33470, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Uslu, B. \u00c7. (2023). IoT uygulamalar\u0131nda \u00e7ok etmenli sistemlerin (MAS) birlikte \u00e7al\u0131\u015fabilirli\u011finin rol\u00fc: \u00dcretim sistemlerindeki son geli\u015fmeler \u00fczerine bir ara\u015ft\u0131rma. Journal of the Faculty of Engineering & Architecture of Gazi University/Gazi \u00dcniversitesi M\u00fchendislik Mimarl\u0131k Fak\u00fcltesi Dergisi,, 38(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 33471, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Uthpala, N., Hansika, N., Dissanayaka, S., Tennakoon, K., Dharmarathne, S., Vidanarachchi, R., ... & Herath, D. (2023). Analyzing transportation mode interactions using agent-based models. SN Applied Sciences, 5(12), 357.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33472, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Vargas, L. F. C., & Marmolejo-Saucedo, J. A. (2023, September). A Strategy to Analyze the Metal Packaging Market in the Food Cans Industry Using Agent-Based Simulation. In Computer Science and Engineering in Health Services: 6th EAI International Conference Proceedings, COMPSE 2022, Mexico City, July 28, 2022 (p. 109). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science and Engineering" + }, + { + "id": 33473, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Vargas-P\u00e9rez, V. A., Chica, M., Leon, C. J., & Cordon, O. Understanding the Impact of Climate Change in European Island Tourism by Agent-Based Simulations. Available at SSRN 4600317.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33474, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Vasquez, S., Barquero, B., & Bosch, M. (2023, July). Modelling COVID-19 data with simulations: A recursive process. In Thirteenth Congress of the European Society for Research in Mathematics Education (CERME13) (No. 42). Alfr\u00e9d R\u00e9nyi Institute of Mathematics; ERME.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Computer Science" + }, + { + "id": 33475, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Veloso, P., & Krishnamurti, R. (2023). Spatial synthesis for architectural design as an interactive simulation with multiple agents. Automation in Construction, 154, 104997.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33476, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Verma, P., Gupta, A., Kumar, M., & Gill, S. S. (2023). FCMCPS-COVID: AI propelled fog-cloud inspired scalable medical cyber-physical system, specific to coronavirus disease. Internet of Things, 100828.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 33477, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Viaene, K. P., De Schamphelaere, K. A., & Van Sprang, P. (2023). Extrapolation of Metal Toxicity Data for the Rotifer Brachionus calyciflorus Using an Individual\u2010Based Population Model. Environmental Toxicology and Chemistry.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Metal Toxicity, Population Modeling" + }, + { + "id": 33478, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Villa-Enciso, E., Ruiz-Casta\u00f1eda, W., & Robledo Vel\u00e1squez, J. (2023). Agent-Based Model to Analyze the Role of the University in Reducing Social Exclusion. Sustainability, 15(16), 12666.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33479, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Villa Enciso, E. M. El rol de la universidad en la innovaci\u00f3n inclusiva: an\u00e1lisis desde el modelado y simulaci\u00f3n computacional (Doctoral dissertation, Universidad Nacional de Colombia).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33480, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Villavicencio-Valero, K., Ram\u00edrez-Juidias, E., Madue\u00f1o-Luna, A., Madue\u00f1o-Luna, J. M., & L\u00f3pez-Gordillo, M. C. (2023). Influence of the Surface Temperature Evolution over Organic and Inorganic Compounds on Iapetus. Universe, 9(9), 403.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33481, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Villamor, G. B. (2023). Gender and Water-Energy-Food Nexus in the Rural Highlands of Ethiopia: Where Are the Trade-Offs?. Land, 12(3), 585.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33482, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Vizanko, B., Kadinski, L., Ostfeld, A., & Berglund, E. Z. (2023). Social Distancing, Water Demand Changes, and Quality of Drinking Water During the Covid-19 Pandemic. Water Demand Changes, and Quality of Drinking Water During the Covid-19 Pandemic.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33483, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "von Essen, M., & Lambin, E. F. (2023). Agent-Based Simulation of Land Use Governance (ABSOLUG) in Tropical Commodity Frontiers. Journal of Artificial Societies and Social Simulation, 26(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33484, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Vosoughkhosravi, S., Norouziasl, S., & Jafari, A. (2023, July). Lighting energy load prediction framework using agent-based simulation and artificial neural network models. In EC3 Conference 2023 (Vol. 4, pp. 0-0). European Council on Computing in Construction.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 33485, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Vu, T. M., Buckley, C., Duro, J. A., Brennan, A., Epstein, J. M., & Purshouse, R. C. (2023). Can social norms explain long-term trends in alcohol use? Insights from inverse generative social science. Journal of artificial societies and social simulation: JASSS, 26(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Social Science" + }, + { + "id": 33486, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Waight, N., Liu, X., & Whitford, M. (2023). \u201cLike They Are Everyday Substances, You Like See Them, Hold Them, Use Them Every Day\u201d: Students\u2019 Understanding of Big Ideas and Macro and Submicro Chemistry Phenomena in the Context of Computer-Based Models. Research in Science Education, 1-26.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Chemistry" + }, + { + "id": 33487, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "WALID, M., & ZAKARIA, A. B. (2023). Simulation Du Mod\u00e8le De S\u00e9gr\u00e9gation De Schelling (Doctoral dissertation, UNIVERSITY BBA).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33488, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Walzberg, J., Sethuraman, S., Ghosh, T., Uekert, T., & Carpenter, A. (2023). Think before you throw! An analysis of behavioral interventions targeting PET bottle recycling in the United States. Energy Research & Social Science, 100, 103116.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33489, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Wang, B., & Liao, X. (2023). A trusted routing mechanism for multi-attribute chain energy optimization for Industrial Internet of Things.\u00a0Neural Computing and Applications, 1-11.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33490, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Wang, D., Wu, Z., Ma, G., Gao, Z., & Yang, Z. (2023). Coupled Control of Traffic Signal and Connected Autonomous Vehicles at Signalized Intersections. Journal of Advanced Transportation, 2023.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33491, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Wang, H. H., Bishop, A. E., Koralewski, T. E., & Grant, W. E. (2023). In Search of Proximate Triggers of Anthrax Outbreaks in Wildlife: A Hypothetical Individual-Based Model of Plasmid Transfer within Bacillus Communities. Diversity, 15(3), 347.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 33492, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Wang, H., Zhang, Y., & Zhao, J. (2023). Enhancing the SVD Compression Losslessly. Journal of Computational Science, 102182.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 33493, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Wang, J., Wu, J., Li, J., Kong, R., Li, X., & Wang, X. (2023). Simulation of various biofilm fractal morphologies by agent-based model. Colloids and Surfaces B: Biointerfaces, 113352.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Economics" + }, + { + "id": 33494, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Wang, L., Wu, J., Yang, M., Zhang, J., & Meng, Z. (2023, June). Guidance Method of Connected Autonomous Vehicles Under Automatic Control Intersections. In Proceedings of KES-STS International Symposium (pp. 35-43). Singapore: Springer Nature Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33495, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Wang, T., Liu, Y., Li, Q., Du, P., Zheng, X., & Gao, Q. (2023). State-of-the-Art Review of the Resilience of Urban Bridge Networks. Sustainability, 15(2), 989.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33496, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Wang, T., Zhang, X., Ma, Y., & Wang, Y. (2023). Risk contagion and decision-making evolution of carbon market enterprises: Comparisons with China, the United States, and the European Union. Environmental Impact Assessment Review, 99, 107036.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33497, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Wang, W., Wu, F., Yu, H., & Wang, X. (2023). Assessing the effectiveness of intervention policies for reclaimed water reuse in China considering multi-scenario simulations. Journal of Environmental Management, 335, 117519.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33498, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Wang, Y., Ge, J., & Comber, A. (2023). A pedestrian ABM in complex evacuation environments based on Bayesian Nash Equilibrium. AGILE: GIScience Series, 4, 50.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33499, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Wang, Y., Ge, J., & Comber, A. (2023). Navigation in Complex Space: An Bayesian Nash Equilibrium-Informed Agent-Based Model (Short Paper). In 12th International Conference on Geographic Information Science (GIScience 2023). Schloss Dagstuhl-Leibniz-Zentrum f\u00fcr Informatik.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Geography, Computer Science, Statistics, Physics, Economics" + }, + { + "id": 33500, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Warr, O., Song, M., & Sherwood Lollar, B. (2023). The application of Monte Carlo modelling to quantify in situ hydrogen and associated element production in the deep subsurface. Frontiers in Earth Science, 11, 1150740.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Geology" + }, + { + "id": 33501, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Warrier, R., Boone, R., & Salerno, J. Migration land systems model: a theoretical agent-based model (Doctoral dissertation).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33502, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Watts, K. M., & Richardson, W. (2023). Inclusive pedagogy strategies to introduce high schoolers to systems biology. bioRxiv, 2023-03.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Systems Biology, Education" + }, + { + "id": 33503, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Watz, J., Schill, J., Addo, L., Piccolo, J. J., & Hajiesmaeili, M. (2023). Increased Temperature and Discharge Influence Overwinter Growth and Survival of Juvenile Salmonids in a Hydropeaking River: Simulating Effects of Climate Change Using Individual-Based Modelling. Fishes, 8(6), 323.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Climate Change, Modelling" + }, + { + "id": 33504, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Weatherley, G., Araujo, R. P., Dando, S. J., & Jenner, A. L. (2023). Could Mathematics be the Key to Unlocking the Mysteries of Multiple Sclerosis?.\u00a0Bulletin of Mathematical Biology,\u00a085(8), 75.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Mathematics" + }, + { + "id": 33505, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Weber, A. L., Ruesink, B., & Gronau, S. (2023). Dynamics of refugee settlements and energy provision: the case of forest stocks in Zambia. Journal of Economics and Development.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Economics, History, Physics, Chemistry" + }, + { + "id": 33506, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Wever, M., O'Leary, N., Shah, M., Wognum, N., & Onofrei, G. (2023). Towards a transdisciplinary framework for systemic risk detection. International Journal of Agile Systems and Management, 16(4), 458-483.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33507, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Will, M., Groeneveld, J., Lenel, F., Frank, K., & M\u00fcller, B. (2023). Determinants of Household Vulnerability in Networks with Formal Insurance and Informal Risk-Sharing.\u00a0Ecological Economics,\u00a0212, 107921.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33508, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Williams, E. M., & Carley, K. M. (2023, September). Agent-Based Moral Interaction Simulations in Imbalanced Polarized Settings. In International Conference on Social Computing, Behavioral-Cultural Modeling and Prediction and Behavior Representation in Modeling and Simulation (pp. 139-148). Cham: Springer Nature Switzerland.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33509, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Wilson, K. M., Cole, K. E., & Codding, B. F. (2023). Identifying key socioecological factors influencing the expression of egalitarianism and inequality among foragers.\u00a0Philosophical Transactions of the Royal Society B,\u00a0378(1883), 20220311.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33510, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Wrona, Z., Buchwald, W., Ganzha, M., Paprzycki, M., Leon, F., Noor, N., & Pal, C. V. (2023). Overview of Software Agent Platforms Available in 2023. Information, 14(6), 348.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Software Engineering, Economics, Computer Science, Miscellaneous" + }, + { + "id": 33511, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Wu, J., Ohya, T., & Sekiguchi, T. (2023). Applications of agent-based modeling and simulation in organization management: a quarter-century review through bibliometric mapping (1998\u20132022). Computational and Mathematical Organization Theory, 1-31.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33512, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Xiang, W., Chen, L., Yan, X., Wang, B., & Liu, X. (2023). The impact of traffic control measures on the spread of COVID-19 within urban agglomerations based on a modified epidemic model. Cities, 135, 104238.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33513, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Xiangmei, W., Xiaoxiao, G., & Wang, Y. (2023). Research on the network topology characteristics of unsafe behavior propagation in coal mine group from the perspective of human factors. Resources Policy, 85, 104020.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33514, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Xu, B., & Lu, M. (2023). Agent-Based Virtual Machine Migration for Load Balancing and Co-Resident Attack in Cloud Computing. Applied Sciences, 13(6), 3703.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33515, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Xu, B., Lu, M., & Zhang, H. (2023). Multi-Agent Modeling and Jamming-Aware Routing Protocols for Movable-Jammer-Affected WSNs. Sensors, 23(8), 3846.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33516, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Xu, G., Liu, X., Zhong, L., Ren, K., Lu, C., & Deng, L. (2023). Seat allocation optimization for railways considering social distancing during the post-pandemic period. Journal of Transport & Health, 33, 101691.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33517, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Xu, J., Wang, Y., Gomez, H., & Feng, X. Q. (2023). Biomechanical modelling of tumor growth with chemotherapeutic treatment: A review. Smart Materials and Structures.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 33518, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Xu, X., Xu, L., & Wang, X. (2023). Study on coopetition relationship simulation among M-commerce information service subjects based on Lotka-Volterra model. Journal of Management Analytics, 1-24.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33519, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Xu, Y., & Wali, A. (2023). Handwritten Pattern Recognition using Birds-Flocking Inspired Data Augmentation Technique. IEEE Access.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 33520, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Xue, F., Geng, P., Hao, H., He, Y., & Liang, H. (2023, November). A Multiple Fire Zones Detection Method for UAVs Based on Improved Ant Colony Algorithm. In International Artificial Intelligence Conference (pp. 194-208). Singapore: Springer Nature Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 33521, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Yang, C., Yang, Z., & Li, Y. (2023). Negotiation mechanism of carbon emission quota trading process. Sustainable Production and Consumption, 39, 336-344.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Physics, Chemistry, Urban Studies" + }, + { + "id": 33522, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Yang, D., Snelson, C., & Feng, S. (2023). Identifying computational thinking in students through project-based problem-solving activities. Information Discovery and Delivery, (ahead-of-print).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 33523, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Yang, G., Cai, W., Hu, M., Li, C., & Pan, D. (2023, April). S tudy on the Influence of Exit Width Change on Heterogeneous Passengers Evacuation Based on the Social Force Model. In Bio-Inspired Computing: Theories and Applications: 17th International Conference, BIC-TA 2022, Wuhan, China, December 16\u201318, 2022, Revised Selected Papers (pp. 531-539). Singapore: Springer Nature Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Urban Studies" + }, + { + "id": 33524, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Yang, J., Shiwakoti, N., & Tay, R. (2023). Exploring Melbourne Metro Train Passengers\u2019 Pre-Boarding Behaviors and Perceptions. Sustainability, 15(15), 11564.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33525, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Yang, L., Han, J., Long, W., & Zhang, Y. (2023, June). Trust evaluation model for electric power mobile Internet environment based on graph and semantic time window. In\u00a0Second International Symposium on Computer Applications and Information Systems (ISCAIS 2023)\u00a0(Vol. 12721, pp. 22-27). SPIE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Graph, Semantic, Time Window" + }, + { + "id": 33526, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Yang, Y., & Fukuda, M. (2023). Agents Visualization and Web GUI Development in MASS Java. MS Capstone White Paper, University of Washington Bothell, Bothell, WA, 98011.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 33527, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Yang, Y., Mao, X., Yang, S., & Wu, M. (2023). NorMASS: A normative MAS-based modeling approach for simulating incentive mechanisms of Q&A communities. Plos one, 18(2), e0281431.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, MAS, Modeling, Economics, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33528, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Yao, Z., & Sun, C. (2023, March). Characteristic Analysis and Strategy Research on Synergetic Development of Construction Enterprises of Different Scales\u2014\u2014Take Northwest China as an example. In Proceedings of the 4th Management Science Informatization and Economic Innovation Development Conference, MSIEID 2022, December 9-11, 2022, Chongqing, China.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Construction, Strategy, Management, China" + }, + { + "id": 33529, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Yasik, Y. L. (2023). Dunia Maya (Virtual World) Berbasis Agent Based Modeling-ABM untuk Pemodelan Perilaku Konsumen. Prosiding FRIMA (Festival Riset Ilmiah Manajemen dan Akuntansi), (6), 558-571.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33530, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ye\u011feno\u011flu, A., Romero, C. J., Mart\u00edn, A. P., van der Vlag, M., Klijn, W., Hater, T., ... & Diaz-Pier, S. Gradient free optimization of neuroscience models at different scales with L2L. meta, 1, 2.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 33531, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Yeni, S., Grgurina, N., Saeli, M., Hermans, F., Tolboom, J., & Barendsen, E. (2023). Interdisciplinary Integration of Computational Thinking in K-12 Education: A Systematic Review. Informatics in Education.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 33532, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "YESHITLA, H. D. (2023). Development of large scale Agent Based Modeling Simulator with Microservice architecture (Doctoral dissertation, \ubd80\uacbd\ub300\ud559\uad50).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 33533, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Yimin, F. E. N. G., Chenchu, Z. H. O. U., Qiang, Z. O. U., Yusheng, L. I. U., Jiyuan, L. Y. U., & Xinfeng, W. U. (2023). A goal-based approach for modeling and simulation of different types of system-of-systems.\u00a0Journal of Systems Engineering and Electronics,\u00a034(3), 627-640.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33534, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Yin, J., Wang, D., Li, H., Li, Y., & Shang, Y. Spatial Optimization of Rural Settlements in Ecologically Fragile Regions Based on a Multi-Agent Model: Evidence from Different Types of Towns. Available at SSRN 4650929.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33535, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Yin, C., Ji, W., Ye, T., Mao, T., & Zhang, K. (2023, December). Study on Self-Organizing Aggregation Method for Massive Flexible Resources and Its Simulation. In 2023 4th International Conference on Advanced Electrical and Energy Systems (AEES) (pp. 452-459). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 33536, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Ying, Y., Antfolk, J., & Santtila, P. (2023). An Agent-Based Model of Sex and Sexual Orientation Differences in Short-Term Mating Behaviors as a Result of Mating Preferences. The Journal of Sex Research, 1-9.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33537, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Younas, M. I., Iqbal, M. J., Aziz, A., & Sodhro, A. H. (2023). Toward QoS Monitoring in IoT Edge Devices Driven Healthcare\u2014A Systematic Literature Review. Sensors, 23(21), 8885.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Sensors" + }, + { + "id": 33538, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Yu, C., & Wellman, H. M. (2023). Where do differences in theory of mind development come from? An agent-based model of social interaction and theory of mind. Frontiers in Developmental Psychology, 1.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33539, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Yu, H., Li, Y., & Wang, W. (2023). Optimal innovation strategies of automakers with market competition under the dual-credit policy. Energy, 128403.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Economics, Physics, Chemistry, Computer Science, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33540, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Yu, S. (2023). Evaluating architectural layouts for occupancy patterns and interactions using agent-based modelling as a methodology for workplace design. Automation in Construction, 155, 105025.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33541, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Yu, S., & Hou, Z. (2023). Melodie: Agent-based Modeling in Python. Journal of Open Source Software, 8(83), 5100.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling" + }, + { + "id": 33542, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Yuan, C., Yan, S., Li, C., & Zhang, H. (2023, November). Multi-agent-based emergency supplies dispatch. In Third International Conference on Artificial Intelligence, Virtual Reality, and Visualization (AIVRV 2023) (Vol. 12923, pp. 163-170). SPIE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33543, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Yuguo, J., Yu, H., Ampaw, E. M., Wang, C., & Jiang, P. (2023). Innovating for a greener world: Simulating low-carbon innovation in manufacturing companies from the lens of community succession. Journal of Cleaner Production, 140053.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33544, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Zebua, R. S. Y. (2023). Teknik Menjaring Literatur di Berbagai Literature Databases (Vol. 1). XREI Institute.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Literature, Computer Science, Miscellaneous" + }, + { + "id": 33545, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Zhang, A., Zhen, Q., Zheng, C., Li, J., Zheng, Y., Du, Y., ... & Zhang, Q. (2023). Assessing the impact of architectural and behavioral interventions for controlling indoor COVID-19 infection risk: An agent-based approach. Journal of Building Engineering, 106807.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Architecture, Behavioral, Intervention, COVID-19, Engineering, Agent-based modeling, Infection risk" + }, + { + "id": 33546, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Zhang, C., Wu, X., Zhao, S., Madani, H., Chen, J., & Chen, Y. (2023). A dynamical system model to analyze the low carbon transition in energy-economic system. Journal of Economy and Technology, 1, 1-15.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33547, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Zhang, E., Jiang, H., & Zhang, X. (2023, March). A slotted and OFDM federated protocol for safety message broadcasting in VANETs. In Second International Conference on Green Communication, Network, and Internet of Things (CNIoT 2022) (Vol. 12586, pp. 64-68). SPIE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, History, Economics, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 33548, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Zhang, H., Zhu, P., & Yao, Z. (2023). An Agent-Based Model to Simulate the Diffusion of New Energy Vehicles. Complexity, 2023.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33549, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Zhang, J. (2023). How do trust and decentralization impact adoption?: an agent-based model for diffusion of blockchain-based COVID-19 contact tracing apps (Doctoral dissertation, University of British Columbia).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33550, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Zhang, J. (2023). Simulation-Based Schedule Optimization for Virtual Coupling-Enabled Rail Transit Services with Multiagent Technique. Journal of Advanced Transportation, 2023.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 33551, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Zhang, J., & Zhang, J. (2023). Artificial Intelligence Applied on Traffic Planning and Management for Rail Transport: A Review and Perspective. Discrete Dynamics in Nature and Society, 2023.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Artificial Intelligence" + }, + { + "id": 33552, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Zhang, J., Rong, L., & Gong, Y. Check for updates Construction and Simulation of Major Infectious Disease Transmission Model Based on Individual-Place Interaction. In Knowledge and Systems Sciences: 22nd International Symposium, KSS 2023, Guangzhou, China, December 2\u20133, 2023, Proceedings (p. 178). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Knowledge, Systems Sciences, Mathematics, Physics, Infectious Disease, Modeling" + }, + { + "id": 33553, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Zhang, J., Rong, L., & Gong, Y. (2023, November). Construction and Simulation of Major Infectious Disease Transmission Model Based on Individual-Place Interaction. In International Symposium on Knowledge and Systems Sciences (pp. 178-195). Singapore: Springer Nature Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Economics, Physics, Ecology, Miscellaneous" + }, + { + "id": 33554, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Zhang, Q., Qiu, T., & Fu, Y. (2023, February). 3D Model-Based Design Method for Complex Cable Network Three-Dimensional Marking of Spacecraft. In Signal and Information Processing, Networking and Computers: Proceedings of the 10th International Conference on Signal and Information Processing, Networking and Computers (ICSINC) (pp. 866-872). Singapore: Springer Nature Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "3D Model-Based Design" + }, + { + "id": 33555, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Zhang, W. H., Yuan, Q., & Cai, H. (2023). Unravelling urban governance challenges: Objective assessment and expert insights on livability in Longgang District, Shenzhen. Ecological Indicators, 155, 110989.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33556, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Zhang, Y., Li, S. H., & Liu, H. Y. (2023). Simulation Research on Conflicts of Matching Persons and Posts in High-risk Construction Based on Prospect Theory. Operations Research and Management Science, 31(12), 179.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33557, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Zhang, Z., & Wu, Z. (2023, April). A Sunlight Duration Time Driven Multi-objective Optimization Method for the Layout of High-Rise Residential Quarters Based on NSGA2 Algorithm. In Hybrid Intelligence: Proceedings of the 4th International Conference on Computational Design and Robotic Fabrication (CDRF 2022) (pp. 138-149). Singapore: Springer Nature Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Optimization, Algorithm, Computer Science, Engineering, Physics, Economics, Urban Studies, Social Science" + }, + { + "id": 33558, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Zhao, J., He, J., Liu, X., & Zhang, Y. (2023, August). Evaluation and optimization of data systems. In Second International Conference on Applied Statistics, Computational Mathematics, and Software Engineering (ASCMSE 2023) (Vol. 12784, pp. 839-847). SPIE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Statistics, Computer Science, Mathematics, Engineering, Economics" + }, + { + "id": 33559, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Zheng, G., Zhang, Y., Peng, T., Guo, C., Guo, C., & Liu, X. (2023, April). Research on Distributed Internet of Things Trusted Operation Based on Dynamic Trusted Metrics. In 2023 8th International Conference on Computer and Communication Systems (ICCCS) (pp. 689-694). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Ecology" + }, + { + "id": 33560, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Zheng, W., Cao, Y., & Tan, H. (2023). Secure sharing of industrial IoT data based on distributed trust management and trusted execution environments: a federated learning approach. Neural Computing and Applications, 1-11.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 33561, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Zheng, X. (2023). Complex behavior of individuals and collectives in a social system: An introduction to exploratory computational experimental methodology based on multi-agent modeling. Annals of Operations Research, 1-25.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33562, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Zhijian, W. (2023). Nash equilibrium selection by eigenvalue control. arXiv preprint arXiv:2302.09131.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Physics, Chemistry" + }, + { + "id": 33563, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Zhong, X., Yang, Y., Deng, F., & Liu, G. (2023). Rumor Propagation Control With Anti-Rumor Mechanism and Intermittent Control Strategies. IEEE Transactions on Computational Social Systems, 1-13.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33564, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Zhu, M., Yang, G., Jiang, Y., & Wang, X. (2023). Agent-Based Modeling for Water\u2013Energy\u2013Food Nexus and Its Application in Ningdong Energy and Chemical Base. Sustainability, 15(14), 11428.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33565, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Zhu, X., Huang, J., & Qi, C. (2023). Modeling and Analysis of Malware Propagation for IoT Heterogeneous Devices. IEEE Systems Journal.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 33566, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Zixin, L. (2023). APPLICATION OF MULTI-AGENT SYSTEM IN URBAN RENEWAL DESIGN (Doctoral dissertation, University of P\u00e9cs).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33567, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Zixin, L., V\u00e1rady, G., & Zagor\u00e1cz, M. B. (2023). Multi-agent simulation of pedestrian activity in historic district. Pollack Periodica, 18(2), 137-143.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33568, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Zohar, A. R., & Levy, S. T. Teaching Molecules How to React: Middle School Students\u2019 Learning through Computational Modeling of Chemical Reactions Using MMM Platform. Proceedings of the 18th Chais Conference for the Study of Innovation and Learning Technologies: Learning in the Digital Era, 18E-24E.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computational Modeling, Chemistry" + }, + { + "id": 33569, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Zhou, Y., Cao, J., & Zhang, Y. (2023). Research on Network Security Situation Awareness based on Netlogo.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Network Security, Computer Science, Economics" + }, + { + "id": 33570, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Zou, F., Jiang, H., Che, E., Wang, J., & Wu, X. (2023). Quantitative evaluation of emergency shelters in mountainous areas among multiple scenarios: Evidence from Biancheng, China. International Journal of Disaster Risk Reduction, 103665.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33571, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Zouhri, S., & El Baroudi, M. (2023). Mathematical formalism for agent-based model of proteins interaction inside cancer cell. Commun. Math. Biol. Neurosci., 2023, Article-ID.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Neuroscience" + }, + { + "id": 33572, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "\uc6b0\uc120\ud76c. (2023). \ub178\uc778\uc694\uc591\uc2dc\uc124 \ud654\uc7ac\uc704\ud5d8\ud3c9\uac00\ub97c \ud1b5\ud55c \uc778\uba85 \uc548\uc804\uc131 \ud655\ubcf4 \ubc29\uc548 \uc5f0\uad6c (Doctoral dissertation, \ubd80\uacbd\ub300\ud559\uad50).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33573, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "\uc8fc\ub7f4\ub7ec, & \uc774\ud5a5\uc219. (2023). \uacbd\uc7c1\uc6b0\uc704 \uad00\uc810\uc5d0\uc11c \ubcf8 \uc804\uc790\uc0c1\uac70\ub798 \ud50c\ub7ab\ud3fc\uc5d0\uc11c\uc758 SCF \uc801\uc6a9\uc5d0 \uad00\ud55c \uc5f0\uad6c. Journal of the Korean Society of Supply Chain Management ISSN, 23(1), 39-54.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33574, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "\uae40\ubbfc\uc218, \uc774\uc9c0\ud658, & \uae40\uc601\uc9c4. (2023). \ub300\uaddc\ubaa8 \uc778\uad6c\ub3d9\ud0dc \uc2dc\ubbac\ub808\uc774\uc158\uc744 \ud1b5\ud55c \uc5d0\uc774\uc804\ud2b8 \uae30\ubc18 \uace0\uc131\ub2a5 \uc2dc\ubbac\ub808\uc774\ud130\uc758 \uad6c\ud604\uc5d0 \uad00\ud55c \uc5f0\uad6c. \ud55c\uad6d\uc804\uc790\uac70\ub798\ud559\ud68c\uc9c0, 28(1), 109-121.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33575, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "\uc870\uc131\uc9c4, \ucd5c\ud76c\uc815, \uc784\uc885\uc11c, \uc774\ud61c\uc601, & \uae40\uc120\ubbf8. (2023). \ud574\uc591\uacf5\uac04\uacc4\ud68d \uc774\ud589\uc744 \uc704\ud55c \ud589\uc704\uc790\uae30\ubc18 \uc2dc\ubbac\ub808\uc774\uc158 \ud65c\uc6a9\ubc29\uc548 \uc5f0\uad6c-\uc815\ucc45 \ud604\uc548 \ubc0f \uae30\uc220 \uc218\uc694 \ubd84\uc11d\uc744 \uc911\uc2ec\uc73c\ub85c. \ud574\uc591\uc815\ucc45\uc5f0\uad6c, 38(1), 153-179.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33576, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "\u6d45\u91ce\u4fca\u5e78. (2023). \u30b7\u30df\u30e5\u30ec\u30fc\u30b7\u30e7\u30f3\u6559\u80b2\u306e\u305f\u3081\u306e NetLogo \u306e\u5229\u7528. \u6e58\u5357\u5de5\u79d1\u5927\u5b66\u7d00\u8981, 57(1), 27-31.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation, Education" + }, + { + "id": 33577, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "\u540d\u5009\u5353\u5f25, & \u79cb\u5c71\u82f1\u4e09. (2023). SNS \u306b\u304a\u3051\u308b\u30c8\u30d4\u30c3\u30af\u30b9\u6570\u306e\u5897\u52a0\u304c\u610f\u898b\u306e\u5206\u6975\u5316\u3068\u30a8\u30b3\u30fc\u30c1\u30a7\u30f3\u30d0\u30fc\u306b\u4e0e\u3048\u308b\u5f71\u97ff.\u00a0\u4eba\u5de5\u77e5\u80fd\u5b66\u4f1a\u8ad6\u6587\u8a8c,\u00a038(4), B-N11_1.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 33578, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "\u68ee\u7530\u88d5\u4e4b, \u897f\u53e3\u771f\u592e, \u767d\u4e95\u5eb7\u4e4b, & \u5f8c\u85e4\u88d5\u4ecb. (2023). \u30bf\u30af\u30b7\u30fc\u30d7\u30ed\u30fc\u30d6\u30c7\u30fc\u30bf\u3092\u7528\u3044\u305f\u30b9\u30ab\u30a4\u30bf\u30af\u30b7\u30fc\u5b9f\u7528\u5316\u306b\u304a\u3051\u308b\u7a7a\u8def\u8a2d\u5b9a\u554f\u984c\u306b\u95a2\u3059\u308b\u7814\u7a76. \u7d4c\u6e08\u7814\u7a76 The Journal of Economic Studies/\u5927\u962a\u5e9c\u7acb\u5927\u5b66\u7d4c\u6e08\u5b66\u7814\u7a76\u79d1 \u7de8, 68(1-4), 1-36.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33579, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "\u5218\u5bb6\u9716, \u5f20\u663e\u7389, & \u5e9e\u8fbe. (2023). \u57fa\u4e8e\u8fbe\u5c14\u6587\u6f14\u5316\u52a8\u529b\u5b66\u7684\u9002\u5e94\u6027\u6cbb\u7597\u7b56\u7565\u5728\u80bf\u7624\u6cbb\u7597\u4e2d\u7684\u7814\u7a76\u8fdb\u5c55. \u4e2d\u56fd\u764c\u75c7\u6742\u5fd7, 33(4), 397-402.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33580, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "\u9f4b\u85e4\u7f8e\u7d00, \u963f\u90e8\u5065\u592a, & \u6797\u4e45\u5fd7. (2023). P2P \u578b\u4f01\u696d\u9593\u4eba\u6750\u5171\u6709 PF \u306b\u304a\u3051\u308b\u30ea\u30bd\u30fc\u30b9\u30fb\u30c8\u30fc\u30af\u30f3\u306e\u504f\u308a\u306e\u5bfe\u51e6\u6cd5: \u9280\u884c\u65b9\u5f0f. \u4eba\u5de5\u77e5\u80fd\u5b66\u4f1a\u7b2c\u4e8c\u7a2e\u7814\u7a76\u4f1a\u8cc7\u6599, 2023(SAI-048), 02.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 33581, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "\u77f3\u4e91, \u6731\u6653\u96ef, \u674e\u5efa\u534e, \u9a6c\u5c0f\u71d5, \u8d75\u5a1c, & \u4f58\u6d01. (2023). \u57fa\u4e8e\u591a\u667a\u80fd\u4f53\u7684\u9ec4\u571f\u9ad8\u539f\u6c9f\u58d1\u533a\u519c\u6751\u5c45\u6c11\u70b9\u4f18\u5316\u5e03\u5c40. \u7ecf\u6d4e\u5730\u7406, 43(7), 170-178.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33582, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "\u5218\u822b, \u5415\u5929, \u5218\u5fc3\u9601, \u53f6\u76db, \u90ed\u9510, \u5f20\u70c8, ... & \u5218\u6c38\u8fdb. (2023). Research on the Construction and Interactive Feedback of Online Exhibition Hall with the Introduction of Intelligent Virtual Agent. Journal of Software, 1-18.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33583, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "\u5b89\u4e95\u4e00\u771f, \u5b87\u90fd\u5bae\u967d\u4e00, & \u5965\u7530\u9686\u53f2. (2023). \u8db3\u306e\u901f\u3055\u306b\u3088\u308b\u6709\u5229\u4e0d\u5229\u3092\u5c0f\u3055\u304f\u3059\u308b\u9b3c\u3054\u3063\u3053\u30eb\u30fc\u30eb\u306e\u691c\u8a3c. \u96fb\u6c17\u5b66\u4f1a\u8ad6\u6587\u8a8c C (\u96fb\u5b50\u30fb\u60c5\u5831\u30fb\u30b7\u30b9\u30c6\u30e0\u90e8\u9580\u8a8c), 143(12), 1145-1153.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33584, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "\u5218\u6377, \u738b\u66c8, \u5b59\u6052\u98de, & \u6c90\u6ce2. (2023). \u8003\u8651\u9a7e\u9a76\u5458\u4e2a\u6027\u7684\u535a\u5f08\u534f\u5546\u673a\u5236\u4e0e\u51fa\u884c\u8def\u5f84\u9009\u62e9\u7814\u7a76. \u4ea4\u901a\u8fd0\u8f93\u7814\u7a76, 9(1), 86.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33585, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "\u6768\u9e64\u6797. (2023). \u4fc3\u8fdb\u5f00\u653e\u79d1\u5b66: \u56fd\u5916\u9ad8\u6821\u56fe\u4e66\u9986 2022 \u5e74 \u201c\u7231\u6570\u636e\u5468\u201d \u6d3b\u52a8\u5206\u6790\u4e0e\u542f\u793a. Journal of Academic Libraries, 41(3).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33586, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "\u6afb\u4e95\u7950\u5b50. (2023). \u79c1\u306e\u30d6\u30c3\u30af\u30de\u30fc\u30af: \u4eba\u5de5\u77e5\u80fd\u3068\u30b2\u30fc\u30e0\u7406\u8ad6. \u4eba\u5de5\u77e5\u80fd, 38(5), 750-756.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 33587, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "\u859b\u9886, \u5f6d\u5fd7\u658c, & \u8d75\u5a01. (2023). \u7a7a\u95f4\u96c6\u805a\u548c\u77e5\u8bc6\u6ea2\u51fa\u7684\u5fae\u89c2\u673a\u7406\u4e0e\u52a8\u6001\u6a21\u62df. \u590d\u6742\u7cfb\u7edf\u4e0e\u590d\u6742\u6027\u79d1\u5b66, 20(1), 18-26.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 33588, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "\u6c88\u9882, & \u6c88\u56fd\u5cf0. (2023). \u4e00\u79cd\u5e94\u5bf9 COVID-19 \u75ab\u60c5\u7684\u793e\u4f1a\u63a5\u89e6\u81ea\u52a8\u68c0\u6d4b\u65b9\u6cd5. Application Research of Computers/Jisuanji Yingyong Yanjiu, 40(4).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33589, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "\u9879\u51e4\u6d9b, \u82cf\u70af\u94ed, \u8c37\u5b66\u5f3a, & \u5f20\u4e07\u9e4f (2023). \u57fa\u4e8e\u667a\u80fd\u4f53\u5efa\u6a21\u7684\u65b0\u51a0\u80ba\u708e\u75ab\u60c5\u4f20\u64ad\u95ee\u9898\u7814\u7a76. \u667a\u80fd\u79d1\u5b66\u4e0e\u6280\u672f\u5b66\u62a5, 5(1), 51-57.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33590, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "\u9ec4\u79cb\u6021, \u90d1\u5c0f\u5e73, & \u738b\u745e\u6885 (2023). \u519c\u6751\u4ea4\u901a\u57fa\u7840\u8bbe\u65bd\u6539\u5584\u80fd\u591f\u7f13\u89e3\u519c\u4e1a\u8981\u7d20\u9519\u914d\u5417?. \u4e2d\u56fd\u519c\u4e1a\u5927\u5b66\u5b66\u62a5, 28(3), 279-292.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33591, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "\u05e0\u05d5\u05e8\u05d9\u05ea \u05d1\u05e8\u05d2\u05e8-\u05d2\u05d9\u05dc .(2023)\u00a0\u05dc\u05de\u05d9\u05d3\u05ea \u05de\u05d5\u05e9\u05d2\u05d9\u05dd \u05d1\u05db\u05d9\u05de\u05d9\u05d4 \u05d1\u05d0\u05de\u05e6\u05e2\u05d5\u05ea \u05d1\u05e0\u05d9\u05d9\u05ea \u05de\u05d5\u05d3\u05dc\u05d9\u05dd \u05d7\u05d9\u05e9\u05d5\u05d1\u05d9\u05d9\u05dd \u05d5\u05de\u05e2\u05d5\u05d2\u05e0\u05d9 \u05d2\u05d5\u05e3 \u05d1\u05d2\u05d9\u05e9\u05ea \u05de\u05e2\u05e8\u05db\u05d5\u05ea \u05de\u05d5\u05e8\u05db\u05d1\u05d5\u05ea\u00a0(Doctoral dissertation, University of Haifa, Israel).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Chemistry, Computer Science" + }, + { + "id": 33592, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "\u0411\u0435\u0437\u0431\u043e\u0440\u043e\u0434\u043e\u0432\u0430, \u041e. \u0415. (2023). \u0418\u041c\u0418\u0422\u0410\u0426\u0418\u041e\u041d\u041d\u041e\u0415 \u041c\u041e\u0414\u0415\u041b\u0418\u0420\u041e\u0412\u0410\u041d\u0418\u0415 \u0412\u0417\u0410\u0418\u041c\u041e\u0414\u0415\u0419\u0421\u0422\u0412\u0418\u042f \u0427\u0415\u041b\u041e\u0412\u0415\u041a\u0410 \u0418 \u041e\u0411\u042a\u0415\u041a\u0422\u0410 \u0422\u0415\u0425\u041d\u041e\u0421\u0424\u0415\u0420\u042b \u0412 \u0418\u041d\u0424\u041e\u0420\u041c\u0410\u0426\u0418\u041e\u041d\u041d\u041e-\u0418\u0417\u041c\u0415\u0420\u0418\u0422\u0415\u041b\u042c\u041d\u042b\u0425 \u0418 \u0423\u041f\u0420\u0410\u0412\u041b\u042f\u042e\u0429\u0418\u0425 \u0421\u0418\u0421\u0422\u0415\u041c\u0410\u0425 \u041e\u0411\u0415\u0421\u041f\u0415\u0427\u0415\u041d\u0418\u042f \u042d\u041a\u041e\u041b\u041e\u0413\u0418\u0427\u0415\u0421\u041a\u041e\u0413\u041e \u0411\u041b\u0410\u0413\u041e\u041f\u041e\u041b\u0423\u0427\u0418\u042f \u0427\u0415\u041b\u041e\u0412\u0415\u041a\u0410. \u041c\u043e\u0434\u0435\u043b\u0438, \u0441\u0438\u0441\u0442\u0435\u043c\u044b, \u0441\u0435\u0442\u0438 \u0432 \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u043a\u0435, \u0442\u0435\u0445\u043d\u0438\u043a\u0435, \u043f\u0440\u0438\u0440\u043e\u0434\u0435 \u0438 \u043e\u0431\u0449\u0435\u0441\u0442\u0432\u0435, (1 (45)), 164-177.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33593, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "\u041c\u0430\u043a\u0430\u0440\u0435\u043d\u044f, \u0422. \u0410., \u041c\u0430\u043d\u043d\u0430\u0430, \u0410. \u0421., \u041a\u0430\u043b\u0438\u043d\u0438\u0447\u0435\u043d\u043a\u043e, \u0410. \u0418., & \u041f\u0435\u0442\u0440\u0435\u043d\u043a\u043e, \u0421. \u0412. (2023). \u041a\u043e\u0433\u043d\u0438\u0442\u0438\u0432\u043d\u043e\u0435 \u043c\u043e\u0434\u0435\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u043e-\u044d\u043a\u043e\u043d\u043e\u043c\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u0441\u0438\u0441\u0442\u0435\u043c: \u0440\u0435\u0442\u0440\u043e\u0441\u043f\u0435\u043a\u0442\u0438\u0432\u043d\u044b\u0439 \u0430\u043d\u0430\u043b\u0438\u0437 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432 \u0438 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0445 \u0441\u0438\u0441\u0442\u0435\u043c. \u0412\u0435\u0441\u0442\u043d\u0438\u043a \u0412\u0413\u0423. \u0421\u0435\u0440\u0438\u044f: \u0421\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439 \u0430\u043d\u0430\u043b\u0438\u0437 \u0438 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0435 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438, (3), 84-94.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33594, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "\u0410\u043b\u0435\u043a\u0441\u0435\u0435\u0432\u0430, \u0415. \u0410. (2023). \u041f\u0440\u043e\u0435\u043a\u0442\u044b \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u043d\u043e\u0439 \u044d\u043f\u0438\u0441\u0442\u0435\u043c\u043e\u043b\u043e\u0433\u0438\u0438. \u0424\u0438\u043b\u043e\u0441\u043e\u0444\u0438\u044f \u043d\u0430\u0443\u043a\u0438 \u0438 \u0442\u0435\u0445\u043d\u0438\u043a\u0438 Philosophy of Science and Technology, 28(2), 88-101.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33595, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "\u039c\u03c0\u03b5\u03bd\u03af\u03c3\u03b7, \u0391., \u0393\u03ba\u03b9\u03cc\u03bb\u03bc\u03b1\u03c2, \u0391., \u03a3\u03c4\u03bf\u03cd\u03bc\u03c0\u03b1, \u0391., \u03a7\u03b1\u03bb\u03ba\u03af\u03b4\u03b7\u03c2, \u0386., \u039c\u03c0\u03cc\u03b9\u03ba\u03bf\u03c2, \u0397., \u03a8\u03c9\u03bc\u03ac, \u0392., ... & \u03a0\u03b1\u03c0\u03b1\u03bd\u03b1\u03b3\u03b9\u03ce\u03c4\u03bf\u03c5, \u0391. \u03a4. (2023). \u0395\u03be\u03b5\u03bb\u03b9\u03b3\u03bc\u03ad\u03bd\u03b7 \u03bc\u03bf\u03c1\u03c6\u03ae \u03c4\u03bf\u03c5 \u03bc\u03bf\u03bd\u03c4\u03ad\u03bb\u03bf\u03c5 \u03c4\u03b7\u03c2 NetL\u03bfgo \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03c6\u03c9\u03c4\u03b9\u03ac \u03c3\u03c4\u03bf \u03b4\u03ac\u03c3\u03bf\u03c2: \u039c\u03af\u03b1 \u03b4\u03b9\u03b4\u03b1\u03ba\u03c4\u03b9\u03ba\u03ae \u03c0\u03c1\u03bf\u03c3\u03ad\u03b3\u03b3\u03b9\u03c3\u03b7 \u03c3\u03b5 \u03bc\u03b1\u03b8\u03b7\u03c4\u03ad\u03c2 \u0394\u03b7\u03bc\u03bf\u03c4\u03b9\u03ba\u03bf\u03cd. 13o \u03a0\u03b1\u03bd\u03b5\u03bb\u03bb\u03ae\u03bd\u03b9\u03bf \u03a3\u03c5\u03bd\u03ad\u03b4\u03c1\u03b9\u03bf \u03c4\u03b7\u03c2 \u0394\u03b9\u03b4\u03b1\u03ba\u03c4\u03b9\u03ba\u03ae\u03c2 \u03c4\u03c9\u03bd \u03a6\u03c5\u03c3\u03b9\u03ba\u03ce\u03bd \u0395\u03c0\u03b9\u03c3\u03c4\u03b7\u03bc\u03ce\u03bd \u03ba\u03b1\u03b9 \u039d\u03ad\u03c9\u03bd \u03a4\u03b5\u03c7\u03bd\u03bf\u03bb\u03bf\u03b3\u03b9\u03ce\u03bd \u03c3\u03c4\u03b7\u03bd \u0395\u03ba\u03c0\u03b1\u03af\u03b4\u03b5\u03c5\u03c3\u03b7, 13.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Physics, Chemistry, Miscellaneous" + }, + { + "id": 33596, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "\u041a\u0430\u0442\u0430\u043b\u0435\u0432\u0441\u043a\u0438\u0439, \u0414. (2023). \u041d\u043e\u0432\u044b\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0447\u0435\u0441\u043a\u0438\u0435 \u043f\u043e\u0434\u0445\u043e\u0434\u044b \u0434\u043b\u044f \u043f\u0440\u0435\u0434\u043e\u0442\u0432\u0440\u0430\u0449\u0435\u043d\u0438\u044f \u043a\u0440\u0430\u0445\u0430 \u0441\u043b\u043e\u0436\u043d\u044b\u0445 \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u044d\u043a\u043e\u043d\u043e\u043c\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u0441\u0438\u0441\u0442\u0435\u043c. \u0424\u043e\u0440\u0441\u0430\u0439\u0442, 17(3), 56-67.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33597, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "\u0411\u0435\u043b\u043e\u043b\u0443\u0446\u043a\u0430\u044f, \u0410. \u041a., \u0412\u0430\u0447\u043a\u043e\u0432\u0430, \u0421. \u041d., & \u041f\u0430\u0442\u0430\u0440\u0430\u043a\u0438\u043d, \u0415. \u0414. \u0421\u0432\u044f\u0437\u044c \u0446\u0438\u0444\u0440\u043e\u0432\u043e\u0433\u043e \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0430 \u043e\u0431\u0443\u0447\u0435\u043d\u0438\u044f \u0438 \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u044f \u0434\u0435\u0442\u0435\u0439 \u0434\u043e\u0448\u043a\u043e\u043b\u044c\u043d\u043e\u0433\u043e \u0438 \u0448\u043a\u043e\u043b\u044c\u043d\u043e\u0433\u043e \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u0430: \u043e\u0431\u0437\u043e\u0440 \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0439 \u0438 \u043c\u0435\u0436\u0434\u0443\u043d\u0430\u0440\u043e\u0434\u043d\u044b\u0445 \u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0445 \u043f\u0440\u0430\u043a\u0442\u0438\u043a, 18(2), 37-55.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 33598, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "\u0413\u043d\u0430\u0442\u0447\u0443\u043a, \u0404. \u0413., \u0417\u0430\u0441\u043e\u0440\u043d\u043e\u0432\u0430, \u0406. \u041e., & \u0420\u0435\u0439, \u041a. \u0421. (2023). \u0421\u0418\u0421\u0422\u0415\u041c\u0410 \u041f\u0406\u0434\u0422\u0420\u0418\u041c\u041a\u0418 \u041f\u0420\u0418\u0439\u041d\u044f\u0422\u0422\u044f \u0420\u0406\u0448\u0415\u041d\u044c \u041f\u0420\u041e \u041c\u041e\u0416\u043b\u0418\u0412\u0406\u0421\u0422\u044c \u0412\u0410\u041a\u0446\u0418\u041d\u0410\u0446\u0406\u0407 \u0412\u0406\u0434 COVID-19. \u0412\u0427\u0415\u041d\u0406 \u0417\u0410\u041f\u0418\u0421\u041a\u0418, 1202376.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33599, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "\u0422\u0438\u043c\u043e\u0444\u0435\u0435\u0432, \u0413. \u0410. (2023). \u041f\u043e\u0438\u0441\u043a \u043f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0435\u0439 \u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u044b \u0434\u043b\u044f \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u0446\u0438\u0444\u0440\u043e\u0432\u043e\u0433\u043e \u0434\u0432\u043e\u0439\u043d\u0438\u043a\u0430 \u0433\u0438\u0431\u0440\u0438\u0434\u043d\u044b\u0445 \u044d\u043d\u0435\u0440\u0433\u0435\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u0441\u0438\u0441\u0442\u0435\u043c \u0432 \u0438\u0437\u043e\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u043e\u0442 \u0441\u0435\u0442\u0435\u0432\u044b\u0445 \u044d\u043d\u0435\u0440\u0433\u043e\u0441\u0438\u0441\u0442\u0435\u043c \u0441\u0440\u0435\u0434\u0430\u0445 \u0441 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u043c \u0422\u0420\u0418\u0417-\u044d\u0432\u043e\u043b\u044e\u0446\u0438\u043e\u043d\u043d\u043e\u0433\u043e \u043f\u043e\u0434\u0445\u043e\u0434\u0430. \u0412\u0435\u0441\u0442\u043d\u0438\u043a \u041d\u0413\u0423. \u0421\u0435\u0440\u0438\u044f: \u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0435 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438, 20(4), 76-99.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33600, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "\u0410\u043d\u0442\u043e\u043d\u043e\u0432\u0430, \u0415. \u041c (2023). \u041c\u0435\u0434\u0438\u0446\u0438\u043d\u0441\u043a\u0430\u044f \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u043a\u0430: \u0432\u043b\u0438\u044f\u043d\u0438\u0435 \u0432\u0440\u0435\u043c\u0435\u043d\u0438, \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b \u0438 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u044b\u0435 \u043f\u0443\u0442\u0438 \u0440\u0435\u0448\u0435\u043d\u0438\u044f.\u00a0\u0426\u0418\u0422\u0418\u0421\u042d, 3, 18-27.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Medicine, Computer Science" + }, + { + "id": 33601, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "\u0410\u041d\u0414\u0420\u0418\u0410\u041d\u041e\u0412\u0410, \u041b., \u041f\u0410\u0412\u041b\u041e\u0412\u0410, \u0417., \u0425\u0410\u041a\u0418\u041c\u042c\u042f\u041d\u041e\u0412, \u041c., & \u0425\u0410\u0417\u0418\u0415\u0412\u0410, \u0420. \u0418\u041d\u0424\u041e\u0420\u041c\u0410\u0422\u0418\u0412\u041d\u041e\u0415 \u041f\u0420\u0415\u0414\u0421\u0422\u0410\u0412\u041b\u0415\u041d\u0418\u0415 \u0414\u0418\u0421\u0426\u0418\u041f\u041b\u0418\u041d\u042b \u00ab\u041c\u0423\u041b\u042c\u0422\u0418\u0410\u0413\u0415\u041d\u0422\u041d\u042b\u0415 \u0421\u0418\u0421\u0422\u0415\u041c\u042b \u0418\u0421\u041a\u0423\u0421\u0421\u0422\u0412\u0415\u041d\u041d\u041e\u0413\u041e \u0418\u041d\u0422\u0415\u041b\u041b\u0415\u041a\u0422\u0410\u00bb \u0412 \u0412\u041e\u041f\u0420\u041e\u0421\u0410\u0425 \u0418 \u041e\u0422\u0412\u0415\u0422\u0410\u0425. \u041c\u0435\u0436\u0434\u0443\u043d\u0430\u0440\u043e\u0434\u043d\u044b\u0439 \u0446\u0435\u043d\u0442\u0440 \u043d\u0430\u0443\u0447\u043d\u043e\u0433\u043e \u043f\u0430\u0440\u0442\u043d\u0435\u0440\u0441\u0442\u0432\u0430\" \u041d\u043e\u0432\u0430\u044f \u041d\u0430\u0443\u043a\u0430\" \u041a\u041e\u041d\u0424\u0415\u0420\u0415\u041d\u0426\u0418\u042f: \u041f\u0420\u0415\u041f\u041e\u0414\u0410\u0412\u0410\u0422\u0415\u041b\u042c \u0413\u041e\u0414\u0410 2023 \u041f\u0435\u0442\u0440\u043e\u0437\u0430\u0432\u043e\u0434\u0441\u043a, 13 \u0434\u0435\u043a\u0430\u0431\u0440\u044f 2023 \u0433\u043e\u0434\u0430 \u041e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0442\u043e\u0440\u044b: \u041c\u0435\u0436\u0434\u0443\u043d\u0430\u0440\u043e\u0434\u043d\u044b\u0439 \u0446\u0435\u043d\u0442\u0440 \u043d\u0430\u0443\u0447\u043d\u043e\u0433\u043e \u043f\u0430\u0440\u0442\u043d\u0435\u0440\u0441\u0442\u0432\u0430\" \u041d\u043e\u0432\u0430\u044f \u041d\u0430\u0443\u043a\u0430\".", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33602, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "\u0414\u0443\u0434\u043a\u043e, \u0412. \u0412., & \u041f\u0430\u0442\u0430\u0440\u0430\u043a\u0438\u043d, \u0415. \u0414. (2023). \u0418\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0435 \u043d\u0430\u0443\u0447\u043d\u044b\u0445 \u0448\u043a\u043e\u043b \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0430 \u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0430\u043c\u0438 \u0431\u0438\u0431\u043b\u0438\u043e\u043c\u0435\u0442\u0440\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u0430\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f. \u0422\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u044f \u043d\u043e\u0432\u044b\u0445 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0435\u0439. \u0412\u0435\u0441\u0442\u043d\u0438\u043a \u0412\u043b\u0430\u0434\u0438\u0432\u043e\u0441\u0442\u043e\u043a\u0441\u043a\u043e\u0433\u043e \u0433\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0433\u043e \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0430 \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u043a\u0438 \u0438 \u0441\u0435\u0440\u0432\u0438\u0441\u0430, 15(1 (65)), 150-167.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Miscellaneous" + }, + { + "id": 33603, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "\u0428\u0435\u043f\u0435\u043b\u044c, \u0410. \u0421. \u0418\u041c\u0418\u0422\u0410\u0426\u0418\u041e\u041d\u041d\u041e\u0415 \u041c\u041e\u0414\u0415\u041b\u0418\u0420\u041e\u0412\u0410\u041d\u0418\u0415. \u0422\u0415\u041e\u0420\u0418\u042f \u0418 \u041f\u0420\u0410\u041a\u0422\u0418\u041a\u0410 (\u0418\u041c\u041c\u041e\u0414-2023). \u0418\u0437\u0434\u0430\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e \u0410\u041d \u0420\u0422 \u041a\u041e\u041d\u0424\u0415\u0420\u0415\u041d\u0426\u0418\u042f: \u041e\u0414\u0418\u041d\u041d\u0410\u0414\u0426\u0410\u0422\u0410\u042f \u0412\u0421\u0415\u0420\u041e\u0421\u0421\u0418\u0419\u0421\u041a\u0410\u042f \u041d\u0410\u0423\u0427\u041d\u041e-\u041f\u0420\u0410\u041a\u0422\u0418\u0427\u0415\u0421\u041a\u0410\u042f \u041a\u041e\u041d\u0424\u0415\u0420\u0415\u041d\u0426\u0418\u042f \u041f\u041e \u0418\u041c\u0418\u0422\u0410\u0426\u0418\u041e\u041d\u041d\u041e\u041c\u0423 \u041c\u041e\u0414\u0415\u041b\u0418\u0420\u041e\u0412\u0410\u041d\u0418\u042e \u0418 \u0415\u0413\u041e \u041f\u0420\u0418\u041c\u0415\u041d\u0415\u041d\u0418\u042e \u0412 \u041d\u0410\u0423\u041a\u0415 \u0418 \u041f\u0420\u041e\u041c\u042b\u0428\u041b\u0415\u041d\u041d\u041e\u0421\u0422\u0418 \u00ab\u0418\u041c\u0418\u0422\u0410\u0426\u0418\u041e\u041d\u041d\u041e\u0415 \u041c\u041e\u0414\u0415\u041b\u0418\u0420\u041e\u0412\u0410\u041d\u0418\u0415. \u0422\u0415\u041e\u0420\u0418\u042f \u0418 \u041f\u0420\u0410\u041a\u0422\u0418\u041a\u0410\u00bb \u0418\u041c\u041c\u041e\u0414-2023 \u041a\u0430\u0437\u0430\u043d\u044c, 18\u201320 \u043e\u043a\u0442\u044f\u0431\u0440\u044f 2023 \u0433\u043e\u0434\u0430 \u041e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0442\u043e\u0440\u044b: \u041a\u0430\u0437\u0430\u043d\u0441\u043a\u0438\u0439 \u0433\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439 \u044d\u043d\u0435\u0440\u0433\u0435\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33604, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": " \u0648\u062f\u0627\u062f\u06cc \u06a9\u0644\u0627\u0646\u062a\u0631, \u0633\u06cc\u0641 \u0627\u0644\u062f\u06cc\u0646, & \u0627\u0645\u06cc\u0631\u0639\u0644\u06cc. (2023). \u0633\u06cc\u0627\u0633\u062a \u067e\u0698\u0648\u0647\u06cc \u0628\u062d\u0631\u0627\u0646 \u062e\u0627\u0645\u0648\u0634\u06cc: \u0645\u062f\u0644\u200c\u0633\u0627\u0632\u06cc \u062a\u0635\u0627\u062f\u0641\u06cc\u0650 \u0639\u0627\u0645\u0644 \u067e\u0627\u06cc\u0647 \u0645\u0635\u0631\u0641 \u0628\u0631\u0642 \u062f\u0631 \u0634\u0647\u0631 \u062a\u0647\u0631\u0627\u0646. \u0646\u0634\u0631\u06cc\u0647 \u0627\u0646\u0631\u0698\u06cc \u0627\u06cc\u0631\u0627\u0646, 25(4), 55-80. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Economics, Physics, Chemistry, Miscellaneous" + }, + { + "id": 33605, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": " \u0631\u0645\u0634 \u0646\u0627\u0635\u0631 \u0627\u0644\u0642\u062d\u0637\u0627\u0646\u064a, & \u0623\u062d\u0645\u062f \u0632\u064a\u062f \u0622\u0644 \u0645\u0633\u0639\u062f. (2023). \u0648\u0627\u0642\u0639 \u062a\u062f\u0631\u064a\u0633 \u0645\u0647\u0627\u0631\u0627\u062a \u0627\u0644\u062a\u0641\u0643\u064a\u0631 \u0627\u0644\u062d\u0648\u0633\u0628\u064a \u0645\u0646 \u0648\u062c\u0647\u0629 \u0646\u0638\u0631 \u0645\u0639\u0644\u0645\u0627\u062a \u0627\u0644\u062d\u0627\u0633\u0628 \u0628\u0645\u062f\u064a\u0646\u0629 \u0627\u0644\u0631\u064a\u0627\u0636. \u0645\u062c\u0644\u0629 \u0627\u0644\u0645\u0646\u0627\u0647\u062c \u0648\u0637\u0631\u0642 \u0627\u0644\u062a\u062f\u0631\u064a\u0633, 2(2), 82-106. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Miscellaneous" + }, + { + "id": 33606, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Abhishek, B., & Hirve, S. (2022). Overview of Social Network Analysis and Different Graph File Formats. Social Network Analysis: Theory and Applications, 1-18.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33607, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Abrahamson, D. (2022).\u00a0Enactive perception as mathematics learning.\u00a0In M.-C. Shanahan, B. Kim, M. A. Takeuchi, K. Koh, A. P. Preciado-Babb, & P. Sengupta (Eds.), The Learning Sciences in conversation: Theories, methodologies, and boundary spaces (pp. 153\u2013170). Routledge. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Enactive perception, Mathematics, Learning Sciences, Routledge" + }, + { + "id": 33608, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Abrahamson, D., Dutton, E., & Bakker, A. (2022).Towards an enactivist mathematics pedagogy. In S. A. Stolz (Ed.), The body, embodiment, and education: An interdisciplinary approach (pp. 156\u2013182). Routledge.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Pedagogy" + }, + { + "id": 33609, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Abrahamson, D., & Mechsner, F. (2022). Toward synergizing educational research and movement sciences: A dialogue on learning as developing perception for action. Educational Psychology Review. https://doi.org/0.1007/s10648-022-09668-3 ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33610, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Accolla, C., Schmolke, A., Jacobson, A., Roy, C., Forbes, V. E., Brain, R., & Galic, N. TRACE Document. Ecology and Evolution, 25, 479-486.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 33611, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Adam, C., & Arduin, H. (2022, May). Finding and explaining optimal screening strategies with limited tests during the COVID-19 epidemics. In 19th International Conference on Information Systems for Crisis Response and Management ISCRAM.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33612, + "sort": null, + "year": 2022, + "is_ccl": true, + "reference": "Adebayo, S. A., Sathasiva, S., & Ali, M. K. M. (2022). HornSAT Solver Using Agent-Based Modelling in Hopfield Network. In Intelligent Systems Modeling and Simulation II (pp. 251-263). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 33613, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Adeolu, A. (2022). Learning Computational Thinking Practices Through Agent-Based Modeling in an Informal Setting. Journal of Research in Science Mathematics and Technology Education, 17-39.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 33614, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Agyemang, F. S., Silva, E., & Fox, S. (2022). Modelling and simulating \u2018informal urbanization\u2019: An integrated agent-based and cellular automata model of urban residential growth in Ghana.\u00a0Environment and Planning B: Urban Analytics and City Science, 23998083211068843.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33615, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Aitken, S. (2022). An exploration of local rules to map spawning processes to regular hardware architectures (Doctoral dissertation, University of York).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33616, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Akhatova, A., Kranzl, L., Schipfer, F., & Heendeniya, C. B. (2022). Agent-Based Modelling of Urban District Energy System Decarbonisation\u2014A Systematic Literature Review. Energies 2022, 15, 554.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33617, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Akhtar, S. M., Nazir, M., Saleem, K., Ahmad, R. Z., & Javed, A. R. (2022). S. Band S and Mosavi A (2022) A Multi-Agent Formalism Based on Contextual Defeasible Logic for Healthcare Systems. Front. Public Health, 10, 849185.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33618, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Aktas, M., & Wolf, S. M. (2022). Diagnostische Fragen zur Zwei-und Mehrsprachigkeit bei Kindern mit kognitiven Beeintr\u00e4chtigungen. Zwei-und Mehrsprachigkeit bei Kindern mit kognitiven Beeintr\u00e4chtigungen, 27.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33619, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Alam, A., & Khurshid, F. (2022). Teachers\u2019 Knowledge of ICT and e-learning in Pakistan: The wave of e-learning during COVID-19. International Research Journal of Education and Innovation, 3(1), 34-46.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, ICT, e-learning, COVID-19" + }, + { + "id": 33620, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Alhady, S. S. N. (2022). Simulating Solitary Foraging Behaviour of Chimpanzee in Hunting Red Colobus Monkeys Using Agent-Based Modelling Approach. Intelligent Manufacturing and Mechatronics: Proceedings of SympoSIMM 2021, 387.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modelling" + }, + { + "id": 33621, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Alkhatib, A. A., Abu Maria, K., Alzu'bi, S., & Abu Maria, E. (2022). Novel system for road traffic optimisation in large cities. IET Smart Cities. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33622, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Alkhatib, A. A., Maria, K. A., AlZu'bi, S., & Maria, E. A. (2022). Smart Traffic Scheduling for Crowded Cities Road Networks. Egyptian Informatics Journal.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33623, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Alajlan, A. (2022). Predicting Human Movement in Crowds (Doctoral dissertation, University of Idaho).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, History, Social Science, Education, Epidemiology" + }, + { + "id": 33624, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Alami, K. COVID-19 IMPACT ON TUCSON FIRE DEPARTMENT RESOURCES (Doctoral dissertation, UNIVERSITY OF ARIZONA).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 33625, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Al Ghamdi, M. A. (2022). A Novel Approach to Printed Arabic Optical Character Recognition. Arabian Journal for Science and Engineering, 47(2), 2219-2237.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Optical Character Recognition" + }, + { + "id": 33626, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Alencar de Paula, R. (2022). Contributions to Continuous Improvement Management Using its Variables to Measure Productivity, Employee Engagement and Participatory Management (Doctoral dissertation, Polytechnique Montr\u00e9al).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33627, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Alexander, S., & Block, P. (2022). Integration of seasonal precipitation forecast information into local-level agricultural decision-making using an agent-based model to support community adaptation. Climate Risk Management, 100417.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Agriculture, Modeling, Computer Science, Economics" + }, + { + "id": 33628, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Ali Kumar, D. S. N. K. P., Shah Newaz, S. H., Rahman, F. H., Lee, G. M., Karmakar, G., & Au, T. W. Green Demand Aware Fog Computing: A Prediction-based Dynamic Resource Provisioning Approach. Electronics.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33629, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Ali, A., & Farooqui, M. F. (2022, May). Interaction among Multiple Intelligent Agent Systems in web mining. In 2022 3rd International Conference for Emerging Technology (INCET) (pp. 1-8). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33630, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Alkhatib, A. A., Abu Maria, K., Alzu'bi, S., & Abu Maria, E. (2022). Novel system for road traffic optimisation in large cities.\u00a0IET Smart Cities.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33631, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Alkhatib, A. A., Maria, K. A., AlZu'bi, S., & Maria, E. A. (2022). Smart Traffic Scheduling for Crowded Cities Road Networks. Egyptian Informatics Journal.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33632, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Allahmoradi, E., Mirzamohammadi, S., Bonyadi Naeini, A., Maleki, A., Mobayen, S., & Skruch, P. (2022). Policy Instruments for the Improvement of Customers\u2019 Willingness to Purchase Electric Vehicles: A Case Study in Iran. Energies, 15(12), 4269.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33633, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Almaguer-Sustegui, D. S., Islas-Moreno, C., Padilla-Longoria, P., Prado-Z\u00e4yago, M. A., & Vizuet-Morales, D. F. (2022). Manejo biol\u00f3gico de una plaga usando un modelo multiagentes. P\u00e4di Bolet\u00edn Cient\u00edfico de Ciencias B\u00e1sicas e Ingenier\u00edas del ICBI, 10(Especial), 140-146.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 33634, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Almeida, F. P. S. (2022). Predictive long-term asset maintenance strategy: development of a fuzzy logic condition-based control system (Doctoral dissertation).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Fuzzy Logic, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33635, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "AlMuhaideb, S., Touir, A., Alshraihi, R., Altwaijry, N., & Qasem, S. (2022). Effect of Formation Size on Flocking Formation Performance for the Goal Reach Problem. Applied Sciences, 12(7), 3630.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33636, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Alobeidyeen, A., & Du, L. Information Dissemination Dynamics Through Vehicle-to-Vehicle Communication Built Upon Traffic Flow Dynamics Over Roadway Networks. Available at SSRN 4077909.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33637, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Alsammak, I. L. H., Mahmoud, M. A., Aris, H., AlKilabi, M., & Mahdi, M. N. (2022). The Use of Swarms of Unmanned Aerial Vehicles in Mitigating Area Coverage Challenges of Forest-Fire-Extinguishing Activities: A Systematic Literature Review. Forests, 13(5), 811.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33638, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Altamimi, M. (2022). Big Data in E-government: Classification and Prediction using Machine Learning Algorithms. Iraqi Journal of Intelligent Computing and Informatics (IJICI), 1(2), 41-55.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Machine Learning, Computer Science, Economics, Iraq, Statistics" + }, + { + "id": 33639, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Alvarado, V., Hsu, S. C., Wu, Z., Zhuang, H., Lee, P. H., & Guest, J. S. (2022). Roadmap from Microbial Communities to Individuality Modeling for Anaerobic Digestion of Sewage Sludge. Environmental Science & Technology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 33640, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "\u00c1lvarez Arce, J. R. (2022). Modelizaci\u00f3n basada en el individuo de sistemas de tratamiento biol\u00f3gico en biopilas de suelos contaminados por hidrocarburos de petr\u00f3leo (Bachelor's thesis, Quito: UCE).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 33641, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Alves, F., Rocha, A. M. A., Pereira, A. I., & Leit\u00e3o, P. Conceptual Multi-Agent System Design for Distributed Scheduling Systems. In Smart and Sustainable Manufacturing Systems for Industry 4.0 (pp. 129-148). CRC Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33642, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Alzaeemi, S. A., Sathasivam, S., Velavan, M., & Mamat, M. Agent-based Modeling for Activation Function in Enhancement Logic Programming in Hopfield Neural Network. International Journal of Engineering and Advanced Technology (IJEAT), 9(4), 1872-1879.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Engineering, Mathematics" + }, + { + "id": 33643, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Al-Janabi, S., Alkaim, A., & Rahem, A. (2022). An alternative technique to reduce time, cost and human effort during natural or manufactured disasters. IAES International Journal of Robotics and Automation, 11(1), 10.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33644, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Al-Shaery, A. M., Hejase, B., Tridane, A., Farooqi, N. S., & Al Jassmi, H. (2022). Evaluating COVID-19 control measures in mass gathering events with vaccine inequalities. Scientific Reports, 12(1), 1-9.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33645, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Amadae, S. M., & Watts, C. J. (2022). Red Queen and Red King Effects in cultural agent-based modeling: Hawk Dove Binary and Systemic Discrimination. The Journal of Mathematical Sociology, 1-28.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33646, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Ambrosius, F. H., Kramer, M. R., Spiegel, A., Bokkers, E. A., Bock, B. B., & Hofstede, G. J. (2022). Diffusion of organic farming among Dutch pig farmers: An agent-based model. Agricultural Systems, 197, 103336.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Agent-based Modeling" + }, + { + "id": 33647, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Ampatzidis, G., & Armeni, A. (2022). Designing a learning environment to teach about COVID-19/\u03a3\u03c7\u03b5\u03b4\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03b5\u03bd\u03cc\u03c2 \u03bc\u03b1\u03b8\u03b7\u03c3\u03b9\u03b1\u03ba\u03bf\u03cd \u03c0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd\u03c4\u03bf\u03c2 \u03b4\u03b9\u03b4\u03b1\u03c3\u03ba\u03b1\u03bb\u03af\u03b1\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03bd\u03cc\u03c3\u03bf COVID-19. \u0394\u03b9\u03b5\u03b8\u03bd\u03ad\u03c2 \u03a3\u03c5\u03bd\u03ad\u03b4\u03c1\u03b9\u03bf \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u0391\u03bd\u03bf\u03b9\u03ba\u03c4\u03ae & \u03b5\u03be \u0391\u03c0\u03bf\u03c3\u03c4\u03ac\u03c3\u03b5\u03c9\u03c2 \u0395\u03ba\u03c0\u03b1\u03af\u03b4\u03b5\u03c5\u03c3\u03b7, 11(8\u0392), 169-175.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33648, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Amparore, E. G. (2022). Stochastic modelling and evaluation using GreatSPN. ACM SIGMETRICS Performance Evaluation Review, 49(4), 87-91.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Stochastic modelling" + }, + { + "id": 33649, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Anceaume, E., Djari, A., & Tucci-Piergiovanni, S. (2022). An agent-based simulation study of Sycomore++, a scalable and self-adapting graph-based permissionless distributed ledger.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Archaeology" + }, + { + "id": 33650, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Andringa, S. P., & Yorke-Smith, N. (2022). Flexible Enterprise Optimization with Constraint Programming. In Enterprise Engineering Working Conference (pp. 58-73). Springer, Cham", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33651, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Angione, C., Silverman, E., & Yaneske, E. (2022). Using machine learning as a surrogate model for agent-based simulations. PLOS ONE, 17(2), e0263150.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Machine Learning, Computer Science, Physics, Economics, Ecology" + }, + { + "id": 33652, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Angourakis, A., Bates, J., Baudouin, J. P., Giesche, A., Walker, J. R., Ustunkaya, M. C., ... & Petrie, C. A. (2022). Weather, land and crops in the Indus Village model: A simulation framework for crop dynamics under environmental variability and climate change in the Indus Civilisation. Quaternary, 5(2), 25.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33653, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Antelmi, A., Cordasco, G., D\u2019Ambrosio, G., De Vinco, D., & Spagnuolo, C. (2023). Experimenting with Agent-Based Model Simulation Tools. Applied Sciences, 13(1), 13.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33654, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Anubhuti, Kaur, H. (2023). Role of Multi-agent Systems in Health Care: A Review. Emerging Technologies in Data Mining and Information Security. Lecture Notes in Networks and Systems, vol 490. Springer, Singapore. https://doi.org/10.1007/978-981-19-4052-1_37 ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Health Care, Data Mining, Information Security, Networks and Systems, Computer Science, Economics, Lecture, Networks, Studies" + }, + { + "id": 33655, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Arbelaez-Velasquez, C. A., Giraldo, D., & Quintero, S. (2022). Analysis of a Teleworking Technology Adoption Case: An Agent-Based Model. Sustainability, 14(16), 9930.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33656, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Arima, Y. (2022). Psychology of Group and Collective Intelligence. Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Psychology" + }, + { + "id": 33657, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Asgarpour, S., Hartmann, A., Augustijn, E. W. P., & Dor\u00e9e, A. (2022). The Other Side of the Interdependency Coin: Identifying Coordination and Investment Opportunities for Infrastructure Systems. Journal of Infrastructure Systems, 28(2), 04022011.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33658, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Asif, M. J. (2022). Zakat Charity and Wealth Distribution: An Agent Based Computational Model. International Journal of Zakat, 7(1), 63-74.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Zakat Charity" + }, + { + "id": 33659, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Assaraf, O. B. Z., & Knippels, M. C. P. (2022). Lessons Learned: Synthesizing Approaches That Foster Understanding of Complex Biological Phenomena. Fostering Understanding of Complex Systems in Biology Education: Pedagogies, Guidelines and Insights from Classroom-based Research, 249.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33660, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Avil, M. G., Taghipourian, M. J., Farrokhseresht, B., & Aghajani, H. (2022). Analysis of Rumor Management in the Context of Social Networks with a Meta-Combined Method from the Perspective of Islamic Concepts. Health, 5(4), 173-191.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33661, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Avila-Garzon, C., Balaguera, M., & Tabares-Morales, V. (2022). An Agent-Based Social Simulation for Citizenship Competences and Conflict Resolution Styles. International Journal on Semantic Web and Information Systems (IJSWIS), 18(1), 1-23.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33662, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Axelrod, D. E. (2022). Chronotherapy of Early Colon Cancer: Advantage of Morning Dose Schedules. Cancer Informatics, 21, 11769351211067697.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Chronotherapy, Cancer, Computer Science" + }, + { + "id": 33663, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "AYBU\u011eA, K., & I\u015eILDAR, A. G. Y. (2022). Agent-Based Approach on Water Resources Management: A Modified Systematic Review. Turkish Journal of Water Science and Management, 6(2), 202-236.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33664, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Azadi, F. (2022). Comprehensive Arterial Traffic Control for Fully Automated and Connected Vehicles (Doctoral dissertation, University of Pittsburgh).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology" + }, + { + "id": 33665, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Azadi, F., Mitrovic, N., & Stevanovic, A. Z. (2022). Combined flexible lane assignment and reservation-based intersection control in field-like traffic conditions. Transportmetrica A: Transport Science, 1-36.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Economics, History, Transportation" + }, + { + "id": 33666, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Azarov, I., Helmlinger, G., Kosinsky, Y., & Peskov, K. (2022). Elaborating on anti CTLA-4 mechanisms of action using an agent-based modeling approach. Frontiers in Applied Mathematics and Statistics, 8, 993581.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Statistics" + }, + { + "id": 33667, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Azizi, K. (2022). Application of Local Knowledge for Better Characterization and Modeling of Urban Pluvial Flooding (Doctoral dissertation, The University of Memphis).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33668, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Backhaus, A. E., Lister, A., Tomkins, M., Adamski, N. M., Simmonds, J., Macaulay, I., ... & Uauy, C. (2022). High expression of the MADS-box gene VRT2 increases the number of rudimentary basal spikelets in wheat. Plant Physiology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 33669, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Baden-B\u00f6hm, F., Thiele, J., & Dauber, J. (2022). Response of honeybee colony size to flower strips in agricultural landscapes depends on areal proportion, spatial distribution and plant composition. Basic and Applied Ecology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Agriculture" + }, + { + "id": 33670, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Bahrami, N., Sadr, S. M. K., Afshar, A., & Afshar, M. H. (2022). Application of Agent Based Models as a Powerful Tool in the Field of Water Resources Management. In Computational Intelligence for Water and Environmental Sciences (pp. 491-506). Springer, Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Ecology, Urban Studies" + }, + { + "id": 33671, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Baktash, A., Huang, A., de la Mora Velasco, E., Jahromi, M. F., & Bahja, F. (2022). Agent-based modelling for tourism research. Current Issues in Tourism, 1-13.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33672, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Bamaqa, A., Sedky, M., Bosakowski, T., Bastaki, B. B., & Alshammari, N. O. (2022). SIMCD: SIMulated Crowd Data for Anomaly Detection and Prediction. Expert Systems with Applications, 117475.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33673, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Barbierato, L., Rando Mazzarino, P., Montarolo, M., Macii, A., Patti, E., & Bottaccioli, L. (2022). A comparison study of co-simulation frameworks for multi-energy systems: the scalability problem. Energy Informatics, 5(4), 1-26.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 33674, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Barelli, E., & Levrini, O. (2022). Computational simulations at the interface of physics and society: A teaching-learning module for high-school students. Il nuovo cimento C, 45(6), 1-4.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Physics, Society" + }, + { + "id": 33675, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Barnett, T., Valdez-Tullett, J., & Bjerketvedt, L. M. (2022). Close encounters: visibility and accessibility of Atlantic rock art in Scotland. Abstractions Based on Circles: Papers on prehistoric rock art presented to Stan Beckensall on his 90th birthday, 63.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33676, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Barnett-Neefs C, Sullivan G, Zoellner C, Wiedmann M, Ivanek R (2022). Using agent-based modeling to compare corrective actions for Listeria contamination in produce packinghouses. PLOS ONE 17(3): e0265251. https://doi.org/10.1371/journal.pone.0265251", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33677, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Barnett-Neefs, C., Wiedmann, M., & Ivanek, R. (2022). Examining Patterns of Persistent Listeria Contamination in Packinghouses Using Agent-Based Models. Journal of Food Protection, 85(12), 1824\u20131841. https://doi.org/10.4315/JFP-22-119", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Listeria Contamination" + }, + { + "id": 33678, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Barnes, B., Dunn, S., & Wilkinson, S. (2022). Replicating capacity and congestion in microscale agent-based simulations. Travel Behaviour and Society, 29, 308-318.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33679, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Barnes, E. M. (2022). Realistic evacuation simulation through micro and macro scale agent-based modelling including demographics, agent patience and evacuation route capacities (Doctoral dissertation, Newcastle University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33680, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Barr\u00f3n-Estrada, M. L., Zatarain-Cabada, R., Romero-Polo, J. A., & Monroy, J. N. (2022). Patrony: A mobile application for pattern recognition learning. Education and Information Technologies, 27(1), 1237-1260.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 33681, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Basha, S. M., Neto, A. V. L., Alshathri, S., Abd Elaziz, M., Mohisin, S. H., & De Albuquerque, V. H. C. (2022). Multithreshold Segmentation and Machine Learning Based Approach to Differentiate COVID-19 from Viral Pneumonia. Computational Intelligence and Neuroscience, 2022.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Machine Learning, Computer Science, Neuroscience, Physics, Ecology, Archaeology, Economics, History, Social Science, Education" + }, + { + "id": 33682, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Bayley, T. (2022). A Quantitative Exploration of the Mechanisms Relating Obesity, Depression and Socioeconomic Position (Doctoral dissertation, University of Sheffield).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33683, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Bearss, E. M., Cantrell, W. A., Hall, C. W., Pinckard, J. E., & Petty, M. D. (2022, April). Wolf sheep predation: reimplementing a predator-prey ecosystem model as an instructional exercise in agent-based modeling. In Proceedings of the 2022 ACM Southeast Conference (pp. 38-43).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Modeling" + }, + { + "id": 33684, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Beernink, S., Bloemendal, M., Kleinlugtenbelt, R., & Hartog, N. (2022). Maximizing the use of aquifer thermal energy storage systems in urban areas: effects on individual system primary energy use and overall GHG emissions. Applied Energy, 311, 118587.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33685, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Bekker, R. A., Kim, S., Pilon-Thomas, S., & Enderling, H. (2022). Mathematical modeling of radiotherapy and its impact on tumor interactions with the immune system. Neoplasia, 28, 100796.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Physics, Chemistry" + }, + { + "id": 33686, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Belda, A., Giancola, E., Williams, K., Dabirian, S., Jradi, M., Volpe, R., ... & Eicker, U. (2022). Reviewing challenges and limitations of energy modelling software in the assessment of PEDs using case studies. In Sustainability in Energy and Buildings 2021 (pp. 465-477). Springer, Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Energy, Software, Assessment, Case Studies" + }, + { + "id": 33687, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Bellaj, B., Ouaddah, A., Bertin, E., Crespi, N., Mezrioui, A., & Bellaj, K. (2022). BTrust: A New Blockchain-Based Trust Management Protocol for Resource Sharing. Journal of Network and Systems Management, 30(4), 1-31.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Blockchain, Computer Science, Economics, Physics, Chemistry, Archaeology, Social Science, Education" + }, + { + "id": 33688, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Ben Zvi Assaraf, O., & Knippels, M. C. P. (2022). Lessons Learned: Synthesizing Approaches That Foster Understanding of Complex Biological Phenomena. In Fostering Understanding of Complex Systems in Biology Education (pp. 249-278). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 33689, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Benally, J., Palatnik, A., Ryokai, K., & Abrahamson, D. (2022).\u00a0Learning through negotiating conceptually generative perspectival complementarities: The case of geometry.\u00a0For the Learning of Mathematics, 42(3), 34\u201341.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33690, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Benitez Castillo, J. P. (2022). Simulaci\u00f3n basada en el individuo utilizando NetLogo de un sistema en serie de reactores CSTR de lodos activados (Bachelor's thesis, Quito: UCE).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 33691, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Benmir, M., Chabbar, S., Aboulaich, R., & Ismaili, N. (2022, October). A Hybrid Model of Tumor Growth Under Chemotherapy Medicine. In Colloque Africain sur la Recherche en Informatique et en Math\u00e9matiques Appliqu\u00e9es (CARI). ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 33692, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Bennai, M. T. (2022). Development of a self-adaptive multi-agent system for medical image processing (Doctoral dissertation, Universit\u00e9 M'hamad Bougara: Facult\u00e9 des Sciences).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 33693, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Bennett, M. R. (2022). Climate Change Is Normal. In Our Dynamic Earth: A Primer (pp. 51-82). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Climate Change" + }, + { + "id": 33694, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Berceanu, C., & Patrascu, M. (2022). Initial Conditions Sensitivity Analysis of a Two-Species Butterfly-Effect Agent-Based Model. In European Conference on Multi-Agent Systems (pp. 60-78). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 33695, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Berea, A., Liu, R., & Santiago, M. F. (2022). Universal constraints to life derived from artificial agents and games. In New Frontiers in Astrobiology (pp. 305-317). Elsevier.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33696, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Bernard, J. (2022). Building the Bio-CS Bridge: Expanding High School Curriculum that Integrates Biology and Computer Science (Doctoral dissertation, Worcester Polytechnic Institute).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 33697, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Bhat, V., AL, S., Muraly, A., Rao, P., & Chatterjee, J. (2022). An agent-based model to examine neuroinvasion by SARS-CoV-2.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 33698, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Bj\u00f6rkl\u00f6f, C. (2022). Investigating the collective behaviour of the stock market using Agent-Based Modelling.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33699, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Boavida-Portugal, I. (2022). Future land use/cover change and tourism development: integrating land use policy and tourist decision behaviour. In Mapping and Forecasting Land Use (pp. 243-264). Elsevier.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33700, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Bogdanowski, A., Frank, K., Banitz, T., Muhsal, L. K., & Kost, C. (2022). McComedy: A user-friendly tool for next-generation individual-based modeling of microbial consumer-resource systems. PLOS Computational Biology, 18(1), e1009777.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 33701, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Borgonovo, E., Pangallo, M., Rivkin, J., Rizzo, L., & Siggelkow, N. (2022). Sensitivity analysis of agent-based models: a new protocol. Computational and Mathematical Organization Theory, 1-43.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Social Science, Education, Epidemiology" + }, + { + "id": 33702, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "B\u00f3rquez-Paredes, D., Beghelli, A., Leiva, A., Jara, N., Lozada, A., Morales, P., ... & Olivares, R. (2022). Agent-based distributed protocol for resource discovery and allocation of virtual networks over elastic optical networks. Journal of Optical Communications and Networking, 14(8), 667-679.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33703, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Bouabdallah, I., & Mellah, H. (2022). Handling Trust in A Cloud Based Multi Agent System. arXiv preprint arXiv:2201.01807.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33704, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Bourceret, A., Amblard, L., & Mathias, J. D. (2022). Adapting the governance of social\u2013ecological systems to behavioural dynamics: An agent-based model for water quality management using the theory of planned behaviour. Ecological Economics, 194, 107338.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33705, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Brady, C., Jen, T., Vogelstein, L., & Dim, E. (2022, June). Designing with Feeling: How Students Constructed Embodied Participatory Simulations for Groups of Younger Learners to Understand and Care About Sustainability in Ecosystems. In Interaction Design and Children (pp. 315-326).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 33706, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Breitwieser, L., Hesam, A., De Montigny, J., Vavourakis, V., Iosif, A., Jennings, J., ... & Bauer, R. (2022). BioDynaMo: A modular platform for high-performance agent-based simulation. Bioinformatics, 38(2), 453-460.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Agent-based Modeling" + }, + { + "id": 33707, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Brinkmann, T., Steinfeldt, M., Arndt, C., Carstens, A., & Spuziak-Salzenberg, D. (2022). High-quality recycling through self-learning and resilient recycling networks using a combination of agent-based modelling and life cycle assessment. In E3S Web of Conferences (Vol. 349, p. 12004). EDP Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 33708, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Brito, A. M. (2022). Una visi\u00f3n de complejidad a los sistemas urba-nos. La modelaci\u00f3n basada en agentes (ABM) para la recreaci\u00f3n de escenarios urbanos y sus posibilidades. Dise\u00f1o y complejidad, 215.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33709, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Brocardo, J., Vale, I., & Menezes, L. (2022). A investiga\u00e7\u00e3o em resolu\u00e7\u00e3o de problemas, racioc\u00ednio, comunica\u00e7\u00e3o e modela\u00e7\u00e3o: Uma an\u00e1lise de 30 anos de publica\u00e7\u00f5es na revista Quadrante. Quadrante, 31(2), 63-93.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Resolution, Communication, Modeling, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33710, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Bron, M. (2022). Understanding the influence of local government strategies targeting creative industries in Bandung, Indonesia, using Agent-Based Modelling (Master's thesis).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33711, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Bulumulla, C., Singh, D., Padgham, L., & Chan, J. (2022). Multi-level simulation of the physical, cognitive and social. Computers, Environment and Urban Systems, 93, 101756.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Economics" + }, + { + "id": 33712, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "BULUMULLA, C. B. (2022). Integrating social network diffusion into BDI-based simulations: application focus on large-scale evacuations (Doctoral dissertation, RMIT University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33713, + "sort": null, + "year": 2022, + "is_ccl": true, + "reference": "Bunin, S., Celestin, W., Hornback, A., & Rugaber, S. (2022, June). Incorporating Habitats in Conceptual Models and Agent-Based Simulations: Expanding the Virtual Ecological Research Assistant (VERA). In Proceedings of the Ninth ACM Conference on Learning@ Scale (pp. 472-474). ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 33714, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Butner, J. D., Dogra, P., Chung, C., Pasqualini, R., Arap, W., Lowengrub, J., ... & Wang, Z. (2022). Mathematical modeling of cancer immunotherapy for personalized clinical translation. Nature Computational Science, 2(12), 785-796.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Computer Science, Ecology, Physics, Chemistry, Economics, History, Social Science, Education, Epidemiology" + }, + { + "id": 33715, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Byer, N. W., & Reid, B. N. (2022). The emergence of imperfect philopatry and fidelity in spatially and temporally heterogeneous environments. Ecological Modelling, 468, 109968.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 33716, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Calabr\u00f2, G., Le Pira, M., Giuffrida, N., Fazio, M., Inturri, G., & Ignaccolo, M. (2022). Modelling the dynamics of fragmented vs. consolidated last-mile e-commerce deliveries via an agent-based model. Transportation Research Procedia, 62, 155-162.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33717, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Calabr\u00f2, G., Le Pira, M., Giuffrida, N., Inturri, G., Ignaccolo, M., & Correia, G. H. D. A. (2022). Fixed-Route vs. Demand-Responsive Transport Feeder Services: An Exploratory Study Using an Agent-Based Model. Journal of Advanced Transportation, 2022.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33718, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Canals, C., Maroulis, S., Canessa, E., Chaigneau, S., & Mizala, A. (2022). Mechanisms Underlying Choice-Set Formation: The Case of School Choice in Chile. Social Science Computer Review, 08944393221088659.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33719, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Canessa, E., Chaigneau, S. E., & Moreno, S. (2022). Using agreement probability to study differences in types of concepts and conceptualizers. Behavior Research Methods, 1-20.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33720, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Cantin, G., Silva, C. J., & Banos, A. (2022). Mathematical analysis of a hybrid model: Impacts of individual behaviors on the spreading of an epidemic. Networks & Heterogeneous Media.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Mathematics" + }, + { + "id": 33721, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Carley, L. R. (2022, September). OSIRIS: Organization Simulation in Response to Intrusion Strategies. In Social, Cultural, and Behavioral Modeling: 15th International Conference, SBP-BRiMS 2022, Pittsburgh, PA, USA, September 20\u201323, 2022, Proceedings (Vol. 13558, p. 134). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Social, Cultural, and Behavioral Modeling, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33722, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Carolina, N. (2022). Algoritma Path Planning Terkoordinasi Untuk Multi Robot Smart Warehouse (Doctoral dissertation, Universitas Pertamina).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33723, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Carson, D. B., & Carson, D. A. (2022). Understanding the demographic future of small Arctic villages using agent-based modelling. More than'Nature': Research on Infrastructure and Settlements in the North, 3, 263.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 33724, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Carvajal Le\u00f3n, B. F. (2022). Modelizaci\u00f3n basada en el individuo, de un reactor CSTR con recirculaci\u00f3n de lodos activados (Bachelor's thesis, Quito: UCE).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33725, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Carvalho, I., Bernardi, F. A., Neiva, M. B., Lima, V. C., de Oliveira, L. L., Miyoshi, N. S. B., ... & Alves, D. (2022). COVID-19 BR: A web portal for COVID-19 information in Brazil. Procedia computer science, 196, 525-532.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "COVID-19" + }, + { + "id": 33726, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Casadei, R., Fortino, G., Pianini, D., Placuzzi, A., Savaglio, C., & Viroli, M. (2022). A Methodology and Simulation-based Toolchain for Estimating Deployment Performance of Smart Collective Services at the Edge. IEEE Internet of Things Journal.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33727, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Castelli, R. P (2022). ANALISI COMPARATIVA DI SIMULAZIONI PHET DI SISTEMI MECCANICI CLASSICI E SIMULAZIONI NETLOGO DI SISTEMI COMPLESSI (Doctoral dissertation)", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33728, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Castro-R\u00edos, G. A., & Noguera-Hidalgo, \u00c1. L. (2022). \u00bf Los seguidores eligen a sus l\u00edderes? Explicaci\u00f3n desde la simulaci\u00f3n basada en agentes. Revista Venezolana de Gerencia (RVG), 27(100), 1594-1612.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33729, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Cayaban, C. J., Tacardon, E., Sario, M. C., & Intal, G. L. System Analysis and Design of Company XYZ\u2019s RFQ/RFP Processes. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33730, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Cegielski, W. H. Agent-Based Modeling for Archaeology: Simulating the Complexity of Societies. IZA ROMANOWSKA, COLIN D. WREN, and STEFANI A. CRABTREE. 2021. Santa Fe Institute Press, Santa Fe, New Mexico. xiii+ 429 pp. 0.00 (PDF), ISBN 978-1-947864-25-2. American Antiquity, 1-2.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Anthropology, Archaeology" + }, + { + "id": 33731, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "\u010ceh, I., \u0160torga, M., & Dela\u010d, G. (2022). Agent-Based Modelling: Parallel and Distributed Simulation of Product Development Team. Tehni\u010dki vjesnik, 29(4), 1424-1432.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33732, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Chappin, E. J., Schleich, J., Guetlein, M. C., Faure, C., & Bouwmans, I. (2022). Linking of a multi-country discrete choice experiment and an agent-based model to simulate the diffusion of smart thermostats. Technological Forecasting and Social Change, 180, 121682.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33733, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Chatalova, L. (2022). Resource Sufficiency in a Sustainable Bioeconomy: A Predator\u2013Prey Perspective. In Bioeconomy and Sustainability (pp. 209-224). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 33734, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Chatha, K. A., & Jalil, M. N. (2022). Complexity in Three-Echelon Supply Chain Network and Manufacturing Firm\u2019s Operational Performance. Computers & Industrial Engineering, 108196.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33735, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Chemweno, P., Sullivan, B. P., Bermperidis, G., & Thiede, S. (2022). Exploring the Added-Value of Integrating Real-Time Location Systems for Tracking Critical Maintenance Tools. Procedia CIRP, 107, 902-907.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Chemistry" + }, + { + "id": 33736, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Chen, B., & Poquet, O. (2022). Networks in Learning Analytics: Where Theory, Methodology, and Practice Intersect. Journal of Learning Analytics, 9(1), 1-12.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33737, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Chen, C., Mostafizi, A., Wang, H., Cox, D., & Chand, C. (2022). An integrative agent\u2010based vertical evacuation risk assessment model for near\u2010field tsunami hazards. Risk Analysis.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 33738, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Chen, D. (2022, July). Exploring Online Physician\u2013Patient Interactions Through Information Sharing with Agent-Based Modeling. In\u00a0International Conference on Logistics, Informatics and Service Sciences\u00a0(pp. 59-73). Singapore: Springer Nature Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Information Science, Computer Science, Logistics, Informatics, Service Sciences" + }, + { + "id": 33739, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Chen, H., Chen, C., Li, H., Zhang, J., & Yang, Z. (2022). A Simulation Study on the Processes of Intra-Group Informal Interaction Affecting Workers\u2019 Safety Behaviors. International journal of environmental research and public health, 19(16), 10048.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33740, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Chen, J., Zhang, X., Peng, X., Xu, D., & Peng, J. (2022). Efficient routing for multi-AGV based on optimized Ant-agent. Computers & Industrial Engineering, 108042.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Ecology" + }, + { + "id": 33741, + "sort": null, + "year": 2022, + "is_ccl": true, + "reference": "Chen, J., Zhao, L., Xiao, F., Horn, M. & Wilensky, U. (2022). Self-Governed Collaborative Inquiry in Action: A Case Study of a Large-Scale Online Youth Community. Paper accepted to CSCL 2022. Hiroshima, Japan: International Society of the Learning Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 33742, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Chen, L., Chen, Z., Lin, L., Ye, Q., Guo, S., & Lin, J. (2022). Augmenting deep land use prediction with randomized simulation. Computer Animation and Virtual Worlds, 33(3-4), e2071.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 33743, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Chen, W., Ding, Y., Zhang, Y., Tian, Z., & Wei, S. (2022). Risk Assessment and Prevention Strategy of Virus Infection in the Context of University Resumption. Buildings, 12(6), 806.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33744, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Chen, Y., Xu, L., Zhang, X., Wang, Z., Li, H., Yang, Y., ... & Li, D. (2023). Socio-econ-ecosystem multipurpose simulator (SEEMS): An easy-to-apply agent-based model for simulating small-scale coupled human and nature systems in biological conservation hotspots. Ecological Modelling, 476, 110232.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Socio-econ-ecosystem multipurpose simulator, Biological, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33745, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Chersoni, G., DellaValle, N., & Fontana, M. (2022). Modelling thermal insulation investment choice in the EU via a behaviourally informed agent-based model. Energy Policy, 163, 112823.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33746, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Chetcuti, J., Kunin, W. E., & Bullock, J. M. (2022). Species' movement influence responses to habitat fragmentation. Diversity and Distributions.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33747, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Chettry, V., & Manisha, K. (2022). Assessing and Predicting Urban Growth Patterns Using ANN-MLP and CA Model in Jammu Urban Agglomeration, India. In Modeling, Simulation and Optimization (pp. 387-397). Springer, Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Modeling, Simulation, Optimization" + }, + { + "id": 33748, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Chichorro, F., Correia, L., & Cardoso, P. (2022). Biological traits interact with human threats to drive extinctions: A modelling study. Ecological Informatics, 101604.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology" + }, + { + "id": 33749, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Childers, G., Linsky, C. L., Payne, B., Byers, J., & Baker, D. (2022). K-12 Educators\u2019 Self-Confidence in Designing and Implementing Cybersecurity Lessons. Computers and Education Open, 100119.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Ecology, Physics, Chemistry, Social Science, Education" + }, + { + "id": 33750, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Christensen, C., & Salmon, J. (2022). An agent-based modeling approach for simulating the impact of small unmanned aircraft systems on future battlefields. The Journal of Defense Modeling and Simulation, 19(3), 481-500.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33751, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Chopra, A. (2022). Decision Making for Populations (Doctoral dissertation, Massachusetts Institute of Technology).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Decision Making for Populations" + }, + { + "id": 33752, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Civico, M. (2022). Complexity in language matters Concept and uses of agent-based modelling. Advances in Interdisciplinary Language Policy, 9, 381.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Language Policy, Modeling" + }, + { + "id": 33753, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Clark, R., & Kimbrough, S. O. (2022). On Modeling Evolution in Continuous Spaces. In Conference of the Computational Social Science Society of the Americas (pp. 23-42). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33754, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Collaborative, H. R. (2022). Smart Industry\u2013Better Management. Advanced manufacturing, 1(6), 8. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33755, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Collard, P. (2022). The \u201cflat peer learning\u201d agent-based model. Journal of Computational Social Science, 5(1), 161-187.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33756, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Correa-Martinez, Y. C., & Seck, M. (2022). A generic representation of supply network resilience using simulation based experimentation. Journal of Simulation, 1-34.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Experimentation, Economics, Physics, Computer Science, Journal, Simulation" + }, + { + "id": 33757, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Corsini, R. R., Costa, A., Fichera, S., & Pluchino, A. (2022). A configurable computer simulation model for reducing patient waiting time in oncology departments. Health Systems, 1-15.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 33758, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Costanzo, A., van Haeringen, E., & Hemelrijk, C. K. (2022). Effect of time-delayed interactions on milling: a minimal model. Europhysics Letters.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 33759, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Costas, J., Puche, J., Ponte, B., & Gupta, M. C. (2022). An agent-based simulator for quantifying the cost of uncertainty in production systems. Simulation Modelling Practice and Theory, 102660.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33760, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Cotfas, L. A., Delcea, C., Iancu, L. D., Ioan\u0103\u015f, C., & Ponsiglione, C. (2022). Large Event Halls Evacuation using an Agent-Based Modeling Approach. IEEE Access.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33761, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Covitt, B. A., & Anderson, C. W. (2022). Untangling Trustworthiness and Uncertainty in Science. Science & Education, 1-26.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Science, Economics" + }, + { + "id": 33762, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Crouse, K. N., Desai, N. P., Cassidy, K. A., Stahler, E. E., Lehman, C. L., & Wilson, M. L. (2022). Larger territories reduce mortality risk for chimpanzees, wolves, and agents: Multiple lines of evidence in a model validation framework. Ecological Modelling, 471, 110063.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33763, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Cui, Y., Zhao, G., & Zhang, D. (2022). Improving students' inquiry learning in web\u2010based environments by providing structure: Does the teacher matter or platform matter?. British Journal of Educational Technology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33764, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "da Silva, A. C. G., de Lima, C. L., da Silva, C. C., Moreno, G. M. M., Silva, E. L., Marques, G. S., ... & dos Santos, W. P. (2022). Machine Learning Approaches for Temporal and Spatio-Temporal Covid-19 Forecasting: A Brief Review and a Contribution. Assessing COVID-19 and Other Pandemics and Epidemics using Computational Modelling and Data Analysis, 333-357.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33765, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Daly, A. J., De Visscher, L., Baetens, J. M., & De Baets, B. (2022). Quo vadis, agent-based modelling tools?. Environmental Modelling & Software, 105514.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Computer Science, Ecology" + }, + { + "id": 33766, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Dangelo, V., Rodr\u00edguez, G. L., Sklate, M. F., & Pairetti, C. (2022). Rob\u00f3tica en FabLab: Introducci\u00f3n a la programaci\u00f3n para estudiantes de Ingenier\u00eda Mec\u00e1nica. Memorias de las JAIIO, 8(8), 6-23.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Robotics, Programming, Engineering, Education" + }, + { + "id": 33767, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "D'Angelo, G., & Ferretti, S. (2022). Adaptive Parallel and Distributed Simulation of Complex Networks. Journal of Parallel and Distributed Computing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Social Science, Education, Epidemiology" + }, + { + "id": 33768, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Dar, A. R., Shah, M. A., & Ahmed, M. A Meta Sensor-Based Autonomous Vehicle Safety System for Collision Avoidance Using Li-Fi Technology. Intelligent Cyber-Physical Systems for Autonomous Transportation, 237.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Miscellaneous" + }, + { + "id": 33769, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Datseris, G., & Parlitz, U. (2022). Dynamics on Networks, Power Grids, and Epidemics. In Nonlinear Dynamics (pp. 157-173). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Epidemiology" + }, + { + "id": 33770, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Datseris, G., Vahdati, A. R., & DuBois, T. C. (2022). Agents. jl: a performant and feature-full agent-based modeling software of minimal code complexity. Simulation, 00375497211068820.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Simulation" + }, + { + "id": 33771, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Datta, S., Rokade, S., & Rajput, S. P. (2022). Unsignalized Intersection Capacity Estimation Through Traffic Rule Re-adjustments Using Agent-Based Cellular Automata Simulations. Iranian Journal of Science and Technology, Transactions of Civil Engineering, 1-27.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33772, + "sort": null, + "year": 2022, + "is_ccl": true, + "reference": "Davey, B., Peel, A., Horn, M., & Wilensky, U. (2022). Learning Natural Selection through Computational Models in a High School AP Biology Classroom. In\u00a0Proceedings of the 16th International Conference of the Learning Sciences-ICLS 2022, pp. 1916-1917. International Society of the Learning Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computational Modeling, International Conference" + }, + { + "id": 33773, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "de Castro, M. G. A., & Garc\u00eda-Pe\u00f1alvo, F. J. (2022). Metodolog\u00edas educativas de \u00e9xito: proyectos Erasmus+ relacionados con e-learning o TIC. Campus Virtuales, 11(1), 95-114.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33774, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Delcea, C., Cotfus, L. A., Mieriwiak, R., & Ioanf\u0103\u015f, C. (2022). Grey Clustering of the Variations in Reverse Pyramid Boarding Method Considering Pandemic Restrictions. Journal of Grey System, 34(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33775, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Delcea, C., Milne, R. J., & Cotfas, L. A. (2022). Evaluating Classical Airplane Boarding Methods for Passenger Health during Normal Times. Applied Sciences, 12(7), 3235.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33776, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "de Campos Silva, A. D., & de Carvalho, L. L. (2022). Recifes de coral: A import\u00e2ncia da tecnologia e dos jogos did\u00e1ticos no processo de Educa\u00e7\u00e3o Ambiental no Ensino B\u00e1sico. Ambiente & Educa\u00e7\u00e3o, 27(2), 1-35.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33777, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "De La Paz, S., Butler, C., Levin, D. M., & Felton, M. K. (2022). Effects of a Cognitive Apprenticeship on Transfer of Argumentative Writing in Middle School Science. Learning Disability Quarterly, 07319487221119365.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33778, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "de Lima, H. P., Teseo, S., de Lima, R. L. C., Ferreira-Ch\u00e2line, R. S., & Ch\u00e2line, N. (2022). Temporary prey storage along swarm columns of army ants: an adaptive strategy for successful raiding?. Biology Letters, 18(2), 20210440.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Adaptive strategy" + }, + { + "id": 33779, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "de Oliveira Simoyama, F., Sarti, F. M., & Battisti, M. C. G. (2022). Effects of disclosing inspection scores of health facilities. Socio-Economic Planning Sciences, 81, 101183.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33780, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "De Vizia, C., Macii, A., Patti, E., & Bottaccioli, L. (2022). A hierarchical and modular agent-oriented framework for power systems co-simulations. Energy Informatics, 5(4), 1-21.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33781, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "de Vries, O. I. (2022). Simulating Social Interaction in Times of COVID Restrictions (Doctoral dissertation).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33782, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "De Winne, K. (2022). Simulation-Based Port Competition: Feasibility and Implementation of an Agent-Based Framework. Competition and Regulation in Network Industries, 17835917211064920.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation" + }, + { + "id": 33783, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Deng, S. (2022, January). Public opinion propagation model and simulation based on Impact model and improved SIR. In ICETIS 2022; 7th International Conference on Electronic Technology and Information Science (pp. 1-5). VDE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Impact model, SIR" + }, + { + "id": 33784, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Des Jarlais, D., Bobashev, G., Feelemyer, J., & McKnight, C. (2022). Modeling HIV transmission among persons who inject drugs (PWID) at the \u201cEnd of the HIV Epidemic\u201d and during the COVID-19 pandemic. Drug and alcohol dependence, 238, 109573.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Modeling" + }, + { + "id": 33785, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Detotto, C., Idda, C., Innocenti, E., Yuheng, L., Parker, D. C., & Prunetti, D. (2022, July). A resuable, extensible Netlogo building block of land and housing markets in a touristic region. In Biennial iEMSs (international Environmental Modelling and Software society) conference.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33786, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Dhanare, R., Nagwanshi, K. K., & Varma, S. (2022). A Study to Enhance the Route Optimization Algorithm for the Internet of Vehicle. Wireless Communications and Mobile Computing, 2022.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Wireless Communications, Mobile Computing, Computer Science" + }, + { + "id": 33787, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Dhou, K., & Cruzen, C. (2022). A creative chain coding technique for bi-level image compression inspired by the NetLogo HIV agent-based modeling simulation. Journal of Computational Science, 101613.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 33788, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Dhou, K., & Cruzen, C. (2022). An innovative chain coding mechanism for information processing and compression using a virtual bat-bug agent-based modeling simulation. Engineering Applications of Artificial Intelligence, 113, 104888.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Engineering Applications of Artificial Intelligence" + }, + { + "id": 33789, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "DIACONESCU, A., HOUZE, E., DESSALLES, J. L., VANGHELUWE, H., & FRANCESCHINI, R. (2022). Multi-Scale Model-based Explanations for Cyber-Physical Systems: the Urban Traffic Case.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33790, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "D\u00edaz-de la Fuente, S., de Armi\u00f1o P\u00e9rez, C. A., Delgado, R. A., Villahoz, J. J. L., Cos\u00edo, \u00c1. H., del Campo, M. \u00c1. M., & del Olmo Mart\u00ednez, R. A comparison of occupational accidents in the manufacturing and construction sector through data mining techniques. In Proceedings of the 15th International Conference on Industrial Engineering and Industrial Management and XXV Congreso de Ingenier\u00eda de Organizaci\u00f3n. PressBooks.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33791, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "D\u00edaz-de la Fuente, S., de Armi\u00f1o P\u00e9rez, C. A., Delgado, R. A., Villahoz, J. J. L., Cos\u00edo, \u00c1. H., del Campo, M. \u00c1. M., & del Olmo Mart\u00ednez, R. Collaborative Planning as a determining factor at the group level in Collaborative Intelligence. In Proceedings of the 15th International Conference on Industrial Engineering and Industrial Management and XXV Congreso de Ingenier\u00eda de Organizaci\u00f3n. PressBooks.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biological, Collaborative Planning, Industrial Engineering, Industrial Management, Ecology, Economics, Archaeology, Computer Science, Social Science, Education, Miscellaneous" + }, + { + "id": 33792, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "D\u00edaz-de la Fuente, S., de Armi\u00f1o P\u00e9rez, C. A., Delgado, R. A., Villahoz, J. J. L., Cos\u00edo, \u00c1. H., del Campo, M. \u00c1. M., & del Olmo Mart\u00ednez, R. Decentralized, Fast and Scalable Almost-Global Convergence in Single-Optimum Coordination Problems. In Proceedings of the 15th International Conference on Industrial Engineering and Industrial Management and XXV Congreso de Ingenier\u00eda de Organizaci\u00f3n. PressBooks.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33793, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "D\u00edaz-de la Fuente, S., de Armi\u00f1o P\u00e9rez, C. A., Delgado, R. A., Villahoz, J. J. L., Cos\u00edo, \u00c1. H., del Campo, M. \u00c1. M., & del Olmo Mart\u00ednez, R. Industry 4.0 and Airspace Operations Research with EU financial contribution. In Proceedings of the 15th International Conference on Industrial Engineering and Industrial Management and XXV Congreso de Ingenier\u00eda de Organizaci\u00f3n. PressBooks.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Miscellaneous" + }, + { + "id": 33794, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "D\u00edez-Echavarr\u00eda, L., Guti\u00e9rrez-Guti\u00e9rrez, G., & R\u00edos-Echeverri, D. C. (2022). Competitive Dynamics between Physical and Virtual Markets in Multiplex Networks. Periodica Polytechnica Social and Management Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33795, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Dimitrov, N. (2022). Understanding the Effects of Fox Movement on the Spread of Sarcoptic Mange in Urban Settings\u2013An Individual-based Modelling Approach (Doctoral dissertation).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33796, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Dimka, J., & Sattenspiel, L. (2022). \u201cWe didn't get much schooling because we were fishing all the time\u201d: Potential impacts of irregular school attendance on the spread of epidemics. American Journal of Human Biology, 34(1), e23578.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 33797, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Diouf, E. G., Br\u00e9vault, T., Ndiaye, S., Faye, E., Chailleux, A., Diatta, P., & Piou, C. (2022). An agent-based model to simulate the boosted Sterile Insect Technique for fruit fly management. Ecological Modelling, 468, 109951.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 33798, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "do Amaral, J. V. S., de Carvalho Miranda, R., Montevechi, J. A. B., dos Santos, C. H., & Gabriel, G. T. (2022). Metamodeling-based simulation optimization in manufacturing problems: a comparative study. The International Journal of Advanced Manufacturing Technology, 1-20.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Manufacturing, Technology" + }, + { + "id": 33799, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Dobson, G. B. (2022). Cyber-Forces, Interactions, Terrain: An agent-based framework for simulating cyber team performance (Doctoral dissertation, Carnegie Mellon University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33800, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Dokin, B., Aletdinova, A., & Zheshko, A. (2022). Simulation modeling of the machine and tractor fleet to improve the technical base of the agro-industrial complex. In BIO Web of Conferences (Vol. 52, p. 00014). EDP Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Economics, Physics, Chemistry, Agriculture, Zoology" + }, + { + "id": 33801, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Domino, K., Miszczak, J.A. (2022). Will you infect me with your opinion?, Physica A: Statistical Mechanics and its Applications Vol. 608, 128289 DOI:10.1016/j.physa.2022.128289 arXiv:2208.13426", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Opinion" + }, + { + "id": 33802, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Dong, Y., & Yang, T. (2022). Evolutionary game analysis of promoting the development of green logistics under government regulation. JUSTC, 52(9), 1-13. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Evolutionary game analysis" + }, + { + "id": 33803, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Dong, Y., Zhen, R., & Yang, T. (2022). Evolutionary game analysis of low-carbon behavior credit supervision of logistics enterprises. JUSTC, 52(10), 1-13. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33804, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Dos Santos Ribeiro, R. (2022). Como los modelos computacionales permiten representar la epidemia covid-19, ayudando en la comprensi\u00f3n de su din\u00e1mica y en la exploraci\u00f3n de estrategias de control (Bachelor's thesis, Universitat Polit\u00e8cnica de Catalunya).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33805, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Dragomir, O. E. (2022). MODELLING AND SIMULATION OF DISTRIBUTED SYSTEMS USING INTELLIGENT MULTI-AGENTS. Journal of Science and Arts, 22(2), 471-482.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 33806, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Drechsler, M., W\u00e4tzold, F., & Grimm, V. (2022). The hitchhiker's guide to generic ecological-economic modelling of land-use-based biodiversity conservation policies.\u00a0Ecological Modelling,\u00a0465, 109861.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33807, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Du, H., Han, Q., Sun, J., & Wang, C. C. (2022). Adoptions of prefabrication in residential sector in China: agent-based policy option exploration. Engineering, Construction and Architectural Management.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33808, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Duan, T., Wang, W., & Wang, T. (2022, August). A Review for Unmanned Swarm Gaming: Framework, Model and Algorithm. In 2022 8th International Conference on Big Data and Information Analytics (BigDIA) (pp. 164-170). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 33809, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Dudenh\u00f6ffer, J. H., Luecke, N. C., & Crawford, K. M. (2022). Changes in precipitation patterns can destabilize plant species coexistence via changes in plant\u2013soil feedback. Nature Ecology & Evolution, 1-9.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Precipitation Patterns" + }, + { + "id": 33810, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Dugarte-Pe\u00f1a, G. L., S\u00e1nchez-Segura, M. I., Medina-Dom\u00ednguez, F., de Amescua, A., & Gonz\u00e1lez, C. (2022). An instance-based-learning simulation model to predict knowledge assets evolution involved in potential digital transformation projects. Knowledge Management Research & Practice, 1-22.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33811, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Easter, C., Leadbeater, E., & Hasenjager, M. J. (2022). Behavioural variation among workers promotes feed-forward loops in a simulated insect colony. Royal Society Open Science, 9(3), 220120.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science" + }, + { + "id": 33812, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Ebrie, A. S., & Kim, Y. J. Investigating Market Diffusion of Electric Vehicles with Experimental Design of Agent-Based Modeling Simulation. Available at SSRN 4019513.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33813, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Edgerton, E., Wang, H. H., Grant, W. E., & Masser, M. (2022). Aquatic Plant Invasion and Management in Riverine Reservoirs: Proactive Management via a Priori Simulation of Management Alternatives. Diversity, 14(12), 1113.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Management" + }, + { + "id": 33814, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Edris, A. (2022). Identify the Individuals Status During Crowds Movement (Doctoral dissertation, University of Idaho).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33815, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Egger, R. (2022). Software and Tools. In Applied Data Science in Tourism (pp. 547-588). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Software and Tools" + }, + { + "id": 33816, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Ehiagwina, F. O., Iromini, N. A., Olatinwo, I. S., Raheem, K., & Mustapha, K. A State-of-the-Art Survey of Peer-to-Peer Networks: Research Directions, Applications and Challenges. management, 14, 19-22.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33817, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Eilam, B., & Omar, S. Y. (2022). Science Teachers\u2019 Construction of Knowledge About Simulations and Population Size Via Performing Inquiry with Simulations of Growing Vs. Descending Levels of Complexity. Fostering Understanding of Complex Systems in Biology Education: Pedagogies, Guidelines and Insights from Classroom-based Research, 205.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Physics, Computer Science, Ecology" + }, + { + "id": 33818, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "El Karkri, J., & Benmir, M. (2022). Some key concepts of mathematical epidemiology. In Mathematical Analysis of Infectious Diseases (pp. 137-162). Academic Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Mathematical Epidemiology" + }, + { + "id": 33819, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Elgammal, I., Alhothali, G. T., & Sorrentino, A. (2022). Segmenting Umrah performers based on outcomes behaviors: a cluster analysis perspective. Journal of Islamic Marketing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33820, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Elkamel, M., Valencia, A., Zhang, W., Zheng, Q. P., & Chang, N. B. (2022). Multi-Agent Modeling for Linking a Green Transportation System with an Urban Agriculture Network in an Urban Food-Energy-Water Nexus. Sustainable Cities and Society, 104354.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33821, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Elkhouly, R., Tamaki, E., & Iwasaki, K. (2022). Mitigating crowded transportation terminals nearby mega-sports events. Behaviour & Information Technology, 1-17.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33822, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Eilam, B., & Omar, S. Y. (2022). Science Teachers\u2019 Construction of Knowledge About Simulations and Population Size Via Performing Inquiry with Simulations of Growing Vs. Descending Levels of Complexity. In Fostering Understanding of Complex Systems in Biology Education (pp. 205-226). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Knowledge, Inquiry, Complex Systems" + }, + { + "id": 33823, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Eili, M. Y., & Rezaeenour, J. (2022). An approach based on process mining to assess the quarantine strategies' effect in reducing the COVID-19 spread. Library Hi Tech, (ahead-of-print).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Process mining, Quarantine, COVID-19 spread" + }, + { + "id": 33824, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Esmaeili Avval, A., Dehghanian, F., & Pirayesh, M. (2022). Auction design for the allocation of carbon emission allowances to supply chains via multi-agent-based model and Q-learning. Computational and Applied Mathematics, 41(4), 1-41.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33825, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Esquivel, K. E., Hesselbarth, M. H., & Allgeier, J. E. Mechanistic support for increased primary production around artificial reefs. Ecological Applications, e2617.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology" + }, + { + "id": 33826, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Fabio, R. A., D'Agnese, C., & Calabrese, C. (2022). Peace attitude and friendliness influence cooperative choices in context of uncertainty. Peace and Conflict: Journal of Peace Psychology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33827, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Fain, B. G., & Dobrovolny, H. M. (2022). GPU acceleration and data fitting: Agent-based models of viral infections can now be parameterized in hours. Journal of Computational Science, 101662.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics" + }, + { + "id": 33828, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Faiza, S., & Habib, A. H. (2022). Modeling and Simulation of Urban Mobility in a Smart City. In International Conference on Artificial Intelligence and its Applications (pp. 379-394). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33829, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Farahbakhsh, S., Snellinx, S., Mertens, A., Belderbos, E., Bourgeois, L., & Van Meensel, J. (2023). What's stopping the waste-treatment industry from adopting emerging circular technologies? An agent-based model revealing drivers and barriers. Resources, Conservation and Recycling, 190, 106792.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33830, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Farooq, O., & Singh, P. (2022). Data Analytics and Modeling in IoT-Fog Environment for Resourceconstrained IoT-Applications: A Review. Recent Advances in Computer Science and Communications (Formerly: Recent Patents on Computer Science), 15(7), 968-991.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Data Analytics, Computer Science, Communications" + }, + { + "id": 33831, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Farris, A. V., & Tosun, G. (2022). Computing in Precollege Science, Engineering, and Mathematics Education. In Oxford Research Encyclopedia of Education.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 33832, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Faweya, O., Desai, P. S., & Higgs III, C. F. (2022). Towards an agent-based model to simulate osseointegration in powder-bed 3D printed implant-like structures. Journal of the Mechanical Behavior of Biomedical Materials, 126, 104915.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Osteogenesis, Powder-bed 3D Printing, Biomedical Materials, Mechanical Behavior" + }, + { + "id": 33833, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Feng, B., Li, W., & Wang, L. Signal Optimization of Electronic Communication Network Based on Internet of Things. Journal of Sensors, 2022.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33834, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Ferguson, J. P. (2022). A Peircean Socio-Semiotic Analysis of Science Students\u2019 Creative Reasoning as/Through Digital Simulations. Research in Science Education, 1-31.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33835, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Ferr\u00e3o, I. G., Espes, D., Dezan, C., & Branco, K. R. L. J. C. (2022). Security and safety concerns in air taxis: a systematic literature review. Sensors, 22(18), 6875.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, Studies" + }, + { + "id": 33836, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Fiore, I., Greco, A., & Pluchino, A. (2022). On Damage Identification in Planar Frames of Arbitrary Size. Shock and Vibration, 2022.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33837, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Fioretti, G. (2022). Emergence of Industrial Stylized Facts out of Innovative and Imitative Entrepreneurship. Available at SSRN 3581357.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Entrepreneurship, Economics" + }, + { + "id": 33838, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Fitrianip, W., Edriani, A. F., Hardiansyah, R., Lestyanti, R., & Mase, L. Z. Implementation of Agent Based Modelling to Observe the Evacuating Behavior at Faculty of Engineering Building, University of Bengkulu, Indonesia. In Journal of the Civil Engineering Forum (pp. 179-192). ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33839, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Fitzpatrick, B. G., Federico, P., Kanarek, A., & Lenhart, S. (2022). Control of a consumer\u2010resource agent\u2010based model using partial differential equation approximation. Optimal Control Applications and Methods, 43(1), 178-197.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33840, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Flache, A. (2022). GESIS Spring Seminar 2022: Simulation Techniques in the Social Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33841, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Flache, A., M\u00e4s, M., & Keijzer, M. A. (2022). Computational approaches in rigorous sociology: agent-based computational modeling and computational social science. In Handbook of Sociological Science (pp. 57-72). Edward Elgar Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Sociology, Computational Science, Social Science, Economics, Computer Science" + }, + { + "id": 33842, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Flood, V. J., Shvarts, A., & Abrahamson, D. (in press). Responsive teaching for embodied learning with technology. In S. Macrine & J. Fugate (Eds.), Movement matters: How embodied cognition informs teaching and learning. MIT Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Social Science, Education" + }, + { + "id": 33843, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Franceschini, P. B., & Neves, L. O. (2022). A critical review on occupant behaviour modelling for building performance simulation of naturally ventilated school buildings and potential changes due to the COVID-19 pandemic. Energy and Buildings, 111831.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33844, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Francos, R. M., & Bruckstein, A. M. (2022). Search for Smart Evaders with Swarms of Sweeping Agents-a Resource Allocation Perspective. Journal of Intelligent & Robotic Systems, 106(4), 1-34.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 33845, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Fu, H., Zhang, H., Zhang, M., & Hou, C. (2022). Modeling and Dynamic Simulation of the Public\u2019s Intention to Reuse Recycled Water Based on Eye Movement Data. Water, 15(1), 114. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33846, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": " Fuchkina, E., Bielik, M., Schneider, S., Ossenberg-Engels, T., & H\u00e4mmerle, A. (2022). Space Matcher-An interactive toolbox for assisting in spatializing & testing office programmes using graph centralities.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33847, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Fuhao, Z., & Qiuhong, Z. (2022). Comparison of the Response Efficiency Between the Fractal and Traditional Emergency Organizations Based on System Dynamic Simulation. Sustainable Operations and Computers.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33848, + "sort": null, + "year": 2022, + "is_ccl": true, + "reference": "Fuhrmann, T., Levy, S., Wilensky, U., Blikstein, P., Bumbacher, E., Saba, J., Langbeheim, E., Hel-Or, H., Fernandez, C., de Deus Lopes, R., Klopfer, E., Wendel, D., Wagh, A., & Wilkerson, M. (2022). Developing Accessible and Sustainable Computational Modeling Tools in Learning Science: What is Next? Proceedings of the International Conference for the Learning Sciences (ICLS 2022), Hiroshima, Japan: ISLS.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33849, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "F\u00fcllsack, M. (2022). LSTM-certainty as early warning signal for critical transitions. Systems Science & Control Engineering, 10(1), 562-571.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "LSTM, Uncertainty, Transitions" + }, + { + "id": 33850, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Fust, P., & Schlecht, E. (2022). Importance of timing: Vulnerability of semi-arid rangeland systems to increased variability in temporal distribution of rainfall events as predicted by future climate change. Ecological Modelling, 468, 109961.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Temporal Distribution, Climate Change, Rainfall, Rangeland Systems" + }, + { + "id": 33851, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Gabbar, M. A., & Hasson, S. T. (2022, June). Analyzing the Connectivity of the Wireless Sensor Networks. In 2022 10th International Conference on Smart Grid (icSmartGrid) (pp. 374-379). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Wireless Sensor Networks" + }, + { + "id": 33852, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Gaidarski, I., & Kutinchev, P. (2022). Transformation of UML Design Models of In-formation Security System into Agent-based Simulation Models. Information and Security. 53(1), 65-77", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33853, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Galan, S.F. (2022). Modeling Complex and Intelligent Systems with NetLogo. (Bellisco Ediciones.) ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, NetLogo, Computer Science, Economics" + }, + { + "id": 33854, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Galety, M. G., Al Atroshi, C., Balabantaray, B., & Mohanty, S. N. (Eds.). (2022). Social Network Analysis: Theory and Applications. John Wiley & Sons.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Social Science, Miscellaneous" + }, + { + "id": 33855, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Gao, J., Zhang, W., Guan, T., & Feng, Q. (2022). Evolutionary game study on multi-agent collaboration of digital transformation in service-oriented manufacturing value chain. Electronic Commerce Research, 1-22.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33856, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Garg, V., Tiwari, R., & Shukla, A. (2022, June). Comparative Analysis of Fruit Fly-Inspired Multi-Robot Cooperative Algorithm for Target Search and Rescue. In 2022 IEEE World Conference on Applied Intelligence and Computing (AIC) (pp. 444-450). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33857, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Ge, X., & Huang, K. (2022). Designing Online Learning Environments to Support Problem-Based Learning. In Handbook of Open, Distance and Digital Education (pp. 1-18). Singapore: Springer Nature Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33858, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Gebrehiwot, A. A., Hashemi-Beni, L., Kurkalova, L. A., Liang, C. L., & Jha, M. K. (2022). Using ABM to Study the Potential of Land Use Change for Mitigation of Food Deserts. Sustainability, 14(15), 9715.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33859, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Gerard, L., Wiley, K., Debarger, A. H., Bichler, S., Bradford, A., & Linn, M. C. (2022). Self-directed science learning during COVID-19 and beyond. Journal of Science Education and Technology, 31(2), 258-271.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33860, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Gerdes, L., Rengs, B., & Scholz-W\u00e4ckerle, M. (2022). Labor and environment in global value chains: an evolutionary policy study with a three-sector and two-region agent-based macroeconomic model. Journal of Evolutionary Economics, 1-51.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33861, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Ghafoori, H. R., Sadeghi-Niaraki, A., Alesheikh, A. A., & Choi, S. M. (2022). Ubiquitous GIS based outdoor evacuation assistance: An effective response to earthquake disasters. International Journal of Disaster Risk Reduction, 81, 103232.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33862, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "GHOREISHI, M. (2022). Socio-hydrology from Local to Large Scales: An Agent-based Modeling Approach (Doctoral dissertation, University of Saskatchewan Saskatoon).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Socio-hydrology, Modeling, Biology, Ecology, Computer Science, Economics" + }, + { + "id": 33863, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Ghoreishi, M., Elshorbagy, A., Razavi, S., Bl\u00f6schl, G., Sivapalan, M., & Abdelkader, A. (2022). Cooperation in a Transboundary River Basin: a Large Scale Socio-hydrological Model of the Eastern Nile. Hydrology and Earth System Sciences Discussions, 1-24.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Socio-hydrological, Modeling" + }, + { + "id": 33864, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Ghribi, C., Cali, E., Hirsch, C., & Jahnel, B. (2022, March). Agent-based simulations for coverage extensions in 5G networks and beyond. In 2022 25th Conference on Innovation in Clouds, Internet and Networks (ICIN) (pp. 1-7). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulations, Networks, Computer Science, Economics" + }, + { + "id": 33865, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Ghumrawi, K. A. (2022). Applying and Accelerating Large-Scale Population Simulations (Doctoral dissertation, Miami University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33866, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Gibson, M., Pereira, J. P., Slade, R., & Rogelj, J. (2022). Agent-Based Modelling of Future Dairy and Plant-Based Milk Consumption for UK Climate Targets. Journal of Artificial Societies and Social Simulation, 25(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33867, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Gignoux, J., Davies, I, D., Flint, S.R. (2022). 3Worlds, a simulation platform for ecosystem modeling. Ecological Modeling 2022, 473, 110121. https://doi.org/10.1016/j.ecolmodel.2022.110121 ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Ecology, Modeling" + }, + { + "id": 33868, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Gilbert, N., & Elsenbroich, C. (2022). WATERING Crop Growth Reusable Building Block.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33869, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Girish, S. (2022). Emergent patterns of affiliative behaviour in group-living lemurs (Doctoral dissertation).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 33870, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Gisen, D. C., Sch\u00fctz, C., & Weichert, R. B. (2022). Development of behavioral rules for upstream orientation of fish in confined space. PLOS ONE, 17(2), e0263964.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33871, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Goldenbogen, B., Adler, S. O., Bodeit, O., Wodke, J. A., Escalera\u2010Fanjul, X., Korman, A., ... & Klipp, E. (2022). Control of COVID\u201019 Outbreaks under Stochastic Community Dynamics, Bimodality, or Limited Vaccination. Advanced Science, 2200088.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33872, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Golmaryami, S., Ferreira, P., & Nunes, M. L. (2022, June). Consumer willingness to participate in demand-side management: An agent-based modeling approach. In Proceedings of the 5th International Conference on Energy and Environment\u2014Bringing Together Economics and Engineering (ICEE), Porto, Portugal (pp. 2-3).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Modeling" + }, + { + "id": 33873, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Gomes, I., Bot, K., Ruano, M. D. G., & Ruano, A. (2022). Recent Techniques Used in Home Energy Management Systems: A Review. Energies, 15(8), 2866.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33874, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Gonz\u00e1lez Cuevas, A., & Suppi, R. (2022). ABM simulation focused on urban mobility. In X Jornadas de Cloud Computing, Big Data & Emerging Topics (La Plata, 2022).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33875, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Gouvea, J., Appleby, L., Fu, L., & Wagh, A. (2022). Motivating and Shaping Scientific Argumentation in Lab Reports. CBE\u2014Life Sciences Education, 21(4), ar71.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Social Science, Education" + }, + { + "id": 33876, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Graham, S. (2022). Mapping the Landscape of our Ignorance. Simulating Roman Economies: Theories, Methods, and Computational Models, 293.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Archaeology, Economics, Computer Science, Miscellaneous" + }, + { + "id": 33877, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Grajdura, S., Borjigin, S., & Niemeier, D. (2022). Fast-moving dire wildfire evacuation simulation. Transportation Research Part D: Transport and Environment, 104, 103190.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Miscellaneous" + }, + { + "id": 33878, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Grayson, K. L., Hiliker, A. K., & Wares, J. R. (2022). R Markdown as a dynamic interface for teaching: Modules from math and biology classrooms. Mathematical Biosciences, 108844.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Teaching, Computer Science" + }, + { + "id": 33879, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Grebennik, I., Hubarenko, Y., & Ananiev, M. (2022). Information Technologies for Assessing the Effectiveness of the Quarantine Measures. In International Conference on Information Technology in Disaster Risk Reduction (pp. 160-175). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33880, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Greif, H. (2022). Analogue Models and Universal Machines. Paradigms of Epistemic Transparency in Artificial Intelligence. Minds and Machines, 1-23.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33881, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Griesemer, M., & Sindi, S. S. (2022). Rules of engagement: a guide to developing agent-based models. In Microbial Systems Biology (pp. 367-380). Humana, New York, NY.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Microbial Systems Biology" + }, + { + "id": 33882, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Grigoryan, G., Etemadidavan, S., & Collins, A. J. (2022). Computerized agents versus human agents in finding core coalition in glove games. SIMULATION, 00375497221093652.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 33883, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Grimm, V., Berger, U., & Filatova, T. (2022). Reusable building blocks for agent-based modelling: benefits, challenges, and a template for their release.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33884, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Grewe, J., & Griva, I. (2022). Optimizing Heterogeneous Maritime Search Teams using an Agent-based Model and Nonlinear Optimization Methods. In Proceedings of the 11th International Conference on Operations Research and Enterprise Systems (ICORES 2022), 200-207.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33885, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Gu, H., Feng, L., & Zhen, X. (2022). Study on the stability of anaerobic digestion of food waste and the waste mushroom substrate based on SBR reactor and Netlogo simulation. Journal of Material Cycles and Waste Management, 1-17. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Anaerobic digestion, Waste management, Simulation, SBR reactor" + }, + { + "id": 33886, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Guia, S. S., Laouid, A., Hammoudeh, M., Bounceur, A., Alfawair, M., & Eleyan, A. (2022). Co-Simulation of Multiple Vehicle Routing Problem Models. Future Internet, 14(5), 137.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33887, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Guly\u00e1s, L. (2022). Spatial Clustering by Schelling\u2019s Ants. In Conference on Computational Collective Intelligence Technologies and Applications (pp. 579-586). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 33888, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Gunckel, K. L., Covitt, B. A., Berkowitz, A. R., Caplan, B., & Moore, J. C. (2022). Computational thinking for using models of water flow in environmental systems: Intertwining three dimensions in a learning progression. Journal of Research in Science Teaching.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science, Biology, Ecology, Physics, Chemistry" + }, + { + "id": 33889, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Gunckel, K. L., Covitt, B. A., Love, G., Cooper-Wagoner, J. A., & Moreno, D. (2022). Unplugged to Plugged In Breadcrumb. The Science Teacher, 89(3).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33890, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "G\u00fcng\u00f6r, \u00d6., G\u00fcnne\u00e7, D., Salman, F. S., & Y\u00fccel, E. Prediction of Migration Paths Using Agent-Based Simulation Modeling: The Case of Syria. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33891, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Hahn Utrero, T. (2022). \u00bf Influyen el n\u00famero de or\u00edgenes y los umbrales de confianza en las creencias en la din\u00e1mica de difusi\u00f3n de rumores? Una propuesta te\u00f3rica desde un modelo basado en agentes. Papers: revista de sociologia, 107(2), e2994-e2994.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Sociology, Economics, Computer Science, Physics, Chemistry, Social Science, Epidemiology" + }, + { + "id": 33892, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Hajian Heidary, M. (2022). Agent-based simulation-optimization model for a bi-objective stochastic multi-period supply chain design problem. Journal of Industrial Engineering and Management Studies, 8(2), 175-195.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33893, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Hajiesmaeili, M., Addo, L., Watz, J., Railsback, S. F., & Piccolo, J. J. (2022). Individual\u2010based modelling of hydropeaking effects on brown trout and Atlantic salmon in a regulated river. River Research and Applications.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Modeling" + }, + { + "id": 33894, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Hakim, G., & Braun, R. (2022). Wireless Sensor Network Routing for Energy Efficiency. In Advances in Systems Engineering: Proceedings of the 28th International Conference on Systems Engineering, ICSEng 2021, December 14-16, Wroc\u0142aw, Poland 28 (pp. 329-343). Springer International Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Wireless Sensor Network Routing \n\nAdvances in Systems Engineering \n\nEnergy Efficiency" + }, + { + "id": 33895, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Hamza, M., Iqbal, W., Ahmad, A., Babar, M., & Khan, S. (2022). A social qualitative trust framework for Fog computing. Computers and Electrical Engineering, 102, 108195. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33896, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Hanine, Y., Malick, M. E. M., Tkiouat, M., Lahrichi, Y., & Alaoui, Y. L. (2022, May). A New Financial Group Lending Based on Smart Contracts: An Agent-based Simulation. In 2022 International Conference on Intelligent Systems and Computer Vision (ISCV) (pp. 1-5). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Finance, Computer Science, Simulation, Economics" + }, + { + "id": 33897, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Hashemi Aslani, Z., Omidvar, B., & Karbassi, A. (2022). Integrated model for land-use transformation analysis based on multi-layer perception neural network and agent-based model. Environmental Science and Pollution Research, 1-14.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33898, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Hassanpour, S., Gonzalez, V., Liu, J., Zou, Y., & Cabrera-Guerrero, G. (2022). A hybrid hierarchical agent-based simulation approach for buildings indoor layout evaluation based on the post-earthquake evacuation. Advanced Engineering Informatics, 51, 101531.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 33899, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Hassen, F. S., Kalla, M., & Dridi, H. (2022). Using agent-based model and Game Theory to monitor and curb informal houses: A case study of Hassi Bahbah city in Algeria. Cities, 125, 103617.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33900, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "HAYOUN, S., & YAHYAOUI, T. (2022). Une simulation \u00e0 base d\u2019agents du mod\u00e8le de Harris et Todaro dans l\u2019explication de la migration des travailleurs au Maroc. Revue Fran\u00e7aise d'Economie et de Gestion, 3(7).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Sociology" + }, + { + "id": 33901, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Hebing, Z., & Xiaojing, Z. (2022). E-Commerce Credit Network Control Strategy from a Critical Perspective. Mathematical Problems in Engineering, 2022.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33902, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Heck, M. V. (2022). Agent-based modelling of the Housesparrow (Master's thesis).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33903, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Herget, F., Kleppmann, B., Ahrweiler, P., Gruca, J., & Neumann, M. (2022, April). How Perceived Complexity Impacts on Comfort Zones in Social Decision Contexts\u2014Combining Gamification and Simulation for Assessment. In Advances in Social Simulation: Proceedings of the 16th Social Simulation Conference, 20\u201324 September 2021 (p. 203). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33904, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Herrmann, B., Lang, C., & Philippe, L. (2022, November). Data Synchronization in Distributed Simulation of Multi-Agent Systems. In Advances in Practical Applications of Agents, Multi-Agent Systems, and Complex Systems Simulation. The PAAMS Collection: 20th International Conference, PAAMS 2022, L'Aquila, Italy, July 13\u201315, 2022, Proceedings (Vol. 13616, p. 50). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Data Synchronization" + }, + { + "id": 33905, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Hernandez, I., Cohen, D., Gruschow, K., Nowak, A., Gelfand, M. J., & Borkowski, W. (2022). The importance of being unearnest: Opportunists and the making of culture. Journal of Personality and Social Psychology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33906, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Heydari Fard, S. (2022). Strategic injustice, dynamic network formation, and social movements. Synthese, 200(5), 1-25.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33907, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "He, C., Jia, G., McCabe, B., Chen, Y., Zhang, P., & Sun, J. (2022). Psychological decision-making process of construction worker safety behavior: an agent-based simulation approach. International journal of occupational safety and ergonomics, 1-13.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33908, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Hisseine, M. A., Chen, D., & Yang, X. (2022). The Application of Blockchain in Social Media: A Systematic Literature Review. Applied Sciences, 12(13), 6567.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Blockchain, Social Media, Literature Review" + }, + { + "id": 33909, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Hoffmann, B., Urquhart, N., Chalmers, K., & Guckert, M. (2022). An empirical evaluation of a novel domain-specific language\u2013modelling vehicle routing problems with Athos. Empirical Software Engineering, 27(7), 1-52.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33910, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "H\u00f6lzchen, E., Hertler, C., Willmes, C., Anwar, I. P., Mateos, A., Rodr\u00edguez, J., ... & Timm, I. J. (2022). Estimating crossing success of human agents across sea straits out of Africa in the Late Pleistocene. Palaeogeography, Palaeoclimatology, Palaeoecology, 110845.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33911, + "sort": null, + "year": 2022, + "is_ccl": true, + "reference": "Horn, C., Potter, R., & Peternell, M. (2022). Water Flows and Water Accumulations on Bedrock as a Structuring Element of Rock Art. Journal of Archaeological Method and Theory, 1-27.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33912, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Hoseini, M., Azar, A., Azarfar, A., & Ebadi, A. (2022). An Agent-Based Simulation of Insurance Supply chain Risk Detection and Assessment. Scientific Journal of System Management Studies, 2(4), 11-44.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33913, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Hosseini, S., & Zandvakili, A. (2022). Information dissemination modeling based on rumor propagation in online social networks with fuzzy logic. Social Network Analysis and Mining, 12(1), 1-18.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33914, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Housh, K., Hmelo-Silver, C. E., & Yoon, S. A. (2022). Theoretical Perspectives on Complex Systems in Biology Education. In Fostering Understanding of Complex Systems in Biology Education: Pedagogies, Guidelines and Insights from Classroom-based Research (pp. 1-16). Cham: Springer International Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Complex Systems, Pedagogies, Classroom-based Research" + }, + { + "id": 33915, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Hu, B., Zhou, C., Tian, Y. C., Du, X., & Hu, X. (2022). Attack Intention Oriented Dynamic Risk Propagation of Cyberattacks on Cyber-Physical Power Systems. IEEE Transactions on Industrial Informatics.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Cyberattacks, Risk Propagation, Computer Science, Economics, Physics, Ecology, Urban Studies, Social Science, History, Electrical Engineering" + }, + { + "id": 33916, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Hu, Q., Medina, A., Siciliano, M. D., & Wang, W. Network Structures and Network Effects Across Management and Policy Contexts: A Systematic Review. Public Administration.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33917, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Huang, G., Yu, X., Long, Q., Huang, L., & Luo, S. (2022). The impact of economic freedom on COVID-19 pandemic control: the moderating role of equality. Globalization and Health, 18(1), 1-17.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Sociology" + }, + { + "id": 33918, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Huang, J., Cui, Y., Zhang, L., Tong, W., Shi, Y., & Liu, Z. (2022). An Overview of Agent-Based Models for Transport Simulation and Analysis. Journal of Advanced Transportation, 2022.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33919, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Huang, Q., Zheng, X., Zhang, M., & Zhang, X. (2022). Agent-based modeling of the word-of-mouth effect on promoting brand-name agricultural products. Journal of Economic Interaction and Coordination, 1-22.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33920, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Hunter, E., & Kelleher, J. D. (2022). Understanding the assumptions of an SEIR compartmental model using agentization and a complexity hierarchy. Journal of Computational Mathematics and Data Science, 4, 100056.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33921, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Hunter, E., & Kelleher, J. D. (2022). Validating and Testing an Agent-Based Model for the Spread of COVID-19 in Ireland. Algorithms, 15(8), 270.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33922, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Hutama, I. A. W., & Nakamura, H. (2022). DISASTER EVACUATION ROUTE CHOICES FOR INFORMAL SETTLEMENTS A CONCEPTUAL FRAMEWORK. SEATUC journal of science and engineering, 3(1), 16-29.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33923, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Ibbotson, P., Jimenez-Romero, C., & Page, K. M. (2022). Dying to cooperate: the role of environmental harshness in human collaboration. Behavioral Ecology, 33(1), 190-201.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 33924, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Ibrahim, A. M. (2022). The conditional defector strategies can violate the most crucial supporting mechanisms of cooperation. Scientific Reports, 12(1), 1-10.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33925, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Idros, N., Othman, W. A. F. W., Wahab, A. A. A., Alhady, S. S. N., & Bakar, E. A. (2022). Modeling 2-D Solitary Hunting Behavior of Chimpanzee. In Proceedings of the 11th International Conference on Robotics, Vision, Signal Processing and Power Applications (pp. 1077-1082). Springer, Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33926, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Ignatenko, O. (2022). Exploratory analysis and models for strategic learning towards equilibrium. Educational Dimension.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33927, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Imen, B., & Hakima, M. (2022). Is it Trustworthy?: Trusting Clients in a Cloud Based Multi Agent System. In World Conference on Information Systems and Technologies (pp. 155-164). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Trustworthy" + }, + { + "id": 33928, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Islam, N., Bhuiya, R., Samiur, M. D., Drishty, A. S., Saha, S. S., & Akash, U. D. (2022). Surveillance in Maritime Scenario Using Deep-Learning and Swarm Intelligence (Doctoral dissertation, Brac University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Archaeology, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33929, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "IUA, D. A. (2022). Analisis Pengaruh Risk Attitude terhadap Decision-Making Competence Individu pada Penggunaan Model Simulasi Berbasis Agen (Doctoral dissertation, Universitas Gadjah Mada).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33930, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Ivanova, Y. (2022). A Methodology for Empirical Research and Analysis in the Field of Cybersecurity. Yearbook Telecommunications 2022, 9, 45-52.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Cybersecurity, Economics, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33931, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Izewski, N. (2022). A NetLogo COVID-19 Virus Simulation Model for Determining Better Strategies at Handling a Virus Outbreak.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 33932, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Jahanbani, M., Vahidnia, M. H., & Aspanani, M. (2022). Geographical agent-based modeling and satellite image processing with application to facilitate the exploration of minerals in Behshahr, Iran. Arabian Journal of Geosciences, 15(9), 1-14.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Geography, Computer Science, Geology, Satellite Imagery, Economics, Archaeology" + }, + { + "id": 33933, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Jensen, P. (2022). Introducing simple models of social systems. American Journal of Physics.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33934, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Jeong, S., Elliott, J. B., Feng, Z., & Feldon, D. F. (2022). Understanding Complex Ecosystems Through an Agent-Based Participatory Watershed Simulation. Journal of Science Education and Technology, 31(5), 691-705.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Social Science, Education" + }, + { + "id": 33935, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Jim\u00e9nez, A. F., C\u00e1rdenas, P. F., & Jim\u00e9nez, F. (2022). Intelligent IoT-multiagent precision irrigation approach for improving water use efficiency in irrigation systems at farm and district scales. Computers and Electronics in Agriculture, 192, 106635.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Irrigation, Computer Science, Economics, Agriculture, Physics, Chemistry, Ecology, Urban Studies" + }, + { + "id": 33936, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Jin, K. S., Lee, S. M., & Kim, Y. C. (2022). Adaptive and optimized agent placement scheme for parallel agent\u2010based simulation. ETRI Journal, 44(2), 313-326.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33937, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Jin, X., Chen, C., & Zhang, M. (2022). Research on Synergy between Entrepreneurial Service and Financial Support in Crowd Innovation Space Ecosystem. Sustainability, 14(10), 5966.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Entrepreneurial Service, Financial Support, Crowd Innovation, Sustainability" + }, + { + "id": 33938, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Jing, S., & Yongzhu, W. (2022, March). Application of Small World Network in the Dissemination of Unsafe Behaviors with Masks. In 2022 IEEE 6th Information Technology and Mechatronics Engineering Conference (ITOEC) (Vol. 6, pp. 1477-1482). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Network Theory, Computer Science, Economics" + }, + { + "id": 33939, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Jo\u00e3o Emmanuel, D. Simulation of the Implementation of Domestic Solar Systems Using Multi-agent Systems from Web Scraping. In Proceedings of the 7th Brazilian Technology Symposium (BTSym\u201921): Emerging Trends in Human Smart and Sustainable Future of Cities (Volume 1) (p. 88). Springer Nature. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 33940, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Ju\u00e1rez, G. E., Men\u00e9ndez, F. D., Lafuente, C. H., P\u00e9rez, J., Franco, L., & Rivero, C. R. (2022, March). Analysis and simulation of social behavior during the COVID-19 pandemic in Argentina, using intelligent agents. In 2022 IEEE World Engineering Education Conference (EDUNINE) (pp. 1-6). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33941, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Jung, C., Ahad, A., Jeon, Y., & Kwon, Y. (2022, May). SWARMFLAWFINDER: Discovering and Exploiting Logic Flaws of Swarm Algorithms. In 2022 IEEE Symposium on Security and Privacy (SP) (pp. 1808-1825). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Archaeology, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 33942, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "J\u00fanior, E. C. B., Rios, V. P., Dodonov, P., Vilela, B., & Japyass\u00fa, H. F. (2022). Effect of behavioural plasticity and environmental properties on the resilience of communities under habitat loss and fragmentation. Ecological Modelling, 472, 110071. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33943, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Jones, B., & Swanson, H. (2022). A Framework for Assessing Teacher\u2019s Readiness for Pedagogical Transformation. Proceedings of the International Conference for the Learning Sciences (ICLS 2022), Hiroshima, Japan: ISLS.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33944, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Kadaverugu, R., Biniwale, R., & Matli, C. Process-Based Scenario Analyses of Future Socio-Environmental Systems: Recent Efforts and a Salient Research Agenda for Decision-Making. Modeling and Simulation of Environmental Systems, 319-330.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33945, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Kafai, Y. B., Xin, Y., Fields, D., & Tofel\u2010Grehl, C. (2022). Teaching and learning about respiratory infectious diseases: A scoping review of interventions in K\u201012 education. Journal of Research in Science Teaching, 59(7), 1274-1300.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Teaching, Learning, Education" + }, + { + "id": 33946, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Kaligotla, C., Y\u00fccesan, E., & Chick, S. E. (2022). Diffusion of competing rumours on social media. Journal of Simulation, 16(3), 230-250.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Social Science, Computer Science" + }, + { + "id": 33947, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Kamath, R., Sun, Z., & Hermans, F. (2022). Policy instruments for green-growth of clusters: Implications from an agent-based model. Environmental Innovation and Societal Transitions, 43, 257-269.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33948, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Kamiebisu, R., Saso, T., Nakao, J., Liu, Z., Nishi, T., & Matsuda, M. (2022). Use cases of the platform for structuring a smart supply chain in discrete manufacturing. Procedia CIRP, 107, 687-692.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33949, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Kane, A., Ayll\u00f3n, D., O\u2019Sullivan, R. J., McGinnity, P., & Reed, T. E. (2022). Escalating the conflict? Intersex genetic correlations influence adaptation to environmental change in facultatively migratory populations. Evolutionary Applications.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Genetics" + }, + { + "id": 33950, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Kang, X., Wu, Y., Yan, D., Zhu, Y., Yao, Y., & Sun, H. (2022). A novel approach for occupants' horizontal and vertical movement modeling in non-residential buildings using Immersive Virtual Environment (IVE). Sustainable Cities and Society, 104193.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33951, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Kaniyamattam, K. (2022). 71 Agent-Based Modeling: A Historical Perspective and Comparison to Other Modeling Techniques. Journal of Animal Science, 100(Supplement_3), 32-33.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling" + }, + { + "id": 33952, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Kappenberger, J., Theil, K., & Stuckenschmidt, H. (2022). Evaluating the Impact of AI-Based Priced Parking with Social Simulation. In International Conference on Social Informatics (pp. 54-75). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33953, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Karkalas, S. (2022). Simplifying authoring and facilitating component reuse of programming tutors (Doctoral dissertation, Birkbeck, University of London).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry" + }, + { + "id": 33954, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Kaur, H. (2023). Role of Multi-agent Systems in Health Care: A Review. Emerging Technologies in Data Mining and Information Security, 367-378.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Health Care" + }, + { + "id": 33955, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Kaur, N., & Kaur, H. (2022). A Multi-agent Based Evacuation Planning for Disaster Management: A Narrative Review. Archives of Computational Methods in Engineering, 1-29.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33956, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Kawai, Y. (2022). Agent-Based Tsunami Crowd Evacuation Simulation for Analysis of Evacuation Start Time and Disaster Rate in Zushi City. In International Conference on Information Technology in Disaster Risk Reduction (pp. 63-75). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies" + }, + { + "id": 33957, + "sort": null, + "year": 2022, + "is_ccl": true, + "reference": "Kelter, J., Wilensky, U., & Potvin, J. (2022). Introducing Land Constraints to Macroeconomic Agent-based Models. Proceedings of the 2022 Conference of The Computational Social Science Society of the Americas.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33958, + "sort": null, + "year": 2022, + "is_ccl": true, + "reference": "Kelter, J. Wit, J., Conboy, W., Potvin, J., & Wilensky, U. (2022). Poster: A General-Purpose \u2018Economic Petri Dish\u2019 ABM with \u2018Land\u2019 and \u2018Organization\u2019 to Test Indexed Pricing Methods for Stability and Resilience. The Computational Social Science Society of the Americas (CSS) 2022.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33959, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Khanolkar, O. (2022). An Exploration Of The Relation between Neighborhood Resource, Crime, And The Development Of Paranoia. Modern Psychological Studies, 28(1), 4.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Crime, Psychology" + }, + { + "id": 33960, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Kianpour, M., Kowalski, S. J., & \u00d8verby, H. (2022). Advancing the concept of cybersecurity as a public good. Simulation Modelling Practice and Theory, 102493.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33961, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Kieu, G. P. S. M. Simulating civil emergency evaluation with Inverse Generative Social Science. In International Workshop on Agent-Based Modelling of Urban Systems (ABMUS) (p. 24).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Social Science" + }, + { + "id": 33962, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Kilani, R., Zouinkhi, A., Bajic, E., & Abdelkrim, M. N. (2022, June). Socialization of smart communicative objects in Industrial Internet of Things. In 10th IFAC Conference on Manufacturing Modelling, Management and Control, MIM 2022. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33963, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Kim, K., Kaviari, F., Pant, P., & Yamashita, E. (2022). An agent-based model of short-notice tsunami evacuation in Waikiki, Hawaii. Transportation research part D: transport and environment, 105, 103239.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33964, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Kinner, T., & Whitaker, E. T. (2022). A Framework for the Design and Development of Adaptive Agent-Based Simulations to Explore Student Thinking and Performance in K-20 Science. In International Conference on Human-Computer Interaction (pp. 190-206). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Ecology, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33965, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Khan, A. A., & Abonyi, J. (2022). Simulation of Sustainable Manufacturing Solutions: Tools for Enabling Circular Economy. Sustainability, 14(15), 9796.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Circular Economy" + }, + { + "id": 33966, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Khan, M. A., El Sayed, H., Malik, S., Zia, M. T., Alkaabi, N., & Khan, J. (2022). A Journey towards Fully Autonomous Driving-Fueled by a Smart Communication System. Vehicular Communications, 100476.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33967, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Khanolkar, O. (2022). An Exploration Of The Relation between Neighborhood Resource, Crime, And The Development Of Paranoia. Modern Psychological Studies, 28(1), 4.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Crime, Psychology" + }, + { + "id": 33968, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Khodr, H., Kothiyal, A., Bruno, B., & Dillenbourg, P. (2022). An Assessment Framework for Complex Systems Understanding. In Proceedings of the 16th international conference on Learning sciences (No. CONF).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 33969, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Killeen, P., Kiringa, I., & Yeap, T. (2022). Unsupervised Dynamic Sensor Selection for IoT-based Predictive Maintenance of a Fleet of Public Transport Buses. ACM Transactions on Internet of Things.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33970, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Kim, K., Kaviari, F., Pant, P., & Yamashita, E. (2022). An agent-based model of short-notice tsunami evacuation in Waikiki, Hawaii. Transportation Research Part D: Transport and Environment, 105, 103239.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33971, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Kim, Y., & Cho, N. (2022). A Simulation Study on Spread of Disease and Control Measures in Closed Population Using ABM. Computation, 10(1), 2.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computation" + }, + { + "id": 33972, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Kobbaey, T., & Bilquise, G. (2023). Agent-Based Simulations for Aircraft Boarding: A Critical Review. In International Conference on Emerging Technologies and Intelligent Systems (pp. 42-52). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33973, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Kooshknow, S. M. M., Herber, R., & Ruzzenenti, F. (2022). Are electricity storage systems in the Netherlands indispensable or doable? Testing single-application electricity storage business models with exploratory agent-based modeling. Journal of Energy Storage, 48, 104008.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33974, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Koralewski, T. E., Wang, H. H., Grant, W. E., Brewer, M. J., & Elliott, N. C. (2022). Evaluation of Areawide Forecasts of Wind-borne Crop Pests: Sugarcane Aphid (Hemiptera: Aphididae) Infestations of Sorghum in the Great Plains of North America. Journal of Economic Entomology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "* Agriculture\n* Ecology\n* Meteorology\n* Computer Science" + }, + { + "id": 33975, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Ko\u0159\u00ednek, M., & \u0160tekerov\u00e1, K. (2022). Smart Cities: GIS Data for Realistic Simulations. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, GIS, Computer Science, Economics" + }, + { + "id": 33976, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Kurchyna, V., Rodermund, S., Berndt, J.O., Spaderna, H., Timm, I.J. (2022). KI 2022: Advances in Artificial Intelligence. KI 2022. Lecture Notes in Computer Science(), vol 13404. Springer, Cham. https://doi.org/10.1007/978-3-031-15791-2_12 ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Artificial Intelligence" + }, + { + "id": 33977, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Kurchyna, V., Rodermund, S., Berndt, J. O., Spaderna, H., & Timm, I. J. (2022). Health and Habit: An Agent-based Approach. In German Conference on Artificial Intelligence (K\u00fcnstliche Intelligenz) (pp. 131-145). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33978, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Kurdi, H., Alzuhair, A., Alotaibi, D., Alsweed, H., Almoqayyad, N., Albaqami, R., ... & Islam, A. A. A. (2022). Crowd Evacuation in Hajj Stoning Area: Planning through Modeling and Simulation. Sustainability, 14(4), 2278.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Simulation, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 33979, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Kusumah, H., & Wasesa, M. (2023). Unraveling the Most Influential Determinants of Residential Segregation in Jakarta: A Spatial Agent-Based Modeling and Simulation Approach. Systems, 11(1), 20.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33980, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Laatabi, A., Becu, N., Marilleau, N., Amalric, M., Pignon-Mussaud, C., Anselme, B., ... & Rousseaux, F. (2022). LittoSIM-GEN: A generic platform of coastal flooding management for participatory simulation. Environmental Modelling & Software, 105319.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33981, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Lamarins, A., Fririon, V., Folio, D., Vernier, C., Daupagne, L., Labonne, J., ... & Oddou\u2010Muratorio, S. (2022). Importance of interindividual interactions in eco\u2010evolutionary population dynamics: The rise of demo\u2010genetic agent\u2010based models. Evolutionary Applications.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 33982, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Lancel, S., Chapurlat, V., Dray, G., & Martin, S. (2022). Emergency evacuation in a supermarket during a terrorist attack: towards a possible modelling of the influence of affordances on the evacuation behavior of agents in a complex virtual environment. Journal of Safety Science and Resilience.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33983, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Lambert, S. G., Fiedler, B. L., Hershenow, C. S., Abrahamson, D., & Gorlewicz, J. L. (2022). A tangible manipulative for inclusive quadrilateral learning. Journal on Technology & Persons with Disabilities. [Winner: Best Submission\u2014Dr. Arthur I. Karshmer Award for Assistive Technology Research]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Technology, Disability" + }, + { + "id": 33984, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Lang, D., & Ertsen, M. W. (2022). Conceptualising and Implementing an Agent-Based Model of an Irrigation System. Water, 14(16), 2565.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33985, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Lancel, S., Chapurlat, V., Dray, G., & Martin, S. (2022). Emergency evacuation in a supermarket during a terrorist attack: towards a possible modelling of the influence of affordances on the evacuation behavior of agents in a complex virtual environment. Journal of Safety Science and Resilience.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33986, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Lapp, M., & Long, C. (2022). A new approach to agent-based models of Community Resource Management based on the analysis of cheating, monitoring, and sanctioning. Ecological Modelling, 468, 109946.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 33987, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Latif, R., Ahmed, M. U., Tahir, S., Latif, S., Iqbal, W., & Ahmad, A. (2022). A novel trust management model for edge computing. Complex & Intelligent Systems, 8(5), 3747-3763.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33988, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Lawless, W.F. Interdependent Autonomous Human\u2013Machine Systems: The Complementarity of Fitness, Vulnerability and Evolution. Entropy 2022, 24, 1308. https://doi.org/10.3390/e24091308 ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 33989, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Lee, S. (2022). Networks and Organizing Processes in Online Social Media. Media and Communication, 10(2), 1-4.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33990, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Lehmann, A., Mazzetti, P., Santoro, M., Nativi, S., Mas\u00f2, J., Serral, I., ... & Giuliani, G. (2022). Essential earth observation variables for high-level multi-scale indicators and policies. Environmental Science & Policy, 131, 105-117.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33991, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Leon, F. (2022). ActressMAS, a. NET Multi-Agent Framework Inspired by the Actor Model. Mathematics, 10(3), 382.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Mathematics" + }, + { + "id": 33992, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Leonard\u2010Duke, J., Hung, C., Sharma, A., & Peirce, S. M. (2022). Multi\u2010scale Computational Model of Endothelial Cell\u2010Pericyte Coupling in Idiopathic Pulmonary Fibrosis. The FASEB Journal, 36.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33993, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Leoni, S. (2022). An Agent-Based Model for Tertiary Educational Choices in Italy. Research in Higher Education, 63(5), 797-824.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33994, + "sort": null, + "year": 2022, + "is_ccl": true, + "reference": "Levy, M., Dabholkar, S., Zhao, L., Juhl, S., Levites, L., Mills, J., Wu, S., Peel, A., Horn, M.S., & Wilensky, U. (2022). Conceptualizing and operationalizing equity-focus in designing Computational Thinking (CT) integrated science and mathematics curricula. Paper accepted to the Annual Meeting of the American Educational Research Association (AERA) 2022. San Diego, CA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33995, + "sort": null, + "year": 2022, + "is_ccl": true, + "reference": "Levy, M., Peel, A., Dabholkar, S., Zhao, L., Juhl, S., Levites, L., Mills, J., Wu, S., Horn, M.S., & Wilensky, U. (2022). Co-Designing to Understand Equity-Focus in Computational Thinking (CT) Integrated Science Curricula. the 2022 Annual Meeting of the National Association of Research in Science Teaching (NARST).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33996, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Li, C., Wang, H., & Song, R. (2022). Mobility-Aware Offloading and Resource Allocation in NOMA-MEC Systems via DC. IEEE Communications Letters.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33997, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Li, L., Wan, Y., Plewczynski, D., & Zhi, M. Simulation Model on Network Public Opinion Communication Model of Major Public Health Emergency and Management System Design. Scientific Programming, 2022. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 33998, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Li, M., Huang, P., Chen, Z., & Chen, W. (2022, December). Patient Empowerment in Improving Health Care Workers\u2019 Hand Hygiene Compliance: Evidence from an Agent-based Simulation. In 2022 International Conference on Advanced Enterprise Information System (AEIS) (pp. 95-100). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Health Care, Simulation, Computer Science" + }, + { + "id": 33999, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Li, S., Hui, B., Jin, C., Liu, X., Xu, F., Su, C., & Li, T. (2022). Considering Farmers\u2019 Heterogeneity to Payment Ecosystem Services Participation: A Choice Experiment and Agent-Based Model Analysis in Xin\u2019an River Basin, China. International journal of environmental research and public health, 19(12), 7190.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Payment Ecosystem Services, Agent-Based Model, Choice Experiment, China" + }, + { + "id": 34000, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Li, X., Li, J., Huang, Y., He, J., Liu, X., Dai, J., & Shen, Q. (2022). Construction enterprises\u2019 adoption of green development behaviors: An agent-based modeling approach. Humanities and Social Sciences Communications, 9(1), 1-11.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34001, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Liang, D., Cong, Z., & Cao, G. (2022). Examination of Diffusion Patterns of Tornado Warning using Agent-based Model and Simulation. Weather, Climate, and Society.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34002, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Libkind, S., Baas, A., Halter, M., Patterson, E., & Fairbanks, J. (2022). An Algebraic Framework for Structured Epidemic Modeling. arXiv preprint arXiv:2203.16345.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 34003, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Liew, C. W., Polanco, L., Manalang, K., & Kurt, R. A. (2022). An experimental and computational approach to unraveling interconnected TLR signaling cascades. Informatics in Medicine Unlocked, 100939.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computation, Medicine, Informatics, Physics" + }, + { + "id": 34004, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Linares Mart\u00ednez, F., Miguel Quesada, F. J., & Kohl, M. (2022). Patrones de homofilia resilientes en redes de amistad juvenil: estudio de caso mediante un experimento de simulaci\u00f3n computacional. Revista Espa\u00f1ola de Investigaciones Sociologicas, (117).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Sociology" + }, + { + "id": 34005, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Lin, J. W., Cheng, T. S., & Linn, G. (2022). The impacts of modelling-based SSI teaching module on preservice teachers\u2019 decision making\u2013a case of Dongfeng Highway route selection. International Journal of Science Education, 1-21.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34006, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Lindgren, R., & DeLiema, D. (2022). Viewpoint, embodiment, and roles in STEM learning technologies. Educational technology research and development, 1-26.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34007, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Liu, B., Shao, Y. F., Liu, G., & Ni, D. (2022). An Evolutionary Analysis of Relational Governance in an Innovation Ecosystem. SAGE Open, 12(2), 21582440221093044.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34008, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Liu, C., Liu, Z., & Chai, Y. (2022). Review of Virtual Simulation of Crowd Motion for Urban Emergency Management. Transportation Research Record, 03611981221141429.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34009, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Liu, J., Cao, L., Zhang, D., Chen, Z., Lian, X., Li, Y., & Zhang, Y. (2022). Optimization of Site Selection for Emergency Medical Facilities considering the SEIR Model. Computational Intelligence and Neuroscience, 2022.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34010, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Liu, J., Zhang, M., Xia, Y., Zheng, H., & Chen, C. (2022). Using agent-based modeling to assess multiple strategy options and trade-offs for the sustainable urbanization of cultural landscapes: A case in Nansha, China. Landscape and Urban Planning, 228, 104555.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Modeling, Urban Studies, Miscellaneous" + }, + { + "id": 34011, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Liu, X., Dong, J., Cui, P., Wang, M., & Guo, X. (2022). Collaborative Supply Mechanism of Government-Subsidized Rental Housing from the Perspective of Tripartite Evolutionary Game in Metropolitan Cities of China. Computational Intelligence and Neuroscience, 2022.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34012, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Liu, Y., Xiong, Z., Hu, Q., Niyato, D., Zhang, J., Miao, C., ... & Tian, Z. (2022). VRepChain: A Decentralized and Privacy-preserving Reputation System for Social Internet of Vehicles Based on Blockchain. IEEE Transactions on Vehicular Technology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34013, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Liu, Y. (2022). Energy consumption inequality in China: What can an agent-based model tell us?. Energy & Environment, 0958305X221120257.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34014, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Liu, Y., Zhang, C., Yan, Y., Zhou, X., Tian, Z., & Zhang, J. (2022). A semi-centralized trust management model based on blockchain for data exchange in iot system. IEEE Transactions on Services Computing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Blockchain, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34015, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Liu, Z., & Yang, G. (2022). Large-scale traffic flow simulation based on intelligent PSO. In MATEC Web of Conferences (Vol. 355). EDP Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Chemistry" + }, + { + "id": 34016, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Livia-Diana, I., & Delcea, C. (2022). Risk Evaluation in Public Spaces Evacuation. In Eurasian Business and Economics Perspectives (pp. 127-141). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34017, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Lu, P., Chen, D., & Li, B. (2022). Simulating Rise and Fall Cycles of Vietnam Empires. Fundamental Research.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34018, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Lu, P., Chen, D., Li, Y., Wang, X., & Yu, S. (2022). Agent-Based Model of Mass Campus Shooting: Comparing Hiding and Moving of Civilians. IEEE Transactions on Computational Social Systems.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34019, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Lu, P., Li, Y., Wen, F., & Chen, D. (2022). Social Knowledge Enhances Collective Safety: Computational Models and Simulations. IEEE Transactions on Computational Social Systems.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34020, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Lu, P., Wen, F., Li, Y., & Chen, D. (2022). Individual behaviors, social learning, and swarm intelligence: Real case and counterfactuals. Expert Systems with Applications, 207, 117878.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Social Science, Miscellaneous" + }, + { + "id": 34021, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Lu, P., Zhang, Z., Liu, C., & Li, M. (2022). Unification conditions of human civilization patterns: based on multi-agent modeling of early Chinese history (770 BC to 476 BC). Archaeological and Anthropological Sciences, 14(10), 1-16.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34022, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Lu, X., Ma, H., & Wang, Z. (2022). Analysis of OODA Loop based on Adversarial for Complex Game Environments. arXiv preprint arXiv:2203.15502.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, arXiv" + }, + { + "id": 34023, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Lu, X. (2022, December). Research on traffic state of private car in urban area based on agent cellular automata model. In International Conference on Smart Transportation and City Engineering (STCE 2022) (Vol. 12460, pp. 856-863). SPIE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Traffic, Urban Area, Agent Cellular Automata, Smart Transportation, City Engineering" + }, + { + "id": 34024, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Lu, Y., Liu, S., & Li, C. (2022). Understanding the Effect of Management Factors on Construction Workers\u2019 Unsafe Behaviors Through Agent-Based Modeling. Iranian Journal of Science and Technology, Transactions of Civil Engineering, 1-13.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34025, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Luan, Z., Zhengjun, L., & Dequn, Z. (2022). Agent-based Research on Power Absorption Simulation Analysis of Renewable Energy. Journal of System Simulation, 34(1), 170.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry" + }, + { + "id": 34026, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Lucas, L., Helikar, T., & Dauer, J. (2022). Revision as an essential step in modeling to support predicting, observing, and explaining cellular respiration system dynamics. International Journal of Science Education, 1-28.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Astronomy" + }, + { + "id": 34027, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Lungeanu, A., DeChurch, L. A., & Contractor, N. S. (2022). Leading teams over time through space: Computational experiments on leadership network archetypes. The Leadership Quarterly, 101595.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34028, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Lv, Y., Shi, M., & Hu, Q. (2022). COVID-19 SIR network modeling and prediction. Highlights in Science, Engineering and Technology, 1, 433-440.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Chemistry" + }, + { + "id": 34029, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Lyu, X., Han, Q., & de Vries, B. (2022). A hypothetical urban layout generation model for exploring land use impacts on travel behavior. Travel Behaviour and Society, 28, 317-329.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34030, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Lyubchik, O. A., Yadlovska, O. S., Vavzhenchuk, S. Y., Korolchuk, O., & Stakhiv, O. (2022). Agent-based models: an effective tool in Ukrainian state formation and legal regulation. Revista Cient\u00edfica General Jos\u00e9 Mar\u00eda C\u00f3rdova, 20(38), 341-353.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34031, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Ma, N., Huang, Z., & Qi, Y. (2022). Simulation Study on Complex Systems of Forest Biomass Power Generation Supply Chain in China. Computational Intelligence and Neuroscience, 2022.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 34032, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Ma, X., Wang, D., Zheng, N., & Zhang, S. (2022). Aggregation and Adjustment mechanisms for disaster relief task allocation with uneven distribution. Journal of Industrial & Management Optimization.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34033, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Ma, Y., & Shen, Z. (2022). Agent-Based Simulation for Decision-Making Support of Spatial Strategy for Large-Scale Shopping Center Development. In Strategic Spatial Planning Support System for Sustainable Development (pp. 101-128). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Spatial Planning, Strategy, Development" + }, + { + "id": 34034, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Ma, Y., & Shen, Z. (2022). Simulation of Urban Growth and Household Aggregation for Planning Support of Local Spatial Strategic Plan. In Strategic Spatial Planning Support System for Sustainable Development (pp. 39-72). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34035, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Ma, Y., & Shen, Z. (2022). The Environment for Accommodating Agents and Representing Urban Planning Conditions. In Strategic Spatial Planning Support System for Sustainable Development (pp. 21-38). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Urban Studies, Miscellaneous" + }, + { + "id": 34036, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Madamba, T., Moreira, R. G., Castell\u2010Perez, E., Banerjee, A., & da Silva, D. (2022). Agent\u2010based simulation of cross\u2010contamination of Escherichia coli O157: H7 on lettuce during processing and temperature fluctuations during storage in a produce facility. Part 2: Model implementation. Journal of Food Process Engineering, e13983.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34037, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Mahmood, B., & Mahmood, Y. (2022). Network-Based Method for Dynamic Burden-Sharing in the Internet of Things (IoT). In International Conference on Emerging Technology Trends in Internet of Things and Computing (pp. 79-90). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Network" + }, + { + "id": 34038, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Mahmoud, R. M., & Youssef, A. M. (2022). A computational framework for supporting architectural education of spaces\u2019 furnishing design. International Journal of Architectural Computing, 14780771221097683.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 34039, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Males, L., Sumic, D., & Rosic, M. (2022, May). A Simulation Model of Autonomous Ship Firefighting. In 2022 8th International Conference on Control, Decision and Information Technologies (CoDIT) (Vol. 1, pp. 130-134). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Control, Decision, Information Technologies" + }, + { + "id": 34040, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Malhotra, R. (2022). More Than Habitat Loss and Fragmentation: The Effect of Human-Modified Landscapes on the Spatiotemporal Use and Interactions of Mesocarnivores (Doctoral dissertation).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34041, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Malik, J., Mahdavi, A., Azar, E., Putra, H. C., Berger, C., Andrews, C., & Hong, T. (2022). Ten questions concerning agent-based modeling of occupant behavior for energy and environmental performance of buildings. Building and Environment, 109016.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34042, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Malik, S., Khan, M. A., El-Sayed, H., Khan, J., & Ullah, O. (2022). How Do Autonomous Vehicles Decide?. Sensors, 23(1), 317.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34043, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Mallick, R. B. (2022). A Probabilistic Understanding of the Effect of Voids and Layer Thickness on Interconnectivity of Voids in Asphalt Mixes: An Agent-Based Modeling Approach. Journal of Transportation Engineering, Part B: Pavements, 148(2), 06022001.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 34044, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Maltseva, S., Kornilov, V., Barakhnin, V., & Gorbunov, A. (2022). Self-Organization in Network Sociotechnical Systems. Complexity, 2022.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34045, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Mamada, R. (2022). Spatial Cournot Competitions Revisited: The Effect of the Internalization of the Costs of Point Source Pollution and Congestion by Spatial Cournot Duopolists. Available at SSRN 4221551.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34046, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Manast\u00eerschi, S., Iap\u0103scurt\u0103, V., & Bel\u00eei, A. (2022). System dynamics models for clinical anesthesia (on the example of propofol). Conferin\u0163a \u015ftiin\u0163ific\u0103 anual\u0103\" Cercetarea \u00een biomedicin\u0103 \u0219i s\u0103n\u0103tate: calitate, excelen\u021b\u0103 \u0219i performan\u021b\u0103\", 2022.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, System dynamics, Clinical anesthesia" + }, + { + "id": 34047, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Manson, S., An, L., Clarke, K. C., Heppenstall, A., Koch, J. (2022). Methodological Issues of Spatial Agent-Based Models. Journal of Artificial Societies and Social Simulation, 23(1). https://doi.org/10.18564/JASSS.4174", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34048, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Maqbool, A., Mirza, A., Afzal, F., Shah, T., Khan, W. Z., Zikria, Y. B., & Kim, S. W. (2022). System-Level Performance Analysis of Cooperative Multiple Unmanned Aerial Vehicles for Wildfire Surveillance Using Agent-Based Modeling. Sustainability, 14(10), 5927.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 34049, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Maqsood, Z., Clark, J. C., Martin, E. M., Cheung, Y. F. H., Mor\u00e1n, L. A., Watson, S. E., ... & Watson, S. P. (2022). Experimental validation of computerised models of clustering of platelet glycoprotein receptors that signal via tandem SH2 domain proteins. PLOS Computational Biology, 18(11), e1010708.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 34050, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Martin, A. A., & Barnas, A. F. (2022). Sitting ducks: Strategies to increase recruitment in common eiders (Somateria mollissima) facing polar bear (Ursus maritimus) predation.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 34051, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Mart\u00ednez, F. L., Quesada, F. J. M., & Kohl, M. (2022). Patrones de homofilia resilientes en redes de amistad juvenil: estudio de caso mediante un experimento de simulaci\u00f3n computacional. REIS: Revista Espa\u00f1ola de Investigaciones Sociol\u00f3gicas, (177), 43-68.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34052, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Mart\u00ednez, Y. N. E., Santos, F. E. B., & Chavarria, P. S. (2022). La integraci\u00f3n de las TIC en la educaci\u00f3n superior: Aprendizajes a partir del contexto covid-19. Ciencia Latina Revista Cient\u00edfica Multidisciplinar, 6(2), 4260-4277.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34053, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Mariam, S. (2022). AGENT-BASED MODELING ON PURCHASE DECISIONS: THE IMPACT OF SOCIAL MEDIA PHENOMENA. Jurnal Ekonomi, 11(03), 1749-1756.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Economics, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34054, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Mar\u00edn Guti\u00e9rrez, D. (2022). Integration of social aspects in a multi-agent platform running in a supercomputer (Bachelor's thesis, Universitat Polit\u00e8cnica de Catalunya).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 34055, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Maru, V., Krishnan, K., Nannapaneni, S., & Arishi, A. (2022). Decentralized Supply Chain Network for Emerging Issues Using Mechanism Design and Agent-Based Modeling. Industrial and Systems Engineering Review, 10(1), 28-33.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34056, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Marvuglia, A., Bayram, A., Baustert, P., Guti\u00e9rrez, T. N., & Igos, E. (2022). Agent-based modelling to simulate farmers\u2019 sustainable decisions: Farmers\u2019 interaction and resulting green consciousness evolution. Journal of Cleaner Production, 332, 129847.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34057, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Masuda, S., Bahr, K., Tsuchiya, N., & Takemori, T. (2022). Agent based simulation with data driven parameterization for evaluation of social acceptance of a geothermal development: a case study in Tsuchiyu, Fukushima, Japan. Scientific Reports, 12(1), 1-13.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34058, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Mayerhoffer, D. M., & Schulz, J. (2022). Perception and privilege. Applied Network Science, 7(1), 1-25.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34059, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Mayes, R., Owens, D., Dauer, J., & Rittschof, K. (2022). A Quantitative Reasoning Framework and the Importance of Quantitative Modeling in Biology. Applied and Computational Mathematics, 11(1), 1-17.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Quantitative Reasoning, Modeling" + }, + { + "id": 34060, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Mazzetti, P., Nativi, S., Santoro, M., Giuliani, G., Rodila, D., Folino, A., ... & Lehmann, A. (2022). Knowledge formalization for Earth Science informed decision-making: The GEOEssential Knowledge Base. Environmental Science & Policy, 131, 93-104.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Earth Science, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34061, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "McCulloch, J., Ge, J., Ward, J. A., Heppenstall, A., Polhill, J. G., & Malleson, N. (2022). Calibrating Agent-Based Models Using Uncertainty Quantification Methods. Journal of Artificial Societies and Social Simulation, 25(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34062, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "McGough, A., Kavak, H., & Mahabir, R. (2022). Revisiting Linus\u2019 Law in OpenStreetMap: An Agent-Based Approach. In International Conference on Social Computing, Behavioral-Cultural Modeling and Prediction and Behavior Representation in Modeling and Simulation (pp. 123-133). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 34063, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "McIntire, E. J., Chubaty, A. M., Cumming, S. G., Andison, D., Barros, C., Boisvenue, C., ... & Stewart, F. E. (2022). PERFICT: A Re\u2010imagined foundation for predictive ecology. Ecology Letters.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34064, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "McMullen, P. R. (2022). A Heuristic Search Approach to Multidimensional Scaling. American Journal of Operations Research, 12(5), 179-193.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34065, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Medeiros-Sousa, A. R., Laporta, G. Z., Mucci, L. F., & Marrelli, M. T. (2022). Epizootic dynamics of yellow fever in forest fragments: An agent-based model to explore the influence of vector and host parameters. Ecological Modelling, 466, 109884.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Agent-based modeling, Computer Science" + }, + { + "id": 34066, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Meles, T. H., & Ryan, L. (2022). Adoption of renewable home heating systems: An agent-based model of heat pumps in Ireland. Renewable and Sustainable Energy Reviews, 169, 112853.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34067, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Meegada, S. S., & Kandaswamy, S. (2022, April). Comparison of Viral Information Spreading Strategies in Social Media. In Advances in Social Simulation: Proceedings of the 16th Social Simulation Conference, 20\u201324 September 2021 (p. 247). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Viral Information Spreading" + }, + { + "id": 34068, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Meese, M. E., Mortuza, M. A., Wharton, M. M., Hala, D., Kaiser, K., Wells, D., ... & Quigg, A. (2022). Project Title: The Fate and Toxicity of Microplastics and Persistent Pollutants in the Shellfish and Fish of Matagorda Bay.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34069, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Mhamdi, H., Soufiene, B. O., Zouinkhi, A., Ali, O., & Sakli, H. (2022). On this page. Computational Intelligence and Neuroscience, 2, 3.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Neuroscience" + }, + { + "id": 34070, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "M\u2019hammed, S., Baudry, D., & Mustafee, N. Modelling and simulation of operation and maintenance strategy for offshore wind farms based on. Journal of Intelligent Manufacturing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34071, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Miao, Q., Lin, H., Hu, J., & Wang, X. Privacy-Preserved Mobile Crowdsensing for Intelligent Transportation Systems. Intelligent Cyber-Physical Systems for Autonomous Transportation, 267.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34072, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Mias, A. (2022). UAB Open Labs. Open Education Week.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 34073, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Miguel, L. B. J., Gonzalez-R, P. L., Jose, L., Canca, D., & Calle, M. (2022). A multi-agent approach to the truck multi-drone routing problem. Expert Systems with Applications, 116604.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34074, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Milne, R. J., Cotfas, L. A., & Delcea, C. (2022). Minimizing health risks as a function of the number of airplane boarding groups. Transportmetrica B: Transport Dynamics, 10(1), 901-922.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34075, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Minaei, M., & Vahidnia, M. H. (2022). Flood prevention solutions using remote sensing and agent-based modeling (Case study: Shoush city). Journal of Natural Environmental Hazards, 1-1.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Remote Sensing, Agent-based Modeling" + }, + { + "id": 34076, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Mirzaei, A. (2022). Development of a Dynamic Model for Health Information Seeking Behaviour (Doctoral dissertation).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34077, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": " Mo, J., & Polly, P. D. The role of dispersal, selection intensity, and extirpation risk in resilience to climate change: A trait\u2010based modelling approach. Global Ecology and Biogeography.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Climate Change" + }, + { + "id": 34078, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Mohammed, A., & Ukai, T. (2022). Agent-based modelling for spatiotemporal patterns of urban land expansion around university campuses. Modeling Earth Systems and Environment, 1-15.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34079, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Monti, C., Pangallo, M., Morales, G. D. F., & Bonchi, F. (2022). On learning agent-based models from data. arXiv preprint arXiv:2205.05052.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Physics, Computer Science" + }, + { + "id": 34080, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Moore, J.C., R.B. Boone, A. Koyama, and K. Holfeder. (2022). Enzymatic and detrital influences on the structure, function, and dynamics of spatially-explicit model ecosystems. Biochemistry.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Biochemistry" + }, + { + "id": 34081, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Monaco, G. Simionato, M. G. C. A. Cimino, G. Vaglini, S. Senatore and G. Caricato, \"Using Artificial Immune System to Prioritize Swarm Strategies for Environmental Monitoring,\" 2022 IEEE Conference on Cognitive and Computational Aspects of Situation Management (CogSIMA), 2022, pp. 104-110, doi: 10.1109/CogSIMA54611.2022.9830665. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Artificial Immune System" + }, + { + "id": 34082, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Moradi, M., Fard, K. R., & Akhlaqi, M. Y. (2022). A Recommender System Method for Children\u2019s Education Using Mobile Technology. IEEE Access.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34083, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Morales\u2010M\u00e1rquez, J., & Meloni, F. Soil fauna and its potential use in the ecological restoration of dryland ecosystems. Restoration Ecology, e13686.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology" + }, + { + "id": 34084, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Mor\u00e1n\u2010L\u00f3pez, T., Benadi, G., Lara\u2010Romero, C., Chacoff, N., Vitali, A., Pescador, D., ... & Morales, J. M. Flexible diets enable pollinators to cope with changes in plant community composition. Journal of Ecology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 34085, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Mousavi, S. F., Sepehri, M. M., Khasha, R., & Mousavi, S. H. (2022). Improving vascular access creation among hemodialysis patients: An agent-based modeling and simulation approach. Artificial Intelligence in Medicine, 102253.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Simulation, Computer Science, Medicine" + }, + { + "id": 34086, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Moya, D., Copara, D., Amores, J., Mu\u00f1oz, M., & P\u00e9rez-Navarro, \u00c1. (2022). Characterization of energy consumption agents in the residential sector of Ecuador based on a national survey and geographic information systems for modelling energy systems. Enfoque UTE, 13(2), 68-97.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34087, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Mrela, A., Sokolov, O., Osinska, V., & Duch, W. (2022). Analysis of Dynamics of Emergence and Decline of Scientific Ideas Based on Optimistic and Pessimistic Fuzzy Aggregation Norms. In Asian Conference on Intelligent Information and Database Systems (pp. 327-339). Springer, Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Fuzzy Aggregation, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34088, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Mu\u00f1oz, G. A., Gil-Costa, V., & Marin, M. (2022). Efficient simulation of natural hazard evacuation for seacoast cities. International Journal of Disaster Risk Reduction, 103300.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34089, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Muoghalu, C. N., Achebe, P. N., & Aigbodioh, F. A. (2022). Effect of Increasing Node Density on Performance of Threshold-sensitive Stable Election Protocol. Int. J. Advanced Networking and Applications, 13(06), 5183-5187.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Network Science" + }, + { + "id": 34090, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Musaeus, L. H., S\u00f8rensen, M. L. S. K., Palfi, B. S., Iversen, O. S., Klokmose, C. N., & Petersen, M. G. (2022, October). CoTinker: Designing a Cross-device Collaboration Tool to Support Computational Thinking in Remote Group Work in High School Biology. In Nordic Human-Computer Interaction Conference (pp. 1-12).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 34091, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Musaeus, L. H., Tatar, D., & Musaeus, P. (2022). Computational Modelling in High School Biology: A Teaching Intervention. Journal of Biological Education, 1-17.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 34092, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Musaeus, P. Computational Thinking-et TC p\u00e5 CT. Dansk Universitetsp\u00e6dagogisk Tidsskrift, 17(32), 137-141.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computational Thinking" + }, + { + "id": 34093, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Narayanan, B. L. (2022). Complex network theoretical approach to investigate the interdependence between factors affecting subsurface radionuclide migration (Doctoral dissertation).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34094, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Narkar, A. R., Tong, Z., Soman, P., & Henderson, J. H. (2022). Smart biomaterial platforms: Controlling and being controlled by cells. Biomaterials, 121450.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 34095, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Naugle, A., Russell, A., Lakkaraju, K., Swiler, L., Verzi, S., & Romero, V. (2022). The ground truth program: simulations as test beds for social science research methods. Computational and Mathematical Organization Theory, 1-19.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34096, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Nazir, M., Haque, H. M. U., & Saleem, K. (2022). A semantic knowledge based context-aware formalism for smart border surveillance system. Mobile Networks and Applications, 27(5), 2036-2048.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34097, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Nelissen, R. M., Mu\u00f1oz, I. A., Mu\u00f1oz, D. C., Kramer, M. R., & Hofstede, G. J. (2022, April). Efficient Redistribution of Scarce Resources Favours Hierarchies. In Advances in Social Simulation: Proceedings of the 16th Social Simulation Conference, 20\u201324 September 2021 (p. 3). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34098, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Nesar, A. B., Mahmud, T., & Hossain, F. (2022, June). Simulating the Behaviour and Displacement of Women in Water-Stressed Areas. In 2022 IEEE World AI IoT Congress (AIIoT) (pp. 372-378). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34099, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Nespeca, V., Comes, T., & Brazier, F. (2022, April). A Methodology to Develop Agent-Based Models for Policy Design in Socio-Technical Systems Based on Qualitative Inquiry. In Advances in Social Simulation: Proceedings of the 16th Social Simulation Conference, 20\u201324 September 2021 (p. 453). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Methodology, Qualitative Inquiry, Social Simulation" + }, + { + "id": 34100, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Netz, C., Ramesh, A., Gismann, J., Gupte, P. R., & Weissing, F. J. (2022). Details matter when modelling the effects of animal personality on the spatial distribution of foragers. Proceedings of the Royal Society B, 289(1970), 20210903.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Animal Personality, Foraging" + }, + { + "id": 34101, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Neves, J. E. D. A., Pedro, P. S. M., de Freitas Gomes Hernandez, M., & Junior, L. A. F. (2023). Simulation of the Implementation of Domestic Solar Systems Using Multi-agent Systems from Web Scraping. In Brazilian Technology Symposium (pp. 88-96). Springer, Cham. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34102, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Neuenfeldt-J\u00fanior, A., & de Oliveira, B. (2022). An agent-based approach to simulate the containership stowage problem. Soft Computing, 1-15.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34103, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Neumayr, R. (2022). Agent-Based Semiology-Simulating office occupation patterns with conversation-based social models.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34104, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Nezamoddini, N., & Gholami, A. (2022). A Survey of Adaptive Multi-Agent Networks and Their Applications in Smart Cities. Smart Cities, 5(1), 318-347.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34105, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Ngo, V. (2022). SOCIAL NETWORK AND THE DIFFUSION OF INVESTMENT BELIEFS: THEORETICAL EXPERIMENT AND THE CASES OF GAMESTOP SAGA. Applied Finance Letters, 11, 36-49.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Social Science" + }, + { + "id": 34106, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Niehorster-Cook, L. M. (2022). The Spreading-Activation Framework Does not Explain the Effects of Degree and Clustering on Spoken Word Recognition. In Conference of the Computational Social Science Society of the Americas (pp. 112-123). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34107, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Niemann, J. H. (2022). Learning Reduced Models for Large-Scale Agent-Based Systems (Doctoral dissertation).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 34108, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Nikravan, M., & Kashani, M. H. (2022). A review on trust management in fog/edge computing: Techniques, trends, and challenges. Journal of Network and Computer Applications, 103402.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34109, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Nizamutdinov, M. M., Akhmetzyanova, M. I., & Aitova, Y. S. (2022). Modeling approaches and tools of the mutual influence of the migration activity of the population and economic development of the territories. \u042d\u043a\u043e\u043d\u043e\u043c\u0438\u043a\u0430 \u043f\u0440\u043e\u043c\u044b\u0448\u043b\u0435\u043d\u043d\u043e\u0441\u0442\u0438, 15(3), 368.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Economics, History, Physics, Chemistry, Urban Studies, Miscellaneous" + }, + { + "id": 34110, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Noeldeke, B. (2022). Promoting Agroforestry in Rwanda: the Effects of Policy Interventions Derived from the Theory of Planned Behaviour (No. dp-693). Leibniz Universit\u00e4t Hannover, Wirtschaftswissenschaftliche Fakult\u00e4t.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Policy, Theory of Behaviour" + }, + { + "id": 34111, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Noeldeke, B. C. E. (2022). Simulating human behaviour in social-ecological systems: farmers\u2019 adoption of agricultural innovations (Doctoral dissertation, Hannover: Institutionelles Repositorium der Leibniz Universit\u00e4t Hannover).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34112, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Nogare, D. D., Chitnis, A.B. (2022). NetLogo agent-based models as tools for understanding the self-organization of cell fate, morphogenesis and collective migration of the zebrafish posterior Lateral Line primordium ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34113, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Norman, M. D., Silvey, P. E., Koehler, M. T., & Joe, K. C. (2022). Engineering Decentralized Enterprises: Emergent Mission Accomplishment Without Centralized Command and Control. In Conference of the Computational Social Science Society of the Americas (pp. 124-151). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34114, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Norouzi, D., Bafandeh Zendeh, A., & Honarmand Azimi, M. (2022). Modeling of overdue receivables in the city bank Using factor-based simulation (Northwestern provinces of the country). Journal of System Management.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34115, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Norton, D. E. (2022). A Course on Mathematical Modeling for the Life Sciences. PRIMUS, 32(2), 154-167.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Mathematics" + }, + { + "id": 34116, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Notestine, J. (2022). Sensitivity and Active Subspace Analysis. North Carolina State University Dissertation. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34117, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Nouri, A., Saghafian, B., Bazargan-Lari, M. R., Delavar, M., & Hassanjabbar, A. (2022). Impact of Penalty Policy on Farmers\u2019 Overexploitation Based on Agent-Based Modeling Framework. Journal of Water Resources Planning and Management, 148(5), 04022015.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Agent-Based Modeling, Computer Science, Ecology" + }, + { + "id": 34118, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Nourisa, J., Zeller\u2010Plumhoff, B., & Willumeit\u2010R\u00f6mer, R. (2022). CppyABM: An open\u2010source agent\u2010based modeling library to integrate C++ and Python. Software: Practice and Experience.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Modeling" + }, + { + "id": 34119, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Novakovic, A., & Marshall, A. H. (2022). The CP-ABM Approach for Modelling COVID-19 Infection Dynamics and Quantifying the Effects of Non-Pharmaceutical Interventions. Pattern Recognition, 108790.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34120, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Nugroho, A. A., & Asrol, M. (2022). The Impact of Effectiveness of Luggage Arrangement on the Airplane Passengers' Boarding Process. Periodica Polytechnica Transportation Engineering.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34121, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Nurwidiana, N., Sopha, B. M., & Widyaparaga, A. (2022). Simulating Socio-Technical Transitions of Photovoltaics Using Empirically Based Hybrid Simulation-Optimization Approach. Sustainability, 14(9), 5411.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34122, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Nwokoye, C. H., & Madhusudanan, V. (2022). Epidemic Models of Malicious-Code Propagation and Control in Wireless Sensor Networks: An Indepth Review. Wireless Personal Communications, 1-30.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34123, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Nwokoye, C. H., Mbeledogu, N. N., Paul, R. U., & Ugwunna, C. (2022, October). Complementing malware epidemic agent-based models with routing protocols of communication networks using NetLogo. In\u00a0International Conference on Information and Communication Technology for Competitive Strategies\u00a0(pp. 833-847). Singapore: Springer Nature Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34124, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "NYAMI, R., TSHIBUABUA, F., BUSHABU, O. K., BULEWU, B. I., KABAMBI, J. N., ILONDO, J. M., & KABWIKA, J. M. (2022). Analyse et Conception par la me\u0301thode GAIA d\u2019un Syste\u0300me Multi-Agent pour la simulation de l\u2019assainissement de l\u2019environnement urbain en RDC. Revue Internationale du Chercheur, 3(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34125, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Obiako, I. V. (2022). Toward a Bio-Inspired System Architecting Framework: Simulation of the Integration of Autonomous Bus Fleets and Alternative Fueling Infrastructures in Closed Sociotechnical Environments (Doctoral dissertation, University of South Alabama).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34126, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Ofi\u021beru, I. D., & Picioreanu, C. (2022). No model is perfect, but some are useful. Science, 376(6596), 914-916.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Science" + }, + { + "id": 34127, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Ogegbo, A. A., & Ramnarain, U. (2022). A systematic review of computational thinking in science classrooms. Studies in Science Education, 58(2), 203-230.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computational Thinking" + }, + { + "id": 34128, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Ogunsakin, R., & Mehandjiev, N. (2022). Towards Autonomous Production: Enhanced Meta-heuristics Algorithm. Procedia Computer Science, 200, 1575-1581.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 34129, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Oliver II, E. H. (2022). Assessing Critical Supply Chain Resilience against Critical Infrastructure Disruptions: A Model-Based Systems Engineering Perspective (Doctoral dissertation, The George Washington University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34130, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Oliveira, H., Mendes, F., & Henriques, A. (2022). A investiga\u00e7\u00e3o sobre o ensino e a aprendizagem de temas matem\u00e1ticos publicada em 30 anos da revista Quadrante. Quadrante, 31(2), 32-62.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34131, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Orozco-Rivera, J., Ceballos, Y., & Castillo-Grisales, J. A. (2022). An\u00e1lisis del alto flujo vehicular para una v\u00eda de acceso a Medell\u00edn usando simulaci\u00f3n basada en agentes. Revista UIS Ingenier\u00edas, 21(1), 73-82.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34132, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Pacaux-Lemoine, M. P., Sallak, M., Sacile, R., Flemisch, F., & Leit\u00e3o, P. (2022). Introduction to the special section humans and industry 4.0. Cognition, Technology & Work, 1-5.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34133, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Papamichael, I., Pappas, G., Siegel, J. E., & Zorpas, A. A. (2022). Unified waste metrics: A gamified tool in next-generation strategic planning. Science of The Total Environment, 154835.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34134, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Pavlovi\u0107, B., Ivezi\u0107, D., & \u017divkovi\u0107, M. (2022). Transition pathways of household heating in Serbia: Analysis based on an agent-based model. Renewable and Sustainable Energy Reviews, 163, 112506.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34135, + "sort": null, + "year": 2022, + "is_ccl": true, + "reference": "Peel, A., Hao, D., Horn, M.S., Wilensky, U. (2022). How teachers integrated CT into science and math co-designed curricular units. Paper submitted to the Annual Meeting of the American Educational Research Association (AERA) 2022. Chicago, IL. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34136, + "sort": null, + "year": 2022, + "is_ccl": true, + "reference": "Peel, A., Kelter, J., Zhao, L., Horn, M.S., Wilensky, U.(2022). Conjecture Mapping: An Approach to Conducting Design-Based Research with Embedded Co-design Cycles. Paper accepted to the Annual Meeting of the American Educational Research Association (AERA) 2022. San Diego, CA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34137, + "sort": null, + "year": 2022, + "is_ccl": true, + "reference": "Peel, A., Kelter, J., Zhao, L., Horn, M.S., & Wilensky, U. (2022). A Design-Based Research Methodology Utilizing Conjecture Mapping to Frame Embedded Co-design Cycles. the 2022 Annual Meeting of the National Association of Research in Science Teaching (NARST). Vancouver, British Columbia.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Research Methodology, Design, Economics" + }, + { + "id": 34138, + "sort": null, + "year": 2022, + "is_ccl": true, + "reference": "Peel, A., Kelter, J., Zhao, L., Horn, M., & Wilensky, U. (2022). Designing learning environments with iterative conjecture mapping to support teachers\u2019 computational thinking learning. Proceedings of the International Conference for the Learning Sciences (ICLS 2022), Hiroshima, Japan: ISLS.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34139, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Pedroso Fabrin, B. H., & Ferrari, D. (2022). Investigation of fomite exposure risk to infectious diseases during aircraft boarding process using agent-based modeling. In AIAA AVIATION 2022 Forum (p. 3617).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34140, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Peel, A., Sadler, T. D., & Friedrichsen, P. (2022). Algorithmic Explanations: an Unplugged Instructional Approach to Integrate Science and Computational Thinking. Journal of Science Education and Technology, 1-14. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computation, Technology" + }, + { + "id": 34141, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Pellegrino, M. (2022). Evaluation and comparison of calibration techniques for urban mobility behaviour ABM (Master's thesis).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34142, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Pellegrino, M., Lombardo, G., Cagnoni, S., & Poggi, A. (2022). High-Performance Computing and ABMS for High-Resolution COVID-19 Spreading Simulation. Future Internet, 14(3), 83.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 34143, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Peng, Y., Lopez, J. M. R., Santos, A. P., Mobeen, M., & Scheffran, J. (2022). Simulating exposure-related human mobility behavior at the neighborhood-level under COVID-19 in Porto Alegre, Brazil. Cities, 104161.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34144, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Pereira, J. C., Ferrari, D., Giarola, R., & Pedroso Fabrin, B. H. (2022). Modeling Panic Behavior in Aircraft Evacuation Simulation. In AIAA AVIATION 2022 Forum (p. 3830).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34145, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Perez, O. (2022). Transnational networked authority. Leiden Journal of International Law, 1-29.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34146, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "P\u00e9rez-Mart\u00ednez, H., Bauz\u00e1, F. J., Soriano-Pa\u00f1os, D., G\u00f3mez-Garde\u00f1es, J., & Flor\u00eda, L. M. (2022). Emergence, survival, and segregation of competing gangs. Chaos: An Interdisciplinary Journal of Nonlinear Science, 32(8), 083114.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34147, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Ponziani, F. A. (2022). Water-Based Shields Deployment on Terrain during Wildfire Spread: A Modelling Approach Using Distributed Information through Autonomous Agents. Environmental Sciences Proceedings, 17(1), 83. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 34148, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Phillips, C. V., & Glover, M. (2022). How Much Ongoing Smoking Reduction is an Echo of the Initial Mass Education?. American Journal of Health Behavior, 46(1), 84-95.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34149, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Pietzsch B.W., Peter F.J. and Berger U. (2021) The Effect of Sanitation Felling on the Spread of the European Spruce Bark Beetle\u2014An Individual-Based Modeling Approach. Front. For. Glob. Change 4:704930. https://doi.org/10.3389/ffgc.2021.704930", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Sanitation, Modeling, Ecology, Urban Studies" + }, + { + "id": 34150, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Pietzsch, B.W., Wudel, C. & Berger, U. Nonparametric upscaling of bark beetle infestations and management from plot to landscape level by combining individual-based with Markov chain models. Eur J Forest Res (2022). https://doi.org/10.1007/s10342-022-01512-1 ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Management" + }, + { + "id": 34151, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Pike, T. D., Golden, S., Lowdermilk, D., Luong, B., & Rosado, B. (2022). Growing the simulation ecosystem: introducing Mesa Data to provide transparent, accessible, and extensible data pipelines for simulation development. SIMULATION, 00375497221077425.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Data Pipelines, Data Engineering, Computer Science" + }, + { + "id": 34152, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Piou, C. (2022). La mod\u00e9lisation \u00e9cologique pour la gestion des populations de locustes (Doctoral dissertation, Universit\u00e9 de Montpellier).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology" + }, + { + "id": 34153, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Pitman, L., Nandakumar, G., & Richman, J. (2022). A Gamified Synthetic Environment for Evaluation of Counter-disinformation Solustions. Journal of Simulation Engineering.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Engineering, Economics" + }, + { + "id": 34154, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Plikynas, D., Miliauskas, A., Lau\u017eikas, R., Dulskis, V., & Sakalauskas, L. (2022). The cultural impact on social cohesion: an agent-based modeling approach. Quality & Quantity, 1-32.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34155, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Poaquiza Yumbulema, K. M. (2022). Modelizaci\u00f3n basada en el individuo de un reactor PFR de lodos activados en fase aerobia y anaerobia utilizando el programa Netlogo (Bachelor's thesis, Quito: UCE).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 34156, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Prandi, L., & Primiero, G. (2022). A logic for biassed information diffusion by paranoid agents in social networks. Journal of Logic and Computation.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34157, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Prata, J. C., Silva, C., Serpa, D., Soares, A. M., Gravato, C., & Silva, A. L. P. Mechanisms Influencing the Impact of Microplastics on Freshwater Benthic Invertebrates: Uptake Dynamics and Adverse Effects on Chironomus Riparius. Available at SSRN 4223058.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Microplastics, Invertebrates, Freshwater" + }, + { + "id": 34158, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Pruett, L. J., Taing, A. L., Singh, N. S., Peirce, S. M., & Griffin, D. R. (2022). In silico optimization of heparin microislands in microporous annealed particle (MAP) hydrogel for endothelial cell migration. Acta Biomaterialia.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, In silico optimization, Microgeometry, Heparin, Microporous annealed particle, Endothelial cell migration" + }, + { + "id": 34159, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Qiu, H., Chen, Y., Zhang, H., Yi, W., & Li, Y. (2022). Evolutionary digital twin model with an agent-based discrete-event simulation method. Applied Intelligence, 1-17.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34160, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Queen, O., Jodoin, V., Pearcy, L. B., & Strickland, W. C. (2022). Agent-based Dynamics of a SPAHR Opioid Model on Social Network Structures. arXiv preprint arXiv:2202.12261.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Social Science, Education" + }, + { + "id": 34161, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Raab, R., Lenger, K., Stickler, D., Granigg, W., & Lichtenegger, K. (2022, May). An Initial Comparison of Selected Agent-Based Simulation Tools in the Context of Industrial Health and Safety Management. In Proceedings of the 2022 8th International Conference on Computer Technology Applications (pp. 106-112).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 34162, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Rabb, N., Cowen, L., de Ruiter, J. P., & Scheutz, M. (2022). Cognitive cascades: How to model (and potentially counter) the spread of fake news. PloS one, 17(1), e0261811.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34163, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Radeef, H. R., Hassan, N. A., Abidin, A. R. Z., Mahmud, M. Z. H., Ismail, C. R., Abbas, H. F., & Mashros, N. (2022). Mixture design and test parameter effect on fracture performance of asphalt: a review. ASEAN Engineering Journal, 12(1), 27-39.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Fracture performance, Asphalt, Engineering, Review" + }, + { + "id": 34164, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Radzvilas, M., De Pretis, F., Peden, W., Tortoli, D., & Osimani, B. (2022). Incentives for Research Effort: An Evolutionary Model of Publication Markets with Double-Blind and Open Review. Computational Economics, 1-44.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34165, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Ramadhana, W., Astawaa, I. G. S., Astutia, L. G., Putria, L. A. A. R., Suputraa, I. P. G. H., & Santiyasaa, I. W. Pengembangan Aplikasi Optimasi Rute Destinasi Wisata di Banyuwangi Menggunakan Modern Android Development (MAD) Pattern. Jurnal Elektronik Ilmu Komputer Udayana p-ISSN, 2301, 5373.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Miscellaneous" + }, + { + "id": 34166, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "RAHMANI, A., & KOHILI, M. (2022). Mod\u00e9lisation et simulation syst\u00e8me multi-agent de la Propagation d\u2019une \u00e9pid\u00e9mie covid-19 (Doctoral dissertation, UNIVERSITE AHMED DRAIA-ADRAR).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34167, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Rahmoeller, M., & Steinweg, J. M. (2022). Implementation of a New Quantitative Biology Course: Assessment of Students\u2019 Abilities and Confidence. PRIMUS, 32(3), 346-366.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Assessment, Quantitative Biology, Education" + }, + { + "id": 34168, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Rajbanshi, B., & Guruacharya, A. (2022). Panama: An Open-Source Educational App for Ion Channel Biophysics Simulation. Frontiers in neuroinformatics, 16.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Physics, Chemistry" + }, + { + "id": 34169, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Rajendran, V., Ramasamy, R. K., & Mohd-Isa, W. N. (2022). Improved Eagle Strategy Algorithm for Dynamic Web Service Composition in the IoT: A Conceptual Approach. Future Internet, 14(2), 56.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34170, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Ram\u00edrez-\u00c1vila, G. M., Depick\u00e8re, S., Deneubourg, J. L., & Kurths, J. (2022). A simple game and its dynamical richness for modeling synchronization in firefly-like oscillators. The European Physical Journal Special Topics, 1-10.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Dynamical Systems, Physics, Miscellaneous" + }, + { + "id": 34171, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Rankin, Naomi. (2022). An Agent-Based Model of COVID-19 on the Diamond Princess Cruise Ship. SIAM Undergraduate Research Online. 15. 10.1137/21S1462520. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 34172, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Rappel, O., Ben-Asher, J., & Bruckstein, A. (2022). Exploration and Coverage with Swarms of Settling Agents. arXiv preprint arXiv:2209.05512.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 34173, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Rates, C. A., Mulvey, B. K., Chiu, J. L., & Stenger, K. (2022). Examining ontological and self-monitoring scaffolding to improve complex systems thinking with a participatory simulation. Instructional Science, 1-23.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34174, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Ray, S. K., Alani, M. M., & Ahmad, A. (2022). Big Data for Educational Service Management. In Big Data and Blockchain for Service Operations Management (pp. 139-161). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34175, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Razzaq, S., Dar, A. R., Shah, M. A., Khattak, H. A., Ahmed, E., El-Sherbeeny, A. M., ... & Rauf, H. T. (2022). Multi-Factor Rear-End Collision Avoidance in Connected Autonomous Vehicles. Applied Sciences, 12(3), 1049.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34176, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Razzouqi, M., & Boulmakoul, A. Multiagent Modeling for Pedestrian Risk Assessment. In Smart Trajectories (pp. 317-330). CRC Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34177, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Reda, M., No\u00ebl, C., Settembre, N., Chambert, J., Lejeune, A., Rolin, G., & Jacquet, E. (2022). An agent-based model of vibration-induced intimal hyperplasia. Biomechanics and Modeling in Mechanobiology, 1-25.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Mechanobiology" + }, + { + "id": 34178, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Regnath, F., Berger, C., & Mahdavi, A. (2022, May). The impact of occupants' energy awareness and thermal preferences on buildings' performance. In CLIMA 2022 conference.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34179, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Reinhardt, O., Warnke, T., & Uhrmacher, A. M. (2022). A Language for Agent-based Discrete-event Modeling and Simulation of Linked Lives. ACM Transactions on Modeling and Computer Simulation (TOMACS), 32(1), 1-26.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Modeling and Simulation, Economics" + }, + { + "id": 34180, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Reinhardt, O., Warnke, T., & Uhrmacher, A. M. (2022). Agent-Based Modelling and Simulation with Domain-Specific Languages. In Towards Bayesian Model-Based Demography (pp. 113-134). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Simulation, Demography" + }, + { + "id": 34181, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Ribas-Xirgo, L. (2022). A state-based multi-agent system model of taxi fleets. Multimedia Tools and Applications, 1-20.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34182, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Ribeiro, S., Breda, A., & Rocha, E. (2022). COMPUTATIONAL THINKING IN UPPER-SECONDARY EDUCATION: A SYSTEMATIC LITERATURE REVIEW. INTED2022 Proceedings, 2650-2659.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computational Thinking" + }, + { + "id": 34183, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Richman, J., Pitman, L., & Nandakumar, G. S. (2022). A Gamefied Synthetic Environment for Evaluation of Counter-Disinformation Solutions. Journal of Simulation Engineering, 3, 7-1.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation Engineering, Computer Science, Economics, Physics, Chemistry, Ecology" + }, + { + "id": 34184, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Rivera, M., Toledo-Jacobo, L., Romero, E., Oprea, T. I., Moses, M. E., Hudson, L. G., ... & Grimes, M. M. (2022). Agent-based modeling predicts Rac1 is critical for ovarian cancer metastasis. Molecular Biology of the Cell, mbc-E21.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Molecular Biology, Modeling" + }, + { + "id": 34185, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Rivera-Rogel, D., Cajamarca, A. O., & Beltr\u00e1n-Flandoli, A. M. (2022). Experiencia de TV educativa en Ecuador en el marco de la pandemia. Edi\u00e7\u00e3o/Edition, 265.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34186, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Robeva, R., Comar, T. D., & Eaton, C. D. (2022). Can We Bridge the Gap? Mathematics and the Life Sciences, Part 1\u2013Calculus-Based Modules, Programs, Curricula. PRIMUS, 32(2), 117-123.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Mathematics\nBiology" + }, + { + "id": 34187, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Robins, A., Burrows, A., & Borowczak, M. (2022, August). On the Development of Cybersecurity and Computing Centric Professional Developments and the Subsequent Implementation of Topics in K12 Lesson Plans (RTP). In 2022 ASEE Annual Conference & Exposition.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34188, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Robles Cuesta, T. M. (2022). Modelizaci\u00f3n basada en el individuo utilizando NetLogo de un reactor biol\u00f3gico de membrana (MBR) aerobio (Bachelor's thesis, Quito: UCE).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 34189, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "R\u00f6chert, D., Cargnino, M., & Neubaum, G. (2022). Two sides of the same leader: an agent-based model to analyze the effect of ambivalent opinion leaders in social networks. Journal of Computational Social Science, 1-47.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 34190, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Roci, M., Salehi, N., Amir, S., Shoaib-ul-Hasan, S., Asif, F. M., Miheli\u010d, A., & Rashid, A. (2022). Towards Circular Manufacturing Systems implementation: A Complex Adaptive Systems perspective using modelling and simulation as a quantitative analysis tool. Sustainable Production and Consumption.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34191, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Rodriguez-Ulloa, R. (2022). Cybernetic governance of the Peruvian State: a proposal. AI & SOCIETY, 1-23.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34192, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Rojas-Dom\u00ednguez, A., Arroyo-Duarte, R., Rinc\u00f3n-Vieyra, F., & Alvarado-Mentado, M. (2022). Modeling cancer immunoediting in tumor microenvironment with system characterization through the ising-model Hamiltonian. BMC bioinformatics, 23(1), 1-25.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Bioinformatics, System Characterization" + }, + { + "id": 34193, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Romanowska, I., Carrignon, S., Coto-Sarmiento, M., Montanier, J. M., & Rubio-Campillo, X. (2022). From Counting Pots to Reconstructing Economy: Computational Tools Developed in the EPNet Project. Arqueolog\u00eda y T\u00e9chne: M\u00e9todos formales, nuevos enfoques: Archaeology and Techne: Formal methods, new approaches, 27.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34194, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Romero Romero, M. H. (2022). Modelizaci\u00f3n del ciclo de vida de la mosca soldado negro (Hermetia illucens) desarroll\u00e1ndose sobre desechos org\u00e1nicos (Bachelor's thesis, Quito: UCE).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 34195, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Rubio, M. \u00c1. G., Mill\u00e1n, N. D. C. O., Soto, M. D. C. S., & Parra, J. M. F. (2022). La simulaci\u00f3n computacional como propuesta para el apoyo en la toma de decisiones contra la deserci\u00f3n escolar en Tijuana Baja California. Revista Ib\u00e9rica de Sistemas e Tecnologias de Informa\u00e7\u00e3o, (E47), 277-287.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34196, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Rukomojnikov, K. P., Sergeeva, T. V., Gilyazova, T. A., & Komisar, V. P. (2022, May). Computer modeling to support management and organizational decisions in the use of a forest harvester. In Computer Applications for Management and Sustainable Development of Production and Industry (CMSD2021) (Vol. 12251, pp. 144-148). SPIE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 34197, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Ruiz-Ledezma, E. R., Acosta-Magallanes, F., & del Socorro Valero-C\u00e1zarez, M. (2022). Una Aproximaci\u00f3n Interdisciplinar STEM con Recursos Tecnol\u00f3gicos para el Tratamiento de Conceptos de F\u00edsica y Matem\u00e1ticas. Cultura Cient\u00edfica y Tecnol\u00f3gica, 19(2), E13-E22. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Physics, Mathematics, Biology, Chemistry, Computer Science, Economics, History, Ecology, Miscellaneous" + }, + { + "id": 34198, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Rup, C., Bajic, E., & Mekki, K. (2022, October). Snowball: An Asynchronous Probabilistic Protocol for Neighbour Discovery in Mobile BLE Network. In IEEE 8th World Forum on Internet of Things.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34199, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Saba, J., Langbeheim, E., Hel\u2010Or, H., & Levy, S. T. (2022). Identifying aspects of complex and technological systems in the mental models of students who constructed computational models of electric circuits. Journal of Research in Science Teaching.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34200, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Sadaf, M., Jabbar, A., & Zaman, A. (2022). An An Agent Based Model for Combining the Climatic, Physical and Behavioral Response to Logging, Salinity, and Farmers Earnings in Irrigated Agriculture of Pakistan. Pakistan Journal of Economic Studies (PJES), 5(1), 135-165.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34201, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Saeed, A. K. (2022). Agent-based simulations on Catalan interprovincial migrations. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34202, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Sagar, S., Mahmood, A., Sheng, Q. Z., Pabani, J. K., & Zhang, W. E. (2022). Understanding the Trustworthiness Management in the Social Internet of Things: A Survey. arXiv preprint arXiv:2202.03624.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 34203, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Saha, B., Mart\u00ednez-Garc\u00eda, M., Bhattacharya, S. N., & Joshi, R. (2022). Overcoming Choice Inertia through Social Interaction\u2014An Agent-Based Study of Mobile Subscription Decision. Games, 13(3), 47.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Social Science" + }, + { + "id": 34204, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Salau, K. R., Baggio, J. A., Shanafelt, D. W., Janssen, M. A., Abbott, J. K., & Fenichel, E. P. (2022). Taking a moment to measure networks\u2014an approach to species conservation. Landscape Ecology, 1-19.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34205, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Salawu, G. A. (2022). The impact of disruptive technology on the manufacturing process, and productivity, in an advanced manufacturing environment (Doctoral dissertation).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34206, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Saleem, K., Saleem, M., Zeeshan, R., Javed, A. R., Alazab, M., Gadekallu, T. R., & Suleman, A. (2022). Situation-aware BDI Reasoning to Detect Early Symptoms of Covid 19 using Smartwatch. IEEE Sensors Journal.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Epidemiology" + }, + { + "id": 34207, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Salmon, P. M., Stanton, N. A., Walker, G. H., Hulme, A., Goode, N., Thompson, J., & Read, G. J. (2022). Agent-Based Modelling (ABM). In Handbook of Systems Thinking Methods (pp. 253-269). CRC Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34208, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "S\u00e0nchez-Marr\u00e8, M. (2022). Tools for IDSS Development. In Intelligent Decision Support Systems (pp. 533-582). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34209, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Santos, M. V., Mota, I., & Campos, P. (2022). Analysis of online position auctions for search engine marketing. Journal of Marketing Analytics, 1-17.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34210, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": " Sanz, V., & Urquia, A. (2022). Combining PDEVS and Modelica for describing agent-based models. SIMULATION, 00375497221094873.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, PDEVS, Modelica, Simulation" + }, + { + "id": 34211, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Sarin, A. (2022). The Kolam Drawing: A Point Lattice System. Design Issues, 38(3), 34-54.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34212, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Sarnatskyi, V., & Baklan, I. (2023). CTrace: Language for Definition of Epidemiological Models with Contact-Tracing Transmission. In International Scientific Conference \u201cIntellectual Systems of Decision Making and Problem of Computational Intelligence\u201d (pp. 426-448). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Epidemiology" + }, + { + "id": 34213, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Scharf, A., Mitteldorf, J., Armstead, B., Schneider, D., Jin, H., Kocsisova, Z., ... & Kornfeld, K. (2022). A laboratory and simulation platform to integrate individual life history traits and population dynamics. Nature Computational Science, 2(2), 90-101.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Science" + }, + { + "id": 34214, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Schimpf, C., & Castellani, B. (2022). Approachable modeling and smart methods: a new methods field of study. International Journal of Social Research Methodology, 1-15.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34215, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Schmitt, J. (2022). Von komplexen Systemen und theoretischen Riesen. In Mechanismen der Polarisierung von Parteiensystemen (pp. 115-301). Springer VS, Wiesbaden.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Theory, System" + }, + { + "id": 34216, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Schneider, A. (2022). Meinungsdynamik und-manipulation durch Social Bots: Eine Untersuchung sozialer Online-Netzwerke auf Basis eines agentenbasierten Modells (Vol. 28). Tectum Wissenschaftsverlag.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34217, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Schooltink, F. (2022). A simulation of the ecological impact of three smartphone strategies (Bachelor's thesis, University of Twente).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34218, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Schroeder, S. A., Vendome, C., Giabbanelli, P. J., & Montfort, A. M. (2022, December). Towards reusable building blocks to develop COVID-19 simulation models. In 2022 Winter Simulation Conference (WSC) (pp. 569-580). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 34219, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Schutte, S., & Kelling, C. (2022). A Monte Carlo analysis of false inference in spatial conflict event studies. PloS one, 17(4), e0266010.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Archaeology" + }, + { + "id": 34220, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Seid, E. A., & Jin, K. Y. (2022). Agent-Based Modeling for Market Penetration of Electric Vehicles. \ub300\ud55c\uc0b0\uc5c5\uacf5\ud559\ud68c \ucd98\uacc4\uacf5\ub3d9\ud559\uc220\ub300\ud68c \ub17c\ubb38\uc9d1, 766-779.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34221, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Sells, S. N., Mitchell, M. S., Ausband, D. E., Luis, A. D., Emlen, D. J., Podruzny, K. M., & Gude, J. A. (2022). Economical defence of resources structures territorial space use in a cooperative carnivore.\u00a0Proceedings of the Royal Society B,\u00a0289(1966), 20212512.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Miscellaneous" + }, + { + "id": 34222, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Semboloni, F. (2022). From complex dynamics to the architecture of the city. In Lake Como School of Advanced Studies Complexity and Emergence: Ideas, Methods, with special attention to Economics and Finance (pp. 137-162). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34223, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "\u015eendurur, P., & Sendurur, E. (2022). Students as Gamers: Design, Code, and Play. In Handbook of Research on Acquiring 21st Century Literacy Skills Through Game-Based Learning (pp. 868-887). IGI Global.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Game-Based Learning, Literacy Skills, Research" + }, + { + "id": 34224, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Shaaban, M., Scheffran, J., Elsobki, M. S., & Azadi, H. (2022). A Comprehensive Evaluation of Electricity Planning Models in Egypt: Optimization versus Agent-Based Approaches. Sustainability, 14(3), 1563.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34225, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Shane, R. (2022, September). Revisiting Linus\u2019 Law in OpenStreetMap: An Agent-Based Approach. In Social, Cultural, and Behavioral Modeling: 15th International Conference, SBP-BRiMS 2022, Pittsburgh, PA, USA, September 20\u201323, 2022, Proceedings (Vol. 13558, p. 123). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34226, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Shapiro, B., & Crooks, A. (2022). Drone strikes and radicalization: an exploration utilizing agent-based modeling and data applied to Pakistan. Computational and Mathematical Organization Theory, 1-19.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34227, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Sharma, D., Chaturvedi, S., Chaudhary, V., Kaul, A., & Mishra, A. K. (2022). Emerging Scope of Computer-Aided Drug Design in Targeting ROS in Cancer Therapy.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 34228, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Shen, Y., Yang, F., Gao, M., & Dong, W. (2022). Learning Individual Interactions from Population Dynamics with Discrete-Event Simulation Model. arXiv preprint arXiv:2205.02332.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Social Science, Education, Epidemiology" + }, + { + "id": 34229, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Shiang, C. W., & Hussain, N. (2022). Modelling of Crowd Evacuation with Communication Strategy using Social Force Model. Journal of Optimization in Industrial Engineering, 15(1), 233-241.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34230, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Shin, H. (2022). Quantifying the Health Effects of Exposure to Non-Exhaust Road Emissions using Agent-based Modelling (ABM). MethodsX, 101673.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34231, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Shin, H., & Bithell, M. (2022). Exposure to Non-exhaust Emission in Central Seoul Using an Agent-based Framework. In Advances in Social Simulation (pp. 343-354). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Social Science, Economics" + }, + { + "id": 34232, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Shin, H. C., Vallury, S., Janssen, M. A., & Yu, D. J. (2022). Joint effects of voluntary participation and group selection on the evolution of altruistic punishment. PloS one, 17(5), e0268019.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34233, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Shin, J., Dobson, G. B., Carley, K. M., & Carley, L. R. (2022). OSIRIS: Organization Simulation in Response to Intrusion Strategies. In International Conference on Social Computing, Behavioral-Cultural Modeling and Prediction and Behavior Representation in Modeling and Simulation (pp. 134-143). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 34234, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Shoger, J. L. (2025). From Analogue to Digital Command and Control Decision-Making: The Law of Requisite Variety and Fuzzy Methods in Quantifying Situation Assessment (Doctoral dissertation, State University of New York at Binghamton).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34235, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Shu, Q., R\u00f6tzer, T., Detter, A., & Ludwig, F. (2022). Tree Information Modeling: A Data Exchange Platform for Tree Design and Management. Forests 2022, 13, 1955.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34236, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Shukla, M. K., Singh, L., Vidya, S., Quasim, H., & Bhandari, R. (2022). Pollination System for Greenhouse Flowering Plants Using Nano Drones. In Advances in Mechanical Engineering and Technology (pp. 157-162). Springer, Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mechanical Engineering, Technology, Agriculture, Miscellaneous" + }, + { + "id": 34237, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Silva, A. J. P. D. Visualiza\u00e7\u00e3o em qu\u00edmica e temporalidade: um estudo de caso sobre pr\u00e1ticas e percep\u00e7\u00f5es na forma\u00e7\u00e3o inicial de professores (Doctoral dissertation, Universidade de S\u00e3o Paulo).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Chemistry, Physics, Economics, History, Computer Science, Social Science, Education, Miscellaneous" + }, + { + "id": 34238, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Silva Junior, W. F. D. Cultura de c\u00e9lulas 3D in silico por meio de t\u00e9cnicas de Modelagem Baseada em Agentes: aplica\u00e7\u00f5es em engenharia de tecidos (Doctoral dissertation, Universidade de S\u00e3o Paulo).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Computer Science, Engineering, Archaeology" + }, + { + "id": 34239, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Silva, V., Calderon, A., Todorovic, L., & Martins, L. (2022). Incorporating Future Earthquake Risk in Disaster Risk Management. In European Conference on Earthquake Engineering and Seismology (pp. 179-196). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Earthquake Engineering, Disaster Risk Management" + }, + { + "id": 34240, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Sirizzotti, M. (2022). Agent-based Modelling and Big Data: Applications for Maritime Traffic Analysis.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34241, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Sissa, G., & Franza, G. (2022, June). From micro behaviors to macro effects\u2013Agent Based Modeling of environmental awareness spread and its effects on critical resource consumption. In 2022 International Conference on ICT for Sustainability (ICT4S) (pp. 99-108). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34242, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Sivakumar, N., Warner, H. V., Peirce, S. M., & Lazzara, M. J. (2022). A computational modeling approach for predicting multicell spheroid patterns based on signaling-induced differential adhesion. PLOS Computational Biology, 18(11), e1010701.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 34243, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "SOCIAL, W. (2022). Construction of Dialogue among Couples in Yazd: Moving towards a Grounded Theory. SOCIAL WELFARE, 22(84).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Social Science" + }, + { + "id": 34244, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Sokolov, O., Mrela, A., Bieniek-Majka, M., Osinska, V., & Duch, W. (2022, September). Model of Trust Dissemination of Products Based on Fuzzy Aggregation Norms. In 2022 17th Conference on Computer Science and Intelligence Systems (FedCSIS) (pp. 741-744). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Fuzzy Aggregation Norms" + }, + { + "id": 34245, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Song, C., Shao, Q., Zhu, P., Dong, M., & Yu, W. (2022). An emergency aircraft evacuation simulation considering passenger overtaking and luggage retrieval. Reliability Engineering & System Safety, 108851.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34246, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "S\u00f8rensen, M. L. S. K., Fog, B. V., Musaeus, L. H., & Petersen, M. G. (2022, October). KnitxCode: Exploring a Craftsmanship-driven Approach to Computational Thinking. In Adjunct Proceedings of the 2022 Nordic Human-Computer Interaction Conference (pp. 1-5).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34247, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Sotnik, G., Shannon, T., & Wakeland, W. (2022). A new agent-based model offers insight into population-wide adoption of prosocial common-pool behavior. The Journal of Mathematical Sociology, 1-28.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34248, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Sprinz, J. (2022). \" Y'all are just too sensitive\": A computational ethics approach to understanding how prejudice against marginalized communities becomes epistemic belief. arXiv preprint arXiv:2207.01017. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34249, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Srinivasan, A., & Namilae, S. Infection Risk Mitigation Using Pedestrian Dynamics. In Architectural Factors for Infection and Disease Control (pp. 93-108). Routledge.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Infection Risk Mitigation" + }, + { + "id": 34250, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Stanojevic, A., Cherubini, G., Wo\u017aniak, S., & Eleftheriou, E. (2022). Time-encoded multiplication-free spiking neural networks: application to data classification tasks. Neural Computing and Applications, 1-17.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Miscellaneous" + }, + { + "id": 34251, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Starr, J., Kain, M., & Bhatia, S. An Agent-Based Model for Localized COVID-19 Transmission Dynamics and Intervention Impacts. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34252, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Steffens, B., Corlay, Q., Suurmeyer, N., Noglows, J., Arnold, D., & Demyanov, V. (2022). Can Agents Model Hydrocarbon Migration for Petroleum System Analysis? A Fast Screening Tool to De-Risk Hydrocarbon Prospects. Energies, 15(3), 902.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34253, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Stern, J. L., Valencia-Romero, A., & Grogan, P. T. (2022). Strategic robustness in bi-level system-of-systems design. Design Science, 8.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34254, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Student, J. (2022). Agent-Based Modelling. In Applied Data Science in Tourism (pp. 481-511). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Agent-Based Modelling" + }, + { + "id": 34255, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Su, P., Chen, M., & Wang, Y. (2022). Agent-based model: A method worthy of promotion in Library and Information Science. Journal of Information Science, 01655515211061867.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34256, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Sulis, E., & Taveter, K. (2022). Multi-Agent Systems and Business Process Management. In Agent-Based Business Process Simulation: A Primer with Applications and Examples (pp. 131-140). Cham: Springer International Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Business Process Management" + }, + { + "id": 34257, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Sulis, E., & Taveter, K. (2022). Agent-Based Business Process Simulation: A Primer with Applications and Examples. Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Business, Simulation, Computer Science, Economics" + }, + { + "id": 34258, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Sullivan, F. R., Duan, L., & Pektas, E. (2022, June). Design of an Evaluative Rubric for CT Integrated Curriculum in the Elementary Grades. In CTE-STEM 2022 conference.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Education, Computer Science" + }, + { + "id": 34259, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Sun, L., & Fu, Z. (2022). Research on Universities\u2019 Control of Online Discourse Power in the Period of COVID-19: A Case Study of Shanghai Universities. In INTERNATIONAL CONFERENCE ON WIRELESS COMMUNICATIONS, NETWORKING AND APPLICATIONS (pp. 95-103). Springer, Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34260, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Sung, R., & Park, J. (2022). Economic Sanctions and Consumer Behavior in Target States: An Agent-Based Model of Boycott Movements. In Conference of the Computational Social Science Society of the Americas (pp. 43-55). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Computer Science, Ecology, Sociology" + }, + { + "id": 34261, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Sunxin, W. A. N. G., Yanming, W. A. N. G., Jie, K. O. N. G., & Gaopan, S. H. E. N. (2022). A flexible scaling self-healing method for morphology of swarm robots. Xibei Gongye Daxue Xuebao/Journal of Northwestern Polytechnical University, 40(1), 206-214.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34262, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Sun, M. C., Sakai, K., Chen, A. Y., & Hsu, Y. T. (2022). Location problems of vertical evacuaiton structures for dam-failure floods: Considering shelter-in-place and horizontal evacuation. International Journal of Disaster Risk Reduction, 103044.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34263, + "sort": null, + "year": 2022, + "is_ccl": true, + "reference": "Swanson, H., Sherin, B., & Wilensky, U. (2022). Tuning Perceptions and Inferences to See a Graph in a New Way. Proceedings of the International Conference for the Learning Sciences (ICLS 2022), Hiroshima, Japan: ISLS.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 34264, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Sweety, S. A., Khan, M., Haque, A., & Salehin, M. (2022). An Agent Based Model of Mangrove Social-Ecological System for Livelihood Security Assessment. In Water Management: A View from Multidisciplinary Perspectives (pp. 319-349). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Modeling" + }, + { + "id": 34265, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Syed, M., Cagely, M., Dogra, P., Hollmer, L., Butner, J. D., Cristini, V., & Koay, E. J. (2022). Immune\u2010checkpoint inhibitor therapy response evaluation using oncophysics\u2010based mathematical models. Wiley Interdisciplinary Reviews: Nanomedicine and Nanobiotechnology, e1855.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Oncophysics, Mathematical Models" + }, + { + "id": 34266, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Symons, S. L., Harvey, C. T., & Eyles, C. H. (2022). Innovating, integrating, and influencing: A science program for the 21st century. Where learning deeply matters: Reflections on the past, present, and future of teaching at McMaster University, 1(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34267, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Szangolies, L., Rohw\u00e4der, M. S., & Jeltsch, F. (2022). Single Large AND Several Small habitat patches: A community perspective on their importance for biodiversity. Basic and Applied Ecology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 34268, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Szczepanska, T., Angourakis, A., Graham, S., & Borit, M. (2022, April). Quantum Leaper: A Methodology Journey From a Model in NetLogo to a Game in Unity. In Advances in Social Simulation: Proceedings of the 16th Social Simulation Conference, 20\u201324 September 2021 (p. 191). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 34269, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Tan, W. C., & Sidhu, M. S. (2022). Review of RFID and IoT integration in supply chain management. Operations Research Perspectives, 100229.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "RFID, IoT, Supply Chain Management, Operations Research, Economics" + }, + { + "id": 34270, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Tan, X. J., Cheor, W. L., Yeo, K. S., & Leow, W. Z. (2022). Expert systems in oil palm precision agriculture: A decade systematic review. Journal of King Saud University-Computer and Information Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34271, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Tarakta\u015f, B. (2022). Incorporating Computational Social Science in Political Science. In Opportunities and Challenges for Computational Social Science Methods (pp. 23-44). IGI Global.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computational Social Science, Ecology" + }, + { + "id": 34272, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Taranum, F., Sridevi, K., Hijab, M., Sayeedunissa, S. F., Kaleem, A., & Niraja, K. S. (2022). Role of an Optimal Multiagent Scheduling in Different Applications Using ML. In Multi-Agent Technologies and Machine Learning. IntechOpen.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34273, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Taylor, R., Forrester, J., Pedoth, L., & Zeitlyn, D. (2022). Structured output methods and environmental issues: perspectives on co-created bottom-up and \u2018sideways\u2019 science. Humanities and Social Sciences Communications, 9(1), 1-11.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34274, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Tedeschi, L. O. (2022). ASAS-NANP SYMPOSIUM: MATHEMATICAL MODELING IN ANIMAL NUTRITION: The progression of data analytics and artificial intelligence in support of sustainable development in animal science. Journal of Animal Science.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Mathematics, Animal Science, Data Analytics, Artificial Intelligence, Sustainable Development, Economics, Biology" + }, + { + "id": 34275, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Ter\u00e1n, O., Leger, P., & L\u00f3pez, M. (2022). Modeling and simulating Chinese cross-border e-commerce: an agent-based simulation approach. Journal of Simulation, 1-18.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34276, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Termos, A., & Yorke-Smith, N. (2022). Urbanism and Geographic Crises: A Micro-Simulation Lens on Beirut. Urban Planning, 7(1), 87-100.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34277, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Thakur, C., & Gupta, S. (2022). Multi-Agent System Applications in Health Care: A Survey. Multi Agent Systems: Technologies and Applications towards Human-Centered, 139.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34278, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Then, A., Ewald, J., S\u00f6llner, N., Cooper, R. E., K\u00fcsel, K., Ibrahim, B., & Schuster, S. (2022). Agent-based modelling of iron cycling bacteria provides a framework for testing alternative environmental conditions and modes of action. Royal Society Open Science, 9(5), 211553.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Environmental Science" + }, + { + "id": 34279, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Thomas, S. R., & Trinh, M. P. (2022, July). Effects of Transformational Leadership on Employability and Employee Retention. In Academy of Management Proceedings. Academy of Management Briarcliff Manor, NY 10510.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34280, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Thompson, J., & Cruz-Gambardella, C. (2022). Development of a Computational Policy Model for Comparing the Effect of Compensation Scheme Policies on Recovery After Workplace Injury. Journal of Occupational Rehabilitation, 1-11.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34281, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Torrens, P. M. (2022). Agent models of customer journeys on retail high streets. Journal of Economic Interaction and Coordination, 1-42.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34282, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Toth, C. A., Pauli, B. P., McClure, C. J., Francis, C. D., Newman, P., Barber, J. R., & Fristrup, K. (2022). A stochastic simulation model for assessing the masking effects of road noise for wildlife, outdoor recreation, and bioacoustic monitoring. Oecologia, 1-12.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Social Science, Education, Epidemiology" + }, + { + "id": 34283, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Tracy, M., Gordis, E., Strully, K., Marshall, B. D., & Cerd\u00e1, M. (2022). Applications of agent-based modeling in trauma research. Psychological Trauma: Theory, Research, Practice, and Policy.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34284, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Trejo, J. A. O., Razon, T. G. N., de los Angeles Cobian, C., Ojeda, A. L., & Aguayo, M. G. B. (2022). Fase de regreso a clases en ciudades inteligentes, simulaci\u00f3n de modelo epidemiol\u00f3gico SIR en estudio de caso de la universidad de Guadalajara, en CUCEA. Ciencia Latina Revista Cient\u00edfica Multidisciplinar, 6(5), 1586-1602.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34285, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Trentesaux, D., & Karnouskos, S. (2022). Engineering ethical behaviors in autonomous industrial cyber-physical human systems. Cognition, Technology & Work, 24(1), 113-126.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Engineering" + }, + { + "id": 34286, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Trivedi, A., & Pandey, M. (2022). Testing and evaluation of crowd management strategies at religious gatherings in India using agent-based modelling and simulation. International Journal of Advanced Intelligence Paradigms, 22(3-4), 379-415.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34287, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Truong, V. T., Baverel, P. G., Lythe, G. D., Vicini, P., Yates, J. W., & Dubois, V. F. (2022). Step\u2010by\u2010step comparison of ordinary differential equation and agent\u2010based approaches to pharmacokinetic\u2010pharmacodynamic models. CPT: pharmacometrics & systems pharmacology, 11(2), 133-148.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Pharmacokinetics, Pharmacodynamics, Modeling, Differential Equations, Agent-Based Modeling, Computer Science, Systems Pharmacology" + }, + { + "id": 34288, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Turchaninov, I., van Dam, K. H., Bustos-Turu, G., & Acha, S. Transport electrification and fast-charging expansion: A case study in Alaska. In International Workshop on Agent-Based Modelling of Urban Systems (ABMUS) (p. 55).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34289, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Twardawa, M. Zjawiska emergentne. Biologia, 1, 26.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 34290, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Tzouras, P. G., Mitropoulos, L., Stavropoulou, E., Antoniou, E., Koliou, K., Karolemeas, C., ... & Kepaptsoglou, K. (2022). Agent-based models for simulating e-scooter sharing services: A review and a qualitative assessment. International Journal of Transportation Science and Technology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34291, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Uchma\u0144ski, J., Niewolski, M., & Janiszewski, J. (2022). Interspecific competition in perennial sedentary organisms: An individual\u2010based model. Population Ecology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 34292, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Uddin, M. N., Chi, H. L., Wei, H. H., Lee, M., & Ni, M. (2022). Influence of interior layouts on occupant energy-saving behaviour in buildings: An integrated approach using Agent-Based Modelling, System Dynamics and Building Information Modelling. Renewable and Sustainable Energy Reviews, 161, 112382.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "* Modeling\n* Building\n* Energy\n* Behavior\n* Agent-Based Modeling\n* System Dynamics\n* Building Information Modeling" + }, + { + "id": 34293, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Ullah, K. M., & Dwivedi, P. Ascertaining Land Allocation Decisions of Farmers about the Adoption of Carinata as a Potential Crop for Sustainable Aviation Fuel Production in the Southern United States. GCB Bioenergy.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Agriculture, Economics" + }, + { + "id": 34294, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Umlauft, M., Schranz, M., & Elmenreich, W. SwarmFabSim: A Simulation Framework for Bottom-up Optimization in Flexible Job-Shop Scheduling Using NetLogo. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34295, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Umlauft, M., Schranz, M., & Elmenreich, W. (2022, July). Simulation of Swarm Intelligence for Flexible Job-Shop Scheduling with SwarmFabSim: Case Studies with Artificial Hormones and an Ant Algorithm. In International Conference on Simulation and Modeling Methodologies, Technologies and Applications (pp. 133-155). Cham: Springer International Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation, Swarm Intelligence, Job-Shop Scheduling, Artificial Hormones, Ant Algorithm" + }, + { + "id": 34296, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Utrero, T. H. (2022). \u00bf Influyen el n\u00famero de or\u00edgenes y los umbrales de confianza en las creencias en la din\u00e1mica de difusi\u00f3n de rumores? Una propuesta te\u00f3rica desde un modelo basado en agentes. Papers. Revista de Sociologia, 107(2), e2994-e2994.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34297, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Vakil, S., Reith, A., & Melo, N. A. (2022). Jamming power: Youth agency and community\u2010driven science in a critical technology learning program. Journal of Research in Science Teaching.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34298, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Valdez, A. C. Towards an Understanding of Opinion Formation on the Internet. group, 4, 8.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 34299, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Vall\u00e9s, A. D. (2022). El Efecto ee Impuestos y Subsidios en la Difusi\u00f3n de Fotovoltaicos en Puerto Rico: An\u00e1lisis con un Modelo de Agentes (Doctoral dissertation, University of Puerto Rico, Rio Piedras (Puerto Rico)).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34300, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "van der Borgh, M., Sch\u00e4fers, T., Lindgreen, A., & Di Benedetto, C. A. (2022). Moving the needle: Publishing academic-practitioner research in Industrial Marketing Management. Industrial Marketing Management.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34301, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "van der Zwet, K., Barros, A. I., van Engers, T. M., & Sloot, P. M. (2022). Promises and pitfalls of computational modelling for insurgency conflicts. The Journal of Defense Modeling and Simulation, 15485129211073612.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34302, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Van Dyke Parunak, H. (2022). Learning Actor Preferences by Evolution. In Conference of the Computational Social Science Society of the Americas (pp. 85-97). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 34303, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "van Haeringen, E., Liistro, G., & Gerritsen, C. (2022). An Agent-Based Model of Emotion Contagion and Group Identification: A Case Study in the Field of Football Supporters. In International Conference on Practical Applications of Agents and Multi-Agent Systems (pp. 410-422). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Emotion, Group Identification, Agent-Based Systems, Practical Applications" + }, + { + "id": 34304, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "van Klingeren, F. (2022). Using player types to understand cooperative behaviour under economic and sociocultural heterogeneity in common-pool resources: Evidence from lab experiments and agent-based models. PloS one, 17(5), e0268616.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Computer Science, Physics, Chemistry, Sociology, Psychology, Ecology" + }, + { + "id": 34305, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "van Roekel, G., & Smit, M. (2022). Herd behaviour and the emergence of clusters. Spatial Economic Analysis, 1-21.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34306, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Vander Linden, M. (2022). Iza Romanowska, Colin D. Wren and Stefani A. Crabtree. Agent-Based Modelling for Archaeology: Simulating the Complexity of Society (Santa Fe: The Santa Fe Institute Press. 2021. xiii and 429 pp., numerous illustr., pbk, ISBN 978-1-947864-25-2). European Journal of Archaeology, 25(4), 547-549.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Archaeology, Computer Science, Miscellaneous" + }, + { + "id": 34307, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Vargas Guarnizo, M. P., & Boh\u00f3rquez Ar\u00e9valo, L. E. (2022). Design of a simulation model that represents the collective intelligence genome of (malone et al., 2010). Tecnura, 26(72), 59-77.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 34308, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Vargas Guarnizo, M. P., & Boh\u00f3rquez Ar\u00e9valo, L. E. (2022). Dise\u00f1o de modelo de simulaci\u00f3n que representa el genoma de inteligencia colectiva de Malone, Laubacher y Dellarocas. Tecnura, 26(72), 59-77.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34309, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Vega-S\u00e1nchez, R., & Herrera, J. M. (2022). Agent-based modelling for the study of shipwreck site formation processes: A theoretical framework and conceptual model. F1000Research, 11(1525), 1525.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34310, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Veldboer, T. (2022). A pure coordination game for the multi-agent card game The Mind (Doctoral dissertation).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34311, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Verhagen, P. (2022). Modelling the Basics of Roman Demography. Simulating Roman Economies: Theories, Methods, and Computational Models, 271.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34312, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Verleger, M., Stansbury, R., Akbas, M., & Craiger, P. (2022, August). An Undergraduate Research Experience in Unmanned Aircraft Systems (UAS) Cybersecurity\u2013Outcomes and Lessons Learned. In 2022 ASEE Annual Conference & Exposition.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 34313, + "sort": null, + "year": 2022, + "is_ccl": true, + "reference": "Vermeer, W., Gurkan, C., Hjorth, A., Benbow, N., Mustanski, B. M., Kern, D., Brown, C. H., & Wilensky, U. (2022).\u00a0Agent-based model projections for reducing HIV infection among MSM: Prevention and care pathways to end the HIV epidemic in Chicago, Illinois.\u00a0PloS one, 17(10), e0274288. https://doi.org/10.1371/journal.pone.0274288", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34314, + "sort": null, + "year": 2022, + "is_ccl": true, + "reference": " Vermeer, W.H., Smith, J.D., Wilensky, U. et al. High-Fidelity Agent-Based Modeling to Support Prevention Decision-Making: an Open Science Approach. Prev Sci 23, 832\u2013843 (2022). https://doi.org/10.1007/s11121-021-01319-3 ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Prevention, Science" + }, + { + "id": 34315, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Vidanaarachchi, R., Thompson, J., Godic, B., & McClure, R. AgentsX. jl\u2014An Extended Julia Framework for Exploring Urban and Social Systems. In International Workshop on Agent-Based Modelling of Urban Systems (ABMUS) (p. 16).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34316, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Vieira, L. S., & Laubenbacher, R. C. (2022). Computational models in systems biology: standards, dissemination, and best practices. Current Opinion in Biotechnology, 75, 102702.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Systems Biology, Standards, Dissemination, Best Practices" + }, + { + "id": 34317, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Vinh, P. C. (2022). Context-awareness and Nature of Computation and Communication. Mobile Networks and Applications, 1-3.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 34318, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Volpe, R., Catrini, P., Piacentino, A., & Fichera, A. (2022). An agent-based model to support the preliminary design and operation of heating and power grids with cogeneration units and photovoltaic panels in densely populated areas. Energy, 261, 125317.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34319, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Vriens, E., & Buskens, V. (2022). Sharing Risk under Heterogeneity: Participation in Settings of Incomplete Information. Journal of Artificial Societies & Social Simulation, 25(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 34320, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Wagh, A., Fuhrmann, T., Eloy, A. A. D. S., Wolf, J., Bumbacher, E., Blikstein, P., & Wilkerson, M. (2022, June). MoDa: Designing a Tool to Interweave Computational Modeling with Real-world Data Analysis for Science Learning in Middle School. In Interaction Design and Children (pp. 206-211).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Interaction Design, Children" + }, + { + "id": 34321, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Wahyudiono, S., Darmawan, A. A., & Burhan, M. S. (2022). Pemodelan Shift Kerja dalam Proyek Konstruksi menggunakan NetLogo dalam meminimalkan Penyebaran Covid-19. Jurnal Ilmiah Universitas Batanghari Jambi, 22(2), 1256-1263. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34322, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Wan, S., Chen, Z., Lyu, C., Li, R., Yue, Y., & Liu, Y. (2022). Research on disaster information dissemination based on social sensor networks. International Journal of Distributed Sensor Networks, 18(3), 15501329221080666.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Social Science, Miscellaneous" + }, + { + "id": 34323, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Wan, S., & Liu, Y. (2022). A security detection approach based on autonomy-oriented user sensor in social recommendation network. International Journal of Distributed Sensor Networks, 18(3), 15501329221082415.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Security, User Sensor, Network, Economics, Computer Science, Social Science, Education" + }, + { + "id": 34324, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Wang, H., Qiu, L., Chen, Z., Li, F., Jiang, P., Zhang, A., & Nie, X. (2022). Is rationality or herd more conducive to promoting farmers to protect wetlands? A hybrid interactive simulation. Habitat International, 128, 102647.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34325, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Wang, J., & Kim, Y. J. (2022). Evolutionary Characteristics of Microstructural Hydration and Chloride Diffusion in UHPC. Materials & Design, 111528.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34326, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Wang, K. (2022). Feasibility analysis and Research on Intelligent trusted modeling of network architecture software. In Journal of Physics: Conference Series (Vol. 2173, No. 1, p. 012027). IOP Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Physics, Computer Science, Miscellaneous" + }, + { + "id": 34327, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Wang, K. D., Cock, J. M., K\u00e4ser, T., & Bumbacher, E. (2022). A systematic review of empirical studies using log data from open\u2010ended learning environments to measure science and engineering practices. British Journal of Educational Technology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34328, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Wang, L. C., Yang, M., Li, Y., & Hou, Y. Q. (2022). A model of lane-changing intention induced by deceleration frequency in an automatic driving environment. Physica A: Statistical Mechanics and its Applications, 127905. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34329, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Wang, M., & Peng, S. (2022, October). COVID-19 Visualization Platform Based on Population Density Propagation Model. In 2022 IEEE 2nd International Conference on Data Science and Computer Application (ICDSCA) (pp. 406-411). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34330, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Wang, R., Ye, Z., Lu, M., & Hsu, S. C. (2022). Understanding post-pandemic work-from-home behaviours and community level energy reduction via agent-based modelling. Applied Energy, 322, 119433.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34331, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Wang, Y. (2022, May). Robust Information Center Implementation of College English Training under the Network Computer Aided System Environment Considering QoS. In 2022 6th International Conference on Intelligent Computing and Control Systems (ICICCS) (pp. 676-680). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Chemistry, Economics, History, Ecology" + }, + { + "id": 34332, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Wang, Y., Yao, X., Song, L., & Zhang, S. (2022). The Behaviour and Influence Mechanism of the Subject of IUR Collaborative Innovation: A Simulation Study Based on NetLogo. Discrete Dynamics in Nature and Society, 2022.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, NetLogo" + }, + { + "id": 34333, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Wang, Z., & Jia, G. (2022). Sensitivity Analysis of Tsunami Evacuation Risk with Respect to Epistemic Uncertainty. ASCE-ASME Journal of Risk and Uncertainty in Engineering Systems, Part A: Civil Engineering, 8(3), 04022037.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34334, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Wang, Z., & Jia, G. (2022). Simulation-based and risk-informed assessment of the effectiveness of tsunami evacuation routes using agent-based modeling: a case study of seaside, Oregon. International Journal of Disaster Risk Science, 13(1), 66-86.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34335, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Watson, J. W., Boyd, R., Dutta, R., Vasdekis, G., Walker, N. D., Roy, S., ... & Sibly, R. M. (2022). Incorporating environmental variability in a spatially-explicit individual-based model of European sea bass. Ecological Modelling, 466, 109878.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Geology" + }, + { + "id": 34336, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Watts, K. (2022). Using in vitro, in silico, and in-Classroom Techniques to Address the Gender Data Gap in Health Care.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34337, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Wei, C. H. E. N., En-hua, H. U., Hong-mei, S. H. A. N., & Long, Z. H. A. N. G. (2022). Study on the Influence of Union-Enterprise Relation Modes on the Performance of Enterprises of Different Scales: A Multi-agent-based Simulation Model. Operations Research and Management Science, 31(1), 232.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34338, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Wei, L., Yang, Y., Wu, J., Long, C., & Lin, Y. B. (2022). A Bidirectional Trust Model for Service Delegation in Social Internet of Things. Future Internet, 14(5), 135.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34339, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Wei, Y., Jang, N., Zhang, Z., Zeng, M., & Yang, Z. Research on combat simulation agent modelling methods combined with reinforcement learning. Journal of Intelligent & Fuzzy Systems, (Preprint), 1-12.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Chemistry, Economics" + }, + { + "id": 34340, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Weisberg, M. (2022).Understanding the Emergence of Population Behavior in Individual-Based Models. Philosophy of Science.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34341, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Weisburd, D., Wolfowicz, M., Hasisi, B., Paolucci, M., & Andrighetto, G. (2022). What is the best approach for preventing recruitment to terrorism? Findings from ABM experiments in social and situational prevention. Criminology & Public Policy, 21(2), 461-485.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34342, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Wei-qiang, O. U., & Bin, Z. H. U. (2022). Research on Dynamic Allocation Mechanism of Mainstream and Newstream Innovation Resources Based on ABMS. Operations Research and Management Science, 31(6), 182.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Research, Innovation" + }, + { + "id": 34343, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Werntz, S., & Oppenheimer, D. (2022). In the Dark: Agent-Based Modeling of Uninformed Individuals within Polarized Groups. In Proceedings of the Annual Meeting of the Cognitive Science Society (Vol. 44, No. 44).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 34344, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Weyer, J., Philipp, M., & Adelt, F. Agent-Based Modelling of Infrastructure Systems. Metropolitan Research, 155.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34345, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Whitenack, L., & Mahabir, R. (2022, April). A tool for optimizing the efficiency of drive-thru services. In 2022 Systems and Information Engineering Design Symposium (SIEDS) (pp. 151-156). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 34346, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Whitney, E. (2022). Uses of Agent-Based Modeling and Simulation to Support Business Decision-Making for Healthcare Industry Leadership in the United States of America (Doctoral dissertation, Northcentral University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34347, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Widiyanto, S., Adi, D., & Soans, R. V. (2022). Agent-Based Simulation Disaster Evacuation Awareness on Night Situation in Aceh. IPTEK The Journal of Engineering, 8(1), 36-43.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34348, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Wijermans, N., Schill, C., Lindahl, T., & Schl\u00fcter, M. (2022). Combining approaches: Looking behind the scenes of integrating multiple types of evidence from controlled behavioural experiments through agent-based modelling. International Journal of Social Research Methodology, 1-13.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34349, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Wilson, A. (2022). Positioning Computational Modelling in Roman Studies. Simulating Roman Economies: Theories, Methods, and Computational Models, 308.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34350, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Wing, A. K. (2022). Building a Framework for Apron Planning, Design, Optimization, Future Proofing and Expansion (Doctoral dissertation, University of South Alabama).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34351, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Winzar, H., Baumann, C., Soboleva, A., Park, S. H., & Pitt, D. (2022). Competitive Productivity (CP) as an emergent phenomenon: Methods for modelling micro, meso, and macro levels. International Journal of Hospitality Management, 105, 103252.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34352, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Witeck, G. R., Rocha, A. M. A., Silva, G. O., Silva, A., Dur\u00e3es, D., & Machado, J. (2022). A Bibliometric Review and Analysis of Traffic Lights Optimization. In International Conference on Computational Science and Its Applications (pp. 43-54). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computing, Economics" + }, + { + "id": 34353, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Wojcieszak, M., Sobkowicz, P., Yu, X., & Bulat, B. (2022). What Information Drives Political Polarization? Comparing the Effects of In-group Praise, Out-group Derogation, and Evidence-based Communications on Polarization. The International Journal of Press/Politics, 27(2), 325-352.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Politics" + }, + { + "id": 34354, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Wood, N. Grassroots Citizen Participation with Government Agencies in Disaster Response Activities. The Cupola, 342.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Government Agencies, Disaster Response, Ecology, Urban Studies, Social Science, Economics" + }, + { + "id": 34355, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Wozniak, M., & Dziecielski, M. (2022). Should I Turn or Should I Go? Simulation of Pedestrian Behaviour in an Urban Environment. Journal of Simulation, 1-15.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Urban Studies" + }, + { + "id": 34356, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Wright, I. D., Reimherr, M., & Liechty, J. A Machine Learning Approach to Classification for Traders in Financial Markets. Stat, e465.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34357, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Wu, R., Han, Y., Guo, K., & Liu, K. (2022, July). Information dissemination model of recommendation platform based on network community. In 2022 7th IEEE International Conference on Data Science in Cyberspace (DSC) (pp. 633-641). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Network Community" + }, + { + "id": 34358, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Wu, S., Lei, Y., & Jin, W. (2022). An Interdisciplinary Approach to Quantify the Human Disaster Risk Perception and Its Influence on the Population at Risk: A Case Study of Longchi Town, China. International Journal of Environmental Research and Public Health, 19(24), 16393.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34359, + "sort": null, + "year": 2022, + "is_ccl": true, + "reference": "Wu, S., Swanson, H., Sherin, B., & Wilensky, U. (2022). Students\u2019 Prior Knowledge of Disease Spread and Prevention. Proceedings of the International Conference for the Learning Sciences (ICLS 2022), Hiroshima, Japan: ISLS.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34360, + "sort": null, + "year": 2022, + "is_ccl": true, + "reference": "Wu, S., Peel, A., Zhao, L., Horn, M., & Wilensky, U. (2022). A professional development that helps teachers integrate computational thinking into their STEM classrooms. Innovations in Science Teacher Education 7(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34361, + "sort": null, + "year": 2022, + "is_ccl": true, + "reference": "Wu, S., Swanson, H., Sherin, B., & Wilensky, U. (2022). Investigating Student Learning about Disease Spread and Prevention in the Context of Agent-Based Computational Modeling. Proceedings of the International Conference for the Learning Sciences (ICLS 2022), Hiroshima, Japan: ISLS.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Ecology, Social Science, Education" + }, + { + "id": 34362, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Wu, Z., & Forget, G. (2022). PlanktonIndividuals. jl: A GPU supported individual-based phytoplankton life cycle model. Journal of Open Source Software, 7(73), 4207.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Plankton" + }, + { + "id": 34363, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Wu, Z., & Huang, S. (2022, December). The Impact of Heterogeneous Reputation Evaluation Laws on Cooperation Based on Net Logo. In 2022 3rd International Conference on Big Data and Social Sciences (ICBDSS 2022) (pp. 123-133). Atlantis Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34364, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Wurzer, G., Reismann, M., Marschnigg, C., Dorfmeister, A., Taub\u00f6ck, S., Lederm\u00fcller, K., & Sp\u00f6rk, J. (2022). PASSt-A: Agent-based student analytics aimed at improved feasibility and study success. IFAC-PapersOnLine, 55(20), 361-366.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34365, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Xi, J., Chan, W. (2022). Reopening Universities without Testing During COVID-19: Evaluating a Possible Alternative Strategy in Low Risk Countries. Archives of Clinical and Biomedical Research 6 (2022): 971-981. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 34366, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Xia, M., Lu, Z., Xu, L., Shi, Y., Ma, Q., Wu, Y., & Sheng, B. (2022). Impact of Regional Differences in Risk Attitude on the Power Law at the Urban Scale. Land, 11(10), 1791.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34367, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Xiang, L., & Diamond, S. (2022). Developing and Using Computer Models to Understand Epidemics Breadcrumb. The Science Teacher, 89(3).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 34368, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Xiao, J. (2022). A Framework to Generate High-Performance Time-stepped Agent-based Simulations on Heterogeneous Hardware (Doctoral dissertation, Technische Universit\u00e4t M\u00fcnchen).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, Economics, History, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34369, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Xiaobei, X. U., & Hongping, Y. U. A. N. An Agent-based Modeling Approach for Investigating the Diffusion of BIM Technology. Industrial Engineering Journal, 24(6), 57.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34370, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Xie, J., Tian, S., Liu, J., Cao, R., Yue, P., Cai, X., ... & Zhang, D. K. (2022). Dual role of the nasal microbiota in neurological diseases\u2014An unignorable risk factor or a potential therapy carrier. Pharmacological Research, 106189.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Neuroscience, Risk factor, Therapy" + }, + { + "id": 34371, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Xin, Z., Li, J., Wang, Z., & Li, J. (2023). A Hardware-in-the-Loop Simulation Platform for UAV Swarm Decision-Making. In Proceedings of 2021 5th Chinese Conference on Swarm Intelligence and Cooperative Control (pp. 189-199). Springer, Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Hardware-in-the-Loop Simulation" + }, + { + "id": 34372, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Xin-gang, Z., Yi, Z., Hui, W., & Zhen, W. (2022). How can the cost and effectiveness of renewable portfolio standards be coordinated? Incentive mechanism design from the coevolution perspective. Renewable and Sustainable Energy Reviews, 158, 112096.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34373, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Xiong, M., Wang, Y., & Cheng, Z. (2021, December). Research on Modeling and Simulation of Information Cocoon Based on Opinion Dynamics. In 2021 The 9th International Conference on Information Technology: IoT and Smart City (pp. 161-167).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Information Technology, Modeling, Simulation, Computer Science" + }, + { + "id": 34374, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Xu, H., Wang, Y., & Yan, Y. (2022). Study on the Optimum Process Conditions for Preparation of C4 Olefins by Ethanol Coupling. Academic Journal of Science and Technology, 3(1), 50-57.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Chemistry, Physics, Economics" + }, + { + "id": 34375, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Xu, L., Ding, R., & Wang, L. (2022). How to facilitate knowledge diffusion in collaborative innovation projects by adjusting network density and project roles. Scientometrics, 1-27.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34376, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Xu, Z., Zhang, H., & Huang, Z. (2022). A Continuous Markov-Chain Model for the Simulation of COVID-19 Epidemic Dynamics. Biology, 11(2), 190.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Chemistry" + }, + { + "id": 34377, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Xue, X., Yu, X. N., Zhou, D. Y., Wang, X., Zhou, Z. B., & Wang, F. Y. (2022). Computational Experiments: Past, Present and Future. arXiv preprint arXiv:2202.13690.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 34378, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Yadav, A., Caeli, E. N., Ocak, C., & Macann, V. (2022, July). Teacher Education and Computational Thinking: Measuring Pre-service Teacher Conceptions and Attitudes. In Proceedings of the 27th ACM Conference on on Innovation and Technology in Computer Science Education Vol. 1 (pp. 547-553).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Teacher Education, Computational Thinking, Computer Science, ACM Conference" + }, + { + "id": 34379, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Yadav, A., & Lachney, M. (2022). Teaching with, about, and through technology: Visions for the future of teacher education. Journal of Technology and Teacher Education, 30(2), 189-200.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Technology, Teacher Education" + }, + { + "id": 34380, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Yang, H., Wu, X., Zhao, S., Madani, H., Chen, J., & Chen, Y. (2022). An Agent-based Model Study on Subsidy Fraud in Technological Transition. In ICAART (1) (pp. 353-358).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34381, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Yang, J. (2022). Xi, Wai Kin (Victor) Chan. Reopening Universities without Testing During COVID-19: Evaluating a Possible Alternative Strategy in Low Risk Countries. Archives of Clinical and Biomedical Research, 6, 971-981.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34382, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Yang, K., Yang, H., Zhang, J., & Kang, R. (2022). Effects on Taxiing Conflicts at Intersections by Pilots\u2019 Sensitive Speed Adjustment. Aerospace, 9(6), 288.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34383, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Yang, L. (2022). Double-edged Effects of Pricing on Diffusion of Green Products. Journal of Cleaner Production, 132109.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Pricing, Diffusion" + }, + { + "id": 34384, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Yang, L., Iwami, M., Chen, Y., Wu, M., & van Dam, K. H. (2022). Computational decision-support tools for urban design to improve resilience against COVID-19 and other infectious diseases: A systematic review. Progress in Planning, 100657.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science" + }, + { + "id": 34385, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Yang, R., Wang, A., & Bai, Y. Evolutionary Mechanism of Social Interaction and Green Travel Behavior of Urban Residents: Based on Scale-Free Network. Available at SSRN 4094750.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34386, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Yang, Y., Yin, J., Wang, D., Liu, Y., Lu, Y., Zhang, W., & Xu, S. (2022). ABM-based emergency evacuation modelling during urban pluvial floods: A \u201c7.20\u201d pluvial flood event study in Zhengzhou, Henan Province. Science China Earth Sciences, 1-10.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Epidemiology, Miscellaneous" + }, + { + "id": 34387, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Yang, Z., Jinling, L., Haixiang, G., & Weiming, C. (2022). Research on Emotional Contagion and Intervention Strategy of Indoor Evacuation Based on Risk Perception. Journal of System Simulation, 34(12), 2691.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34388, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Yao, Z., Wu, X., & Li, N. (2022, May). Simulation of indirect-reciprocity-based lane-changing in Internet of Vehicles environment. In 2nd International Conference on Internet of Things and Smart City (IoTSC 2022) (Vol. 12249, pp. 17-23). SPIE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation" + }, + { + "id": 34389, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Yazan, D. M., van Capelleveen, G., & Fraccascia, L. (2022). Decision-Support Tools for Smart Transition to Circular Economy. In Smart Industry\u2013Better Management (Vol. 28, pp. 151-169). Emerald Publishing Limited.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Decision-Support Tools" + }, + { + "id": 34390, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Ye, X., Du, J., Han, Y., Newman, G., Retchless, D., Zou, L., ... & Cai, Z. (2022). Developing Human-Centered Urban Digital Twins for Community Infrastructure Resilience: A Research Agenda. Journal of Planning Literature, 08854122221137861.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34391, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Yegenoglu, A., Subramoney, A., Hater, T., Jimenez-Romero, C., Klijn, W., Martin, A. P., ... & Diaz-Pier, S. (2022). Exploring hyper-parameter spaces of neuroscience models on high performance computers with Learning to Learn. arXiv preprint arXiv:2202.13822.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Neuroscience, Computer Science, Physics, arXiv" + }, + { + "id": 34392, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Yi-Chen, H., Tak-Yu, C., & Chie, B. T. (2022). The Effect of Dishonest Sellers on E-commerce: An Agent-Based Modeling Approach. Advances in Management and Applied Economics, 12(4).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34393, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Yin, D., & Gong, B. (2022). Auto-Adaptive Trust Measurement Model Based on Multidimensional Decision-Making Attributes for Internet of Vehicles. Wireless Communications and Mobile Computing, 2022.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34394, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Yin, S., Xu, Y., Xu, M., de Jong, M. C., Huisman, M. R., Contina, A., ... & de Boer, W. F. (2022). Habitat loss exacerbates pathogen spread: An Agent-based model of avian influenza infection in migratory waterfowl. PLoS computational biology, 18(8), e1009577.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Pathogen Spread, Model Building, Computer Science, Economics, Ecology, Archaeology" + }, + { + "id": 34395, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Yu, S. (2022). Agent-based modelling using survey data to simulate occupancy patterns and occupant interactions for workplace design. Building and Environment, 224, 109519.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34396, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Yu, Y., Yazan, D. M., Junjan, V., & Iacob, M. E. (2022). Circular economy in the construction industry: A review of decision support tools based on Information & Communication Technologies. Journal of Cleaner Production, 131335.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34397, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Zadbood, A., & Hoffenson, S. (2022). Social Network Word-of-Mouth Integrated into Agent-Based Design for Market Systems Modeling. Journal of Mechanical Design, 1-17.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 34398, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Zakaria, N. (2022). Action network: a probabilistic graphical model for social simulation. SIMULATION, 98(4), 335-346.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Probability, Simulation, Computer Science, Economics" + }, + { + "id": 34399, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Zargar, S. H., Sadeghi, J., & Brown, N. C. (2022). Agent-based modelling for early-stage optimization of spatial structures. International Journal of Architectural Computing, 14780771221143493.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34400, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Zauner, G., & Weidinger, W. (2022). Modelling and. The Handbook of Data Science and AI: Generate Value from Data with Machine Learning and Data Analytics, 347.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Data Science, AI, Machine Learning, Data Analytics, Economics, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34401, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Zejin, T., & Pyung-hoi, K. O. O. (2022). A Study Of Supply Chain Risk Decisions With Consideration Of Risk Preference Based On Abm Simulation. \ud55c\uad6d\uacbd\uc601\uacfc\ud559\ud68c \ud559\uc220\ub300\ud68c\ub17c\ubb38\uc9d1, 4151-4156.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Risk Preference, Simulation, Economics" + }, + { + "id": 34402, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Zellner, M. L., Milz, D., Lyons, L., Hoch, C. J., & Radinsky, J. (2022). Finding the Balance Between Simplicity and Realism in Participatory Modeling for Environmental Planning. Environmental Modelling & Software, 157, 105481.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34403, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Zhang, B., Zhang, H., & Yang, X. (2023). Research on Social Atomization Risk and Governance Decision Making in Emerging Community. In International Conference on Decision Science & Management (pp. 119-126). Springer, Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Government, Decision Science, Management" + }, + { + "id": 34404, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Zhang, C., Wu, X., Zhao, S., Madani, H., Chen, J., & Chen, Y. (2022). Simulation study on the low carbon transition process in Japan\u2019s electricity market. Green Technologies and Sustainability, 100006.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 34405, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Zhang, G., Li, H., He, R., & Lu, P. (2022). Agent-based modeling and life cycle dynamics of COVID-19-related online collective actions. Complex & Intelligent Systems, 8(2), 1369-1387.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34406, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Zhang, H., Xiong, H., Wang, G., & Jiang, P. (2022). How institutional pressures improve environmental management performance in construction projects: an agent-based simulation approach. Environment, Development and Sustainability, 1-31.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34407, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Zhang, J., & Robinson, D. T. (2022). Investigating path dependence and spatial characteristics for retail success using location allocation and agent-based approaches. Computers, Environment and Urban Systems, 94, 101798.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34408, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Zhang, Q., Wu, X., & Chen, Y. (2022). Is economic crisis an opportunity for realizing the low-carbon transition? A simulation study on the interaction between economic cycle and energy regulation policy. Energy Policy, 168, 113114.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Economics, Physics, Computer Science, Biology" + }, + { + "id": 34409, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Zhang, L., & Jiang, X. (2022, September). Comprehensive evaluation model based on data and analysis system. In International Conference on Intelligent Systems, Communications, and Computer Networks (ISCCN 2022) (Vol. 12332, pp. 458-464). SPIE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Data Analysis, Computer Science, Intelligent Systems, Economics, Statistics, Communication, Engineering, Mathematics, Physics, Social Science, Education" + }, + { + "id": 34410, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Zhang, W., Yuan, J., Zhang, H. N., & Li, B. Y. Simulation research on blockchain bidding model. In Proc. of SPIE Vol (Vol. 12160, pp. 121600Q-1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Economics, Physics, Chemistry, Archaeology, Ecology" + }, + { + "id": 34411, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Zhang, Y., Gao, J., Bilgihan, A., & Lorenz, M. (2022). A holistic assessment of eWOM management effectiveness with agent-based modeling. International Journal of Contemporary Hospitality Management, (ahead-of-print).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34412, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Zhang, Y., Xu, L., Gong, Z., Wang, Y., & Wang, Z. (2022). Study Blockchain-Based Supply Chain Finance System of the Construction Industrialization. In International Symposium on Advancement of Construction Management and Real Estate (pp. 804-816). Springer, Singapore. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Blockchain, Construction, Supply Chain, Finance, Management, Real Estate" + }, + { + "id": 34413, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Zhao, B., Lyu, X., & Qi, N. (2022). Construction and Optimization of Transboundary Business Financial Credit Network in the Era of 5G Communication. Wireless Communications and Mobile Computing, 2022.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34414, + "sort": null, + "year": 2022, + "is_ccl": true, + "reference": "Zhao, L., Peel, A., Horn, M.S., Wilensky, U. (2022). Student perceptions of computational thinking practices in a CT-integrated environmental science unit. Paper accepted to the Annual Meeting of the American Educational Research Association (AERA) 2022. San Diego, CA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computing, Ecology, Education, Economics" + }, + { + "id": 34415, + "sort": null, + "year": 2022, + "is_ccl": true, + "reference": "Zhao, L., Peel, A., Horn, M. S., & Wilensky, U. (2022). Student Perceptions of Computational Thinking Practices in a CT-integrated Environmental Science Unit. the National Association for Research in Science Teaching (NARST) 2022. Vancouver, British Columbia.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34416, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Zhao, N., Chong, H. Y., & Li, Q. (2022). Agent-based modelling of helping behaviour diffusion in project teams as an evolutionary process. Journal of Simulation, 1-18.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34417, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Zhao, N., Lei, C., Liu, H., & Wu, C. (2022). Improving the Effectiveness of Organisational Collaborative Innovation in Megaprojects: An Agent-Based Modelling Approach. Sustainability, 14(15), 9070. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34418, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Zhong, J., Li, D., Huang, Z., Lu, C., & Cai, W. (2022). Data-driven Crowd Modeling Techniques: A Survey. ACM Transactions on Modeling and Computer Simulation (TOMACS), 32(1), 1-33.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34419, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Zhong, Q., Hilbert, M., & Frey, S. (2022). Breaking the Structural Reinforcement: An Agent-Based Model on Cultural Consumption and Social Relations. Social Science Computer Review, 08944393211056501.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34420, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Zhou, J., Kofinas, G. P., Kielland, K., Boone, R. B., Prugh, L., & Tape, K. D. (2022). Climate change, moose, and subsistence harvest: social-ecological assessment of Nuiqsut, Alaska. Ecology and Society, 27(3), 29.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34421, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Zhou, Q. (2022, October). Effectiveness of Different Control Measures on the Spread of COVID-19. In\u00a0Proceedings of the 3rd International Symposium on Artificial Intelligence for Medicine Sciences\u00a0(pp. 220-226).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, COVID-19, Artificial Intelligence, Medicine Sciences" + }, + { + "id": 34422, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Zhuo, Q. (2022, October). Predicting the Future of Achieving Herd Immunity in New York City. In Proceedings of the 3rd International Symposium on Artificial Intelligence for Medicine Sciences (pp. 579-582).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Artificial Intelligence, Medicine Sciences" + }, + { + "id": 34423, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Zhou, Y., Shi, S., & Wang, S. (2022). A Multi-Agent Model-Based Evolutionary Model of Port Service Value Network and Decision Preferences. Sustainability, 14(6), 3565.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34424, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Zhu, G., Xing, W., Popov, V., Li, Y., Xie, C., & Horwitz, P. (2022). Using Learning Analytics to Understand Students' Discourse and Behaviors in STEM Education. In Artificial Intelligence in STEM Education (pp. 225-240). CRC Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Learning Analytics, Artificial Intelligence, STEM Education, Computer Science, Ecology" + }, + { + "id": 34425, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "\u017divojinovi\u0107, T., & Zorni\u0107, N. (2022). Anticipating the impact of sharing economy drivers on consumer intention for using a sharing economy service. Journal of East European Management Studies, 27(2), 233-258.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34426, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Zu, C., Zeng, H., Zhou, X. (2022).Computational Simulation of Team Creativity: the Benefit of Member Flow. Frontiers in Psychology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Psychology, Computer Science" + }, + { + "id": 34427, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Zuccotti, C. V., Lorenz, J., Paolillo, R., Rodr\u00edguez S\u00e1nchez, A., & Serka, S. (2022). Exploring the dynamics of neighbourhood ethnic segregation with agent-based modelling: an empirical application to Bradford, UK. Journal of Ethnic and Migration Studies, 1-22.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34428, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Zusai, D., Sawa, R., Cheung, M. W., Lahkar, R., & Wu, J. (2022). Tributes to Bill Sandholm. Journal of Dynamics and Games.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34429, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Zvereva, O., Ershova, I., Goldstein, S., Shangina, E., & Tebaikina, N. (2022, April). Agent-based model implementing for investigation of economic agents\u2019 behavior influence on autonomous community viability. In AIP Conference Proceedings (Vol. 2425, No. 1, p. 110015). AIP Publishing LLC.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economic, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34430, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "\u0421\u0456\u043d\u0438\u0446\u044c\u043a\u0438\u0439, \u041c. \u0404. \u041f\u0420\u041e\u0413\u0420\u0410\u041c\u041d\u0415 \u0417\u0410\u0411\u0415\u0417\u041f\u0415\u0427\u0415\u041d\u041d\u042f \u0415\u041a\u041e\u041d\u041e\u041c\u0406\u0421\u0422\u0406\u0412 \u0423 \u0426\u0418\u0424\u0420\u041e\u0412\u0423 \u0415\u041f\u041e\u0425\u0423. \u0421\u0442\u0440\u0430\u0442\u0435\u0433\u0456\u044f \u0440\u043e\u0437\u0432\u0438\u0442\u043a\u0443 \u0423\u043a\u0440\u0430\u0457\u043d\u0438: \u0444\u0456\u043d\u0430\u043d\u0441\u043e\u0432\u043e-\u0435\u043a\u043e\u043d\u043e\u043c\u0456\u0447\u043d\u0438\u0439 \u0442\u0430 \u0433\u0443\u043c\u0430\u043d\u0456\u0442\u0430\u0440\u043d\u0438\u0439 \u0430\u0441\u043f\u0435\u043a\u0442\u0438: \u043c\u0430\u0442\u0435\u0440\u0456\u0430\u043b\u0438 VIII \u041c\u0456\u0436\u043d\u0430\u0440\u043e\u0434\u043d\u043e\u0457 \u043d\u0430\u0443\u043a\u043e\u0432\u043e-\u043f\u0440\u0430\u043a\u0442\u0438\u0447\u043d\u043e\u0457 \u043a\u043e\u043d\u0444\u0435\u0440\u0435\u043d\u0446\u0456\u0457. \u041a\u0438\u0457\u0432,\u00ab\u0406\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0456\u0439\u043d\u043e-\u0430\u043d\u0430\u043b\u0456\u0442\u0438\u0447\u043d\u0435 \u0430\u0433\u0435\u043d\u0442\u0441\u0442\u0432\u043e\u00bb, 2021. 309 c., 251.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34431, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "\u041a\u0430\u0440\u0447\u0435\u0432\u0441\u044c\u043a\u0438\u0439, \u041c. \u0412. (2022). \u041e\u0411\u0427\u0418\u0421\u041b\u042e\u0412\u0410\u041b\u042c\u041d\u0415 \u041a\u0420\u0418\u041c\u0406\u041d\u041e\u041b\u041e\u0413\u0406\u0427\u041d\u0415 \u0410\u0420\u0413\u0423\u041c\u0415\u041d\u0422\u0423\u0412\u0410\u041d\u041d\u042f: \u041f\u041e\u041d\u042f\u0422\u0422\u042f, \u041c\u041e\u0416\u041b\u0418\u0412\u041e\u0421\u0422\u0406 \u0422\u0410 \u041f\u0415\u0420\u0421\u041f\u0415\u041a\u0422\u0418\u0412\u0418 \u0412\u0418\u041a\u041e\u0420\u0418\u0421\u0422\u0410\u041d\u041d\u042f. \u0412\u0456\u0441\u043d\u0438\u043a \u041b\u0443\u0433\u0430\u043d\u0441\u044c\u043a\u043e\u0433\u043e \u0434\u0435\u0440\u0436\u0430\u0432\u043d\u043e\u0433\u043e \u0443\u043d\u0456\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0443 \u0432\u043d\u0443\u0442\u0440\u0456\u0448\u043d\u0456\u0445 \u0441\u043f\u0440\u0430\u0432 \u0456\u043c\u0435\u043d\u0456 \u0415\u041e \u0414\u0456\u0434\u043e\u0440\u0435\u043d\u043a\u0430, 4(100), 112-126.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 34432, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "\u0415\u0420\u0428\u041e\u0412, \u041d. \u041c. (2022). \u0420\u0410\u0417\u0420\u0410\u0411\u041e\u0422\u041a\u0410 \u0418 \u0418\u0421\u0421\u041b\u0415\u0414\u041e\u0412\u0410\u041d\u0418\u0415 \u0420\u0410\u0421\u041f\u0420\u0415\u0414\u0415\u041b\u0415\u041d\u041d\u042b\u0425 \u0410\u041b\u0413\u041e\u0420\u0418\u0422\u041c\u041e\u0412 \u0423\u041f\u0420\u0410\u0412\u041b\u0415\u041d\u0418\u042f \u0421\u0418\u0421\u0422\u0415\u041c\u0410\u041c\u0418 \u0420\u041e\u0415\u0412\u041e\u0413\u041e \u0418\u041d\u0422\u0415\u041b\u041b\u0415\u041a\u0422\u0410. COMPUTATIONAL NANOTECHNOLOGY \u0423\u0447\u0440\u0435\u0434\u0438\u0442\u0435\u043b\u0438: \u041e\u041e\u041e\" \u0418\u0437\u0434\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u0434\u043e\u043c\" \u042e\u0440-\u0412\u0410\u041a\", 9(2), 21-34.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34433, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "\u041c\u0430\u043a\u0430\u0440\u043e\u0432, \u0412. \u041b., \u0411\u0430\u0445\u0442\u0438\u0437\u0438\u043d, \u0410. \u0420., \u0411\u0435\u043a\u043b\u0430\u0440\u044f\u043d, \u0413. \u041b., \u0410\u043a\u043e\u043f\u043e\u0432, \u0410. \u0421., & \u0421\u0442\u0440\u0435\u043b\u043a\u043e\u0432\u0441\u043a\u0438\u0439, \u041d. \u0412. (2022). \u041c\u041e\u0414\u0415\u041b\u0418\u0420\u041e\u0412\u0410\u041d\u0418\u0415 \u041c\u0418\u0413\u0420\u0410\u0426\u0418\u041e\u041d\u041d\u042b\u0425 \u0418 \u0414\u0415\u041c\u041e\u0413\u0420\u0410\u0424\u0418\u0427\u0415\u0421\u041a\u0418\u0425 \u041f\u0420\u041e\u0426\u0415\u0421\u0421\u041e\u0412 \u0421 \u0418\u0421\u041f\u041e\u041b\u042c\u0417\u041e\u0412\u0410\u041d\u0418\u0415\u041c FLAME GPU. \u0411\u0438\u0437\u043d\u0435\u0441-\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u043a\u0430, 16(1), 7-21.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Miscellaneous" + }, + { + "id": 34434, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "\u041a\u0430\u0431\u0430\u043d\u043e\u0432, \u0410. \u0410. (2022). \u041c\u041e\u0414\u0415\u041b\u042c\u041d\u041e-\u041e\u0420\u0418\u0415\u041d\u0422\u0418\u0420\u041e\u0412\u0410\u041d\u041d\u0410\u042f \u0420\u0410\u0417\u0420\u0410\u0411\u041e\u0422\u041a\u0410 \u041f\u0420\u041e\u0418\u0417\u0412\u041e\u0414\u0421\u0422\u0412 \u0420\u0410\u041a\u0415\u0422\u041d\u041e-\u041a\u041e\u0421\u041c\u0418\u0427\u0415\u0421\u041a\u0418\u0425 \u0421\u0418\u0421\u0422\u0415\u041c \u0412 \u041a\u041e\u041d\u0422\u0415\u041a\u0421\u0422\u0415 \u0418\u0417\u0414\u0415\u041b\u0418\u0419 \u0412 \u0410\u042d\u0420\u041e\u041a\u041e\u0421\u041c\u0418\u0427\u0415\u0421\u041a\u0418\u0425 \u0412\u0423\u0417\u0410\u0425. \u041a\u043e\u0441\u043c\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0430\u043f\u043f\u0430\u0440\u0430\u0442\u044b \u0438 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438, 6(3 (41)), 195-205.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Astronomy, Economics, Computer Science, Physics, Chemistry, Archaeology, Miscellaneous" + }, + { + "id": 34435, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "\u897f\u7530\u907c, \u91cd\u4e2d\u79c0\u4ecb, \u52a0\u85e4\u512a\u4f5c, & \u5927\u897f\u6b63\u8f1d. (2022). \u7fa4\u96c6\u30b7\u30df\u30e5\u30ec\u30fc\u30b7\u30e7\u30f3\u306b\u3088\u308b\u6b69\u884c\u7a7a\u9593\u8a2d\u8a08\u3068\u5236\u5fa1\u306b\u95a2\u3059\u308b\u7814\u7a76\u52d5\u5411. \u4eba\u5de5\u77e5\u80fd\u5b66\u4f1a\u8ad6\u6587\u8a8c, 37(2), J-LB1_1.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 34436, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "\u738b\u5947, \u738b\u521a\u6865, \u9648\u6c38\u5f3a, & \u5218\u5955. \u9762\u5411\u793e\u4f1a\u8ba1\u7b97\u7684\u96c6\u6210\u5efa\u6a21\u65b9\u6cd5\u4e0e\u5e94\u7528\u7cfb\u7edf. \u8ba1\u7b97\u673a\u79d1\u5b66, 49(4), 25-29.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 34437, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "\u674e\u6625\u53d1, \u66f9\u9896\u9896, \u738b\u806a, & \u90dd\u7433\u5a1c. (2022). \u5e73\u53f0\u89c4\u5236\u4e0b\u76f4\u64ad\u7535\u5546\u4e09\u65b9\u7b56\u7565\u6f14\u5316\u535a\u5f08\u4e0e\u4eff\u771f. \u590d\u6742\u7cfb\u7edf\u4e0e\u590d\u6742\u6027\u79d1\u5b66, 19(1), 34-44.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34438, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "\u72ac\u98fc\u4f73\u543e. (2022). \u30de\u30eb\u30c1\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u306e\u305f\u3081\u306e\u884c\u52d5\u79d1\u5b66: \u5b9f\u9a13\u7d4c\u6e08\u5b66\u304b\u3089\u306e\u30a2\u30d7\u30ed\u30fc\u30c1. \u884c\u52d5\u7d4c\u6e08\u5b66, 15, 1-3.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Behavioral Economics" + }, + { + "id": 34439, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "\u5e2d\u5468\u6167, \u5b5f\u5fb7\u9716, & \u8d75\u7ee7\u519b. (2022). \u94bb\u77f3\u516c\u4e3b\u53f7\u90ae\u8f6e\u4e0a COVID-19 \u4f20\u64ad\u52a8\u6001\u7684\u7814\u7a76. \u590d\u6742\u7cfb\u7edf\u4e0e\u590d\u6742\u6027\u79d1\u5b66, 19(1), 67-73.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34440, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "\u51af\u6960, \u4efb\u5f6c\u5f6c, \u9ec4\u6893\u5bb8, & \u674e\u654f\u5f3a. (2022). \u6570\u5b57\u7ecf\u6d4e\u4e0b\u5de5\u4e1a\u4e92\u8054\u7f51\u5e73\u53f0\u4fe1\u606f\u5171\u4eab\u6fc0\u52b1\u673a\u5236\u7814\u7a76. \u5317\u4eac\u4ea4\u901a\u5927\u5b66\u5b66\u62a5 (\u793e\u4f1a\u79d1\u5b66\u7248), 21(02), 1.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34441, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": " \u4e01\u4f1f, \u660e\u632f\u519b, \u738b\u56fd\u65b0, & \u960e\u8273. (2022). \u57fa\u4e8e\u591a\u5c42\u6b21 LSTM \u7f51\u7edc\u7684\u591a\u667a\u80fd\u4f53\u653b\u9632\u6548\u80fd\u52a8\u6001\u9884\u6d4b\u6a21\u578b. \u5175\u5de5\u5b66\u62a5, 0. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34442, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "\u8303\u6625\u6885, \u5434\u9633, & \u674e\u534e\u5f3a. (2022). \u5956\u60e9\u673a\u5236\u548c\u6e38\u5ba2\u53c2\u4e0e\u4e0b\u7684\u4f4e\u4ef7\u6e38\u76d1\u7ba1\u2014\u2014\u57fa\u4e8e\u4e09\u65b9\u6f14\u5316\u535a\u5f08\u89c6\u89d2. \u7ba1\u7406\u8bc4\u8bba, 34(3), 290.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34443, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "\u6bd5\u5d07\u6b66, \u8d20\u5a55, \u5468\u9759\u8679, & \u53f6\u5149\u8f89. (2022). \u5f15\u6587\u5185\u5bb9\u89c6\u89d2\u4e0b\u7684\u5f15\u6587\u7f51\u7edc\u77e5\u8bc6\u6d41\u52a8\u7f51\u7edc\u5206\u6790. \u60c5\u62a5\u79d1\u5b66, 39(1), 79.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34444, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "\u738b\u836a\u99a8, \u738b\u5f66\u660e, \u5b54\u6770, & \u7533\u9ad8\u6500. (2022). \u4e00\u79cd\u67d4\u6027\u7f29\u653e\u7684\u7fa4\u673a\u5668\u4eba\u5f62\u6001\u81ea\u4fee\u590d\u65b9\u6cd5. \u897f\u5317\u5de5\u4e1a\u5927\u5b66\u5b66\u62a5, 40(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 34445, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "\u6bd5\u5d07\u6b66, \u8d20\u5a55, \u5468\u9759\u8679, & \u53f6\u5149\u8f89. (2022). \u5f15\u6587\u5185\u5bb9\u89c6\u89d2\u4e0b\u7684\u5f15\u6587\u7f51\u7edc\u77e5\u8bc6\u6d41\u52a8\u7f51\u7edc\u5206\u6790. \u60c5\u62a5\u79d1\u5b66, 39(1), 79.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34446, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "\u8881\u535a. (2022). \u57fa\u4e8e\u52a8\u6001\u535a\u5f08\u7684\u7f51\u7edc\u9632\u5fa1\u7b56\u7565\u9009\u53d6\u65b9\u6cd5\u7814\u7a76 (Master's thesis, \u90d1\u5dde\u8f7b\u5de5\u4e1a\u5927\u5b66).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34447, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "\u66fe\u6768, \u9ece\u91d1\u73b2, \u90ed\u6d77\u6e58, & \u9648\u536b\u660e. (2022). \u57fa\u4e8e\u98ce\u9669\u611f\u77e5\u7684\u5ba4\u5185\u758f\u6563\u60c5\u7eea\u4f20\u67d3\u4e0e\u5e72\u9884\u7b56\u7565\u7814\u7a76. \u7cfb\u7edf\u4eff\u771f\u5b66\u62a5, 34(12), 2691.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34448, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "\u859b\u9704, \u4e8e\u6e58\u51dd, \u5468\u5fb7\u96e8, \u5f6d\u8d85, \u738b\u6653, \u5468\u957f\u5175, & \u738b\u98de\u8dc3. (2022). \u8ba1\u7b97\u5b9e\u9a8c\u65b9\u6cd5\u7684\u6eaf\u6e90, \u73b0\u72b6\u4e0e\u5c55\u671b. \u81ea\u52a8\u5316\u5b66\u62a5, 48, 1-26.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 34449, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "\u5f20\u946b. (2022). \u4fe1\u606f\u6fc0\u52b1\u5bf9\u5c45\u6c11\u5783\u573e\u5206\u7c7b\u884c\u4e3a\u5f71\u54cd\u673a\u7406\u53ca\u653f\u7b56\u4eff\u771f\u7814\u7a76 (Master's thesis, \u4e2d\u56fd\u77ff\u4e1a\u5927\u5b66).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34450, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "\u52a0\u85e4\u5927\u671b, \u77e2\u7530\u6607\u5e73, & \u5009\u6a4b\u7bc0\u4e5f. (2022). Multi-agent system \u3092\u7528\u3044\u305f\u5de5\u5834\u5185 AGV \u642c\u9001\u30b7\u30b9\u30c6\u30e0\u306e\u89e3\u6790. In \u4eba\u5de5\u77e5\u80fd\u5b66\u4f1a\u5168\u56fd\u5927\u4f1a\u8ad6\u6587\u96c6 \u7b2c 36 \u56de (2022) (pp. 3O4GS502-3O4GS502). \u4e00\u822c\u793e\u56e3\u6cd5\u4eba \u4eba\u5de5\u77e5\u80fd\u5b66\u4f1a.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34451, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "\u062c\u0639\u0641\u0631\u06cc, \u062c\u06cc\u0631\u06cc\u0627\u06cc\u06cc, \u0645\u0633\u06af\u0631\u06cc, & \u0645\u062d\u0645\u062f \u0633\u0639\u062f\u06cc. \u0645\u062f\u0644\u0633\u0627\u0632\u06cc \u0639\u0627\u0645\u0644 \u0645\u0628\u0646\u0627\u06cc \u06af\u0633\u062a\u0631\u0634 \u0628\u06cc\u0645\u0627\u0631\u06cc \u0645\u0627\u0644\u0627\u0631\u06cc\u0627. Journal of Geomatics Science and Technology, 11(1), 205-219.\u200e", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Archaeology, Geography" + }, + { + "id": 34452, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "\u0631\u0645\u0636\u0627\u0646\u06cc, \u0645\u062d\u0645\u062f, \u0645\u06cc\u0631\u0632\u0627\u062d\u0633\u06cc\u0646, \u0631\u0635\u0627\u0641\u06cc, & \u0627\u0645\u06cc\u0631\u0639\u0628\u0627\u0633. (2022). \u0645\u062f\u0644 \u0639\u0627\u0645\u0644-\u0645\u0628\u0646\u0627\u06cc \u0633\u0648\u062e\u062a\u200c\u06af\u06cc\u0631\u06cc \u0648\u0633\u0627\u06cc\u0644 \u0646\u0642\u0644\u06cc\u0647\u200c\u06cc \u0634\u062e\u0635\u06cc \u0628\u0627 \u0631\u0648\u06cc\u06a9\u0631\u062f \u0645\u062f\u06cc\u0631\u06cc\u062a \u062a\u0642\u0627\u0636\u0627 \u0648 \u0645\u0642\u0627\u06cc\u0633\u0647\u200c\u06cc \u0646\u062a\u0627\u06cc\u062c \u0622\u0646 \u0628\u0627 \u0631\u062c\u062d\u0627\u0646 \u0628\u06cc\u0627\u0646\u200c\u0634\u062f\u0647\u200c\u06cc \u06a9\u0627\u0631\u0628\u0631\u0627\u0646: \u0645\u0637\u0627\u0644\u0639\u0647\u200c\u06cc \u0645\u0648\u0631\u062f\u06cc \u06a9\u0644\u0627\u0646\u200c\u0634\u0647\u0631 \u062a\u0647\u0631\u0627\u0646. \u0646\u0634\u0631\u06cc\u0647 \u0645\u0647\u0646\u062f\u0633\u06cc \u0639\u0645\u0631\u0627\u0646 \u0627\u0645\u06cc\u0631\u06a9\u0628\u06cc\u0631.\u200e", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34453, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "\u0631\u062d\u0645\u0627\u0646 \u0622\u0631\u0634. \u0641\u0634\u0627\u0631 \u0647\u0645\u062a\u0627\u06cc\u0627\u0646 \u062f\u0631 \u0627\u0633\u062a\u0639\u0645\u0627\u0644 \u062f\u062e\u0627\u0646\u06cc\u0627\u062a \u0648 \u062a\u0627\u062b\u06cc\u0631 \u0622\u0646 \u0628\u0631 \u0631\u0641\u0627\u0647 \u0627\u062c\u062a\u0645\u0627\u0639\u06cc\u061b \u06cc\u06a9 \u0628\u0631\u0631\u0633\u06cc \u0628\u0627 \u0645\u062f\u0644 \u0633\u0627\u0632\u06cc \u0648 \u0634\u0628\u06cc\u0647 \u0633\u0627\u0632\u06cc \u0645\u0628\u062a\u0646\u06cc \u0628\u0631 \u0639\u0627\u0645\u0644. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 34454, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "\u0631\u0636\u0627\u0626\u06cc, & \u0648\u062d\u06cc\u062f\u0646\u06cc\u0627. (2022). \u0631\u0627\u0647\u06a9\u0627\u0631\u0647\u0627\u06cc \u0628\u0627\u0632\u062f\u0627\u0631\u0646\u062f\u0647 \u0628\u0631\u0627\u06cc \u062c\u0644\u0648\u06af\u06cc\u0631\u06cc \u0627\u0632 \u0633\u06cc\u0644 \u0628\u0647 \u06a9\u0645\u06a9 \u0633\u0646\u062c\u0634 \u0627\u0632 \u062f\u0648\u0631 \u0648 \u0631\u0648\u06cc\u06a9\u0631\u062f\u0647\u0627\u06cc \u062a\u0644\u0641\u06cc\u0642\u06cc \u0645\u0646\u0637\u0642 \u0641\u0627\u0632\u06cc \u0648 \u0645\u062f\u0644 \u0633\u0627\u0632\u06cc \u0639\u0627\u0645\u0644 \u0645\u0628\u0646\u0627. \u0641\u0635\u0644\u0646\u0627\u0645\u0647 \u0639\u0644\u0645\u06cc-\u067e\u0698\u0648\u0647\u0634\u06cc \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u062c\u063a\u0631\u0627\u0641\u06cc\u0627\u06cc\u06cc \u00ab\u0633\u067e\u0647\u0631\u00bb, 31(121), 111-125.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34455, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "\u0639\u0628\u0627\u0633\u06cc \u0633\u06cc\u0631, \u0633\u0644\u0645\u0627\u0646, \u0647\u0627\u0634\u0645\u06cc \u06af\u0647\u0631, \u0641\u06cc\u0636\u06cc, & \u0639\u0645\u0651\u0627\u0631. (2022). \u0645\u062f\u0644\u200c\u0633\u0627\u0632\u06cc \u0639\u0627\u0645\u0644\u200c\u0628\u0646\u06cc\u0627\u0646 \u0631\u0641\u062a\u0627\u0631 \u0633\u0647\u0627\u0645\u062f\u0627\u0631\u0627\u0646 \u062f\u0631 \u0628\u0627\u0632\u0627\u0631 \u0627\u0648\u0631\u0627\u0642 \u0628\u0647\u0627\u062f\u0627\u0631 \u062a\u0647\u0631\u0627\u0646 (\u0645\u0648\u0631\u062f \u0645\u0637\u0627\u0644\u0639\u0647: \u0634\u0631\u06a9\u062a \u0641\u0648\u0644\u0627\u062f \u0645\u0628\u0627\u0631\u06a9\u0647 \u0627\u0635\u0641\u0647\u0627\u0646). \u067e\u0698\u0648\u0647\u0634 \u0647\u0627\u06cc \u0646\u0648\u06cc\u0646 \u062f\u0631 \u062a\u0635\u0645\u06cc\u0645 \u06af\u06cc\u0631\u06cc, 7(1), 88-114.\u200e", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Computer Science, Miscellaneous" + }, + { + "id": 34456, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "\u062d\u0633\u06cc\u0646\u06cc, \u0622\u0630\u0631, \u0639\u0627\u062f\u0644, \u0622\u0630\u0631\u0641\u0631, & \u0639\u0628\u0627\u062f\u06cc. (2022). \u0634\u0646\u0627\u0633\u0627\u06cc\u06cc \u0648 \u0627\u0631\u0632\u06cc\u0627\u0628\u06cc \u0631\u06cc\u0633\u06a9\u200c\u0647\u0627\u06cc \u0632\u0646\u062c\u06cc\u0631\u0647 \u062a\u0623\u0645\u06cc\u0646 \u0635\u0646\u0639\u062a \u0628\u06cc\u0645\u0647 \u0628\u0627 \u0631\u0648\u06cc\u06a9\u0631\u062f \u0634\u0628\u06cc\u0647\u200c\u0633\u0627\u0632\u06cc \u0639\u0627\u0645\u0644 \u0628\u0646\u06cc\u0627\u0646. \u067e\u0698\u0648\u0647\u0634 \u0647\u0627\u06cc \u067e\u06cc\u0634\u0631\u0641\u062a: \u0633\u06cc\u0633\u062a\u0645 \u0647\u0627 \u0648 \u0631\u0627\u0647\u0628\u0631\u062f\u0647\u0627, 2(4), 11-44.\u200e", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34457, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "\u0645\u06cc\u0646\u0627\u06cc\u06cc, \u0645\u0698\u062f\u0647, \u0648\u062d\u06cc\u062f\u0646\u06cc\u0627, & \u0645\u062d\u0645\u062f \u062d\u0633\u0646. (2022). \u0631\u0627\u0647\u06a9\u0627\u0631\u0647\u0627\u06cc \u0628\u0627\u0632\u062f\u0627\u0631\u0646\u062f\u0647 \u0628\u0631\u0627\u06cc \u062c\u0644\u0648\u06af\u06cc\u0631\u06cc \u0627\u0632 \u0633\u06cc\u0644 \u0628\u0647 \u06a9\u0645\u06a9 \u0633\u0646\u062c\u0634\u200c\u0627\u0632\u062f\u0648\u0631 \u0648 \u0645\u062f\u0644\u200c\u0633\u0627\u0632\u06cc \u0639\u0627\u0645\u0644 \u0645\u0628\u0646\u0627 (\u0645\u0637\u0627\u0644\u0639\u0647 \u0645\u0648\u0631\u062f\u06cc: \u0634\u0647\u0631\u0633\u062a\u0627\u0646 \u0634\u0648\u0634). \u0645\u062e\u0627\u0637\u0631\u0627\u062a \u0645\u062d\u06cc\u0637 \u0637\u0628\u06cc\u0639\u06cc.\u200e", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 34458, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "\u0414\u0443\u0431\u043e\u0432\u0441\u044c\u043a\u0438\u0439, \u0410. \u0410. (2022). \u0410\u041d\u0410\u041b\u0406\u0417 \u041f\u0420\u0418\u041d\u0426\u0418\u041f\u0406\u0412, \u041c\u0415\u0422\u041e\u0414\u0406\u0412 \u0406 \u041f\u0420\u041e\u0413\u0420\u0410\u041c\u041d\u0418\u0425 \u0417\u0410\u0421\u041e\u0411\u0406\u0412 \u041f\u0420\u041e\u0413\u041d\u041e\u0417\u0423\u0412\u0410\u041d\u041d\u042f \u0412\u0410\u041a\u0410\u041d\u0421\u0406\u0419 \u041d\u0410 \u0420\u0418\u041d\u041a\u0423 \u041f\u0420\u0410\u0426\u0406. \u0422\u0435\u0437\u0438 \u0434\u043e\u043f\u043e\u0432\u0456\u0434\u0435\u0439 V\u0406 \u041c\u0456\u0436\u043d\u0430\u0440\u043e\u0434\u043d\u043e\u0457 \u043d\u0430\u0443\u043a\u043e\u0432\u043e-\u043f\u0440\u0430\u043a\u0442\u0438\u0447\u043d\u043e\u0457 \u043a\u043e\u043d\u0444\u0435\u0440\u0435\u043d\u0446\u0456\u0457 \u00ab\u0406\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0456\u0439\u043d\u0456 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0456\u0457 \u0432 \u043e\u0441\u0432\u0456\u0442\u0456, \u043d\u0430\u0443\u0446\u0456 \u0456 \u0442\u0435\u0445\u043d\u0456\u0446\u0456\u00bb(\u0406\u0422\u041e\u041d\u0422-2022),(\u0427\u0435\u0440\u043a\u0430\u0441\u0438, 23-25 \u0447\u0435\u0440\u0432\u043d\u044f 2022 \u0440.)[\u0415\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u0438\u0439 \u0440\u0435\u0441\u0443\u0440\u0441]. \u0427\u0435\u0440\u043a\u0430\u0441\u0438: \u0427\u0414\u0422\u0423, 2022. 220 \u0441., 107.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34459, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "\u0418\u041b\u042c\u0418\u041d\u0421\u041a\u0418\u0419, \u0410. \u0418. \u0423\u0447\u0440\u0435\u0434\u0438\u0442\u0435\u043b\u0438: \u0411\u043e\u0433\u043e\u043c\u043e\u043b\u043e\u0432 \u0410\u043b\u0435\u043a\u0441\u0430\u043d\u0434\u0440 \u0418\u0432\u0430\u043d\u043e\u0432\u0438\u0447. \u0425\u0420\u041e\u041d\u041e\u042d\u041a\u041e\u041d\u041e\u041c\u0418\u041a\u0410 \u0423\u0447\u0440\u0435\u0434\u0438\u0442\u0435\u043b\u0438: \u0411\u043e\u0433\u043e\u043c\u043e\u043b\u043e\u0432 \u0410\u043b\u0435\u043a\u0441\u0430\u043d\u0434\u0440 \u0418\u0432\u0430\u043d\u043e\u0432\u0438\u0447, (4), 62-65.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics" + }, + { + "id": 34460, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "\u0645\u06cc\u0646\u0627\u06cc\u06cc, \u0648\u062d\u06cc\u062f\u0646\u06cc\u0627, & \u0645\u062d\u0645\u062f \u062d\u0633\u0646. (2022). \u0631\u0627\u0647\u06a9\u0627\u0631\u0647\u0627\u06cc \u0628\u0627\u0632\u062f\u0627\u0631\u0646\u062f\u0647 \u0628\u0631\u0627\u06cc \u062c\u0644\u0648\u06af\u06cc\u0631\u06cc \u0627\u0632 \u0633\u06cc\u0644 \u0628\u0647 \u06a9\u0645\u06a9 \u0633\u0646\u062c\u0634\u200c\u0627\u0632\u062f\u0648\u0631 \u0648 \u0645\u062f\u0644\u200c\u0633\u0627\u0632\u06cc \u0639\u0627\u0645\u0644 \u0645\u0628\u0646\u0627 (\u0645\u0637\u0627\u0644\u0639\u0647 \u0645\u0648\u0631\u062f\u06cc: \u0634\u0647\u0631\u0633\u062a\u0627\u0646 \u0634\u0648\u0634). \u0645\u062e\u0627\u0637\u0631\u0627\u062a \u0645\u062d\u06cc\u0637 \u0637\u0628\u06cc\u0639\u06cc, 1-1.\u200e", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 34461, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "\u0627\u0633\u062f\u06cc, \u0631\u062d\u0645\u0627\u0646, & \u0634\u0627\u0647 \u0645\u062d\u0645\u062f\u06cc \u062f\u0631\u0645\u0646\u06cc. \u0645\u062f\u0644\u200c\u0633\u0627\u0632\u06cc \u0648 \u0634\u0628\u06cc\u0647\u200c\u0633\u0627\u0632\u06cc \u0645\u0631\u0627\u062d\u0644 \u0645\u062e\u062a\u0644\u0641 \u0631\u0634\u062f \u0648 \u067e\u0627\u0633\u062e \u0628\u0647 \u062f\u0631\u0645\u0627\u0646 \u0633\u0631\u0637\u0627\u0646 \u0633\u0631\u0648\u06cc\u06a9\u0633. \u0645\u062c\u0644\u0647 \u0627\u0646\u0641\u0648\u0631\u0645\u0627\u062a\u06cc\u06a9 \u0633\u0644\u0627\u0645\u062a \u0648 \u0632\u06cc\u0633\u062a \u067e\u0632\u0634\u06a9\u06cc, 8(2), 140-152.\u200e", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Epidemiology, Miscellaneous" + }, + { + "id": 34462, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Saba, J., Hel-Or, H., & Levy, S. T. \u05ea\u05d5\u05db\u05e8\u05e2\u05de \u05dc\u05e9 \u05dd\u05d9\u05d9\u05d1\u05d5\u05e9\u05d9\u05d7 \u05dd\u05d9\u05dc\u05d3\u05d5\u05de \u05ea\u05d9\u05d9\u05e0\u05d1 \u05d9\u05d3\u05d9 \u05dc\u05e2 \u05d4\u05d3\u05d9\u05de\u05dc \u05dd\u05d9\u05d9\u05e0\u05d9\u05d1\u05d4 \u05ea\u05d1\u05d9\u05d8\u05d7 \u05d9\u05d3\u05d9\u05de\u05dc\u05ea \u05d1\u05e8\u05e7\u05d1 \u05e2\u05d3\u05de\u05d1 \u05ea\u05d5\u05d1\u05db\u05e8\u05d5\u05de.\u200e", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Miscellaneous" + }, + { + "id": 34463, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "\u0421\u0430\u0440\u043d\u0430\u0446\u044c\u043a\u0438\u0439, \u0412. \u0412., & \u0411\u0430\u043a\u043b\u0430\u043d, \u0406. \u0412. \u041c\u0415\u0422\u041e\u0414\u0418 \u0422\u0410 \u0417\u0410\u0421\u041e\u0411\u0418 \u041c\u041e\u0414\u0415\u041b\u042e\u0412\u0410\u041d\u041d\u042f \u0420\u041e\u0417\u041f\u041e\u0412\u0421\u042e\u0414\u0416\u0415\u041d\u041d\u042f \u0406\u041d\u0424\u0415\u041a\u0426\u0406\u0419\u041d\u0418\u0425 \u0417\u0410\u0425\u0412\u041e\u0420\u042e\u0412\u0410\u041d\u042c.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 34464, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "\u041f\u0438\u0441\u043a\u043e\u0432\u0430\u044f, \u0415. \u0410., & \u0414\u0438\u043c\u043e\u0432, \u0410. \u0412. (2022). \u0418\u041c\u0418\u0422\u0410\u0426\u0418\u041e\u041d\u041d\u041e\u0415 \u041c\u041e\u0414\u0415\u041b\u0418\u0420\u041e\u0412\u0410\u041d\u0418\u0415 \u041f\u0415\u0420\u0415\u0412\u041e\u0417\u041e\u0427\u041d\u041e\u0413\u041e \u041f\u0420\u041e\u0426\u0415\u0421\u0421\u0410 \u041d\u0410 \u0416\u0415\u041b\u0415\u0417\u041d\u041e\u0414\u041e\u0420\u041e\u0416\u041d\u041e\u041c \u0422\u0420\u0410\u041d\u0421\u041f\u041e\u0420\u0422\u0415. In \u041f\u043e\u0432\u044b\u0448\u0435\u043d\u0438\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0447\u0435\u0441\u043a\u043e\u0433\u043e, \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e, \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0438 \u0438\u043d\u043d\u043e\u0432\u0430\u0446\u0438\u043e\u043d\u043d\u043e-\u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043f\u043e\u0442\u0435\u043d\u0446\u0438\u0430\u043b\u0430 \u043f\u0440\u0435\u0434\u043f\u0440\u0438\u044f\u0442\u0438\u0439, \u043e\u0442\u0440\u0430\u0441\u043b\u0435\u0439 \u0438 \u043d\u0430\u0440\u043e\u0434\u043d\u043e-\u0445\u043e\u0437\u044f\u0439\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0445 \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u043e\u0432 (pp. 212-215).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34465, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "\u0421\u0410\u041c\u041e\u0419\u041b\u041e\u0412\u0410, \u041a. \u0412., & \u0417\u0410\u041c\u042f\u0422\u0418\u041d\u0410, \u0415. \u0411. (2022). \u0410\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0434\u043b\u044f \u043f\u0440\u043e\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043d\u0430\u0434\u0435\u0436\u043d\u044b\u0445 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0432. \u0422\u0440\u0443\u0434\u044b \u0418\u043d\u0441\u0442\u0438\u0442\u0443\u0442\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0420\u0410\u041d, 34(2), 87-76.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Architecture, Systems Programming, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34466, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "\ubc15\uc6d0\ubc94, & \uc774\ubb38\uac78. (2022, June). \ub300\ub300\uae09 \ubb34\uc778\uae30 \uc774\ub3d9\ud45c\uc801 \ud0d0\uc0c9\ubc29\uc548. In 2022 \ub144 \ud55c\uad6d\uc0b0\uc5c5\uacbd\uc601\uc2dc\uc2a4\ud15c\ud559\ud68c \ucd98\uacc4\ud559\uc220\ub300\ud68c (pp. 575-579).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34467, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "\uc815\ud61c\uc601, \uc11c\ubcf4\uc21c, \uc190\uc720\uc9c4, \uae40\ubbf8\uc9c4, \uae40\ubcd1\ub9cc, & \uc190\uc77c\uc218. (2022). \ud589\uc704\uc790\uae30\ubc18\ubaa8\ud615 (ABM) \uc744 \ud65c\uc6a9\ud55c \uc800\ucd9c\uc0dd \ud604\uc0c1 \ud0d0\uc0c9. \uad50\uc721\ud601\uc2e0\uc5f0\uad6c, 32, 139-168.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34468, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Abbasi, K. M., Khan, T. A., & ul Haq, I. (2021). Modeling-framework for model-based software engineering of complex Internet of things systems. Mathematical Biosciences and Engineering, 18(6), 9312-9335.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Modeling" + }, + { + "id": 34469, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Abbott, R., & Lim, J. (2021, July). PyLogo: A Python Reimplementation of (Much of) NetLogo. In SIMULTECH (pp. 199-206).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 34470, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Abd Elhamid, M., Abdelaziz, T., & Bassioni, H. (2021). FACTORS AFFECTING THE THICKNESS OF REPLACEMENT LAYER ON MEDIUM CLAY. ASEAN Engineering Journal, 11(4), 232-245.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34471, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Abdollahian, M., Chang, Y. L., & Lee, Y. Y. (2021, September). A Complex Adaptive System Approach for Anticipating Technology Diffusion, Income Inequality and Economic Recovery. In International Conference on Computational Science and Its Applications (pp. 251-262). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34472, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Abrami, G., Dar\u00e9, W. S., Ducrot, R., Salliou, N., & Bommel, P. Participatory modelling. (2021). The Routledge Handbook of Research Methods for Social-Ecological Systems, 189.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Research Methods, Social-Ecological Systems" + }, + { + "id": 34473, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Abrahamson, D. (2021). Grasp actually: An evolutionist argument for enactivist mathematics education. Human Development. https://doi.org/10.1159/000515680", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34474, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Abrahamson, D., Worsley, M., Pardos, Z., & Ou, L. (2021). Learning analytics of embodied design: Enhancing synergy. International Journal of Child-Computer Interaction, 100409. https://doi.org/10.1016/j.ijcci.2021.100409", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34475, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Abrica, N. L., & Ontiveros, J. A. A. A MODEL FOR REBELLION INFLUENCED BY OPINION AND APPLIED PUBLIC POLICY. Computational Sociology, 201.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34476, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Abuga, D., & Raghava, N. S. (2021). Real-time Smart Garbage Bin Mechanism for Solid Waste Management in Smart Cities. Sustainable Cities and Society, 103347.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 34477, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Acheampong, R. A., & Asabere, S. B. (2021). Simulating the co-emergence of urban spatial structure and commute patterns in an African metropolis: A geospatial agent-based model. Habitat International, 110, 102343.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Urban Studies, Geography" + }, + { + "id": 34478, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Agarwal, Ankit. (2021). Agent-based model of broadband adoption in unserved and underserved areas. Masters Theses. 7973.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34479, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Agha-Hoseinali-Shirazi, M., Bozorg-Haddad, O., Laituri, M., & DeAngelis, D. (2021). Application of Agent Base Modeling in Water Resources Management and Planning. In Essential Tools for Water Resources Analysis, Planning, and Management (pp. 177-216).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Water Resources Management, Planning" + }, + { + "id": 34480, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Agustin, A. D., Ferrer, J. C. M., Bolingot, H. J. M., Celestre, J. D. I., Oppus, C. M., & Monje, J. C. N. (2021, November). Agent-based Modeling of COVID-19 Infection Rate vis-\u00e0-vis the Philippine Government Community Quarantine and Face Covering Measures. In 2021 3rd International Conference on Electrical, Control and Instrumentation Engineering (ICECIE) (pp. 1-8). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34481, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ahimbisibwe, V., Lippe, M., Auch, E., Groeneveld, J., Tumwebaze, S. B., & Berger, U. (2021). Understanding smallholder farmer decision making in forest land restoration using agent-based modeling. Socio-Environmental Systems Modelling, 3, 18036-18036.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Agent-based modeling" + }, + { + "id": 34482, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ahn, S., & Yun, S. J. (2021). A Study on Residents' Participation in Rural Tourism Project Using an Agent-Based Model-Based on the Theory of Planned Behavior. Journal of Korean Society of Rural Planning, 27(2), 77-89.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34483, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ahrweiler, P. (2021). Advances in Social Simulation: Proceedings of the 15th Social Simulation Conference: 23\u201327 September 2019. Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Social Simulation" + }, + { + "id": 34484, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ahumada-Tello, E., & Ramos, K. (2021). Complejidad Social y Educaci\u00f3n Superior. An\u00e1lisis Cr\u00edtico Basado en Agentes. Revista Ciencias de la Complejidad, 2(Edici\u00f3n Especial), 51-59.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34485, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Akundi, A., & Smith, E. (2021). Quantitative Characterization of Complex Systems\u2014An Information Theoretic Approach. Applied System Innovation, 4(4), 99.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Information Theory, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34486, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Alajlan, A., Edris, A., Heckendorn, R. B., & Soule, T. (2021). Using Neural Networks and Genetic Algorithms for Predicting Human Movement in Crowds. In Advances in Artificial Intelligence and Applied Cognitive Computing (pp. 353-368). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Artificial Intelligence, Computer Science, Economics, Psychology, Neuroscience, Learning, Cognitive Computing." + }, + { + "id": 34487, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Alam, M. D. (2021). Development of a Mass Evacuation Decision Support Tool.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 34488, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Albarr\u00e1n, J. C., & Ram\u0131rez, E. C. Digital Twin in Water Supply Systems to Industry 4.0: The Holonic Production Unit. Service Oriented, Holonic and Multi-Agent Manufacturing Systems for Industry of the Future: Proceedings of SOHOMA LATIN AMERICA 2021, 42.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34489, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Albuquerque, E. P. D. (2021). The Creation and Diffusion of Knowledge-an Agent Based Modelling Approach. UCD Centre for Economic Research Working Paper Series; WP2021/13. University College Dublin. School of Economics. 1-22.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34490, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Alcon, A. G. (2021). Alcon Reinforces Strength of Industry-Leading Ophthalmology Portfolio with Largest Surgical Device Scientific Presence at ASCRS 2021 Folgen.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ophthalmology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34491, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Alexander, S. O. (2021). Evaluation, Communication, and Integration of Climate Information across Scales to Foster Local Decision-Making and Support Community Resilience (Doctoral dissertation, The University of Wisconsin-Madison).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34492, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Alfaro, J. F., & Miller, S. A. (2021). Analysis of electrification strategies for rural renewable electrification in developing countries using agent-based models. Energy for Sustainable Development, 61, 89-103.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34493, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Al-Gharaibeh, R. S., & Ali, M. Z. (2021). Knowledge Sharing Framework: a Game-Theoretic Approach. Journal of the Knowledge Economy, 1-35.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34494, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Alimboyong, C. R. (2021). Modeling virus spread on a network using NetLogo for optimum network management. Indonesian Journal of Electrical Engineering and Computer Science, 23(1), 370-377.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Network Science, Computer Science" + }, + { + "id": 34495, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Alipour, M., Salim, H., Stewart, R. A., & Sahin, O. (2021). Residential solar photovoltaic adoption behaviour: End-to-end review of theories, methods and approaches. Renewable Energy.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34496, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Allioui, H., Sadgal, M., & Elfazziki, A. (2021). Optimized control for medical image segmentation: improved multi-agent systems agreements using Particle Swarm Optimization. Journal of Ambient Intelligence and Humanized Computing, 1-19.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 34497, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Allison, A. E., Dickson, M. E., Fisher, K. T., & Thrush, S. F. Communicating drivers of environmental change through transdisciplinary human\u2010environment modelling. Earth's Future, e2020EF001918.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34498, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Al-Najjar, A. A. M. (2021). Optimizing MANETs Network Lifetime Using a Proactive Clustering Algorithm. Turkish Journal of Computer and Mathematics Education (TURCOMAT), 12(2), 3280-3292.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Mathematics" + }, + { + "id": 34499, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Alsharhan, A. M. (2021). Survey of Agent-Based Simulations for Modelling COVID-19 Pandemic. Advances in Science, Technology and Engineering Systems Journal, 6(2), 439-447.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Chemistry, Economics" + }, + { + "id": 34500, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Altun, K., ALTUNTA\u015e, S., & DEREL\u0130, T. An interaction-oriented multi-agent SIR model to assess the spread of SARS-CoV-2. Hacettepe Journal of Mathematics and Statistics, 1-12.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Mathematics, Statistics" + }, + { + "id": 34501, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "\u00c1lvarez-Pomar, L., & Rojas-Galeano, S. (2021). Impact of Personal Protection Habits on the Spread of Pandemics: Insights from an Agent-Based Model. The Scientific World Journal, 2021.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34502, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Alzoor, F. S., Ezzeldin, M., Mohamed, M., & El-Dakhakhni, W. (2021). Prioritizing Bridge Rehabilitation Plans through Systemic Risk-Guided Classifications. Journal of Bridge Engineering, 26(7), 04021038.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Systemic Risk, Bridge Engineering" + }, + { + "id": 34503, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ambrosius, F. H., Kramer, M. R., Spiegel, A., Bokkers, E. A., Bock, B. B., & Hofstede, G. J. (2022). Diffusion of organic farming among Dutch pig farmers: An agent-based model. Agricultural Systems, 197, 103336.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Agent-based modeling, Computer Science, Agriculture" + }, + { + "id": 34504, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ambrosius, F. H., Kramer, M. R., Spiegel, A., Bokkers, E. A., Bock, B. B., & Hofstede, G. J. UNDERSTANDING DIFFUSION OF ORGANIC FARMING AMONG DUTCH PIG FARMERS: AN AGENT-BASED MODEL. Transition through markets, 93.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Agriculture" + }, + { + "id": 34505, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Amparore, E. G., Beccuti, M., Castagno, P., Franceschinis, G., Pennisi, M., & Pernice, S. (2021, December). Multiformalism modeling and simulation of immune system mechanisms. In 2021 IEEE International Conference on Bioinformatics and Biomedicine (BIBM) (pp. 3259-3266). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Immunology, Computer Science, Physics, Biomedical Engineering" + }, + { + "id": 34506, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "An, G., & Cockrell, R. C. (2021). Agent-Based Modeling of Systemic Inflammation: A Pathway Toward Controlling Sepsis. In Sepsis (pp. 231-257). Humana, New York, NY.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Systemic Inflammation, Sepsis" + }, + { + "id": 34507, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "An, L., Grimm, V., Sullivan, A., TurnerII, B. L., Malleson, N., Heppenstall, A., ... & Tang, W. (2021). Challenges, tasks, and opportunities in modeling agent-based complex systems. Ecological Modelling, 457, 109685.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, History, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 34508, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "An, S., Broniec, W., Rugaber, S., Weigel, E., Hammock, J., & Goel, A. (2021). Recognizing Novice Learner\u2019s Modeling Behaviors. In Procs. 19th International Conference on Intelligent Tutoring Systems.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34509, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "An, X., Qi, L., Zhang, J., & Jiang, X. (2021). Research on dual innovation incentive mechanism in terms of organizations\u2019 differential knowledge absorptive capacity.\u00a0Plos one,\u00a016(8), e0256751.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 34510, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Andrade, J. P. B., Maia, J. E. B., & de Campos, G. A. L. (2021). Centralized Algorithms Based on Clustering with Self-tuning of Parameters for Cooperative Target Observation.\u00a0Revista de Inform\u00e1tica Te\u00f3rica e Aplicada,\u00a028(2), 39-49.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Clustering, Parameters, Computer Science, Economics, Archaeology, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34511, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Andrae, S., & Pobuda, P. (2021). Welche Modellierungswerkzeuge stehen zur Verf\u00fcgung?. In Agentenbasierte Modellierung (pp. 37-41). Springer Gabler, Wiesbaden.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Modeling tools" + }, + { + "id": 34512, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Anebagilu, P. K., Dietrich, J., Prado-Stuardo, L., Morales, B., Winter, E., & Arumi, J. L. (2021). Application of the theory of planned behavior with agent-based modeling for sustainable management of vegetative filter strips. Journal of Environmental Management, 284, 112014.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34513, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Angel, M. C. M., Humberto, D. B., & Alfredo, T. M. (2021). Optimization of Vehicle Flow Times in a Single Crossing System Through the Development of a Multi-Agent Platform. Journal homepage: http://iieta. org/journals/isi, 26(4), 387-392.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34514, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Anokhin, A., Burov, S., Parygin, D., Rent, V., Sadovnikova, N., & Finogeev, A. (2021). Development of Scenarios for Modeling the Behavior of People in an Urban Environment. In Society 5.0: Cyberspace for Advanced Human-Centered Society (pp. 103-114). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34515, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Antczak, T., Skorupa, B., Szurlej, M., Weron, R., & Zabawa, J. (2021). Simulation modeling of epidemic risk in supermarkets: Investigating the impact of social distancing and checkout zone design (No. WORMS/21/05). Department of Operations Research and Business Intelligence, Wroclaw University of Science and Technology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Simulation Modeling, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34516, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Anvari, S., Nambiar, S., Pang, J., & Maftoon, N. (2021). Computational Models and Simulations of Cancer Metastasis. Archives of Computational Methods in Engineering, 1-23.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computation, Engineering" + }, + { + "id": 34517, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Anzola, D. (2021). Capturing the representational and the experimental in the modelling of artificial societies. European Journal for Philosophy of Science, 11(3), 1-29.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Philosophy of Science, Economics, Sociology, Computer Science, Physics, Chemistry, Urban Studies, History, Social Science, Education" + }, + { + "id": 34518, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Aqib, M., & Ukil, A. (2020, November). Modelling of Electric Vehicle Charging and Discharging Profile to Mimic Real life Scenario at Charging Stations. In 2020 IEEE REGION 10 CONFERENCE (TENCON) (pp. 501-505). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Electrical Engineering, Computer Science, Energy, Regulation" + }, + { + "id": 34519, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Arasteh, M. A., & Farjami, Y. (2021). New Hydro-economic System Dynamics and Agent-based Modeling for Sustainable Urban Groundwater Management: A Case Study of Dehno, Yazd Province, Iran. Sustainable Cities and Society, 103078.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Economics, Urban Studies, Miscellaneous" + }, + { + "id": 34520, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Arico, F., Annatelli, M., & Trapasso, G. (2021). Turning mustard gas chemistry into green chemistry: a new tool for pharmaceutical synthesis. In 6th Green & Sustainable Chemistry Conference. Elsevier.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Chemistry, Miscellaneous" + }, + { + "id": 34521, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ariosa Hern\u00e1ndez, R. (2021). N2P: Netlogo to Pandora, noves funcionalitats i m\u00f2dul de visualitzaci\u00f3 en entorns ABM (Bachelor's thesis, Universitat Polit\u00e8cnica de Catalunya).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Archaeology, Miscellaneous" + }, + { + "id": 34522, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ascenzi, I. (2021). Forest Credits to Foster Reforestation in the Brazilian Atlantic Forest (Master's thesis).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34523, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Asiddao, M. D., & Bongolan, V. P. (2021). Agent-Based Fire-Spreading Model in a Dense Urban Community. The International Archives of Photogrammetry, Remote Sensing and Spatial Information Sciences, 46, 35-40.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 34524, + "sort": null, + "year": 2021, + "is_ccl": true, + "reference": "Aslan, U. Wu, S. P., Horn, M., & Wilensky, U. (2021). Connecting \"the chemistry triplet\" through co-designing computational models with teachers: A case study on calorimetry . Paper presented at the 2021 Annual Meeting of the American Education Research Association (AERA).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Chemistry" + }, + { + "id": 34525, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Astudillo, Y. A. P. A Hybrid Control Architecture for an Automated Storage and Retrieval System. Service Oriented, Holonic and Multi-Agent Manufacturing Systems for Industry of the Future: Proceedings of SOHOMA LATIN AMERICA 2021, 30.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Manufacturing Systems, Holonic Systems, Multi-Agent Systems, Automation, Industry" + }, + { + "id": 34526, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Av-Shalom, N. A. Y., Duncan, R. G., & Chinn, C. A. (2021). Students\u2019 Conceptualizations of the Role of Evidence in Modeling. In Proceedings of the 15th International Conference of the Learning Sciences-ICLS 2021.. International Society of the Learning Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Learning Sciences" + }, + { + "id": 34527, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Azadi, F., Mitrovic, N., & Stevanovic, A. (2021). Impact of Shared Lanes on Performance of the Combined Flexible Lane Assignment and Reservation-based Intersection Control. Transportation Research Record, 03611981211064274.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34528, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Azadi, M., Rahman, A., & ShahMohamadi, F. (2021). Modeling and simulation of ovarian cancer and tumor growth and spread in different stages of ovarian cancer according to the TNM system. Journal of Health and Biomedical Informatics, 8(1), 42-54.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 34529, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Azizi, A., Mubayi, A., & Mubayi, A. (2021). Social Ecological Contexts and Alcohol Drinking Dynamics: An Application of the Survey Data-Driven Agent-Based Model for University Students. Journal of the Indian Institute of Science, 1-21.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34530, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Aziz, Z. A., Abdulqader, D. N., Sallow, A. B., & Omer, H. K. (2021). Python Parallel Processing and Multiprocessing: A Rivew.\u00a0Academic Journal of Nawroz University,\u00a010(3), 345-354.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Python, Multiprocessing, Review" + }, + { + "id": 34531, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Bagnoli, F., de Bonfioli Cavalcabo, G., Casu, B., & Guazzini, A. (2021). Community Formation as a Byproduct of a Recommendation System: A Simulation Model for Bubble Formation in Social Media. Future Internet, 13(11), 296.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34532, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Bandemer, L., & McCarthy, K. S. (2021). Supporting Comprehension in Computer-Based Science Simulations (No. 6188). EasyChair.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 34533, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Barcel\u00f3, J. G. A., & Garc\u00e9s, R. A. A. (2021). Inclusi\u00f3n de la propensi\u00f3n al autoempleo en el proceso de emparejamiento del mercado laboral. Problemas del Desarrollo. Revista Latinoamericana de Econom\u00eda, 52(207).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34534, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Barnes, B., Dunn, S., Pearson, C., & Wilkinson, S. (2021). Improving Human Behaviour in Macroscale City Evacuation Agent-Based Simulation. International Journal of Disaster Risk Reduction, 102289.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Archaeology, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34535, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Barop, J. (2021). GENERALISING HOTELLING\u2019S LAW: Economic and Philosophical Findings from Agent-Based Modelling. Rerum Causae, 12(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Computer Science, Physics, Chemistry, Sociology, Archaeology" + }, + { + "id": 34536, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Barr\u00f3n-Estrada, M. L., Zatarain-Cabada, R., Romero-Polo, J. A., & Monroy, J. N. (2021). Patrony: A mobile application for pattern recognition learning. Education and Information Technologies, 1-24.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 34537, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Barton, A., Volna, E., Kotyrba, M., & Jarusek, R. (2021). Proposal of a Control Algorithm for Multiagent Cooperation Using Spiking Neural Networks. IEEE Transactions on Neural Networks and Learning Systems.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 34538, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Bastani, M., & Jahan, A. (2021). Integration of Taguchi-Simulation Method for Improving Banking Services. Sustainable Operations and Computers.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Ecology, Urban Studies" + }, + { + "id": 34539, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Battaglia, O. R., Di Paola, B., & Fazio, C. (2021). Exploring the Coherence of Student Reasoning when Responding to Questionnaires on Thermally Activated Phenomena. Eurasia Journal of Mathematics, Science and Technology Education, 17(7), em1977.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Economics" + }, + { + "id": 34540, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Baulenas, E., Baiges, T., Cervera, T., & Pahl-Wostl, C. (2021). How do structural and agent-based factors influence the effectiveness of incentive policies? A spatially explicit agent-based model to optimize woodland-for-water PES policy design at the local level. Ecology and Society, 26(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34541, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Bazzanella, E., & Santos, F. (2021). Does a Q-Learning NetLogo Extension Simplify the Development of Agent-based Simulations?. Proceedings of the 15thWorkshop-School on Agents, Environments, and Applications (WESAAC), to appear.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Agent-based Simulations" + }, + { + "id": 34542, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Beccuti, M., Castagno, P., Franceschinis, G., Pennisi, M., & Pernice, S. (2021). A Petri Net Formalism to Study Systems at Different Scales Exploiting Agent-Based and Stochastic Simulations. In Performance Engineering and Stochastic Modeling (pp. 22-43). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 34543, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Belavadi, P., Burbach, L., Ziefle, M., & Valdez, A. C. (2021, July). Finding a Structure: Evaluating Different Modelling Languages Regarding Their Suitability of Designing Agent-Based Models. In International Conference on Human-Computer Interaction (pp. 201-219). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34544, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Belda, A., Giancola, E., Williams, K., Dabirian, S., Jradi, M., Volpe, R., ... & Eicker, U. (2022). Reviewing Challenges and Limitations of Energy Modelling Software in the Assessment of PEDs Using Case Studies. In Sustainability in Energy and Buildings 2021 (pp. 465-477). Springer, Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 34545, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Beltr\u00e1n P\u00e9rez, G., & Rodr\u00edguez Gonz\u00e1lez, D. G. An agent-based approach for tourist planning.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34546, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Berger, C., & Mahdavi, A. (2021, July). Approaching the human dimension of building performance via agent-based modeling. In ECPPM 2021-eWork and eBusiness in Architecture, Engineering and Construction: Proceedings of the 13th European Conference on Product & Process Modelling (ECPPM 2021), 15-17 September 2021, Moscow, Russia (p. 171). CRC Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34547, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Bergholm, J. (2021). The Data Retention Saga Continued\u2013from Tele2 Sverige to Privacy International and La Quadrature du Net. JFT, 2021(2), 111-139.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34548, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Bernardin, A., Mart\u00ednez, A. J., & Perez-Acle, T. (2021). On the effectiveness of communication strategies as non-pharmaceutical interventions to tackle epidemics. PloS one, 16(10), e0257995.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34549, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Bethencourt, J. A. B., Zayas, R. H., & Escoda, M. \u00c1. (2021). Simulaci\u00f3n estoc\u00e1stica de un brote de enfermedad respiratoria aviar en Camag\u00fcey. Revista de Producci\u00f3n Animal, 33(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34550, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Bezzaoucha, F. S., Sahnoun, M. H., & Benslimane, S. M. (2021, February). Multi-agent modeling and simulation of wind turbine behavior with failure propagation consideration. In 2020 2nd International Workshop on Human-Centric Smart Environments for Health and Well-being (IHSH) (pp. 97-102). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Simulation, Wind turbine, Failure propagation" + }, + { + "id": 34551, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Bezzout, H., & Faylali, H. E. (2022). EmPRM: A Novel Multi-agent Model for Modeling and Simulating of Electromagnetic Waves Using Netlogo Platform. In Advances on Smart and Soft Computing (pp. 517-526). Springer, Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Electromagnetic Waves, Netlogo, Computer Science, Mathematics, Modeling" + }, + { + "id": 34552, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Bhunia, G. S., & Shit, P. K. (2021). GeoComputation and Spatial Modelling for Decision-Making. In GeoComputation and Public Health (pp. 221-273). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, GeoComputation, Spatial Modelling, Decision-Making" + }, + { + "id": 34553, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Biggs, R., de Vos, A., Preiser, R., Clements, H., Maciejewski, K., & Schl\u00fcter, M. (Eds.). (2021). The Routledge Handbook of Research Methods for Social-Ecological Systems. Routledge.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34554, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Bijak, J., Hinsch, M., Nurse, S., Prike, T., & Reinhardt, O. (2022). Bayesian Model-Based Approach: Impact on Science and Policy. In Towards Bayesian Model-Based Demography (pp. 155-174). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34555, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Bijandi, M., Karimi, M., van der Knaap, W., & Bansouleh, B. F. (2021). A novel approach for multi-stakeholder agricultural land reallocation using agent-based modeling: A case study in Iran. Landscape and Urban Planning, 215, 104231.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Agriculture, Modeling, Iran" + }, + { + "id": 34556, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Bioco, J., C\u00e1novas, F., Prata, P., & Fazendeiro, P. (2021). SDSim: A generalized user friendly web ABM system to simulate spatiotemporal distribution of species under environmental scenarios. Environmental Modelling & Software, 105234.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 34557, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Bissembayeva, G. (2021). Simulation and Modeling of Microorganisms in Biofilm. (Thesis).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Simulation" + }, + { + "id": 34558, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Blanchard, J. R., Santos, R. O., & Rehage, J. S. (2021). Sociability interacts with temporal environmental variation to spatially structure metapopulations: A fish dispersal simulation in an ephemeral landscape. Ecological Modelling, 443, 109458.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 34559, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Bonakdar, S. B., & Roos, M. Dissimilarity Effects on House Prices: What Is the Value of Similar Neighbours?.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34560, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Bonghanoy, C. (2021). A Netlogo Simulation of Behavior-Based and Random Walk (BRW) Method to Solve Area-Coverage Problem.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 34561, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Bonin, O. (2021). 15. Thom\u2019s catastrophe theory and Turing\u2019s morphogenesis for urban growth modelling. Handbook on Entropy, Complexity and Spatial Dynamics: A Rebirth of Theory?, 246.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34562, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Bosse, S. (2021). Large-scale agent-based simulation and crowd sensing with mobile agents. Handbook of Computational Social Science, Volume 2: Data Science, Statistical Modelling, and Machine Learning Methods.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34563, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Bourceret, A., Amblard, L., & Mathias, J. D. (2021). Governance in social-ecological agent-based models: a review. Ecology and Society, 26(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34564, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Botetano, C., & Abrahamson, D. (2021). The Botetano arithmetic method: Introduction and early evidence. International Journal of Mathematical Education in Science and Technology, 1-19. https://doi.org/10.1080/0020739X.2020.1867916", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Education" + }, + { + "id": 34565, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Bozuyla, M., & Tola, A. T. (2021). Designing a Novel Transportation System Using Microscopic Models and Multi-Agent Approach. Automatic Control and Computer Sciences, 55(2), 125-136.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 34566, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Brady, C. (2021). Patches as an expressive medium for exploratory multi\u2010agent modelling. British Journal of Educational Technology, 52(3), 1024-1042.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling" + }, + { + "id": 34567, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Breitwieser, L., Hesam, A., de Montigny, J., Vavourakis, V., Iosif, A., Jennings, J., ... & Bauer, R. (2021). BioDynaMo: a modular platform for high-performance agent-based simulation. Bioinformatics.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 34568, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Brinkmann, K., K\u00fcbler, D., Liehr, S., & Buerkert, A. (2021). Agent-based modelling of the social-ecological nature of poverty traps in southwestern Madagascar. Agricultural Systems, 190, 103125.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34569, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Brittin, J., Araz, O. M., Ramirez-Nafarrate, A., & Huang, T. T. K. (2021). An Agent-Based Simulation Model for Testing Novel Obesity Interventions in School Environment Design. IEEE Transactions on Engineering Management.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34570, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Brouwer, J. (2021). Safety implications of the introduction of Autonomous Vehicles on rural roads: An agent-based modeling approach.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34571, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Brown, C. (2021). Quantitative modelling and computer simulation. The Routledge Handbook of Landscape Ecology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Landscape Ecology, Computer Science, Economics" + }, + { + "id": 34572, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Brown, S., Ferreira, C., Houck, M., & Liner, B. (2021). Conceptual Ex\u2010Ante Simulation for Green Stormwater Infrastructure Adoption on Private Property Using Agent\u2010Based Modeling. Water Environment Research.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34573, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Buchmann, T., Wolf, P., & Fidaschek, S. (2021). Stimulating E-Mobility Diffusion in Germany (EMOSIM): An Agent-Based Simulation Approach. Energies, 14(3), 656.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies" + }, + { + "id": 34574, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Buhat, C. A. H., Lutero, D. S., Olave, Y. H., Torres, M. C., & Rabajante, J. F. (2021). Community Transmission of Respiratory Infectious Diseases using Agent-based and Compartmental Models. Mindanao Journal of Science and Technology, 19(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34575, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Burg, V., Troitzsch, K. G., Akyol, D., Baier, U., Hellweg, S., & Thees, O. (2021). Farmer's willingness to adopt private and collective biogas facilities: An agent-based modeling approach. Resources, Conservation and Recycling, 167, 105400.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Modeling" + }, + { + "id": 34576, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Burova, A. A., Burov, S. S., Parygin, D. S., Finogeev, A. G., & Smirnova, T. V. (2021). Administration panel of the multi-agent modeling platform with the ability to generate graphical reports. International Journal of Open Information Technologies, 9(12), 4-14.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Graphics, Information Technology" + }, + { + "id": 34577, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Burrows, A. C., Borowczak, M., & Mugayitoglu, B. (2022). Computer Science beyond Coding: Partnering to Create Teacher Cybersecurity Microcredentials. Education Sciences, 12(1), 4.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 34578, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Burrows, A. C., Borowczak, M., Myers, A., Schwortz, A. C., & McKim, C. (2021). Integrated STEM for Teacher Professional Learning and Development:\u201cI Need Time for Practice\u201d. Educ. Sci. 2021, 11, 21.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, STEM, Education" + }, + { + "id": 34579, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Burrows, A. C., Swarts, G. P., Hutchison, L., Katzmann, J. M., Thompson, R., Freeman, L., ... & Reynolds, T. (2021). Finding Spaces: Teacher Education Technology Competencies (TETCs). Education Sciences, 11(11), 733.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34580, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Cadavid, L., D\u00edez-Echavarr\u00eda, L. F., & Valencia-Arias, A. (2021). Does heterogeneity operationalization matter to model the diffusion phenomena?. IEEE Latin America Transactions, 100(XXX).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34581, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Calder\u00f3n, A., & Silva, V. (2021). Exposure forecasting for seismic risk estimation: Application to Costa Rica. Earthquake Spectra, 8755293021989333.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Seismic Risk Estimation" + }, + { + "id": 34582, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Calderoni, F., Campedelli, G. M., Szekely, A., Paolucci, M., & Andrighetto, G. (2021). Recruitment into Organized Crime: An Agent-Based Approach Testing the Impact of Different Policies. Journal of Quantitative Criminology, 1-41.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34583, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Camara, D., Kotzinos, D., Rousseau, P.(2021) Weak signal detection and identification in large data sets: a review of methods and applications. IEEE TRANSACTION ON KNOWLEDGE AND DATA ENGINEERING (preprint.)", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 34584, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Campenn\u00ec, M., Cronk, L., & Aktipis, A. (2021). Need-Based Transfers Enhance Resilience to Shocks: An Agent-Based Model of a Maasai Risk-Pooling System. Human Ecology, 1-14.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Agent-Based Model" + }, + { + "id": 34585, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Canals, A. (2021). To hoard or to share? Strategic management of knowledge and ICTs in complex economic systems. Intangible Capital, 17(2), 148-172.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Strategic management" + }, + { + "id": 34586, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Cao, Y., Li, F., Xi, X., van Bilsen, D. J. C., & Xu, L. (2021). Urban livability: Agent-based simulation, assessment, and interpretation for the case of Futian District, Shenzhen. Journal of Cleaner Production, 128662.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34587, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Caplan, B., Covitt, B., Love, G., Berkowitz, A. R., Gunckel, K. L., McClure, C., & Moore, J. C. (2021). Using computational thinking and modeling to build water and watershed literacy. Connected Science Learning, 3(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Modeling" + }, + { + "id": 34588, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Cardoso, R. C., & Ferrando, A. (2021). A Review of Agent-Based Programming for Multi-Agent Systems. Computers, 10(2), 16.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Agent-Based Programming" + }, + { + "id": 34589, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Cardoso, R. C., Ferrando, A., Briola, D., Menghi, C., & Ahlbrecht, T. (2021). Agents and Robots for Reliable Engineered Autonomy: A Perspective from the Organisers of AREA 2020. Journal of Sensor and Actuator Networks, 10(2), 33.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34590, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Carrella, E. (2021). No Free Lunch when Estimating Simulation Parameters. Journal of Artificial Societies and Social Simulation, 24(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34591, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Carvajal Le\u00f3n, B. F. (2022). Modelizaci\u00f3n basada en el individuo, de un reactor CSTR con recirculaci\u00f3n de lodos activados (Bachelor's thesis, Quito: UCE).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 34592, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": " Castillo Osorio, E. E., Seo, M. S., & Yoo, H. H. (2021). Analysis of suitable evacuation routes through multi-agent system simulation within buildings. Journal of the Korean Society of Surveying, Geodesy, Photogrammetry and Cartography, 39(5), 265-278.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34593, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ceja, A., Kane, S., & Way, M. (2021). The PEACH Model: Physiology, Exoclimatology, and Astroecology for Characterizing Habitability. Bulletin of the American Astronomical Society, 53(3), 1217.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Physiology, Exoclimatology, Astroecology, Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34594, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "CENAN\u0130, \u015e. Emergence and complexity in agent-based modeling: Review of state-of-the-art research. Journal of Computational Design, 2(2), 1-24.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Complexity, Computer Science, Economics, Physics, Chemistry, Ecology, Archaeology, History, Social Science, Education, Epidemiology" + }, + { + "id": 34595, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Chabbar, S., Benmir, M., Karkri, J. E., Bensaid, K., Aboulaich, R., & Nejjari, C. (2021). Modeling and simulation of the evolution of the corona virus pandemic in a context of Migration. Journal of Theoretical and Applied Information Technology, 4363-4374.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Simulation, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34596, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Chai, S. S., & Goh, K. L. (2021). Daily Rainfall Forecasting Using Meteorology Data with Long Short-Term Memory (LSTM) Network. Journal of Optimization in Industrial Engineering.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Meteorology, Computer Science" + }, + { + "id": 34597, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Chanda, S. S. (2021). Mandating Code Disclosure is Unnecessary--Strict Model Verification Does Not Require Accessing Original Computer Code. arXiv preprint arXiv:2105.05170.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 34598, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Chathika, G., Rand, W., & Garibay, I. (2021). Inferring mechanisms of response prioritization on social media under information overload. Scientific Reports (Nature Publisher Group), 11(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34599, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Chaves, C. J. N., Leal, B. S. S., Rossatto, D. R., Berger, U., & Palma-Silva, C. (2021). Deforestation is the turning point for the spreading of a weedy epiphyte: an IBM approach. Scientific Reports, 11(1), 1-14.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 34600, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Chen, B., Xu, B., & Gong, P. (2021). Mapping essential urban land use categories (EULUC) using geospatial big data: Progress, challenges, and opportunities. Big Earth Data, 1-32.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Geospatial analysis, Computer Science, Spatial data science, Urban Studies" + }, + { + "id": 34601, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Chen, F., Liu, J., & Chen, J. (2021). Earthquake Disaster Rescue Model Based on Complex Adaptive System Theory. Complexity, 2021.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Earthquake Disaster Rescue" + }, + { + "id": 34602, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Chen, J., Gong, B., Wang, Y., & Zhang, Y. (2021). Construction of Internet of things trusted group based on multidimensional attribute trust model. International Journal of Distributed Sensor Networks, 17(1), 1550147721989888.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 34603, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Chen, J., Shi, T., & Li, N. (2021). Pedestrian evacuation simulation in indoor emergency situations: Approaches, models and tools. Safety Science, 142, 105378.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34604, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Chen, S. H. (2021). Humanity in the Era of Autonomous Human\u2013machine Teams. In Systems Engineering and Artificial Intelligence (pp. 309-331). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34605, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Cheng, C., Luo, Y., Yu, C. B., & Ding, W. P. (2021). Social bots and mass media manipulate public opinion through dual opinion climate. Chinese Physics B.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34606, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Cheng, L., Guo, H., & Lin, H. (2021). Evolutionary model of coal mine safety system based on multi-agent modeling. Process Safety and Environmental Protection.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34607, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Cheremisina, E. N., Tokareva, N. A., Kirpicheva, E. Y., Kreider, O. A., Milovidova, A. A., & Potemkina, S. V. (2021). THE CONCEPT OF TRAINING IT PROFESSIONALS IN THE CROSS-CUTTING DIGITAL TECHNOLOGIES.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34608, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Chesney, T. (2021). Designing an Agent Model. Agent-Based Modelling of Worker Exploitation, 117-122.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34609, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Chetcuti, J., Kunin, W. E., & Bullock, J. M. (2021). Matrix composition mediates effects of habitat fragmentation: a modelling study. Landscape Ecology, 1-16.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Modelling" + }, + { + "id": 34610, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Chinesta Fortes, I. (2021). Wealth Distribution and Inheritance: A Agent-Based simulation analysis.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34611, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Chiu, M. M., & Reimann, P. (2021). Statistical and stochastic analysis of sequence data. In International Handbook of Computer-Supported Collaborative Learning (pp. 533-550). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Statistical and stochastic analysis" + }, + { + "id": 34612, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Cho, S. Y., Lim, M. J., & Im, T. (2021). The Effects of Project Based Learning on Learners' Creativity and Problem Solving. Journal of Practical Engineering Education, 13(1), 213-219.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34613, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Choi, T., & Park, S. (2021). Theory building via agent-based modeling in public administration research: vindications and limitations. International Journal of Public Sector Management.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34614, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Chukundah, R. E. (2021). Reforesting the Atlantic Forest, through Forest Credits, PES or Carbon Credits (Bachelor's thesis).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 34615, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Chunxiao, Z., & Junjie, G. (2021). Autonomy-oriented proximity mobile social network modeling in smart city for emergency rescue. International Journal of Distributed Sensor Networks, 17(12), 15501477211061252.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34616, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Chun-bei, X. I. A. O., Jun, M. A., & Chen, Y. A. N. G. (2021). Simulation study on fire spread of traditional building community in Beijing Nanluoguxiang region. Fire Science and Technology, 40(6), 865.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Fire, Science, Technology" + }, + { + "id": 34617, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Civico, M. (2021). Language policy and planning: a discussion on the complexity of language matters and the role of computational methods. SN Social Sciences, 1(8), 1-22.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34618, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Cimino, M. G., Minici, D., Monaco, M., Petrocchi, S., & Vaglini, G. (2021). A hyper-heuristic methodology for coordinating swarms of robots in target search. Computers & Electrical Engineering, 95, 107420.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34619, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Coelho, C. G. C., & Ralha, C. G. (2021). MASE-EGTI: An agent-based simulator for environmental land change. Environmental Modelling & Software, 105252.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34620, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Collard, J. D., Stattner, E., & Gergos, P. (2021). The \u201cReadyPark\u201d Collaborative Parking Search Strategy. Smart Cities, 4(3), 1130-1145.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34621, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Collard, P. (2021). The \u201cflat peer learning\u201d agent-based model. Journal of Computational Social Science, 1-27.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34622, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Condie, S. A., Anthony, K. R., Babcock, R. C., Baird, M. E., Beeden, R., Fletcher, C. S., ... & Westcott, D. A. (2021). Large-scale interventions may delay decline of the Great Barrier Reef.\u00a0Royal Society Open Science,\u00a08(4), 201296.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 34623, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Conroy-Beam, D. (2021). Couple Simulation: A Novel Approach for Evaluating Models of Human Mate Choice. Personality and Social Psychology Review, 1088868320971258.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Psychology, Social Science" + }, + { + "id": 34624, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Crevier, L. P., Salkeld, J. H., Marley, J., & Parrott, L. (2021). Making the best possible choice: Using agent-based modelling to inform wildlife management in small communities. Ecological Modelling, 446, 109505.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Modeling" + }, + { + "id": 34625, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Cruz, D. A., & Kemp, M. (2021). Hybrid computational modeling methods for systems biology. Progress in Biomedical Engineering.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Systems Biology, Modeling" + }, + { + "id": 34626, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Cruz Ardila, J. C., Trujillo Perdomo, J. F., Zambrano Vidal, L. F., Panesso Pati\u00f1o, V., Ar\u00e9valo Soto, A., & Gir\u00f3n Restrepo, G. A. (2021). Bolet\u00edn de Investigaciones agosto de 2021.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34627, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Cubeiro, M. T. (2021). Ignorancia y complejidad: la sociolog\u00eda de la enfermedad mental. Acciones e Investigaciones Sociales, (42).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Ignorancia, Complexity, Sociology, Social Science, Biology" + }, + { + "id": 34628, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Cunha, B., Brito, C., Ara\u00fajo, G., Sousa, R., Soares, A., & Silva, F. A (2021). Smart traffic control in vehicle ad-hoc networks: a Systematic Literature Review. Universidade Federal do Piau\u00ed.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34629, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Currat, M., Quilodr\u00e1n, C. S., & Excoffier, L. (2021). Simulations of Human Dispersal and Genetic Diversity. In Evolution of the Human Genome II (pp. 231-256). Springer, Tokyo.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Genetics" + }, + { + "id": 34630, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Currie, T., Campenni, M., Flitton, A., Njagi, T., Ontiri, E., Perret, C., & Walker, L. (2021). Code supporting The Cultural Evolution & Ecology of Institutions.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34631, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Currie, T. E., Campenni, M., Flitton, A., Njagi, T., Ontiri, E., Perret, C., & Walker, L. (2021). The cultural evolution and ecology of institutions. Philosophical Transactions of the Royal Society B, 376(1828), 20200047.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34632, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "da Silva, A. C. G., de Lima, C. L., da Silva, C. C., Moreno, G. M. M., Silva, E. L., Marques, G. S., ... & dos Santos, W. P. (2022). Machine Learning Approaches for Temporal and Spatio-Temporal Covid-19 Forecasting: A Brief Review and a Contribution. Assessing COVID-19 and Other Pandemics and Epidemics using Computational Modelling and Data Analysis, 333-357.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 34633, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "da Silva, A. J. P., & Arroio, A. (2021). Tempo e tecnologia no processo de visualiza\u00e7\u00e3o em Qu\u00edmica: um estudo explorat\u00f3rio sobre as pr\u00e1ticas de professores em forma\u00e7\u00e3o inicial. Revista de Investiga\u00e7\u00e3o Tecnol\u00f3gica em Educa\u00e7\u00e3o em Ci\u00eancias e Matem\u00e1tica, 1, 80-99.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Technology, Chemistry, Education, Miscellaneous" + }, + { + "id": 34634, + "sort": null, + "year": 2021, + "is_ccl": true, + "reference": "Dabholkar, S., Horn, M., & Wilensky, U. (2021).\u00a0A technology-mediated co-design approach for integrating Computational Thinking in a science classroom.\u00a0Paper presented in the 2021 Annual Meeting of the American Education Research Association (AERA).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Technology, Education" + }, + { + "id": 34635, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Dabholkar, S., (2021). Designing computational models as Emergent Systems Microworlds for learning biomaking digitally. In Walker, J. and Strawhacker, A. (Symposium chairs), The Biomaker Ecosystem: Technologies, Spaces and Curriculum for K-12 Making with Biology. Presented at The 2021 Annual Meeting of American Education Research Association (AERA).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Education, Miscellaneous" + }, + { + "id": 34636, + "sort": null, + "year": 2021, + "is_ccl": true, + "reference": "Dabholkar, S., Peel, A., Hao, D., Kelter, J., Horn, M., & Wilensky, U. (2021). Analysis of Co-designed Biology Units Integrated with Computational Thinking Activities. In de Vries, E., Hod, Y., & Ahn, J. (Eds.), Proceedings of the 15th International Conference of the Learning Sciences - ICLS 2021. (pp. 665-668). Bochum, Germany: International Society of the Learning Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computational Thinking, Computer Science, Ecology, Learning Sciences" + }, + { + "id": 34637, + "sort": null, + "year": 2021, + "is_ccl": true, + "reference": "Dabholkar, S., Tran, S., Horn, M. S., & Wilensky, U. (2021). Students' Attitudinal Change After Participating in a CT integrated Biology Unit . In Dabholkar S. (Symposium organizer), Integrating Computational Thinking in Science Curricula: Professional Development and Student Assessment. Presented at the 2021 Annual Meeting of the National Association of Research in Science Teaching (NARST).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 34638, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Daems, D. (2021). Social Complexity and Complex Systems in Archaeology. Routledge.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34639, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Das, D. (2021). Agent Based Virus Model using NetLogo: Infection Propagation, Precaution, Recovery, Multi-site Mobility and (Un) Lockdown. arXiv preprint arXiv:2102.00844.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Virus, NetLogo, Infection, Precaution, Recovery, Mobility, Lockdown" + }, + { + "id": 34640, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Datseris, G., Vahdati, A. R., & DuBois, T. C. (2021). Agents. jl: A performant and feature-full agent based modelling software of minimal code complexity. arXiv preprint arXiv:2101.10072.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 34641, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "David, N. G. (2021). Reframing Educational Leadership Research in the Twenty-First Century. In Concept and Design Developments in School Improvement Research (pp. 107-135). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34642, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Day, T. E., Dong, Y., & Gopakumar, B. (2021). How Many of Those Things Do We Really Need? Discrete Event Simulation. In Comprehensive Healthcare Simulation: Improving Healthcare Systems (pp. 187-195). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Discrete Event Simulation" + }, + { + "id": 34643, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "DeAngelis, D. L., Franco, D., Hastings, A., Hilker, F. M., Lenhart, S., Lutscher, F., ... & Tyson, R. C. (2021). Towards Building a Sustainable Future: Positioning Ecological Modelling for Impact in Ecosystems Management. Bulletin of Mathematical Biology, 83(10), 1-28.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34644, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Delcea, C., Cotfas, L. A., Milne, R. J., Xie, N., & Mierzwiak, R. (2021). Grey clustering of the variations in the back-to-front airplane boarding method considering COVID-19 flying restrictions. Grey Systems: Theory and Application.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34645, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Deng, S., & Zhang, J. (2021). Modernization Versus Dependency Approaches to Sustainable Development--Based on the UN Report 2019. In E3S Web of Conferences (Vol. 275, p. 02029). EDP Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Economics, Miscellaneous" + }, + { + "id": 34646, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Derkach, T. M. (2021, March). The origin of misconceptions in inorganic chemistry and their correction by computer modelling. In\u00a0Journal of Physics: Conference Series\u00a0(Vol. 1840, No. 1, p. 012012). IOP Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Inorganic Chemistry, Computer Science, Physics, Chemistry" + }, + { + "id": 34647, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "de Castro, M. G. A., & Garc\u00eda-Pe\u00f1alvo, F. J. ICT methodologies for teacher professional development in Erasmus+ projects related to eLearning. In 2021 XI International Conference on Virtual Campus (JICV) (pp. 1-6). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Miscellaneous" + }, + { + "id": 34648, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "de Jong, K., Panja, D., van Kreveld, M., & Karssenberg, D. (2021). An environmental modelling framework based on asynchronous many-tasks: scalability and usability. Environmental Modelling & Software, 104998.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34649, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "de Kemp, E. A. (2021). Spatial Agents for Geological Surface Modelling. Geoscientific Model Development Discussions, 1-32.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Geology, Computer Science, Modeling" + }, + { + "id": 34650, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "de Oliveira, G. D., Porto, P. P. G., Alves, C. D. M. A., & Ralha, C. G. (2021). An Agent-Based Model for Simulating Irrigated Agriculture in the Samambaia Basin in Goi\u00e1s.\u00a0Revista de Inform\u00e1tica Te\u00f3rica e Aplicada,\u00a028(2), 107-123.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34651, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "de Vos, A., Maciejewski, K., Bodin, \u00d6., Norstr\u00f6m, A., Schl\u00fcter, M., & Teng\u00f6, M. The practice and design of social-ecological systems research. (2021). The Routledge Handbook of Research Methods for Social-Ecological Systems, 47.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34652, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "de Quadros, C. E. P., Adamatti, D. F., & de Lima Bicho, A. (2021, October). BioTraffic: a bio-inspired behavioral model to vehicle traffic simulation. In 2021 20th Brazilian Symposium on Computer Games and Digital Entertainment (SBGames) (pp. 29-38). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Behavioral Science, Computer Science, Physics, Miscellaneous" + }, + { + "id": 34653, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "de Souza, V. M., Bloemhof, J., & Borsato, M. (2021). Assessing the eco-effectiveness of a solid waste management plan using agent-based modelling. Waste Management, 125, 235-248.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34654, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "de Souza Almeida, F. M., Gomes, A. P., & de Freitas, A. F. (2021). Social networks and efficiency in dairy farming: the case of the Program for the Development of Dairy Farming in Minas Gerais, Brazil. Livestock Science, 104401.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34655, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "de Oliveira Simoyama, F., Sarti, F. M., & Battisti, M. C. G. (2021). Effects of disclosing inspection scores of health facilities. Socio-Economic Planning Sciences, 101183.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34656, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "de Velazco, F. F., Lara, E. C., & Luna, S. R. (2021). Proposal of a Model from the Perspective of Parsons Functional-Structural Theory. Journal of Systemics, Cybernetics and Informatics, 19(8), 182-197.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34657, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "de Wildt, T. E., Boijmans, A. R., Chappin, E. J., & Herder, P. M. (2021). An ex ante assessment of value conflicts and social acceptance of sustainable heating systems: An agent-based modelling approach. Energy Policy, 153, 112265.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34658, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Dhou, K., & Cruzen, C. (2021, June). An Innovative Employment of the NetLogo AIDS Model in Developing a New Chain Code for Compression. In International Conference on Computational Science (pp. 17-25). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 34659, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "D\u00edaz-de la Fuente, S., de Armi\u00f1o P\u00e9rez, C. A., Delgado, R. A., Villahoz, J. J. L., Cos\u00edo, \u00c1. H., del Campo, M. \u00c1. M., & del Olmo Mart\u00ednez, R. PROTOCOLO\u2013Evaluar la competencia transversal trabajo en equipo en estudiantes de grado y m\u00e1ster mediante la entrevista por competencias. In Proceedings of the 15th International Conference on Industrial Engineering and Industrial Management and XXV Congreso de Ingenier\u00eda de Organizaci\u00f3n. PressBooks.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34660, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "D\u00edaz Monsalvea, J., Enr\u00edquez Corredor, I., Pinto Moreno, \u00c1. M., & S\u00e1nchez Santamar\u00eda, J. Evaluaci\u00f3n de una emulaci\u00f3n de un sistema ASRS acoplado a un sistema de compras.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34661, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Dignum, F. (2021). The Real Impact of Social Simulations During the COVID-19 Crisis. In Social Simulation for a Crisis (pp. 319-329). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Social Simulation" + }, + { + "id": 34662, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Dimka, J., & Sattenspiel, L. (2021). \u201cWe didn't get much schooling because we were fishing all the time\u201d: Potential impacts of irregular school attendance on the spread of epidemics. American Journal of Human Biology, e23578.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 34663, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Dobrota, M., Zorni\u0107, N., & Markovi\u0107, A. (2021). FDI Time Series Forecasts: Evidence from Emerging Markets.\u00a0Management: Journal of Sustainable Business and Management Solutions in Emerging Economies.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34664, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Doeweler, F. (2021). Causes of Recruitment Limitation at Abrupt Alpine Treelines (Doctoral dissertation, Auckland University of Technology).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34665, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Dogaroglu, B., Caliskanelli, S.P., Tanyel, S. (2021). Comparison of Intelligent Parking Guidance System and Conventional System with Regard to Capacity Utilisation. Sustainable Cities and Society, 103152.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34666, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Donaldson, S. (2021). Flocc: From Agent-Based Models to Interactive Simulations on the Web. Northeast Journal of Complex Systems (NEJCS), 3(1), 6.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Chemistry" + }, + { + "id": 34667, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Dong, S. (2021). A Class of Public Opinion Dissemination Model considering the Information Screening Mechanism. Security and Communication Networks, 2021.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34668, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Dong, Z., Liu, H., & Zheng, X. (2021). The influence of teacher-student proximity, teacher feedback, and near-seated peer groups on classroom engagement: An agent-based modeling approach. Plos one, 16(1), e0244935.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34669, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "D\u00f6pper, T., Milakovic, D., Scheel, O., Gro\u00dfe-W\u00f6hrmann, B., Oexle, J., Slotosch, S., ... & Widmaier, L. (2021). Expanding HLRS Academic HPC Simulation Training Programs to More Target Groups. Graphics: Steven Behun, Heather Marvin, 12(3), 13.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Graphics" + }, + { + "id": 34670, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Doussin, B., Adam, C., & Georges, D. (2021). Multi-scale simulation of COVID-19 epidemics. arXiv preprint arXiv:2112.01167.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34671, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Dovrat, D., Tripathy, T., & Bruckstein, A. M. (2021). On Tracking and Capture in Proportional-Control Bearing-Only Unicycle Pursuit. IEEE Control Systems Letters.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology" + }, + { + "id": 34672, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ducke, B., & Suchowska, P. (2021). Exploratory Network Reconstruction with Sparse Archaeological Data and XTENT. Journal of Archaeological Method and Theory, 1-32.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34673, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Duijsings, R. F. Y. (2021).\u00a0Bargaining Model: Enhancing the Wealth and Survival of the Poor by Finding a Better Long-term Strategy\u00a0(Bachelor's thesis).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 34674, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Eberbach, C., Hmelo\u2010Silver, C. E., Jordan, R., Taylor, J., & Hunter, R. (2021). Multidimensional trajectories for understanding ecosystems. Science Education.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34675, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Edrisi, A., Lahoorpoor, B., & Lovreglio, R. (2021). Simulating Metro Station Evacuation using Three Agent-based Exit Choice Models. Case Studies on Transport Policy.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34676, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Effati, S., & Tavakoli, E. (2021). The Effect of Social Distancing and Personal Protective Equipment on the Outbreak of SARS-COVID-2: An Agent-Based Modeling Approach. (pre-print).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34677, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "EFSA Scientific Committee, More, S., Bampidis, V., Benford, D., Bragard, C., Halldorsson, T., ... & Rortais, A. (2021). A systems\u2010based approach to the environmental risk assessment of multiple stressors in honey bees. EFSA Journal, 19(5), e06607.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 34678, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Eismann, K. (2021). Diffusion and persistence of false rumors in social media networks: implications of searchability on rumor self-correction on Twitter. Journal of Business Economics, 1-31.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34679, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Eitzel, M. V., Solera, J., Hove, E. M., Wilson, K. B., Ndlovu, A. M., Ndlovu, D., ... & Veski, A. (2021). Assessing the Potential of Participatory Modeling for Decolonial Restoration of an Agro-Pastoral System in Rural Zimbabwe. Citizen Science: Theory and Practice, 6(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34680, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "El Fakir, A., Fairchild, R., Tkiouat, M., & Taamouti, A. (2021). A bargaining model for profit and loss sharing entrepreneurial financing: A game theoretic model using agent based simulation. International journal of finance and economics.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Computer Science, Game Theory, Physics, Mathematics, Social Science" + }, + { + "id": 34681, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "El Mouhib, M., Azghiou, K., & Tahani, A. (2021, April). Analysis of the Impact of Traffic Density on the Compromised CAV Rate: a Multi-Agent Modeling Approach. In\u00a02021 IEEE International IOT, Electronics and Mechatronics Conference (IEMTRONICS)\u00a0(pp. 1-6). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Traffic Density, Modeling, Economics, Computer Science, Ecology, Archaeology, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34682, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ellison, A. M., & Gotelli, N. J. (2021). Ants (Hymenoptera: Formicidae) and humans: from inspiration and metaphor to 21 st-century symbiont. Myrmecological News, 31.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology" + }, + { + "id": 34683, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Elmenreich, W., Schnabl, A., & Schranz, M. (2021). An artificial hormone-based algorithm for production scheduling from the bottom-up.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34684, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Embodying, P. (2021). The Pack. Design Make Play for Equity, Inclusion, and Agency: The Evolving Landscape of Creative STEM Learning, 208.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34685, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Encinas, D., Jara, J., Bond, R., Rosatto, D., Maccallini, L., Gomez, M., ... & Morales, M. (2021). T\u00e9cnicas de modelado y simulaci\u00f3n para arquitecturas HPC y salud. In XXIII Workshop de Investigadores en Ciencias de la Computaci\u00f3n (WICC 2021, Chilecito, La Rioja).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34686, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Enderle, P., King, N., & Margulieux, L. (2021). What\u2019s in a Wave?. The Science Teacher, 88(4).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 34687, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ernst, A., & Simon, K. H. (2021). Soziale Simulation als Werkzeug der transformativen Forschung. GAIA-Ecological Perspectives for Science and Society, 30(2), 134-136.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 34688, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Eshanthini, P., Nandhakumar, S., & Bandari, R. Ground Water Modelling of Poondi Micro-Watershed, Thiruvallur, Tamil Nadu. Advances in Construction Management: Select Proceedings of ACMM 2021, 233.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 34689, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ewert, U. C. (2021). Agentenbasierte Modellierung in der Medi\u00e4vistik, oder: Wie der Netzwerkhandel der Hansekaufleute entstanden sein k\u00f6nnte. Mannheim Working Papers in Premodern Economic History, 2(2), 1-27.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Economics, Social Science, Miscellaneous" + }, + { + "id": 34690, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Faber, R. (2021). Accessible Data Mining for Agent-Based Simulation Models. (Master\u2019s thesis).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34691, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Fahad, M., Sontheimer, K., Jimenez-Romero, C., Chavez, R. I., Diaz, S., Klijn, W., & Morrison, A. Multi-scale brain co-simulation in the Human Brain Project: EBRAINS tools for in-transit simulation and analysis.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Archaeology" + }, + { + "id": 34692, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Fain, J. (2021). Should retail stores locate close to a rival?. Journal of Economic Interaction and Coordination, 1-34.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Economics" + }, + { + "id": 34693, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Falcone, R., & Sapienza, A. (2021). An agent-based model to assess citizens\u2019 acceptance of COVID-19 restrictions. Journal of Simulation, 1-15.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34694, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Fan, Z., Ding, N., Zhu, X., & Zhu, Y. (2021). Suicide Bombing Attack Modelling and Simulation: A Case Study of Golden Water Bridge Attack. Journal of Safety Science and Resilience.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34695, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Farhadi, B., Rahmani, A. M., Asghari, P., & Hosseinzadeh, M. (2021). Friendship Selection and Management in Social Internet of Things: A systematic review. Computer Networks, 108568.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34696, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Farhadicheshmehmorvari, A. (2021). An Agent-Based Financial Network Modeling Based on Systematic Trust (Doctoral dissertation).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34697, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Faweya, O., Desai, P. S., & Higgs III, C. F. (2021). Towards an agent-based model to simulate osseointegration in powder-bed 3D printed implant-like structures. Journal of the Mechanical Behavior of Biomedical Materials, 104915.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Mechanical Behavior, 3D Printing" + }, + { + "id": 34698, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Fazio, M., Pluchino, A., Inturri, G., Pira, M. L., Giuffrida, N., & Ignaccolo, M. (2021). Exploring the impact of mobility restrictions on the COVID-19 spreading through an agent-based approach. arXiv preprint arXiv:2102.08226.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34699, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Feinberg, A., Hooijschuur, E., Rogge, N., Ghorbani, A., & Herder, P. (2021). Sustaining collective action in urban community gardens. Journal of Artificial Societies and Social Simulation, 24(3).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34700, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ferguson, M., Arangala, C., Yokley, K., & Rave, M. (2021). Agent Based Simulation of Dengue with Wolbachia Intervention. Minnesota Journal of Undergraduate Mathematics, 6(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Mathematics" + }, + { + "id": 34701, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ferrare, F. D., Baum, D. M., de Almeida J\u00fanior, J. R., J\u00fanior, J. B. C., & Cugnasca, P. S. (2021, October). Scenarios for the Use of eVTOLs Using Multiagent SystemsWith Netlogo: Comparison Of Parameters And The Impact On UAM. In 2021 IEEE/AIAA 40th Digital Avionics Systems Conference (DASC) (pp. 1-7). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34702, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ferrare, F. D., Baum, D. M., de Almeida J\u00fanior, J. R., Junior, J. B. C., & Cugnasca, P. S. (2021). Urban Air Mobility (UAM): A Model Proposal based on Agents using Netlogo. In SIMULTECH (pp. 352-359).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34703, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ferraro, K. M., Schmitz, O. J., & McCary, M. A. (2021). Effects of ungulate density and sociality on landscape heterogeneity: a mechanistic modeling approach. Ecography.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Modeling" + }, + { + "id": 34704, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Fitzpatrick, B. G., Federico, P., Kanarek, A., & Lenhart, S. Control of a consumer\u2010resource agent\u2010based model using partial differential equation approximation.\u00a0Optimal Control Applications and Methods.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34705, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Flache, A., & de Matos Fernandes, C. A. (2021). 24. Agent-based computational models1. Research Handbook on Analytical Sociology, 453.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Sociology" + }, + { + "id": 34706, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Florindo, A. A., Teixeira, I. P., Barrozo, L. V., Sarti, F. M., Fisberg, R. M., Andrade, D. R., & Garcia, L. M. T. (2021). Study protocol: health survey of Sao Paulo: ISA-Physical Activity and Environment. BMC Public Health, 21(1), 1-10.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34707, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Folke, T., & Kennedy, W. G. (2021). Agent-Based Modelling: A Bridge Between Psychology and Macro-social Science. In M. MacLachlan & J. McVeigh (Eds.), Macropsychology: A Population Science for Sustainable Development Goals, 189.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Psychology, Macro-social Science" + }, + { + "id": 34708, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Foramitti, J. (2021). AgentPy: A package for agent-based modeling in Python. Journal of Open Source Software, 6(62), 3065.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 34709, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Fouladvand, J., Rojas, M. A., Hoppe, T., & Ghorbani, A. (2021). Simulating thermal energy community formation: Institutional enablers outplaying technological choice. Applied Energy, 117897.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Urban Studies, Social Science, Education" + }, + { + "id": 34710, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Fox, W. P. (2021). Mathematical Modeling in the Age of a Pandemic.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Mathematics" + }, + { + "id": 34711, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Francos, R. M., & Bruckstein, A. M. (2021). Pincer-based vs. Same-direction Search Strategies After Smart Evaders by Swarms of Agents. arXiv preprint arXiv:2104.06940.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology" + }, + { + "id": 34712, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Fregoso, J. H. C. (2021). Breves consideraciones sobre la naturaleza compleja de la ciencia econ\u00f3mica. Expresi\u00f3n Econ\u00f3mica. Revista de an\u00e1lisis, (46), 9-19.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology\nEcology\nArchaeology\nEconomics\nHistory\nPhysics\nChemistry\nUrban Studies\nSocial Science" + }, + { + "id": 34713, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Friedman, D. A., Tschantz, A., Ramstead, M. J. D., Friston, K., & Constant, A. (2021). Active Inferants: An Active Inference Framework for Ant Colony Behavior. Front. Behav. Neurosci, 15, 647732.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 34714, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Friesen, M. R., & McLeod, R. D. (2021). Towards Equitable Hiring Practices for Engineering Education Institutions: An Individual-Based Simulation Model. In Advances in Software Engineering, Education, and e-Learning (pp. 265-276). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Software Engineering, e-Learning, Simulation, Education" + }, + { + "id": 34715, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Fuchs, A., Pichler-Koban, C., Pitman, A., Elmenreich, W., & Jungmeier, M. (2021). Games and Gamification\u2014New Instruments for Communicating Sustainability. The Sustainability Communication Reader: A Reflective Compendium, 221-243.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34716, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Fuchs, S., Rietsche, R., Aier, S., & Rivera, M. (2021). Is more always better? Simulating Feedback Exchange in Organizations.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34717, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Fu, Z., Dong, P., Li, S., Ju, Y., & Liu, H. (2021). How blockchain renovate the electric vehicle charging services in the urban area? A case study of Shanghai, China. Journal of Cleaner Production, 128172.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34718, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Gajary, L. C. (2021). Pathways for Theory Development: A Logic and a Methodology for Public and Nonprofit Strategic Planning (Doctoral dissertation, The Ohio State University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Logic, Methodology, Strategy, Planning, Education" + }, + { + "id": 34719, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Gal\u00e1n, S. F. (2021). Extending cellular evolutionary algorithms with message passing. Soft Computing, 1-12.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 34720, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Gal\u00e1n, S. F. (2021). Comparative Evaluation of the Fast Marching Method and the Fast Evacuation Method for Heterogeneous Media.\u00a0Applied Artificial Intelligence, 1-25.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 34721, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Galaz, V., Centeno, M. A., Callahan, P. W., Causevic, A., Patterson, T., Brass, I., ... & Levy, K. (2021). Artificial intelligence, systemic risks, and sustainability. Technology in Society, 67, 101741.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Artificial intelligence, Systems Risks, Sustainability" + }, + { + "id": 34722, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Gallagher, C. A., Chudzinska, M., Larsen\u2010Gray, A., Pollock, C. J., Sells, S. N., White, P. J., & Berger, U. (2021). From theory to practice in pattern\u2010oriented modelling: identifying and using empirical patterns in predictive models. Biological Reviews.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34723, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "GAO, DEHUA. \"Agent-Based Dynamics Modelling in Routine.\" Cambridge Handbook of Routine Dynamics (2021): 159.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 34724, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Garc\u00eda, R. M., de la Iglesia, D. H., de Paz, J. F., Leithardt, V. R., & Villarrubia, G. (2021, February). Urban Search and Rescue with Anti-pheromone Robot Swarm architecture. In 2021 Telecoms Conference (ConfTELE) (pp. 1-6). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Miscellaneous" + }, + { + "id": 34725, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Garc\u00eda-D\u00edaz, C. (2021). Agent-Based Organizational Ecologies: A Generative Approach to Market Evolution. In Pathways Between Social Science and Computational Social Science (pp. 179-196). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34726, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Garg, V. (2021). Cooperative Multi-robot Target Searching and Tracking Using Velocity Inspired Robotic Fruit Fly Algorithm. SN Computer Science, 2(6), 1-12.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science" + }, + { + "id": 34727, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Garrido, D., Jacob, J., Silva, D. C., & Rossetti, R. J. (2021). Pedestrian Simulation In SUMO Through Externally Modelled Agents. In ECMS (pp. 111-118).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 34728, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Gasparini, F., Giltri, M., & Bandini, S. (2021). Safety perception and pedestrian dynamics: Experimental results towards affective agents modeling. AI Communications, (Preprint), 1-15.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Pedestrian dynamics, Affective agents, Computer Science, Economics" + }, + { + "id": 34729, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Gay, P. E., Trumper, E., Lecoq, M., & Piou, C. (2021). Importance of human capital, field knowledge and experience to improve pest locust management. Pest Management Science.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34730, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Gegear, R. J., Heath, K. N., & Ryder, E. F. (2021). Modeling scale up of anthropogenic impacts from individual pollinator behavior to pollination systems. Conservation Biology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34731, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Gerbrands, P., & Unger, B. (2021). Policy Reform Effects in the Tax Ecosystem. Combating Fiscal Fraud and Empowering Regulators: Bringing Tax Money Back Into the COFFERS, 272.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34732, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Gerdes, L., Scholz-W\u00e4ckerle, M., & Schr\u00f6ter, J. (2021). Computerspiele und o\u0308konomische Modellformen Auf dem Weg zu transformationskritischen Medien. Zeitschrift f\u00fcr Medienwissenschaft, 13(2), 35-44.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Computer Science, Miscellaneous" + }, + { + "id": 34733, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Gervasi, V., & Guberti, V. (2021). African swine fever endemic persistence in wild boar populations: Key mechanisms explored through modelling. Transboundary and Emerging Diseases.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Modeling" + }, + { + "id": 34734, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ghaitaranpour, A., Mohebbi, M., & Koocheki, A. (2021). An innovative model for describing oil penetration into the doughnut crust during hot air frying. Food Research International, 110458.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34735, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ghorbani, A., de Bruin, B., & Kreulen, K. (2021). Studying the Influence of Culture on the Effective Management of the COVID-19 Crisis. In Social Simulation for a Crisis (pp. 189-230). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34736, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ghorbani, A., Ho, P., & Bravo, G. (2021). Institutional form versus function in a common property context: The credibility thesis tested through an agent-based model. Land Use Policy, 102, 105237.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34737, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ghoreishi, M., Razavi, S., & Elshorbagy, A. (2021). Understanding Human Adaptation to Drought: Agent-Based Agricultural Water Demand Modeling in the Bow River Basin, Canada. Hydrological Sciences Journal.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34738, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Giabbanelli, P. J., & Jackson, P. J. (2021, June). How Do Teams of Novice Modelers Choose an Approach? An Iterated, Repeated Experiment in a First-Year Modeling Course. In International Conference on Computational Science (pp. 661-674). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Experiment, Computer Science, Physics, Ecology, Economics, History, Social Science, Education, Modeling" + }, + { + "id": 34739, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Giabbanelli, P. J., Tison, B., & Keith, J. (2021). The application of modelling and simulation to public health: Assessing the quality of Agent-Based Models for obesity. Simulation Modelling Practice and Theory, 102268.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Modeling, Simulation, Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34740, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Gibson, M., Slade, R., Pereira, J. P., & Rogelj, J. (2021). Comparing Mechanisms of Food Choice in an Agent-Based Model of Milk Consumption and Substitution in the UK. Journal of Artificial Societies and Social Simulation, 24(3).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34741, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Giordano, N., Rosati, S., Valeri, F., Borchiellini, A., & Balestra, G. (2021). Simulation of the Impact on the Workload of the Enlargement of the Clinical Staff of a Specialistic Reference Center. Studies in health technology and informatics, 281, 605-609.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Health Technology and Informatics, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34742, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Glake, D., Panse, F., Ritter, N., Clemen, T., & Lenfers, U. (2021). Data Management in Multi-Agent Simulation Systems. BTW 2021.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34743, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Gokhale, V. A. (2021). 7 Positioning Resilience in. Reliability-Based Analysis and Design of Structures and Infrastructure, 89.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34744, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Goldstein, E., Erinjery, J. J., Martin, G., Kasturiratne, A., Ediriweera, D. S., de Silva, H. J., ... & Iwamura, T. (2021). Integrating human behavior and snake ecology with agent-based models to predict snakebite in high risk landscapes. PLOS Neglected Tropical Diseases, 15(1), e0009047.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Agent-based models, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34745, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "G\u00f3mez Gonz\u00e1lez, L. (2021).\u00a0Medidas para la prevenci\u00f3n del COVID-19 en los procesos de la aviaci\u00f3n comercial de pasajeros\u00a0(Bachelor's thesis, Universitat Polit\u00e8cnica de Catalunya).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34746, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Gonz\u00e1lez-Mon, B., Lindkvist, E., Bodin, \u00d6., Zepeda-Dom\u00ednguez, J. A., & Schl\u00fcter, M. (2021). Fish provision in a changing environment: The buffering effect of regional trade networks. Plos one, 16(12), e0261514.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Trade Networks" + }, + { + "id": 34747, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Griesemer, M., & Sindi, S. S. (2022). Rules of Engagement: A Guide to Developing Agent-Based Models. In Microbial Systems Biology (pp. 367-380). Humana, New York, NY.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Microbial Systems Biology" + }, + { + "id": 34748, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Guevara-Rivera, E., Osorno-Hinojosa, R., Zaldivar-Carrillo, V., & Perez-Ortiz, H. (2021). Dynamic simulation methodology for implementing circular economy: A new case study. Journal of Industrial Engineering and Management, 14(4), 850-862.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34749, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "G\u00fcl, N., Hasg\u00fcl, Z., & Ayt\u00f6re, C. Agent-Based Simulation Modeling For Covid-19 Vaccination Policies: Single-Dose And DoubleDose Applications.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 34750, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Gumzej, R. (2021). Use Case: E-Marketplace Regulation. In Intelligent Logistics Systems for Smart Cities and Communities (pp. 149-162). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34751, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Gunaratne, C., & Garibay, I. (2021). NL4Py: Agent-based modeling in Python with parallelizable NetLogo workspaces.\u00a0SoftwareX,\u00a016, 100801.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Network Theory, Programming, NetLogo, Parallelization" + }, + { + "id": 34752, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Guo, L., Li, Y., & Sheng, D. (2021). Modeling and Simulating Online Panic in an Epidemic Complexity System: An Agent-Based Approach. Complexity, 2021.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34753, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Grajdura, S. A., Borjigin, S. G., & Niemeier, D. A. (2020, November). Agent-based wildfire evacuation with spatial simulation: a case study. In Proceedings of the 3rd ACM SIGSPATIAL International Workshop on GeoSpatial Simulation (pp. 56-59).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Simulation, Spatial Simulation, Fire, Geology" + }, + { + "id": 34754, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Gravel-Miguel, C., Murray, J. K., Schoville, B. J., Wren, C. D., & Marean, C. W. (2021). Exploring variability in lithic armature discard in the archaeological record. Journal of Human Evolution, 155, 102981.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Lithic Archaeology, Geology" + }, + { + "id": 34755, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Grillo, C. A., Holford, M., & Walter, N. G. (2021). From Flatland to Jupiter: Searching for Rules of Interaction Across Biological Scales. Integrative and Comparative Biology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34756, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Grizioti, M., & Kynigos, C. (2021, June). Children as players, modders, and creators of simulation games: A design for making sense of complex real-world problems: Children as players, modders and creators of simulation games. In Interaction Design and Children (pp. 363-374).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34757, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Gunaratne, C., & Garibay, I. (2021). NL4Py: Agent-based modeling in Python with parallelizable NetLogo workspaces. SoftwareX, 16, 100801.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Modeling" + }, + { + "id": 34758, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "G\u00fcrsoy, F., & Badur, B. (2021). An Agent-Based Modelling Approach to Brain Drain. arXiv preprint arXiv:2103.03234.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34759, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Habib, L., Pacaux-Lemoine, M. P., Berdal, Q., & Trentesaux, D. (2021). From Human-Human to Human-Machine Cooperation in Manufacturing 4.0. Processes, 9(11), 1910.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34760, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Haddad, T. A., Hedjazi, D., & Aouag, S. (2021). An IoT-Based Adaptive Traffic Light Control Algorithm for Isolated Intersection. In Advances in Computing Systems and Applications: Proceedings of the 4th Conference on Computing Systems and Applications (pp. 107-117). Springer International Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computing Science, Economics" + }, + { + "id": 34761, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Hakim, G., & Braun, R. (2021, December). Wireless Sensor Network Routing for Energy Efficiency. In International Conference On Systems Engineering (pp. 329-343). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science" + }, + { + "id": 34762, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Hammock, J., & Goel, A. (2021). Recognizing Novice Learner\u2019s Modeling Behaviors. In Intelligent Tutoring Systems: 17th International Conference, ITS 2021, Virtual Event, June 7\u201311, 2021, Proceedings (p. 189). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling Behaviors" + }, + { + "id": 34763, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Han, X. (2020, December). Influence of exits and evacuees on evacuation efficiency. In IOP Conference Series: Earth and Environmental Science (Vol. 608, No. 1, p. 012031). IOP Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34765, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Hansen, H. H., Korevaar, G., & Lukszo, Z. (2021). The effect of group decisions in heat transitions: An agent-based approach. Energy Policy, 156, 112306.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34766, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Haghpanah, F., Ghobadi, K., & Schafer, B. W. (2021). Multi-hazard hospital evacuation planning during disease outbreaks using agent-based modeling. International Journal of Disaster Risk Reduction, 102632.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34767, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Haghpanah, F., Schafer, B. W., & Castro, S. (2021). Application of Bug Navigation Algorithms for Large-Scale Agent-Based Evacuation Modeling to Support Decision Making. Fire Safety Journal, 103322.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34768, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Haque, G. (2021). Expanding an Agent Based Model to Simulate SARS-CoV-2 Spread in Places of Worship.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34769, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Harel, D., & Marron, A. (2021, October). Introducing Dynamical Systems andChaos Early in Computer Science andSoftware Engineering Education Can Help Advance Theory and Practice ofSoftware Development and Computing. In International Symposium on Leveraging Applications of Formal Methods (pp. 322-334). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Mathematics, Miscellaneous" + }, + { + "id": 34770, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Harwick, C. (2021). Helipad: A Framework for Agent-Based Modeling in Python. Available at SSRN.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 34771, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Hassannezhad, M., Gogarty, M., O\u2019Connor, C. H., Cox, J., Meier, P. S., & Purshouse, R. C. (2021). A Cybernetic Participatory Approach for Whole-Systems Modelling and Analysis, with Application to Inclusive Economies.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34772, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Hasanpour, S., & Rassafi, A. A. (2020). Pedestrian Movement Simulation in Evacuation Process from a Dynamic Environment using Agent-Based Modeling. Quarterly Journal of Transportation Engineering, 12(2), 357-376.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34773, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Hassanpour, S., & Rassafi, A. A. (2021). Agent-Based Simulation for Pedestrian Evacuation Behaviour Using the Affordance Concept. KSCE Journal of Civil Engineering, 1-13.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34774, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Hassanpour, S., Rassafi, A. A., Gonzalez, V., & Liu, J. (2021). A hierarchical agent-based approach to simulate a dynamic decision-making process of evacuees using reinforcement learning. Journal of Choice Modelling, 100288.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34775, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Hbaieb, A., Ayed, S., & Chaari, L. (2021). A survey of trust management in the Internet of Vehicles. Computer Networks, 108558.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Trust management" + }, + { + "id": 34776, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "He, C., Jia, G., McCabe, B., Chen, Y., Zhang, P., & Sun, J. (2021). Psychological decision-making process of construction worker safety behavior: an agent-based simulation approach. International journal of occupational safety and ergonomics, (just-accepted), 1-27.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Psychology, Occupational Safety, Simulation, Agent-Based Modeling, Computer Science, Economics, Biology, Archaeology" + }, + { + "id": 34777, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "He, Z., Huang, D., & Fang, J. (2021). Social Stability Risk Diffusion of Large Complex Engineering Projects Based on an Improved SIR Model: A Simulation Research on Complex Networks. Complexity, 2021.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34778, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Hendriks, F., Distel, B., Engelke, K. M., Westmattelmann, D., & Wintterlin, F. (2021). Methodological and Practical Challenges of Interdisciplinary Trust Research. In Trust and Communication (pp. 29-57). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34779, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Hentati, A. I., & Fourati, L. C. A Convoy of Ground Mobile Vehicles Protection using Cooperative UAVs-based System. In 2021 International Symposium on Networks, Computers and Communications (ISNCC) (pp. 1-6). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, UAVs, Computer Science, Networks, Wireless Communication" + }, + { + "id": 34780, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Hern\u00e1ndez, P., Pena, C., Ramos, A., & G\u00f3mez-Cadenas, J. J. (2021). A new formulation of compartmental epidemic modelling for arbitrary distributions of incubation and removal times. Plos one, 16(2), e0244107.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling" + }, + { + "id": 34781, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Herrera, D. Y. M., Barrientos, A. H., & Escobar, O. Z. (2021). A review of agent-based modeling for simulation of agricultural systems. DYNA, 88(217), 103-110.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34782, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Hervey, S. D., Rutledge, L. Y., Patterson, B. R., Romanski, M. C., Vucetich, J. A., Belant, J. L. & Brzeski, K. E. (2021). A first genetic assessment of the newly introduced Isle Royale gray wolves (Canis lupus). Conservation Genetics, 1-14.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Genetics, Ecology, Conservation, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science" + }, + { + "id": 34783, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Hi\u017eak, J. (2021). Iterated Prisoner's Dilemma among mobile agents performing 2D random walk. Croatian Operational Research Review, 12(2), 161-174.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Social Science, Education, Epidemiology" + }, + { + "id": 34784, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Hjorth, A. (2021, August). NaturalLanguageProcesing4All: -A Constructionist NLP tool for Scaffolding Students\u2019 Exploration of Text. In Proceedings of the 17th ACM Conference on International Computing Education Research (pp. 347-354).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Natural LanguageProcessing" + }, + { + "id": 34785, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Hjorth, A., Hansen, I. B., & Sherson, J. (2021). OptimizerSpace: A CSCL Tool for Search and Optimization. In Proceedings of the 14th International Conference on Computer-Supported Collaborative Learning-CSCL 2021. International Society of the Learning Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science, Scientific Computing, Collaboration" + }, + { + "id": 34786, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Hoffenson, S., & Fay, B. (2021). Teaching Market-Driven Engineering Design with an Agent-Based Simulation Tool. Advances in Engineering Education, 9(2), n2.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Engineering Education, Simulation" + }, + { + "id": 34787, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "H\u00f8holt, M., Graungaard, D., Bouvin, N. O., Petersen, M. G., & Eriksson, E. (2021). Towards a model of progression in computational empowerment in education. International Journal of Child-Computer Interaction, 100302.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34788, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "H\u00f6lzchen, E., Hertler, C., Mateos, A., Rodr\u00edguez, J., Berndt, J. O., & Timm, I. J. (2021). Discovering the opposite shore: How did hominins cross sea straits?. PloS one, 16(6), e0252885.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34789, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Hong, J., & Chun, J. (2021). Analysis of Designer Brands Aiming for the Value of Slow Fashion-Focused on John Alexander Skelton and Geoffrey B. Small.\u00a0Journal of the Korean Society of Clothing and Textiles,\u00a045(1), 136-154.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34790, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Hosseini, S., & Zandvakili, A. (2021). The SEIRS-C Model of Information diffusion Based on Rumor spreading with Fuzzy Logic in Social Networks. International Journal of Computer Mathematics, (just-accepted), 1-30.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34791, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Huang, J., & Nouri, B. (2021). An Agent-Based Model to Evaluate the Effect of Socioeconomic Status and Demographic Factors on COVID-19 Prevalence and Mortality.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Socioeconomic Status, Demographic Factors, COVID-19, Mortality" + }, + { + "id": 34792, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Huang, S., Potter, A., Eyers, D., & Li, Q. (2021). The influence of online review adoption on the profitability of capacitated supply chains. Omega, 102501.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34793, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Huang, W., Yuan, B., Wang, S., & Zhang, X. (2020, December). Research on Simulation of Network Attack and Defense situation based on Evolutionary Game. In 2020 The 9th International Conference on Networks, Communication and Computing (pp. 96-103).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Network Science, Game Theory, Computer Science" + }, + { + "id": 34794, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Huang, Y., Karabiyik, T., Madamanchi, A., & Magana, A. J. (2021). An Agent-Based Modeling Approach for Informing the U.S. Plastic Waste Management Process. SIMUL 2021 : The Thirteenth International Conference on Advances in System Simulation, 65\u201371. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34795, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Hudec, O., Gazda, V., Zori\u010d\u00e1k, M., & Horv\u00e1th, D. (2021). 20. Industrial districts as the outcome of self-organisation in time and space. Handbook on Entropy, Complexity and Spatial Dynamics: A Rebirth of Theory?, 342.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34796, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Hunter, E., & Kelleher, J. D. (2021). Adapting an Agent-Based Model of Infectious Disease Spread in an Irish County to COVID-19. Systems, 9(2), 41.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 34797, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Husarek, D., Paulus, S., Metzger, M., Salapic, V., & Niessen, S. (2021). Modeling Charging Infrastructure Requirements to Achieve a Holistic E-Mobility Integration in Regional Energy Systems.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34798, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Husnain M, & Shafi, N. (2021) An Extension to Wolf Sheep Predation (Docked Hybrid) Agent Based Model in NetLogo. Journal of Software Engineering and Intelligent Systems 6(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling" + }, + { + "id": 34799, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Hwang, Y., & Heo, G. (2021). Development of a Radiological Emergency Evacuation Model Using Agent-Based Modeling. Nuclear Engineering and Technology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Radiology, Modeling" + }, + { + "id": 34800, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ibbotson, P., Jimenez-Romero, C., & Page, K. M. (2021). Dying to cooperate: the role of environmental harshness in human collaboration. Behavioral Ecology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34801, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ibrahim, M., Hashmi, U. S., Nabeel, M., Imran, A., & Ekin, S. (2021). Embracing Complexity: Agent-based Modeling for HetNets Design and Optimization via Concurrent Reinforcement Learning Algorithms. IEEE Transactions on Network and Service Management.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Networks, Mathematics, Signaling" + }, + { + "id": 34802, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Imirzian, N., & Hughes, D. P. (2021). An agent-based model shows zombie ants exhibit search behavior. Journal of Theoretical Biology, 110789.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 34803, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Innes-Gold, A., Pavlowich, T., Heinichen, M., McManus, M. C., McNamee, J., Collie, J., & Humphries, A. (2021). Exploring social-ecological trade-offs in fisheries using a coupled food web and human behavior model. Ecology and Society, 26(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34804, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Innocenti, E., Detotto, C., Idda, C., Parker, D. C., & Prunetti, D. (2020). An iterative process to construct an interdisciplinary ABM using MR POTATOHEAD: An application to Housing Market Models in touristic areas. Ecological Complexity, 44, 100882.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34805, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Inturri, G., Giuffrida, N., Ignaccolo, M., Le Pira, M., Pluchino, A., Rapisarda, A., & D'Angelo, R. (2021). Taxi vs. demand responsive shared transport systems: an agent-based simulation approach. Transport Policy.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34806, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ionescu, \u0218., Nica, I., & Chiri\u021b\u0103, N. (2021). Cybernetics approach using agent-based modeling in the process of evacuating educational institutions in case of disasters.\u00a0Sustainability,\u00a013(18), 10277.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34807, + "sort": null, + "year": 2021, + "is_ccl": true, + "reference": "Jacobson, M. & Wilensky, U. (2021). Complex systems and the learning sciences: Educational, theoretical, and methodological implications. In R. K. Sawyer (Ed.), The Cambridge handbook of the learning sciences (3rd Edition). Cambridge, UK: Cambridge University Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Learning Sciences, Methodology" + }, + { + "id": 34808, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Jager, W. (2021). Using Agent Based Modelling to Explore Behavioural Dynamics Affecting our Climate. Current Opinion in Psychology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Psychology" + }, + { + "id": 34809, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Jahanbani, M., Vahidnia, M. H., & Aspanani, M. Planning to explore lime minerals using spectral angle mapper (SAM) processing and agent-based modeling (ABM). Journal of Geomatics Science and Technology, 0-0.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Geology, Computer Science, Geography" + }, + { + "id": 34810, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Jani, A. (2021). An agent-based model of repeated decision making under risk: modeling the role of alternate reference points and risk behavior on long-run outcomes. Journal of Business Economics, 1-27.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34811, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Jansens, R., Kingston, M., Morrison, B., Dubey, M., & Guerin, S. (2021). SIN (language).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Language" + }, + { + "id": 34812, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Janssen, S. D., Viaene, K. P., Van Sprang, P., & De Schamphelaere, K. A. (2021). Integrating Bioavailability of Metals in Fish Population Models. Environmental Toxicology and Chemistry.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34813, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Jaramillo, D., Anderson, A., & Edington, C. (2021). Epidemiology model of Covid-19.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Epidemiology" + }, + { + "id": 34814, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Jensen, M., Dignum, F., Vanh\u00e9e, L., P\u0103str\u0103v, C., & Verhagen, H. (2021). Agile Social Simulations for Resilience. In Social Simulation for a Crisis (pp. 379-408). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34815, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Jensen, M., Lorig, F., Vanh\u00e9e, L., & Dignum, F. (2021). Deployment and Effects of an App for Tracking and Tracing Contacts During the COVID-19 Crisis. In Social Simulation for a Crisis (pp. 167-188). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34816, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Jensen, M., Vanh\u00e9e, L., & Kammler, C. (2021). Social Simulations for Crises: From Theories to Implementation. In Social Simulation for a Crisis (pp. 39-84). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34817, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Jiang, H., Chen, C., Zhao, S., & Wu, Y. (2020). Evolution of a technology standard alliance based on an echo model developed through complex adaptive system theory. Complexity, 2020.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34818, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Jiang, L. (2021). Racial and Ethnic Disparities in Breastfeeding Practices and the Impact of Interventions in a Low-Income Population in Los Angeles County (Doctoral dissertation, UCLA).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34819, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Jim\u00e9nez, A. F., C\u00e1rdenas, P. F., & Jim\u00e9nez, F. (2022). Intelligent IoT-multiagent precision irrigation approach for improving water use efficiency in irrigation systems at farm and district scales. Computers and Electronics in Agriculture, 192, 106635.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Irrigation, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34820, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Jin, K. S., Lee, S. M., & Kim, Y. C. (2021). Adaptive and optimized agent placement scheme for parallel agent\u2010based simulation. ETRI Journal.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34821, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Jing, T., Meng, Q. H., & Ishida, H. (2021). Recent Progress and Trend of Robot Odor S.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 34822, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Jiping, C., Lijie, C., Gang, D., & Bo, R. (2021). Simulation on Aviation Maintenance Support System Based on Goal-driven. Journal of System Simulation, 33(9), 2157.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, System Simulation, Aviation Maintenance Support System" + }, + { + "id": 34823, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Jo, C., Kim, D. H., & Lee, J. W. (2021). Sustainability of religious communities. Plos one, 16(5), e0250718.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34824, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Jungck, J. (2021). BIOLOGICAL MODELS FOR FINITE MATHEMATICS. PRIMUS, 1-43.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biological Models" + }, + { + "id": 34825, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Kanters, H., Brughmans, T., & Romanowska, I. (2021). Sensitivity analysis in archaeological simulation: An application to the MERCURY model. Journal of Archaeological Science: Reports, 38, 102974.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Archaeology, Sensitivity analysis" + }, + { + "id": 34826, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Karchevskyi, M., & Karchevskaya, H. (2021, March). Agent-Based Modeling as a Method of Crime Research. In International Conference on Economics, Law and Education Research (ELER 2021) (pp. 117-121). Atlantis Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34827, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Kart, \u00d6., Gen\u00e7, O. \u00c7., & Ba\u015f\u00e7ift\u00e7i, F. (2021). Speed Compatible Green Wave Coridor with Internet of Objects (No. 6618). EasyChair.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34828, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Karyawati, A. E. (2021). Scenario modelling as planning evidence to improve access to emergency obstetric care in eastern Indonesia. In The Modal Future: A Theory of Future-Directed Thought and Talk (pp. 278-290). Cambridge: Cambridge University Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34829, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Kaspersen, M. H., Graungaard, D., Bouvin, N. O., Petersen, M. G., & Eriksson, E. (2021). Towards a model of progression in computational empowerment in education. International Journal of Child - Computer Interaction, 29, 100302.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 34830, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Katan, J., & Perez, L. (2021). ABWiSE v1. 0: Toward and Agent-Based Approach to Simulating Wildfire Spread. Natural Hazards and Earth System Sciences Discussions, 1-27.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, Urban Studies, Social Science, Education" + }, + { + "id": 34831, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Katerndahl, D., Burge, S. K., & del Pilar Montanez Villacampa, M. (2021). Modeling Daily Partner Violence and Substance Use Based upon Couple\u2019s Reporting. Journal of Interpersonal Violence, 08862605211050108.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34832, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Kato, D., Yada, S., & Kurahashi, S. (2021). Analysis of Factory Automated Guided Vehicles Systems Using Contract Net Protocol. In Agents and Multi-Agent Systems: Technologies and Applications 2021 (pp. 511-519). Springer, Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Contract Net Protocol" + }, + { + "id": 34833, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Kato, J. S., & Sbicca, A. (2021). Bounded Rationality, Group Formation and the Emergence of Trust: An Agent-Based Economic Model. Computational Economics, 1-29.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34834, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Kaufman, M., & Yuthas, K. (2021) Learning Analytics and Technology Through TeachingLearning Analytics through Teaching. Journal of Emerging Technologies in Accounting.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Learning Analytics, TeachingLearningAnalytics, Accounting" + }, + { + "id": 34835, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Kaur, S. (2021). A Framework to Study the Impact of Interventions on Social Isolation During Pandemics Using Multi-Agent Simulation (Doctoral dissertation, University of Windsor (Canada)).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34836, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Kautz, F., & Mallick, R. B. (2021). Simulation-Based Stochastic Method to Model Microcrack Coalescence in Asphalt Pavements: Concept Paper. Journal of Transportation Engineering, Part B: Pavements, 147(4), 06021003.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Stochastic Method, Asphalt Pavements, Geology, Computer Science, Journal, Pavements" + }, + { + "id": 34837, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ke, L., Sadler, T. D., Zangori, L., & Friedrichsen, P. J. (2021). Developing and Using Multiple Models to Promote Scientific Literacy in the Context of Socio-Scientific Issues. Science & Education, 1-19.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34838, + "sort": null, + "year": 2021, + "is_ccl": true, + "reference": "Kelter, J., Bugler, A., & Wilensky, U. (2021). Agent-Based Models of Quadratic Voting. In Z. Yang, & E. von Briesen (Eds.), Proceedings of the 2020 Conference of The Computational Social Science Society of the Americas (pp. 131-142). (Springer Proceedings in Complexity). Springer Science and Business Media B.V. https://doi.org/10.1007/978-3-030-83418-0_8.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Agent-Based Models" + }, + { + "id": 34839, + "sort": null, + "year": 2021, + "is_ccl": true, + "reference": "Kelter, J. Z., Emery, J. D., & Wilensky, U. (2021). A Multi-level Diffusion Unit: Connecting Submicro- and Macro-levels with Computational, Graphical, and Mathematical Representations. 2021 ASEE Virtual Annual Conference.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Mathematics" + }, + { + "id": 34840, + "sort": null, + "year": 2021, + "is_ccl": true, + "reference": "Kelter, J., Peel, A., Bain, C., Anton, G., Dabholkar, S., Horn, M. S., & Wilensky, U. (2021). Constructionist co\u2010design: A dual approach to curriculum and professional development. British Journal of Educational Technology, 1043\u20131059. https://doi.org/10.1111/bjet.13084.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34841, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Khaddage, F., & Lattemann, C. (2021, July). Artificial Intelligence and Cloud-based Technologies to Empower Learning \u201cActive Experiments via NetLogo\u201d. In EdMedia+ Innovate Learning (pp. 15-21). Association for the Advancement of Computing in Education (AACE).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Artificial Intelligence, Cloud-based Technologies" + }, + { + "id": 34842, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Khalil, H., & Wainer, G. CD2: An Automation Tool for Cell-DEVS CO2 Diffusion Models. Proc. SimAud2021.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Automation" + }, + { + "id": 34843, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Khan, I., & Ca\u00f1amero, L. (2021, July). Adaptation-By-Proxy: Contagion Effect of Social Buffering in an Artificial Society. In ALIFE 2021: The 2021 Conference on Artificial Life. MIT Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34844, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Kianpour, M. (2021). Heterogeneous Preferences and Patterns of Contribution in Cybersecurity as a Public Good.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 34845, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Kilkis, S., Prakasha, P. S., Naeem, N., & Nagel, B. (2021). A Python Modelling and Simulation Toolkit for Rapid Development of System of Systems Inverse Design (SoSID) Case Studies. In AIAA Aviation 2021 Forum (p. 3000).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Modeling and Simulation, Astronomy" + }, + { + "id": 34846, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Kilty, T. J., & Burrows, A. C. (2021). Secondary Science Preservice Teachers: Technology Integration in Methods and Residency. Journal of Science Teacher Education, 1-23.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Technology, Methods, Education" + }, + { + "id": 34847, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Kim, S., Feng, B., Smith, K., Masoud, S., Zheng, Z., Szabo, C., & Loper, M. (2021). Toward Better Management of Potentially Hostile Crowds. In Proceedings of the 2021 Winter Simulation Conference (WSC).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 34848, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Kim, W. (2021). Does START-UP NY Promote Firm Formation?. Nakhara: Journal of Environmental Design and Planning, 20, 105-105.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Start-up NY\nFirm Formation" + }, + { + "id": 34849, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Kizhakkedath, A., & Tai, K. (2021). Vulnerability Analysis of Critical Infrastructure Network. International Journal of Critical Infrastructure Protection, 100472.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34850, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Klein, D., & Marx, J. Die epistemische Qualit\u00e4t demokratischer Entscheidungsverfahren. Interaktionseffekte zwischen eigenn\u00fctzigen, individuellen \u00dcberzeugungen und der epistemischen Qualit\u00e4t kollektiver Entscheidungen. Demokratie und Wahrheit.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34851, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Klopfer, E. (2021). The Complex Evolution of Technologies and Pedagogies for Learning about Complex Systems.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34852, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Knowe, M., & Gresalfi, M. (2021). Bridging the Divide: Exploring Affordances for Interdisciplinary Learning. In Proceedings of the 15th International Conference of the Learning Sciences-ICLS 2021.. International Society of the Learning Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Interdisciplinary Learning" + }, + { + "id": 34853, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Kooshknow, A. R. M. M., Herber, R., & Ruzzenenti, F. (2021). Is electricity storage systems in the Netherlands indispensable or doable? Testing electricity storage business models with exploratory agent-based modeling. arXiv preprint arXiv:2112.11035.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Electricity storage systems" + }, + { + "id": 34854, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Koppelaar, R., Marvuglia, A., & Rugani, B. (2021). Water Runoff and Catchment Improvement by Nature-Based Solution (NBS) Promotion in Private Household Gardens: An Agent-Based Model. In Rethinking Sustainability Towards a Regenerative Economy (pp. 91-114). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 34855, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Koralewski, T. E., Wang, H. H., Grant, W. E., Brewer, M. J., Elliott, N. C., & Westbrook, J. K. (2021). Modeling the dispersal of wind-borne pests: Sensitivity of infestation forecasts to uncertainty in parameterization of long-distance airborne dispersal. Agricultural and Forest Meteorology, 301, 108357.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Physics, Miscellaneous" + }, + { + "id": 34856, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ko\u0159\u00ednek, M., T\u00e1zlar, O., & \u0160tekerov\u00e1, K. (2021). Digital Twin Models: BIM Meets NetLogo.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 34857, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Koshy-Chenthittayil, S., Archambault, L., Senthilkumar, D., Laubenbacher, R., Mendes, P., & Dongari-Bagtzoglou, A. (2021). Agent Based Models of Polymicrobial Biofilms and the Microbiome\u2014A Review. Microorganisms, 9(2), 417.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34858, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Kostiou, V., Hall, M. W., Jones, P. H., & Hall, B. A. (2021). Simulations reveal that different responses to cell crowding determine the expansion of p53 and Notch mutant clones in squamous epithelia. Journal of the Royal Society Interface, 18(183), 20210607.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Cell crowding, p53, Notch" + }, + { + "id": 34859, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Kowarsch, D., & Yang, Z. (2021, July). The Impact of Housing Programs on Unsheltered Homeless Population: An Agent-Based Approach. In International Conference on Applied Human Factors and Ergonomics (pp. 84-92). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34860, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Kr\u00e1l, B. J. Model komplexn\u00edho syst\u00e9mu: simulace \u0161\u00ed\u0159en\u00ed k\u016frovce.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 34861, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Kurniawan, A. C., & Arvitrida, N. I. (2021). An agent-based simulation for a trade-off between frequency and depth in retail price promotion strategy. Management & Marketing, 16(1), 1-12.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34862, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Kussmaul, C., & Pirmann, T. (2021). Guided Inquiry Learning with Technology: Investigations to Support Social Constructivism. In CSEDU (1) (pp. 483-490).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Technology, Social Constructivism" + }, + { + "id": 34863, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Kwon, H. (2021). Refining Behavioural Theories and Rules in Agent-Based Models to Enhance Dynamic Simulation of Urban Change (Doctoral dissertation, University of Cambridge).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34864, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "LaBarbera, K., & Scullen, J. C. (2021). Using individual capture data to reveal large-scale patterns of social association in birds. Journal of Ornithology, 1-17.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 34865, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Lade, S. J., Anderies, J. M., Currie, P., & Rocha, J. C. Dynamical systems modelling. (2021). The Routledge Handbook of Research Methods for Social-Ecological Systems, 359.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Dynamical systems" + }, + { + "id": 34866, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Laguna-S\u00e1nchez, G. A., & L\u00f3pez-Sauceda, J. (2021). Modelo heur\u00edstico, para la din\u00e1mica de propagaci\u00f3n de una enfermedad infecciosa. Contactos, Revista de Educaci\u00f3n en Ciencias e Ingenier\u00eda, (119), 45-55.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34867, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Lal, C., & Marijan, D. (2021). Blockchain Testing: Challenges, Techniques, and Research Directions. arXiv preprint arXiv:2103.10074.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Blockchain" + }, + { + "id": 34868, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Lane, J. E., McCaffree, K., & Shults, F. L. (2021). Is radicalization reinforced by social media censorship?. arXiv preprint arXiv:2103.12842.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34869, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Lange, K. P., Korevaar, G., Oskam, I. F., Nikolic, I., & Herder, P. M. (2021). Agent-based Modelling and Simulation for Circular Business Model Experimentation. Resources, Conservation & Recycling Advances, 200055.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Simulation, Economics, Computer Science, Ecology" + }, + { + "id": 34870, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Langellier, B. A., Stankov, I., Hammond, R. A., Bilal, U., Auchincloss, A. H., Barrientos, T., ... & Roux, A. V. D. Potential impacts of policies to reduce purchasing of ultra-processed foods in Mexico at different stages of the social transition: an agent-based modeling approach. Public Health Nutrition, 1-24.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34871, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Larrain, N., & Groene, O. (2021). Simulation modeling to assess performance of integrated healthcare systems: Literature review to characterize the field and visual aid to guide model selection. PloS one, 16(7), e0254334.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34872, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Latif, R., Ahmed, M. U., Tahir, S., Latif, S., Iqbal, W., & Ahmad, A. (2021). A novel trust management model for edge computing. Complex & Intelligent Systems, 1-17.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34873, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Le, N. T. T., Nguyen, P. A. H. C., & Hanachi, C. (2021, September). Agent-Based Modeling and Simulation of Citizens Sheltering During a Tsunami: Application to Da Nang City in Vietnam. In International Conference on Computational Collective Intelligence (pp. 199-211). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 34874, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Lemanski, N., Silk, M., Fefferman, N., & Udiani, O. (2021). How territoriality reduces disease transmission among social insect colonies. Behavioral Ecology and Sociobiology, 75(12), 1-13.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 34875, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Leoni, S. (2021). An Agent-Based Model for Tertiary Educational Choices in Italy. Research in Higher Education, 1-28.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34876, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Lermanda Sandoval, M. O. (2021). Modelo de sistema de detecci\u00f3n de intrusos en red basado en especies indicadoras artificiales. (Thesis).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 34877, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Levy, B., Windoloski, K., & Ludlam, J. (2021). Matrix and agent-based modeling of threats to a diamond-backed terrapin population. Mathematical Biosciences, 108672.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Modeling" + }, + { + "id": 34878, + "sort": null, + "year": 2021, + "is_ccl": true, + "reference": "Levy, M., Peel, A., Dabholkar, S., Zhao, L., Juhl, S., Levites, L., Mills, J., Wu, S., Horn, M.S., & Wilensky, U.(2021). Co-Designing to Understanding Equity-Focus in Computational Thinking (CT) Integrated Science Curricula. Paper presented to the 2021 Annual Meeting of the National Association of Research in Science Teaching (NARST).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34879, + "sort": null, + "year": 2021, + "is_ccl": true, + "reference": "Levy, M., Wu, S. P. W., Dabholkar, S., Horn, M. S., & Wilensky, U. (2021). Teachers' Sensemaking of CT Integration and Pedagogical Approaches. In Dabholkar S. (Symposium organizer), Integrating Computational Thinking in Science Curricula: Professional Development and Student Assessment. Presented at the 2021 Annual Meeting of the National Association of Research in Science Teaching (NARST).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34880, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Lezia, A., Miano, A., & Hasty, J. (2021). Synthetic Gene Circuits: Design, Implement, and Apply. Proceedings of the IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 34881, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Li, D., Li, C., & Gu, R. (2021). Evolutionary Game Analysis of Promoting Industrial Internet Platforms to Empower Manufacturing SMEs through Value Cocreation Cooperation. Discrete Dynamics in Nature and Society, 2021.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34882, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Li, H., Li, C., & Wang, Z. (2021). An agent-based model for exploring the impacts of reciprocal trust on knowledge transfer within an organization. Journal of Business & Industrial Marketing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34883, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Li, K., Liu, Y., Wan, H., & Huang, Y. (2021). A discrete-event simulation model for the Bitcoin blockchain network with strategic miners and mining pool managers. Computers & Operations Research, 105365.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Ecology" + }, + { + "id": 34884, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Li, L., Wang, J., Zhong, X., Lin, J., Wu, N., Zhang, Z., ... & Zhao, Y. (2022). Combined multi-objective optimization and agent-based modeling for a 100% renewable island energy system considering power-to-gas technology and extreme weather conditions. Applied Energy, 308, 118376.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 34885, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Li, W., Cao, S., Hu, K., Cao, J., & Buyya, R. (2021). Blockchain-Enhanced Fair Task Scheduling for Cloud-Fog-Edge Coordination Environments: Model and Algorithm. Security and Communication Networks, 2021.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Blockchain" + }, + { + "id": 34886, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Li, Z., Pradena Miquel, M., & Pinacho-Davidson, P. (2022). Safety-Centric and Smart Outdoor Workplace: A New Research Direction and Its Technical Challenges. In Smart Trends in Computing and Communications (pp. 61-74). Springer, Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 34887, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Lin, S. Y., Hlynka, A. W., Xu, L., Lu, H., Sediek, O. A., El-Tawil, S., ... & Aguirre, B. (2021). Simple Run-Time Infrastructure (SRTI): An accessible distributed computing platform for interdisciplinary simulation. Journal of Computational Science, 101455.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Chemistry, Economics, Ecology, Archaeology" + }, + { + "id": 34888, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Liermann, V., & Dittmar, H. (2021). BSDS\u2014Balance Sheet Dynamics Simulator (Application ABM). In The Digital Journey of Banking and Insurance, Volume I (pp. 137-159). Palgrave Macmillan, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34889, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Liu, C., Bhullar, M. S., Kaur, T., Kumar, J., Reddy, S. R. S., Singh, M., & Kaundun, S. S. (2021). Modelling the Effect and Variability of Integrated Weed Management of Phalaris minor in Rice-Wheat Cropping Systems in Northern India. Agronomy, 11(11), 2331.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Weed Management, Agriculture, India, Rice, Crop, Modeling" + }, + { + "id": 34890, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Liu, H., Wu, M., Liu, X., Gao, J., Luo, X., & Wu, Y. (2021). Simulation of Policy Tools\u2019 Effects on Farmers\u2019 Adoption of Conservation Tillage Technology: An Empirical Analysis in China. Land, 10(10), 1075.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Simulation, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34891, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Liu, J., & Stacey, P. (2021). Modelling the effects of lockdown and social distancing in the management of the Global Coronavirus Crisis-Why the UK tier system failed.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34892, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Liu, W., & Agusdinata, D. B. (2021). Dynamics of local impacts in low-carbon transition: Agent-based modeling of lithium mining-community-aquifer interactions in Salar de Atacama, Chile. The Extractive Industries and Society, 100927.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Modeling, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34893, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Liu, Y., Gao, H., Cai, J., Lu, Y., & Fan, Z. (2021). Urbanization path, housing price and land finance: International experience and China\u2019s facts. Land Use Policy, 105866.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34894, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Liu, Y., Yang, D., Timmermans, H. J., & de Vries, B. (2021). Simulating the effects of redesigned street-scale built environments on access/egress pedestrian flows to metro stations. Computational Urban Science, 1(1), 1-14.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34895, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Lloyd, S. J., & Chalabi, Z. (2021). Climate change, hunger and rural health through the lens of farming styles: An agent-based model to assess the potential role of peasant farming. Plos one, 16(2), e0246788.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Farming Styles, Agent-Based Modeling" + }, + { + "id": 34896, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "L\u00f3pez-Ortiz, E. J., Sancho-Caparrini, F., Mart\u00ednez-del-Amor, M. \u00c1., Soria-Morillo, L. M., & \u00c1lvarez-Garc\u00eda, J. A. (2021). Hybrid agent-based methodology for testing response protocols. Knowledge-Based Systems, 107005.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34897, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Lorenz, F., & Jeyapragasan, G. (2020). The impact of climate change on tri-trophic interactions and crop production. The iScientist, 5(1), 4-12.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34898, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Lorenz, J. (2021). Epistemology of agent-based modeling. Handbook of Computational Social Science, Volume 1: Theory, Case Studies and Ethics, 13.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Epistemology" + }, + { + "id": 34899, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Lorig, F., Jensen, M., Kammler, C., Davidsson, P., & Verhagen, H. (2021). Comparative Validation of Simulation Models for the COVID-19 Crisis. In Social Simulation for a Crisis (pp. 331-352). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Social Science, Computer Science" + }, + { + "id": 34900, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Love, C., Gresalfi, M., & Knowe, M. (2021). The Tragedy of Lost Ideas: Examining Epistemic Injustice in Pair Programming. In Proceedings of the 15th International Conference of the Learning Sciences-ICLS 2021.. International Society of the Learning Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34901, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Lovellette, E., & Hexmoor, H. (2021). Lane and Speed Allocation Mechanism for Autonomous Vehicle Agents on a Multi-Lane Highway. Internet of Things, 100356.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34902, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Lu, P., & Chen, D. (2021). The life cycle model of Chinese empire dynamics (221 BC\u20131912 AD). The Journal of Mathematical Sociology, 1-37.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Mathematics, Sociology, History" + }, + { + "id": 34903, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Lu, P., & Chena, D. (2021). The Life Cycle Model and Empire Dynamics of China.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34904, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Lu, P., Yang, H., Li, H., Li, M., & Zhang, Z. (2021). Swarm intelligence, social force and multi-agent modeling of heroic altruism behaviors under collective risks. Knowledge-Based Systems, 106725.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Social Science, Computer Science, Miscellaneous" + }, + { + "id": 34905, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Lu, P., Yang, H., Li, M., & Zhang, Z. (2021). The sandpile model and empire dynamics. Chaos, Solitons & Fractals, 143, 110615.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34906, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Lu, P., Zhang, Z., & Li, M. (2021). Big data-drive agent-based modeling of online polarized opinions. Complex & Intelligent Systems, 1-18.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34907, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Lu, S., Wang, W., Cheng, Y., Yang, C., Jiao, Y., Xu, M., ... & Xu, J. (2021). Food-trade-associated COVID-19 outbreak from a contaminated wholesale food supermarket in Beijing. Journal of Biosafety and Biosecurity.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, COVID-19, Food, Economy, Urban Studies" + }, + { + "id": 34908, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Lu, P., Wen, F., Li, Y., & Chen, D. (2021). Multi-agent modeling of crowd dynamics under mass shooting cases. Chaos, Solitons & Fractals, 153, 111513.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 34909, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Lucherini, E., Sun, M., Winecoff, A., & Narayanan, A. (2021). T-RECS: A Simulation Tool to Study the Societal Impact of Recommender Systems. arXiv preprint arXiv:2107.08959.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34910, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Lwin, T., Koike, T., & Dang, J. (2021). A RATIONALIZED SEISMIC DESIGN METHOD FOR BUILDINGS IN EARTHQUAKE-PRONE DEVELOPING COUNTRIES. ASEAN Engineering Journal, 11(4), 266-279.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Earthquake Engineering, Architecture" + }, + { + "id": 34911, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Mabey, C. S., Armstrong, A. G., Mattson, C. A., Salmon, J. L., Hatch, N. W., & Dahlin, E. C. (2021). A computational simulation-based framework for estimating potential product impact during product design. Design Science, 7.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34912, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Maclay, G. J., & Ahmad, M. (2021). An agent based force vector model of social influence that predicts strong polarization in a connected world. Plos one, 16(11), e0259625.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34913, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Madamba, T. (2021). Simulating The Effects Of Cross-Contamination Of Escherichia Coli O157: H7 On Fresh-Cut Lettuce During Post-Harvest Processing From An Agent Based Perspective (Doctoral dissertation).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34914, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Madeira, L. M., Furtado, B. A., & Dill, A. R. (2021). VIDA: A simulation model of domestic VIolence in times of social DistAncing. arXiv preprint arXiv:2101.04057.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34915, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Mahfooz Ul Haque, H., Saleem, K., & Salman Khan, A. Modeling belief\u2010desire\u2010intention reasoning agents for situation\u2010aware formalisms. Concurrency and Computation: Practice and Experience, e6417.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34916, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Mahmud, S., Asadi, A., LaCrue, A. R., Akter, T., Hernandez, S., & Pinkley, S. N. (2021). A hybrid agent-based simulation and optimization approach for statewide truck parking capacity expansion. Procedia Computer Science, 184, 33-41.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34917, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Mahon, C. L., & Pelech, S. (2021). Guidance for analytical methods to cumulative effects assessment for terrestrial species. Environmental Reviews, 29(999), 1-24.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 34918, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Maier-Speredelozzi, V., & Still, B. (2021). Robust Project-Based Organizations for the Design of Complex Engineered Systems. Project Management Journal, 87569728211014369.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Project Management" + }, + { + "id": 34919, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Maiwald, J., & Schuette, T. (2021). Decentralised Electricity Markets and Proactive Customer Behaviour. Energies 2021, 14, 781.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34920, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Majid, M. H. A., Arshad, M. R., & Mokhtar, R. M. (2022). Swarm Robotics Behaviors and Tasks: A Technical Review. Control Engineering in Robotics and Industrial Automation, 99-167.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Robotics, Technology, Engineering, Control Engineering, Industrial Automation" + }, + { + "id": 34921, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Maldonado Casta\u00f1eda, C. E., Acevedo-Supelano, A. L., Bustacara, M., Gonz\u00e1lez-Mart\u00ednez, C. J., Trujillo Perdomo, J. F., Mill\u00e1n-Hern\u00e1ndez, E. M., ... & Silva Gonz\u00e1lez, S. L. (2021). Modelamiento basado en agentes (MBA) en estudios de salud p\u00fablica.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34922, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Mamboleo, A. A., Doscher, C., & Paterson, A. (2021). A computational modelling approach to human-elephant interactions in the Bunda District, Tanzania. Ecological Modelling, 443, 109449.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 34923, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "MANSOOR\u0130, H., GHORBAN\u0130, M., & KOHANSAL, M. R. (2021). Simulation the Effects of climate change and market prices on farm\u2019s structure by using an agent based model. Journal of Agricultural Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34924, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Mar\u00edn-Lora, C., Chover, M., & Sotoca, J. M. (2021, October). A Multi-agent Specification for the Tetris Game. In\u00a0International Symposium on Distributed Computing and Artificial Intelligence\u00a0(pp. 169-178). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 34925, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Marks, R. (2021). Thirty-Five Years of Computational Economics.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Economics" + }, + { + "id": 34926, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Marsay, K. S., Greaves, S., Mahabaleshwar, H., Ho, C. M., Roehl, H., Monk, P. N., ... & Partridge, L. J. (2021). Tetraspanin Cd9b and Cxcl12a/Cxcr4b have a synergistic effect on the control of collective cell migration. Plos one, 16(11), e0260372.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 34927, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": " Martin, A. A., & Barnas, A. F. (2022). Sitting ducks: Strategies to increase recruitment in common eiders (Somateria mollissima) facing polar bear (Ursus maritimus) predation. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 34928, + "sort": null, + "year": 2021, + "is_ccl": true, + "reference": "Martin, K. & Wilensky U. (2021). How do ants know what to do? Paper presented at the 2021 Annual Meeting of the American Education Research Association (AERA).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 34929, + "sort": null, + "year": 2021, + "is_ccl": true, + "reference": "Martin, K., Horn, M., & Wilensky, U. (2021). Constructivist Dialogue Mapping: A Comparison of Museum Experience. In de Vries, E., Hod, Y., & Ahn, J. (Eds.), Proceedings of the 15th International Conference of the Learning Sciences - ICLS 2021. (pp. 1081-1082). Bochum, Germany: International Society of the Learning Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Constructivist Dialogue Mapping" + }, + { + "id": 34930, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Martinez, I., Bruse, J. L., Florez-Tapia, A. M., Viles, E., & Olaizola, I. G. (2021). ArchABM: an agent-based simulator of human interaction with the built environment. $ CO_2 $ and viral load analysis for indoor air quality. arXiv preprint arXiv:2111.01484.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Archaeology, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34931, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Maruthasalam, A. P. P., Roy, D., & Venkateshan, P. (2021). Modelling driver's reactive strategies in e-hailing platforms: an agent-based simulation model and an approximate analytical model. International Journal of Production Research, 1-19.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34932, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Marvuglia, A., Bayram, A., Baustert, P., Guti\u00e9rrez, T. N., & Igos, E. (2021). Agent-based modelling to simulate farmers\u2019 sustainable decisions: Farmers\u2019 interaction and resulting green consciousness evolution. Journal of Cleaner Production, 129847.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34933, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Marvuglia, A., Koppelaar, R., & Rugani, B. (2020). The effect of green roofs on the reduction of mortality due to heatwaves: Results from the application of a spatial microsimulation model to four European cities. Ecological Modelling, 438, 109351.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34934, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Maryasin, O. Y. (2021). Bee-Inspired Algorithm for Groups of Cyber-Physical Robotic Cleaners with Swarm Intelligence. Cyber-Physical Systems: Modelling and Intelligent Control, 167-177.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Ecology" + }, + { + "id": 34935, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Maszczyk, P., Ta\u0142anda, J., Babkiewicz, E., Leniowski, K., & Urban, P. (2021). Daphnia depth selection in gradients of light intensity from different artificial sources: An evolutionary trap?. Limnology and Oceanography.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 34936, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Matsunami, N., Okuhara, S., & Ito, T. (2021). Reward Design for Multi-Agent Reinforcement Learning with a Penalty Based on the Payment Mechanism.\u00a0Transactions of the Japanese Society for Artificial Intelligence,\u00a036(5), AG21-H_1.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34937, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Maturo, A., Petrucci, A., Forzano, C., Giuzio, G. F., Buonomano, A., & Athienitis, A. (2021). Design and environmental sustainability assessment of energy-independent communities: The case study of a livestock farm in the North of Italy. Energy Reports.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34938, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Maw, Y. Y., & Tun, M. T. (2021). SENSITIVITY ANALYSIS OF ANGLE, LENGTH AND BRIM HEIGHT OF THE DIFFUSER FOR THE SMALL DIFFUSER AUGMENTED WIND TURBIN. ASEAN Engineering Journal, 11(4), 280-291.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34939, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "McKelvey, A. (2021). Learning and Integrating CALL Practices to Support English Language Learners: A Case Study of K-12 Classroom Teachers and Their Professional Development (Doctoral dissertation, University of Wyoming).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34940, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "McVeigh, J., & MacLachlan, M. Psychological Governance and COVID-19: A Case Study in Macropsychology. In M. MacLachlan & J. McVeigh (Eds.), Macropsychology: A Population Science for Sustainable Development Goals, 303.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Psychology, Population Science, Sustainability" + }, + { + "id": 34941, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Mestari, M. (2021). Evolutionary Heuristic for Avoiding Traffic Jams in Road Network Using A* Search Algorithm. In Innovations in Smart Cities Applications Volume 4: The Proceedings of the 5th International Conference on Smart City Applications (p. 423). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Evolutionary Heuristic" + }, + { + "id": 34942, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Metcalf, S. J., Reilly, J. M., Jeon, S., Wang, A., Pyers, A., Brennan, K., & Dede, C. (2021). Assessing computational thinking through the lenses of functionality and computational fluency. Computer Science Education, 1-25.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 34943, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Meza, A., Ari, I., Al-Sada, M. S., & Ko\u00e7, M. (2021). Future LNG competition and trade using an agent-based predictive model. Energy Strategy Reviews, 38, 100734.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34944, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Miller, B. W., & Frid, L. (2021). A new approach for representing agent-environment feedbacks: coupled agent-based and state-and-transition simulation models.\u00a0Landscape Ecology, 1-16.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology" + }, + { + "id": 34945, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Miller, L. (2021). Consumer Preferences and Associated Price Premiums for Agricultural Traits in Maine Markets.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Consumer Preferences" + }, + { + "id": 34946, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Miller Neilan, R., Majetic, G., Gil-Silva, M., Adke, A. P., Carrasquillo, Y., & Kolber, B. J. (2021). Agent-based modeling of the central amygdala and pain using cell-type specific physiological parameters. PLOS Computational Biology, 17(6), e1009097.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 34947, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Milne, R. J., Cotfas, L. A., & Delcea, C. (2021). Minimizing health risks as a function of the number of airplane boarding groups. Transportmetrica B: Transport Dynamics, 1-22.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 34948, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Minh, C. C., & Van Noi, N. (2021). Optimising truck arrival management and number of service gates at container terminals. Maritime Business Review.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34949, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Miri, F., & Pazzi, R. (2021). A Comprehensive Survey on the Convergence of Vehicular Social Networks and Fog Computing. arXiv preprint arXiv:2112.00143.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Vehicular Social Networks" + }, + { + "id": 34950, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Mittal, A., Gibson, N. O., Krejci, C. C., & Marusak, A. A. (2021). Crowd-shipping for urban food rescue logistics. International Journal of Physical Distribution & Logistics Management.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34951, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Miyazawa, A., & Didier, A. (2021). Ana Cavalcanti Pedro Ribeiro.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 34952, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Mohammed, S. J., & Hasson, S. T. (2021, April). A developed Clustering Approach to Model the Data Dissemination Types in a Highway. In 2021 1st Babylon International Conference on Information Technology and Science (BICITS) (pp. 332-336). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, History, Economics, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34953, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Mohammadi, V., Rahmani, A. M., Darwesh, A., & Sahafi, A. (2021). Trust-based friend selection algorithm for navigability in social Internet of Things. Knowledge-Based Systems, 107479.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34954, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Mohammadiun, S., Hu, G., Gharahbagh, A. A., Li, J., Hewage, K., & Sadiq, R. (2021). Intelligent Computational Techniques in Marine Oil Spill Management: A Critical Review. Journal of Hazardous Materials, 126425.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34955, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "M\u00f6ller, R., Furnari, A., Battiato, S., H\u00e4rm\u00e4, A., & Farinella, G. M. (2021). A Survey on Human-aware Robot Navigation. arXiv preprint arXiv:2106.11650.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 34956, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Molin, L. D., Kanwal, J., & Stone, C. (2021, June). Resource availability and the evolution of cooperation in a 3D agent-based simulation. In Proceedings of the Genetic and Evolutionary Computation Conference (pp. 93-101).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 34957, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Montagud, A., de Le\u00f3n, M. P., & Valencia, A. (2021). Systems Biology at the giga-scale: large multi-scale models of complex, heterogeneous multicellular systems. Current Opinion in Systems Biology, 100385.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Systems Biology" + }, + { + "id": 34958, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "More, S., Bampidis, V., Benford, D., Bragard, C., Halldorsson, T., Hern\u00e1ndez-Jerez, A., Bennekou, S. H., Koutsoumanis, K., Machera, K., Naegeli, H., Nielsen, S. S., Schlatter, J., Schrenk, D., Silano, V., Turck, D., Younes, M., Arnold, G., Dorne, J. L. Maggiore, A., ... Rortais, A. (2021). A systems-based approach to the environmental risk assessment of multiple stressors in honey bees.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 34959, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Mostafizi, A., Koll, C., & Wang, H. (2021). A Decentralized and Coordinated Routing Algorithm for Connected and Autonomous Vehicles.\u00a0IEEE Transactions on Intelligent Transportation Systems.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Ecology, Transportation" + }, + { + "id": 34960, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Mota, F. P., Steffens, C. R., Adamatti, D. F., Botelho, S. S. D. C., & Rosa, V. (2021). A persuasive multi-agent simulator to improve electrical energy consumption. Journal of Simulation, 1-15.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34961, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Mo\u0161kon, M., Komac, R., Zimic, N., & Mraz, M. (2021). Distributed biological computation: from oscillators, logic gates and switches to a multicellular processor and neural computing applications. Neural Computing and Applications, 1-16.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 34962, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Moya, I., Bermejo, E., Chica, M., & Cord\u00f3n, \u00d3. (2021). Coral reefs optimization algorithms for agent-based model calibration. Engineering Applications of Artificial Intelligence, 100, 104170.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34963, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Moya, I., Chica, M., S\u00e1ez-Lozano, J. L., & Cord\u00f3n, \u00d3. (2021). Simulating the influence of terror management strategies on the voter ideological distance using agent-based modeling. Telematics and Informatics, 101656.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34964, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Mponela, P. (2021). Options for sustainable agricultural intensification in maize mixed farming systems.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Agriculture" + }, + { + "id": 34965, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Mudrak, G., & Semwal, S. K. (2021). Autonomous Vehicle Decision Making and Urban Infrastructure Optimization. In Intelligent Computing (pp. 1190-1202). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34966, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Mudrak, G., & Semwal, S. K. (2021, November). Using Agent Based Modeling to Frame Autonomous Vehicle Navigation as Complex Systems. In Proceedings of the Future Technologies Conference (pp. 154-172). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34967, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Mulyono, N. B., Pambudi, N. F., Ahmad, L. B., & Adhiutama, A. (2021). Determining response time factors of emergency medical services during the COVID-19 pandemic. International Journal of Emergency Services.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34968, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Mumford, E. (2021). Marginalized Indigenous Knowledge and Contemporary Swedish Colonialism: The Case of Reindeer Husbandry in G\u00e4llivare Forest S\u00e1mi Community.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34969, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Munthali, K. G. (2021). Analysing Road Traffic Situation in Lilongwe: An Agent Based Modelling (ABM) Approach. Advanced Journal of Graduate Research, 10(1), 3-15.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34970, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Murukutla, S. A., Koushik, S. B., Chinthala, S. P. R., Bobbillapati, A., & Kandaswamy, S. (2021, October). A Simple Agent Based Modeling Tool for Plastic and Debris Tracking in Oceans. In International Conference on Practical Applications of Agents and Multi-Agent Systems (pp. 139-150). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34971, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Musaeus, L. H., & Musaeus, P. (2021, June). Computing and Gestures in High School Biology Education. In Proceedings of the 26th ACM Conference on Innovation and Technology in Computer Science Education V. 1 (pp. 533-539).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computing" + }, + { + "id": 34972, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Mysterud, A., Viljugrein, H., Rolandsen, C. M., & Belsare, A. V. (2021). Harvest strategies for the elimination of low prevalence wildlife diseases. Royal Society Open Science, 8(3), 210124.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 34973, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Nadimi, N., & Eshlaghi, A. T. (2021). Hybrid of System Dynamics-Agent Based Analysis of Mobile Operators Revenue The Case: Digital Service Entry of MCCI Company. Journal of Industrial Management Studies, 19(60), 51-84.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "System Dynamics, Agent Based Analysis, Mobile Operators, Revenue" + }, + { + "id": 34974, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Nagaraj, R. K., & D\u2019Souza, M. (2021). A verifiable multi-agent framework for dependable and adaptable avionics. S\u0101dhan\u0101, 46(1), 1-27.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34975, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Nagasawa, R., Mas, E., Moya, L., & Koshimura, S. (2021). Model-based analysis of multi-UAV path planning for surveying postdisaster building damage. Scientific Reports, 11(1), 1-14.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34976, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Nakanishi, H., Han, W., Muminovic, M., & Qu, T. (2021). An Agent-Based Bushfire Visualisation to Support Urban Planning: A Case Study of the South Coast, NSW 2019\u20132020. In Urban Informatics and Future Cities (pp. 371-386). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Urban Studies, Computer Science, Ecology" + }, + { + "id": 34977, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Narayanan, B. L., Yosri, A., Ezzeldin, M., El-Dakhakhni, W., & Dickson-Anderson, S. (2021). A complex network theoretic approach for interdependence investigation: An application to radionuclide behavior in the subsurface. Computers & Geosciences, 104913.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, Network Theory, Geology" + }, + { + "id": 34978, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Naugle, A., Verzi, S., Lakkaraju, K., Swiler, L., Warrender, C., Bernard, M., & Romero, V. (2021). Feedback density and causal complexity of simulation model structure. Journal of Simulation, 1-11.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 34979, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Navasartian, K. (2021). Simulating the Spread and Containment of COVID-19: An Agent-Based Modelling Approach (Doctoral dissertation, Wien).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34980, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Negahban, A., & Giabbanelli, P. J. (2021). Hybrid Agent-Based Simulation of Adoption Behavior and Social Interactions: Alternatives, Opportunities, and Pitfalls. IEEE Transactions on Computational Social Systems.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34981, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Nerrise, F. (2021, May). Predictive Agent-Based Modeling of Natural Disasters Using Machine Learning. In Proceedings of the AAAI Conference on Artificial Intelligence (Vol. 35, No. 18, pp. 15976-15977).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Machine Learning" + }, + { + "id": 34982, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Neumayr, R. R. (2021). Agent-Based Semiology: Optimizing Office Occupation Patterns with Agent-Based Simulations. In Formal Methods in Architecture (pp. 49-59). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34983, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Newton, A. C., Evans, P. M., Watson, S. C., Ridding, L. E., Brand, S., McCracken, M., ... & Bullock, J. M. (2021). Ecological restoration of agricultural land can improve its contribution to economic development. PloS one, 16(3), e0247850.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34984, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Nganro, S., Trisutomo, S., Barkey, R., Ali, M., Imura, H., Onishi, A., ... & Mahamud, M. A. (2021). Prediction of Future Land Use and Land Cover (LULC) in Makassar City. TATALOKA, 23(2), 183-189.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34985, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Nguyen, G. T. H., Nong, D. H., & See, L. (2021). Simulating the Spatial Distribution of Pollutant Loads from Pig Farming using an Agent-based Modeling Approach. Environmental Science and Pollution Research(preprint). Vietnam National University of Agriculture.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 34986, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Nguyen, J., Powers, S. T., Urquhart, N., Farrenkopf, T., & Guckert, M. (2021). An Overview of Agent-based Traffic Simulators. arXiv preprint arXiv:2102.07505.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Miscellaneous" + }, + { + "id": 34987, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ni, L., Bausch, G., & Benjamin, R. (2021). Computer science teacher professional development and professional learning communities: a review of the research literature. Computer Science Education, 1-32.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 34988, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "N\u00f6ldeke, B., Winter, E., Laumonier, Y., & Simamora, T. (2021). Simulating Agroforestry Adoption in Rural Indonesia: The Potential of Trees on Farms for Livelihoods and Environment. Land, 10(4), 385.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Agriculture, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 34989, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Nsor, M., & Kapale, K. (2020). Visualization and Simulation of Traffic Flow. Bulletin of the American Physical Society, 65.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Physics" + }, + { + "id": 34990, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ntankouo Njila, R. C., Mostafavi, M. A., & Brodeur, J. (2021). A Decentralized Semantic Reasoning Approach for the Detection and Representation of Continuous Spatial Dynamic Phenomena in Wireless Sensor Networks. ISPRS International Journal of Geo-Information, 10(3), 182.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, History, Economics, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34991, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Nunes, A. M., Zwick, M., & Wakeland, W. (2021). Sensitivity analysis of an agent-based simulation model using reconstructability analysis. International Journal of General Systems, 50(3), 319-338.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34992, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Nur, N. (2021). Developing Temporal Machine Learning Approaches to Support Modeling, Explaining, and Sensemaking of Academic Success and Risk of Undergraduate Students (Doctoral dissertation, The University of North Carolina at Charlotte).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34993, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ofori, R. O., & Rouleau, M. D. (2021). Modeling the impacts of floating seaweeds on fisheries sustainability in Ghana. Marine Policy, 127, 104427.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Fisheries, Economics, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 34994, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ogunsakin, R., Marin, C. A., & Mehandjiev, N. (2021). Towards engineering manufacturing systems for mass personalisation: a stigmergic approach. International Journal of Computer Integrated Manufacturing, 1-29.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 34995, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Oh, J., & Kim, S. (2021). Distributed Trust Management for Fog Based IoT Environment. Journal of the Korea Institute of Information Security & Cryptology, 31(4), 731-751.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34996, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Oh, W. S., Yu, D. J., & Muneepeerakul, R. (2021). Efficiency-fairness trade-offs in evacuation management of urban floods: The effects of the shelter capacity and zone prioritization. PloS one, 16(6), e0253395.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34997, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Oliveira, N., & Secchi, D. (2021). Theory Building, Case Dependence, and Researchers\u2019 Bounded Rationality: An Illustration From Studies of Innovation Diffusion. Sociological Methods & Research, 0049124120986201.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34998, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Olzer, R. (2021). The Costs (And Benefits) of Standing Out: Alternative Reproductive Behavior and Novel Trait Evolution in the Pacific Field Cricket (Doctoral dissertation, University of Minnesota).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 34999, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Onggo, B. S. & Utomo, D. S. (2021). Dairy supply chain in West Java: Modelling using agent-based simulation and reporting using the stress guidelines. In M. Fakhimi, D. Robertson, & T. Boness (Eds.), Proceedings of the Operational Research Society Simulation Workshop 2021 (SW21). https://doi.org/10.36819/SW21.032", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Dairy supply chain" + }, + { + "id": 35000, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Orjuela-Garzon, W., Quintero, S., Giraldo, D. P., Lotero, L., & Nieto-Londo\u00f1o, C. (2021). A Theoretical Framework for Analysing Technology Transfer Processes Using Agent-Based Modelling: A Case Study on Massive Technology Adoption (AMTEC) Program on Rice Production. Sustainability 2021, 13, 11143.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Technology Transfer, Modeling, Rice Production, Agent-Based Modeling, Sustainability" + }, + { + "id": 35001, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ornstein, J. T., & Hammond, R. A. (2021). Agent-Based Modeling in the Social Sciences. New Horizons in Modeling and Simulation for Social Epidemiology and Public Health, 22.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35002, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Orozco-Rivera, J., Ceballos, Y., & Castillo-Grisales, J. A. (2022). An\u00e1lisis del alto flujo vehicular para una v\u00eda de acceso a Medell\u00edn usando simulaci\u00f3n basada en agentes. Revista UIS Ingenier\u00edas, 21(1), 73-82.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35003, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Otto Syk, M. (2021). Geopolitics of Finance; Modelling the role of states in the international financial system.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35004, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ouseph, S. V. V. (2021). A modern paradigm for cloud computing adoption that brings into account the deployment organization's main concerns.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35005, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Overwater, A., & Yorke-Smith, N. (2021). Agent-based simulation of short-term peer-to-peer rentals: Evidence from the Amsterdam housing market. Environment and Planning B: Urban Analytics and City Science, 23998083211000747.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35006, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ozarisoy, B., & Altan, H. (2021). A novel methodological framework for the optimisation of post-war social housing developments in the South-eastern Mediterranean climate: Policy design and life-cycle cost impact analysis of retrofitting strategies. Solar Energy, 225, 517-560.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35007, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ozawa, S., Chen, H. H., Rao, G. G., Eguale, T., & Stringer, A. (2021). Value of pneumococcal vaccination in controlling the development of antimicrobial resistance (AMR): Case study using DREAMR in Ethiopia. Vaccine.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35008, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ozik, J., Wozniak, J. M., Collier, N., Macal, C. M., & Binois, M. (2021). A Population Data-Driven Workflow for COVID-19 Modeling and Learning.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35009, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "\u00d6zg\u00fcr, K. A. R. T., Gen\u00e7, O. \u00c7., & BASC\u0130FTC\u0130, F. (2021). Speed Compatible Green Wave Corridor with The Internet of Things. Avrupa Bilim ve Teknoloji Dergisi, (28), 411-416.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 35010, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Pahl, C. C., & Ruedas, L. A. (2021). Carnosaurs as Apex Scavengers: Agent-based simulations reveal possible vulture analogues in late Jurassic Dinosaurs. Ecological Modelling, 458, 109706.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 35011, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Palatnik, A., & Abrahamson, D. (2021). Escape from Plato\u2019s cave: An enactivist argument for learning 3d geometry by constructing tangible models. Submitted to CERME12, TWG4.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35012, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Panjaitan, J. R. H., & Gozan, M. (2021). TECHNO-ECONOMIC EVALUATION OF NITROCELLULOSE PRODUCTION FROM PALM OIL EMPTY FRUIT BUNCHES. ASEAN Engineering Journal, 11(4), 246-254.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Engineering" + }, + { + "id": 35013, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Paoletti, J., Bisbey, T. M., Zajac, S., Waller, M. J., & Salas, E. (2021). Looking to the Middle of the Qualitative-Quantitative Spectrum for Integrated Mixed Methods. Small Group Research, 1046496421992433.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35014, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Papageorgiou, A., Chaitanya Munjulury, R., G\u00e5rdhagen, R., Amadori, K., & Jouannet, C. (2021). Development of Analysis Capabilities for the Preliminary Sizing and Evaluation of Unmanned Airborne Early Warning Aircraft. In AIAA AVIATION 2021 FORUM (p. 2452).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35015, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Papageorgiou, A., \u00d6lvander, J., Amadori, K., & Jouannet, C. (2021). Development of Analysis and Simulation Models for Evaluating Airborne Radar Surveillance System of Systems. In AIAA Scitech 2021 Forum (p. 0303).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35016, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Pardos, Z. A., Rosenbaum, L. F., & Abrahamson, D. (2021). Characterizing learner behavior from touchscreen data. International Journal of Child-Computer Interaction, 100357. https://doi.org/10.1016/j.ijcci.2021.100357", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 35017, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "P\u0103str\u0103v, C., Jensen, M., Mellema, R., & Vanh\u00e9e, L. (2021). Social Simulations for Crises: From Models to Usable Implementations. In Social Simulation for a Crisis (pp. 85-117). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35018, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Patarakin, E., Vachkova, S., & Burov, V. (2021). Agent-based modeling of teacher interaction within a repository of digital objects. In Education and City: Education and Quality of Living in the City (pp. 5013-5013).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35019, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Patel, J., Katan, J., Perez, L., & Sengupta, R (2021). Transferring decision boundaries onto a geographic space: Agent rules extracted from movement data using classification trees. Transactions in GIS.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35020, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Pathak, A., Mohan, V. M., & Banerjee, A. (2021). Optimal lockdown strategies: All about time.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35021, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Paul, R., Behjat, L., & Brennan, R. (2021). USING INDIVIDUAL-BASED MODELING TO BETTER UNDERSTAND THE HIDDEN CURRICULUM OF ENGINEERING. Proceedings of the Canadian Engineering Education Association (CEEA).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35022, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Paunova, M. (2021). How do they Integrate?: Social Exchange and Reciprocal Integration Among Migrants and Locals. In 5th European Conference on Social Network.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Social Exchange, Reciprocal Integration" + }, + { + "id": 35023, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Pavlic, T. P., Hanson, J., Valentini, G., Walker, S. I., & Pratt, S. C. (2021). Quorum sensing without deliberation: biological inspiration for externalizing computation to physical spaces in multi-robot systems. Swarm Intelligence, 1-33.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 35024, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Pavlovi\u0107, B., Ivezi\u0107, D., & \u017divkovi\u0107, M. (2021). State and perspective of individual household heating in Serbia: A survey-based study. Energy and Buildings, 111128.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35025, + "sort": null, + "year": 2021, + "is_ccl": true, + "reference": "Peel, A., Dabholkar, S., Wu, S., Horn, M.S., Wilensky, U. (2021). An Evolving Definition of Computational Thinking in Science and Mathematics Classrooms. Proceedings of the 5th APSCE International Computational Thinking and STEM in Education Conference 2021, (pp. 119-122).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computation, STEM" + }, + { + "id": 35026, + "sort": null, + "year": 2021, + "is_ccl": true, + "reference": "Peel, A., Kelter, J., Wilensky, U., & Horn, M. (2021). Supporting the Integration of Computational Thinking and Science Through Professional Development and Co-design. Presented to the Annual Meeting of the Association of Science Teacher Education (ASTE) 2021. Salt Lake City, UT.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Social Science, Education" + }, + { + "id": 35027, + "sort": null, + "year": 2021, + "is_ccl": true, + "reference": "Peel, A., Kelter, J., Horn, M., & Wilensky, U. (2021). Designing professional learning experiences to support teachers' computational thinking learning and confidence. Presented at the 2021 Annual Meeting of the National Association of Research in Science Teaching (NARST).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35028, + "sort": null, + "year": 2021, + "is_ccl": true, + "reference": "Peel, A., Kelter, J., Zhao, L., Horn, M.S., Wilensky, U. (2022). A Design-Based Research Methodology Utilizing Conjecture Mapping to Frame Embedded Co-design Cycles. Paper accepted to the 2022 Annual Meeting of the National Association of Research in Science Teaching (NARST).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35029, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Pereira, A., Laureano, R. M., Neto, F., & Macedo, J. (2021, June). Computer simulation of diabetic retinopathy screening adherence: Agent based model with fuzzy logic. In 2021 16th Iberian Conference on Information Systems and Technologies (CISTI) (pp. 1-6). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 35030, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Perez, A. Z., Bone, C., & Stenhouse, G. (2021). Simulating multi-scale movement decision-making and learning in a large carnivore using agent-based modelling. Ecological Modelling, 452, 109568.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Modeling" + }, + { + "id": 35031, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Perry, G. L. (2021). How far might plant-eating dinosaurs have moved seeds? Biol. Lett. 17 20200689 http://doi.org/10.1098/rsbl.2020.0689.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 35032, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Perry, G. L., Brazier, R. E., & Wilmshurst, J. M. (2021). The role of paleoecology in understanding landscape-level ecosystem dynamics. The Routledge Handbook of Landscape Ecology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Landscape Ecology" + }, + { + "id": 35033, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Persson, A. (2021). Urban or else? A combined method analysis of the discourse of the Swedish state during the years 2018-2020 on the choice situation of rural youths to move or remain.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35034, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Pestle, W. J., Hubbell, C., & Hubbe, M. (2021). (DIGSS) Determination of Intervals using Georeferenced Survey Simulation: An R package for subsurface survey. PloS one, 16(9), e0257386.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Pestle, Georeferenced Survey Simulation, R package" + }, + { + "id": 35035, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Pfoser, A. Z., & Wenk, C. Towards Large-Scale Agent-Based Geospatial Simulation.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 35036, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Pham, L. M., Parlavantzas, N., Le, H. H., & Bui, Q. H. (2021). Towards a Framework for High-Performance Simulation of Livestock Disease Outbreak: A Case Study of Spread of African Swine Fever in Vietnam. Animals, 11(9), 2743.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Livestock Disease, Simulation, Vietnam" + }, + { + "id": 35037, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Phetheet, J., Hill, M. C., Barron, R. W., Gray, B. J., Wu, H., Amanor-Boadu, V., ... & Rossi, M. W. (2021). Relating agriculture, energy, and water decisions to farm incomes and climate projections using two freeware programs, FEWCalc and DSSAT. Agricultural Systems, 193, 103222.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Agriculture, Energy, Water, Climate, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35038, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Pian, Y., Peng, J., Xu, L., Wu, P., & Li, J. (2021, December). Analysis and simulation optimization of passenger flow in urban rail transit station. In Fifth International Conference on Traffic Engineering and Transportation System (ICTETS 2021) (Vol. 12058, pp. 262-271). SPIE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Economics, History, Archaeology, Miscellaneous" + }, + { + "id": 35039, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Pichon co-directeur, F. Une nouvelle politique d\u2019ex\u00e9cution de simulations stochastiques fond\u00e9e sur des principes de partitionnement, de s\u00e9lection et de clonage (Doctoral dissertation, Universit\u00e9 d\u2019Artois).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 35040, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Pidiha, N. (2021). Evolution of AEC Project Networks: an Agent-Based Modeling Approach (Doctoral dissertation, Michigan State University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35041, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Pillai, M. S., Chaudhary, G., Khari, M., & Crespo, R. G. (2021). Real-time image enhancement for an automatic automobile accident detection through CCTV using deep learning. Soft Computing, 1-12.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 35042, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Pineda Ramos, J. F. (2021). Ense\u00f1anza y Aprendizaje de los N\u00fameros Complejos a trav\u00e9s de la Historia y la Geometr\u00eda Din\u00e1mica.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, History, Physics, Geography" + }, + { + "id": 35043, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Pingkuo, L., & Huan, P. (2021). What drives the green and low-carbon energy transition in China?: An empirical analysis based on a novel framework. Energy, 122450.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35044, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Plantec, E., Aquilanti, L., & Belorgey, R. (2021). Vers l'adaptation de comportements par le biais de l'\u00e9volution culturelle pour des essaims de robots autonomes (Doctoral dissertation, LORIA, UMR 7503, Universit\u00e9 de Lorraine, CNRS, Vandoeuvre-l\u00e8s-Nancy).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Plantec, Aquilanti, & Belorgey (2021)" + }, + { + "id": 35045, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Plazas Escudero, D., C\u00e1rdenas-Rodr\u00edguez, J. S., & Restrepo Sierra, M. (2021). Agent-Based Model for Studying Diabetes under the Influence of Relationships. Cuadernos de Ingenier\u00eda Matem\u00e1tica, 1(01), 1-9.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35046, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Pietzsch B.W., Peter F.J. and Berger U. (2021) The Effect of Sanitation Felling on the Spread of the European Spruce Bark Beetle=97An Individual-Based Modeling Approach. Front. For. Glob. Change 4:704930. https://doi.org/10.3389/ffgc.2021.704930 ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Sanitation, Ecology, Modeling" + }, + { + "id": 35047, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Pilny, A. (2021). Computational Methods for Studying Group Communication. In The Emerald Handbook of Group and Team Communication Research. Emerald Publishing Limited.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computational Methods" + }, + { + "id": 35048, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Pommerening, A. (2021). Doctoral Studies and All That. In Staying on Top in Academia (pp. 33-50). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35049, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ponziani, F. A., Tinaburri, A., Eudes, V. S. G., & Zip, C. Some Effect Of Interpersonal Distance Constraints In Modeling Wayout Finding From An Exhibition Hall.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35050, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Pot, V., Portell, X., Otten, W., Garnier, P., Monga, O., & Baveye, P. C. Accounting for soil architecture and microbial dynamics in microscale models: Current practices in soil science and the path ahead. European Journal of Soil Science.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Soil Science, Microbiology" + }, + { + "id": 35051, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Pratama, R. A. R. J., & Rusdan, M. (2021). Effectiveness of Rastra Bulog Rice Distribution Using Agent Based Modeling and Simulation Tools. Almana: Jurnal Manajemen dan Bisnis, 5(1), 84-92.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35052, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Pray, I. W., Pizzitutti, F., Bonnet, G., Gonzalez-Gustavson, E., Wakeland, W., Pan, W. K., ... & Cysticercosis Working Group in Peru. (2021). Validation of a spatial agent-based model for Taenia solium transmission (\u201cCystiAgent\u201d) against a large prospective trial of control strategies in northern Peru. PLoS neglected tropical diseases, 15(10), e0009885.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Spatial Agent-based Modeling, Control Strategies, Taenia solium transmission" + }, + { + "id": 35053, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Prinz, A. (2021). Teaching Language Engineering Using MPS. In Domain-Specific Languages in Practice (pp. 315-336). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Teaching" + }, + { + "id": 35054, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "QIU, L. P., & YANG, L. H. (2021). The research of co-evolution mechanisms between cross-border e-commerce and manufacturing cluster: An Agent-based model. In E3S Web of Conferences (Vol. 235, p. 03048).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35055, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Qureshi, A., & Ahmad, K. (2021, November). Agents and Secure Contracts in Cyber-Physical Systems: A Simulation. In Proceedings of the Future Technologies Conference (pp. 533-551). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35056, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Racine, E. E., & Bryson, J. J. (2021). Epidemic modeling as a means to reimagine health education and policy post-COVID. Health Education.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Epidemiology" + }, + { + "id": 35057, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Radchuk, V., Kramer-Schadt, S., Berger, U., Scherer, C., Backmann, P., & Grimm, V. (2021). Individual-based models. Demographic Methods Across the Tree of Life, 213.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35058, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Raees, M., Khan, T. A., Mustafa Abbasi, K., Ahmed, A., Fazilat, S., & Ahmed, I. (2021). Context-Aware Services Using MANETs for Long-Distance Vehicular Systems: A Cognitive Agent-Based Model. Scientific Programming, 2021.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35059, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Rahimi, M., Navimipour, N. J., Hosseinzadeh, M., Moattar, M. H., & Darwesh, A. (2021). Toward the efficient service selection approaches in cloud computing. Kybernetes.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35060, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Railsback, S. F., & Arcata, C. A. (2021). InSALMO 7 Model Description.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35061, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Raimbault, J. (2021). Simulating urban dynamics and international governance of transportation infrastructure projects.\u00a0arXiv preprint arXiv:2108.13915.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35062, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Raimbault, J. (2021). A multiscale model of urban morphogenesis. arXiv preprint arXiv:2103.17241.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35063, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Raimbault, J. (2021). Strong coupling between scales in a multi-scalar model of urban dynamics. arXiv preprint arXiv:2101.12725.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, History, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 35064, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Rajak, B., Mallick, S., & Gaurav, K. (2021). Role of Information Communication and Technology at Kumbha Mela\u20132019 (Prayagraj). Ilkogretim Online, 20(5).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Information Communication and Technology, Ecology, Archaeology, Miscellaneous" + }, + { + "id": 35065, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Rakotonarivo, S., Bell, A., Abernethy, K., Minderman, J., Duthie, A., Redpath, S., ... & Bunnefeld, N. (2021). The role of incentive-based instruments and social equity in conservation conflict interventions.\u00a0Ecology and Society,\u00a026(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35066, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ramadhan, R., Salman, F., Mori, A., & Abdoellah, O. S. (2021). Shifting Cultivation, Palm Oil Plantation and Indirect Deforestation: A Study on Dusun Tonggong, Parindu, West Kalimantan, Indonesia. Journal of Sustainable Forestry, 1-20.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35067, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Rambu Ngana, F., & Eka Karyawati, A. A. I. N. (2021). Scenario modelling as planning evidence to improve access to emergency obstetric care in eastern Indonesia. Plos one, 16(6), e0251869.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35068, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ramkumar, S., Mueller, M., Pyka, A., & Squazzoni, F. (2021). Diffusion of eco-innovation through inter-firm network targeting: An agent-based model. Journal of Cleaner Production, 130298.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35069, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ramkumar, S., & Oh, W. S. (2021). AIforGoodSimulator-Modeling Covid-19 Spread and Potential Interventions in Refugee Camps v1. 0.0.\u00a0CoMSES Computational Model Library.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 35070, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ratnadass, A., Avelino, J., Fernandes, P., Letourmy, P., Babin, R., Deberdt, P., ... & Van Den Berg, J. (2021). Synergies and tradeoffs in natural regulation of crop pests and diseases under plant species diversification.\u00a0Crop Protection, 105658.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Crop pests, Crop diseases" + }, + { + "id": 35071, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Reed, S. K. Complex Systems (pp. 209-220). Oxford University Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 35072, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Regnath, F., Berger, C., & Mahdavi, A. (2022, May). The impact of occupants' energy awareness and thermal preferences on buildings' performance. In CLIMA 2022 conference.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35073, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Reinhardt, O., Warnke, T., & Uhrmacher, A. M. (2022). Agent-Based Modelling and Simulation with Domain-Specific Languages. In Towards Bayesian Model-Based Demography (pp. 113-134). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35074, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ren, B., Wang, L., Wang, X., & Chen, J. (2021). Simulating Energy-Saving and Consuming Behaviours in the Design and Manufacturing Process with Adjacent Networks. In Recent Advances in Sustainable Energy and Intelligent Systems (pp. 441-451). Springer, Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 35075, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Resende, L. P. A. O papel da constru\u00e7\u00e3o de nicho na evolu\u00e7\u00e3o e ecologia da socialidade em aranhas.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology" + }, + { + "id": 35076, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Retzlaff, C. O., Ziefle, M., & Valdez, A. C. (2021). The History of Agent-Based Modeling in the Social Sciences. In International Conference on Human-Computer Interaction (pp. 304-319). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35077, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Revuelta, E. C., Ch\u00e1vez, M. J., Vera, J. A. B., Rodr\u00edguez, Y. F., & S\u00e1nchez, M. C. (2021). Optimization of laser scanner positioning networks for architectural surveys through the design of genetic algorithms. Measurement, 108898.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35078, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Reyes-Mercado, P. FinTech Strategy: Linking Entrepreneurship, Finance, and Technology. Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "FinTech" + }, + { + "id": 35079, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Roanes-Lozano, E., Solano-Mac\u00edas, C., & Roanes-Mac\u00edas, E. A simplified introduction to virus propagation using Maple's Turtle Graphics package.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 35080, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Robinson, J. T. (2021). Development of an Agent-Based Model to Recapitulate Murine Patellar Tendon Healing as a Function of Age (Doctoral dissertation, Tulane University School of Science and Engineering).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 35081, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Rocha, \u00c9. G. D., Brigatti, E., Niebuhr, B. B., Ribeiro, M. C., & Vieira, M. V. (2021). Dispersal movement through fragmented landscapes: the role of stepping stones and perceptual range. Landscape Ecology, 1-19.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35082, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Rodriguez-Lopez, J. M., Schickhoff, M., Sengupta, S., & Scheffran, J. (2021). Technological and social networks of a pastoralist artificial society: agent-based modeling of mobility patterns. Journal of Computational Social Science, 1-27.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35083, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Rollins, M. L., & Griffen, B. D. (2021). Optimal Memory in Food-caching Organisms.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 35084, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Romanowska, I., Wren, C., & Crabtree, S. (2021). Agent-Based Modeling for Archaeology: Simulating the Complexity of Societies. Santa Fe, NM: SFI Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Archaeology, Computer Science, Economics" + }, + { + "id": 35085, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Romero-Mujalli, D., Rochow, M., Kahl, S., Paraskevopoulou, S., Folkertsma, R., Jeltsch, F., & Tiedemann, R. Adaptive and non-adaptive plasticity in changing environments: implications for sexual species with different life history strategies. Authorea Preprints.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 35086, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Rothrock, L., Abraham, A., Graf, A., Rodopman, M., & Nold, D. (2021). Aiding decision makers to reopening of places of worship. Human Factors and Ergonomics in Manufacturing & Service Industries.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35087, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Roxburgh, N., Stringer, L. C., Evans, A., GC, R. K., Malleson, N., & Heppenstall, A. (2021). Nepal Stressor Interaction Model (Nepal SIM).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35088, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Saba, J., Hel-Or, H., & Levy, S. T. (2021). Much. Matter. in. Motion: learning by modeling systems in chemistry and physics with a universal programing platform. Interactive Learning Environments, 1-20.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Physics, Chemistry" + }, + { + "id": 35089, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Saldanha, J., Adamatti, D. F., & Dimuro, G. (2021). Social identity theory applied to the game of self-regulation of social exchanges based on multiagent systems. Journal of Simulation, 1-14.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35090, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Saleem, K., & Haque, H. M. U. (2020). Modelling Situation-Aware Formalism Using BDI Reasoning Agents. In Context-Aware Systems and Applications, and Nature of Computation and Communication (pp. 169-181). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35091, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Sambuaga, R. D., & Lee, H. S. (2021). Optimized Evacuation Plan and Decision Support System Development with Agent-Based Modelling and GIS Analysis for Tsunami Events in Pandeglang, Banten, Indonesia. Journal of Coastal Research, 114(sp1), 509-513.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, GIS, Archaeology, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35092, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Samon, S., & Levy, S. T. (2021). The Role of Physical and Computer-Based Experiences in Learning Science Using a Complex Systems Approach. Science & Education, 1-37.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Physics, Computer Science, Biology" + }, + { + "id": 35093, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Sandoval, S. M., & Alvarado-Monroy, A. (2021). La modelizaci\u00f3n como veh\u00edculo para el desarrollo del razonamiento covariacional en educaci\u00f3n secundaria. Quadrante, 30(2), 147-178.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35094, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Sandoval-F\u00e9lix, J., Casta\u00f1\u00f3n-Puga, M., & Gaxiola-Pacheco, C. G. (2021). Analyzing Urban Public Policies of the City of Ensenada in Mexico Using an Attractive Land Footprint Agent-Based Model. Sustainability, 13(2), 714.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35095, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Sari, R. F., Ilmananda, A. S., & Romano, D. M. (2021). Social trust-based blockchain-enabled social media news verification system. Journal of Universal Computer Science, 27(9), 979-998.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Social trust" + }, + { + "id": 35096, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Saunders, D. (2021). How to Put the Cart Behind the Horse in the Cultural Evolution of Gender. Philosophy of the Social Sciences, 00483931211049770.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Philosophy, Social Science" + }, + { + "id": 35097, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Saxe, J. G. (2021). Claudio Cioffi-Revilla. Handbook of Computational Social Science, Volume 1: Theory, Case Studies and Ethics, 2.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computation, Ethics, Social Science" + }, + { + "id": 35098, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Schloesser, D. S., Hollenbeck, D., & Kello, C. T. (2021). Individual and collective foraging in autonomous search agents with human intervention. Scientific Reports, 11(1), 1-13.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35099, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Sch\u00f6n, S., Marcus, C., Amadori, K., & Jouannet, C. (2021). Integration of Multi-Fidelity Models with Agent-Based Simulation for System of Systems. In AIAA AVIATION 2021 FORUM (p. 2996).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35100, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Schoville, B. J., Brown, K. S., & Wilkins, J. (2021). A Lithic Provisioning Model as a Proxy for Landscape Mobility in the Southern and Middle Kalahari. Journal of Archaeological Method and Theory, 1-26.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Lithic Provisioning" + }, + { + "id": 35101, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Schl\u00fcter, M., Lindkvist, E., Wijermans, N., & Polhill, G. Agent-based modelling.(2021). The Routledge Handbook of Research Methods for Social-Ecological Systems, 383.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35102, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Schmolke, A., Bartell, S. M., Roy, C., Desmarteau, D., Moore, A., Cox, M. J., ... & Brain, R. Applying a Hybrid Modeling Approach to Evaluate Potential Pesticide Effects and Mitigation Effectiveness for an Endangered Fish in Simulated Oxbow Habitats. Environmental Toxicology and Chemistry.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35103, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Schulz, J., & Mayerhoffer, D. M. (2021). Equal chances, unequal outcomes? Network-based evolutionary learning and the industrial dynamics of superstar firms. Journal of Business Economics, 1-29.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35104, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Scorrano, M., & Danielis, R. (2021). Simulating electric vehicle uptake in Italy in the small-to-medium car segment: A system dynamics/agent-based model parametrized with discrete choice data. Research in Transportation Business & Management, 100736.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35105, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Secchi, D. (2021). An Unusual Diffusion Model. In Computational Organizational Cognition: A Study on Thinking and Action in Organizations. Emerald Publishing Limited.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computational Cognition, Organization" + }, + { + "id": 35106, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Secchi, D. (2021). The Operational Boundaries of Docility. In Computational Organizational Cognition: A Study on Thinking and Action in Organizations. Emerald Publishing Limited.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computational Cognition, Organizational Cognition, Archaeology" + }, + { + "id": 35107, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Sedigh, A. H. A., Purvis, M. K., Savarimuthu, B. T. R., Frantz, C. K., & Purvis, M. A. (2021). Impact of different belief facets on agents' decision - A refined cognitive architecture to model the interaction between organisations' institutional characteristics and agents' behavior. In A. Aler Tubella, S. Cranefield, C. Frantz, F. Meneguzzi, & W. Vasconcelos (Eds.), Coordination, organizations, institutions, norms, and ethics for governance of multi-agent systems XIII: International Workshops COIN 2017 and COINE 2020, Sao Paulo, Brazil, May 8\u20139, 2017 and Virtual Event, May 9, 2020, Revised Selected Papers, p. 133. Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35108, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "\u015eendurur, P., & Sendurur, E. (2022). Students as Gamers: Design, Code, and Play. In Handbook of Research on Acquiring 21st Century Literacy Skills Through Game-Based Learning (pp. 868-887). IGI Global.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Game-Based Learning, Literacy Skills, Research" + }, + { + "id": 35109, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Sengupta, S., Scheffran, J., & Kovalevsky, D. (2021). Agent Adaptation in an Urban Coastal Scenario: Applying the VIABLE Framework. 12. Deutsche Klimatagung, Online-Tagung, 15. bis 18. M\u00e4rz 2021.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35110, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Sengupta, S., Scheffran, J., & Kovalevsky, D. (2021, April). A Single-Agent Urban Coastal Adaptation Model: Adaptive decision-making within the VIABLE modeling framework. In EGU General Assembly Conference Abstracts (pp. EGU21-12752).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35111, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Shaaban, M., & Scheffran, J. (2021). A Dynamic-Agent-Based Sustainability Assessment of Energy Systems. In Energy Systems Evaluation (Volume 1) (pp. 161-181). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Sustainability" + }, + { + "id": 35112, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Shafqat, F., Khan, M. N. A., & Shafqat, S. (2021). SmartHealth: IoT-Enabled Context-Aware 5G Ambient Cloud Platform. In IoT in Healthcare and Ambient Assisted Living (pp. 43-67). Springer, Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, IoT, 5G, Computer Science, Healthcare, Ambient Cloud, Springer" + }, + { + "id": 35113, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Shaharuddin, R. A., & Misro, M. Y. (2021, November). Traffic simulation using agent based modelling. In AIP Conference Proceedings (Vol. 2423, No. 1, p. 020035). AIP Publishing LLC.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Simulation, Computer Science" + }, + { + "id": 35114, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Shaheen, J. (2021). Are Agent-based Models Universal Approximators. Academia Letters, 2.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35115, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Shanaa, M., & Abdallah, S. (2020, November). Agent-based simulation for COVID-19 outbreak within a semi-closed environment. In 2020 First International Conference of Smart Systems and Emerging Technologies (SMARTTECH) (pp. 231-236). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35116, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Shandera, S., Matsick, J. L., Hunter, D. R., & Leblond, L. (2021). RASE: Modeling cumulative disadvantage due to marginalized group status in academia. PloS one, 16(12), e0260567.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35117, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Shapiro, B., & Crooks, A. (2021, July). Kinetic Action and Radicalization: A Case Study of Pakistan. In International Conference on Social Computing, Behavioral-Cultural Modeling and Prediction and Behavior Representation in Modeling and Simulation (pp. 321-330). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35118, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Sherard, M. K., & Petrosino, A. J. (2021). Language, Modeling and Power: A Methodology for Analyzing Discourse in Interaction. In Proceedings of the 15th International Conference of the Learning Sciences-ICLS 2021.. International Society of the Learning Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Discourse" + }, + { + "id": 35119, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Shi, Z., Li, Y., & Jaberi-Douraki, M. (2021). Hybrid computational modeling demonstrates the utility of simulating complex cellular networks in type 1 diabetes. PLOS Computational Biology, 17(9), e1009413.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Chemistry" + }, + { + "id": 35120, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Shiang, C. W., & Hussain, N. (2021). Modelling of Crowd Evacuation with Communication Strategy using Social Force Model. Journal of Optimization in Industrial Engineering.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35121, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Shiflet, A. B., Shiflet, G. W., & Pendarvis, M. P. (2020). Biology for the Global Citizen, A New Non-Majors Biology Text with Laboratories Using Computer Simulations.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 35122, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Shiwei, Y. U. A. N., Xin, L. I., & Erhu, D. U. (2021). Progress and Prospect of Agent-Based Modeling for Water Resources Management. Advances in Earth Science, 36(9), 899-910.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35123, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Shoole, A. A., & Wadi, M. (2021). Multiagent systems application for the smart grid protection. Renewable and Sustainable Energy Reviews, 149, 111352.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35124, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Shojaati, N., & Osgood, N. D. (2021). Dynamic Computational Models and Simulations of the Opioid Crisis: A Comprehensive Survey. ACM Transactions on Computing for Healthcare (HEALTH), 3(1), 1-25.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35125, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Shou, W., Wang, J., & Wu, P. (2021). The application of simulation in lean production research: a critical review and future directions. Engineering, Construction and Architectural Management.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Engineering, Construction, Architectural Management" + }, + { + "id": 35126, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Siar, S. A., Keramati, M., & Motadel, M. (2021). Agent-Based Simulation of Consumer Behavior in Impulse Buying. Journal of Industrial Management Studies, 19(62), 99-138.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35127, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Siddiqui, J., Mehjabeen, M., & Stapleton, P. (2021). Emergence of corporate political activities in the guise of social responsibility: dispatches from a developing economy. Accounting, Auditing & Accountability Journal.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35128, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Siddiqui, S. Y., Ahmad, I., Khan, M. A., Khan, B. S., Ali, M. N., Naseer, I., ... & Usama, H. M. (2021). AIoT Enabled Traffic Congestion Control System Using Deep Neural Network.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 35129, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Silva, M. I. G., Silva, R. A. G., L\u00f3pez, H. A. J., & Ontiveros, A. A. (2021). A mechanism of Individualistic Indirect Reciprocity with internal and external dynamics. arXiv preprint arXiv:2105.14144.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 35130, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Silva, E. M., Moura, G., & Da Silva, S. (2021). Monetary Policy Experiments in an Agent-Based Macroeconomic Model. Open Access Library Journal, 8(5), 1-14.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35131, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Silva, T. (2021). Complexity theory and the historical study of religion: navigating the transdisciplinary space between the Humanities and the Natural Sciences.\u00a0Hist\u00f3ria da Historiografia: International Journal of Theory and History of Historiography,\u00a014(36), 167-196.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, History, Miscellaneous" + }, + { + "id": 35132, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Silva, T. F. D., Ara\u00fajo, M. S., Ferro Junior, R. J. C., Costa, L. F. D., Andrade, J. P. B., & Campos, G. A. L. D. (2021, November). Intelligent Agents for Observation and Containment of Malicious Targets Organizations. In Brazilian Conference on Intelligent Systems (pp. 48-63). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35133, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Silveira, N. J. C., Ferraz, D., de Mello, D. S., Polloni-Silva, E., do Nascimento Rebelatto, D. A., & Moralles, H. F. (2021). Determinants of Absorptive Capacity: a systematic literature review. Revista Gest\u00e3o da Produ\u00e7\u00e3o Opera\u00e7\u00f5es e Sistemas, 16(2), 122.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35134, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Singh, P., Kaur, A., Batth, R. S., Aujla, G. S., & Masud, M. (2021). Service vs Protection: A Bayesian Learning Approach for Trust Provisioning in Edge of Things Environment. IEEE Internet of Things Journal.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Bayesian Learning, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35135, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Singh, S., France, A. M., Chen, Y. H., Farnham, P. G., Oster, A. M., & Gopalappa, C. (2021). Progression and transmission of HIV (PATH 4.0)-A new agent-based evolving network simulation for modeling HIV transmission clusters. Mathematical Biosciences and Engineering, 18(3), 2150-2181.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "HIV, Network Simulation, Transmission, Modeling" + }, + { + "id": 35136, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Smarzhevskiy, I. A. (2021). The Simulation Model of Collective Management Decision-Making Implemented in Netlogo. In Industry Competitiveness: Digitalization, Management, and Integration: Volume 2 (pp. 349-357). Springer International Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Ecology" + }, + { + "id": 35137, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Smith, A. P. (2021). neworder: a dynamic microsimulation framework for Python. Journal of Open Source Software, 6(63), 3351.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 35138, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Sobkowicz, P., & Sobkowicz, A. (2021). Agent Based Model of Anti-Vaccination Movements: Simulations and Comparison with Empirical Data. Vaccines, 9(8), 809.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 35139, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Sobkowicz, P.(2021) The Role of Chance in Individual Sports: an Agent-Based Approach for Fencing Tournaments.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35140, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Sonawane, C., Yirga, G., & Carter, N. H. Public health and economic benefits of spotted hyenas Crocuta crocuta in a peri\u2010urban system. Journal of Applied Ecology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Economics" + }, + { + "id": 35141, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Sood, S. K., Sood, V., & Mahajan, I. (2021). An intelligent healthcare system for predicting and preventing dengue virus infection. Computing, 1-39.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 35142, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Souidi, M. E. H., Maarouk, T. M., & Ledmi, A. (2021). Multi-agent Ludo Game Collaborative Path Planning based on Markov Decision Process. In Inventive Systems and Control (pp. 37-51). Springer, Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35143, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Spanoudakis, N. I. (2021). Engineering Multi-agent Systems with Statecharts. SN Computer Science, 2(4), 1-21.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Engineering" + }, + { + "id": 35144, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Spurn\u00fd, J., Kope\u010dek, I., O\u0161lej\u0161ek, R., Plh\u00e1k, J., & Caputo, F. (2021). The prisoner\u2019s dilemma in the workplace: how cooperative behavior of managers influence organizational performance and stress. Kybernetes.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35145, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Squire, K. D. (2021). From virtual to participatory learning with technology during COVID-19. E-Learning and Digital Media, 20427530211022926.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Technology, Digital Media, Education" + }, + { + "id": 35146, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Staffini, A., Svensson, A. K., Chung, U. I., & Svensson, T. (2021). An Agent-Based Model of the Local Spread of SARS-CoV-2: Modeling Study. JMIR Medical Informatics, 9(4), e24192.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35147, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Steinbacher, M., Raddant, M., Karimi, F., Cuena, E., Alfarano, S., Iori, G., & Lux, T. (2021). Advances in the Agent-based Modeling of Economic and Social Behavior. SN Business & Economics.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Economics, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35148, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Steinberg, S., & Gresalfi, M. (2021). Agency and Expressivity in Programming Play. In Proceedings of the 15th International Conference of the Learning Sciences-ICLS 2021.. International Society of the Learning Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35149, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Strawhacker, A., Kafai, Y., T. Giang, M., Fields, D., & Tofel-Grehl, C. (2021, June). Designing the Virtual SPIKEY-20 Epidemic: Engaging Youth in Seeking Information and Using Personal Protection. In Interaction Design and Children (pp. 558-562).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35150, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Su, M., Cho, J. Y., Chi, M. T., Boucher, N., & Vanbibber, B. Designing Simulation Module to Diagnose Misconceptions in Learning Natural Selection.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35151, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Su, Y., Jiang, X., & Lin, Z. (2021). Simulation and Relationship Strength: Characteristics of Knowledge Flows Among Subjects in a Regional Innovation System. Science, Technology and Society, 09717218211020476.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Simulation, Science, Relationship" + }, + { + "id": 35152, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Subrahmanyam, V. S. C., Raman, A. V., Krishna, S. S., Sitharthan, I., Basha, S. S., Prabavathy, B., & Deborah, S. A. (2021). Smart Warehouse Management System. In Recent Trends in Renewable Energy Sources and Power Conversion (pp. 99-114). Springer, Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35153, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Sulis, E., & Tambuscio, M. (2020). Simulation of misinformation spreading processes in social networks: An application with NetLogo. In G. Webb, Z. Zhang, V. S. Tseng, G. Williams, M. Vlachos, & L. Cao (Eds.), International Conference on Data Science and Advanced Analytics (DSAA) (pp. 614-618). IEEE. https://doi.org/10.1109/DSAA49011.2020.00086", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation" + }, + { + "id": 35154, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Sulis, E., & Terna, P. (2021). An Agent-based Decision Support for a Vaccination Campaign. Journal of Medical Systems, 45(11), 1-7.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Decision Support, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35155, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Sun, T., Bu, F., Liu, X., & Fu, Y. (2020, December). Modeling and Simulation of Group Drug-related Incident Evolution. In 2020 5th International Conference on Mechanical, Control and Computer Engineering (ICMCCE) (pp. 1247-1252). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Simulation, Mechanical, Control, Computer Engineering" + }, + { + "id": 35156, + "sort": null, + "year": 2021, + "is_ccl": true, + "reference": "Swanson, H., Sherin, B., Wilensky, U. (2021).\u00a0Characterizing student theory building in computational modeling activities. Proceedings of the 15th International Conference of the Learning Sciences. Bochum, Germany: International Society of the Learning Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Ecology" + }, + { + "id": 35157, + "sort": null, + "year": 2021, + "is_ccl": true, + "reference": "Swanson, H., Sherin, B., & Wilensky, U. (2021). Refining student thinking through computational modeling. In Proceedings of the 15th International Conference of the Learning Sciences-ICLS 2021.. International Society of the Learning Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 35158, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ta\u0142anda, J. (2021). The effect of artificial light at night on interactions between planktivorous fish and their cladoceran prey.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 35159, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Taghavi, A., Khaleghparast, S., & Eshghi, K. (2021). Optimal Agent Framework: A Novel, Cost-Effective Model Articulation to Fill the Integration Gap between Agent-Based Modeling and Decision-Making. Complexity, 2021.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35160, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Tancredi, S., Abdu, R., Abrahamson, D., & Balasubramaniam, R. (2021). Modeling nonlinear dynamics of fluency development in an embodied-design mathematics learning environment with Recurrence Quantification Analysis. International Journal of Child-Computer Interaction, 100297. https://doi.org/10.1016/j.ijcci.2021.100297", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35161, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Tejera Linares, M. D. C. (2021). Aprendiendo de la enfermedad COVID-19.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 35162, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "ten Broeke, G., van Voorn, G., Ligtenberg, A., & Molenaar, J. (2021). The Use of Surrogate Models to Analyse Agent-Based Models. Journal of Artificial Societies and Social Simulation, 24(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35163, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Termos, A., Picascia, S., & Yorke-Smith, N. (2021). Agent-Based Simulation of West Asian Urban Dynamics: Impact of Refugees. Journal of Artificial Societies and Social Simulation, 24(1), 1-2.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35164, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Terna, P. Matematica e simulazione per la morfologia e la dinamica spaziale. Volume 10-Numero 4-Luglio 2020, 177.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Mathematics, Simulation, Geometry, Dynamics" + }, + { + "id": 35165, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Ternes, P., Ward, J. A., Heppenstall, A., Kumar, V., Kieu, L. M., & Malleson, N. (2021). Data assimilation and agent-based modelling: towards the incorporation of categorical agent parameters. Open Research Europe, 1(131), 131.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35166, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Thasnimol, C. M., & Rajathy, R. (2021). An ideal solution for the deployment of photo voltaic generators using an agent-based nash differential evolution (NashDE) algorithm. International Journal of Emerging Electric Power Systems.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35167, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Thneibat, M., Thneibat, M., Al-Shattarat, B., & Al-kroom, H. (2021). Development of an agent-based model to understand the diffusion of value management in construction projects as a sustainability tool. Alexandria Engineering Journal.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35168, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Thomas, S. R. (2021). Effects of Transformational Leadership and Employability on Employee Retention: An Agent-Based Model (Doctoral dissertation, Arizona State University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35169, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Tian, D., Zhang, M., Zhao, A., Wang, B., Shi, J., & Feng, J. (2021). Agent-based modeling and simulation of edible fungi growers' adoption behavior towards fungal chaff recycling technology. Agricultural Systems, 103138.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Simulation, Agriculture, Economics" + }, + { + "id": 35170, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Tiram, E., & Sinuany-Stern, Z. (2021). Overview of Simulation in Higher Education: Methods and Applications. In Handbook of Operations Research and Management Science in Higher Education (pp. 81-115). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Operations Research, Management Science, Higher Education" + }, + { + "id": 35171, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Townsend, D. (2021). Validation and Inference of Agent Based Models. arXiv preprint arXiv:2107.03619.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 35172, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Trentesaux, D. (2021). A Multi-agent Model for the Multi-plant Multi-product Physical Internet Supply Chain Network. Service Oriented, Holonic and Multi-Agent Manufacturing Systems for Industry of the Future: Proceedings of SOHOMA 2020, 435.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35173, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Trentesaux, D., & Chauvin, C. (2021). A Benchmarking Platform for Human-Machine Cooperation in Cyber-Physical Manufacturing Systems. Service Oriented, Holonic and Multi-Agent Manufacturing Systems for Industry of the Future: Proceedings of SOHOMA 2020, 313.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35174, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Trentesaux, D., & Karnouskos, S. (2021). Engineering ethical behaviors in autonomous industrial cyber-physical human systems. Cognition, Technology & Work, 1-14.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Engineering" + }, + { + "id": 35175, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Troitzsch, K. G. (2021). Formal Design Methods and the Relation Between Simulation Models and Theory: A Philosophy of Science Point of View. In Pathways Between Social Science and Computational Social Science (pp. 21-45). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation Models, Theory, Philosophy of Science" + }, + { + "id": 35176, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Troitzsch, K. G. (2021). Validating Simulation Models: The Case of Opinion Dynamics. In Pathways Between Social Science and Computational Social Science (pp. 123-155). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Social Science, Computation" + }, + { + "id": 35177, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Truong, V. T., Baverel, P. G., Lythe, G. D., Vicini, P., Yates, J. W., & Dubois, V. F. (2021). Step\u2010by\u2010step comparison of ordinary differential equation and agent\u2010based approaches to pharmacokinetic\u2010pharmacodynamic models. CPT: Pharmacometrics & Systems Pharmacology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Pharmacokinetics, Pharmacodynamics, Modeling, Mathematics, Physics, Computer Science, Systems Pharmacology" + }, + { + "id": 35178, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Tsompanas, M. A., Fyrigos, I. A., Ntinas, V., Adamatzky, A., & Sirakoulis, G. C. (2021). Cellular automata implementation of Oregonator simulating light-sensitive Belousov\u2013Zhabotinsky medium. Nonlinear Dynamics, 1-13.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Nonlinear Dynamics" + }, + { + "id": 35179, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Tucker, G. E., Hutton, E. W., Piper, M. D., Campforts, B., Gan, T., Barnhart, K. R., ... & Syvitski, J. (2021). CSDMS: A community platform for numerical modeling of Earth-surface processes. Geoscientific Model Development Discussions, 1-40.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35180, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Tucker-Raymond, E., Cassidy, M., & Puttick, G. (2021). Science teachers can teach computational thinking through distributed expertise. Computers & Education, 104284.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 35181, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Tulang, A. B. (2021). Online Learning Communities Amid the COVID-19 Pandemic: An Agent-Based Model.\u00a0Turkish Journal of Computer and Mathematics Education (TURCOMAT),\u00a012(10), 6294-6302.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Mathematics" + }, + { + "id": 35182, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Tullis, J. G., & Fraundorf, S. H. (2021). Selecting effectively contributes to the mnemonic benefits of self-generated cues. Memory & Cognition, 1-17.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35183, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Uhde, A., & Hassenzahl, M. (2021). Simulating Social Acceptability With Agent-based Modeling. arXiv preprint arXiv:2105.06730.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology" + }, + { + "id": 35184, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Uzzo, S. M., Cramer, C. B., Sayama, H., & Faux, R. (2021). NetSci High: Bringing Agency to Diverse Teens Through the Science of Connected Systems. Northeast Journal of Complex Systems (NEJCS), 3(2), 2.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 35185, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Valente, J. A., Caceffo, R., Bonacin, R., dos Reis, J. C., Gon\u00e7alves, D. A., & Baranauskas, M. C. C. (2021). Embodied\u2010based environment for kindergarten children: Revisiting constructionist ideas. British Journal of Educational Technology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35186, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Van Buskirk, A. N., Rosenberry, C. S., Wallingford, B. D., Domoto, E. J., McDill, M. E., Drohan, P. J., & Diefenbach, D. R. (2021). Modeling how to achieve localized areas of reduced white-tailed deer density. Ecological Modelling, 109393.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35187, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Vanh\u00e9e, L. (2021). Engineering Social Simulations for Crises. In Social Simulation for a Crisis (pp. 353-378). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Engineering" + }, + { + "id": 35188, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Vasishta, A. (2021). Understanding Ideal Social Networking Strategies Based on Relational Mobility and Environmental Stability.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35189, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Vasylieva, O., Butvin, B., & Shtyfurak, Y. (2021). Methodological Approach to Agent-Based Modeling of Social Networks (No. 6291). EasyChair.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35190, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "V\u00e1zquez, G. C., Crist\u00f3bal, R. V., Romero, E. A., & Alonso, J. U. (2021). Din\u00e1micas de asistencia al supermercado \u201cEl Farolito\u201d en condiciones de pandemia. Pol\u00edtica y Cultura, (55), 151-175.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35191, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Veldt, N., Benson, A. R., & Kleinberg, J. (2021). Approximate Decomposable Submodular Function Minimization for Cardinality-Based Components. arXiv preprint arXiv:2110.14859.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35192, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Velghe, F., De Wilde, F., Snellinx, S., Farahbakhsh, S., Belderbos, E., Peral, C., ... & Dietrich, T. (2021). Volatile Fatty Acid platform\u2013a cornerstone for the circular bioeconomy. FEMS Microbiology Letters.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 35193, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Veloso, P., & Krishnamurti, R. (2021). Mapping generative models for architectural design. The Routledge Companion to Artificial Intelligence in Architecture, 29.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Artificial Intelligence, Architecture, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35194, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Veloso, P., & Krishnamurti, R. (2021). Self-learning Agents for Spatial Synthesis. In Formal Methods in Architecture (pp. 265-276). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, Economics, History, Social Science, Education, Epidemiology" + }, + { + "id": 35195, + "sort": null, + "year": 2021, + "is_ccl": true, + "reference": "Vermeer, W. H., Smith, J. D., Wilensky, U., & Brown, C. H. (2021). High-Fidelity Agent-Based Modeling to Support Prevention Decision-Making: an Open Science Approach. Prevention Science, 1-12.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35196, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Vasishta, Angela, (2021). Understanding Ideal Social Networking Strategies Based on Relational Mobility and Environmental Stability Undergraduate Honors Theses. Paper 1731.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35197, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "V\u00e1zquez, G. C., Crist\u00f3bal, R. V., Romero, E. A., & Alonso, J. U. (2021). Din\u00e1micas de asistencia al supermercado \u201cEl Farolito\u201d en condiciones de pandemia. Pol\u00edtica y Cultura, (55), 151-175.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35198, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Vodopivec, N., Adam, C., & Chanteau, J. P. (2021). Modeling opinion leader's role in the diffusion of innovation. arXiv preprint arXiv:2101.11260.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35199, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Walzberg, J., Burton, R., Zhao, F., Frost, K., Muller, S., Carpenter, A., & Heath, G. (2022). An investigation of hard-disk drive circularity accounting for socio-technical dynamics and data uncertainty. Resources, Conservation and Recycling, 178, 106102.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35200, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Wang, J., Yin, J., Khan, R. U., Wang, S., & Zheng, T. (2021). A Study of Inbound Logistics Mode Based on JIT Production in Cruise Ship Construction. Sustainability 2021, 13, 1588.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35201, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Wang, J. (2021). Understanding Carsharing-Facilitating Neighborhood Preferences. (Thesis).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35202, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Wang, W. (2021). Spatial Analysis of COVID-19 Risk Based on Different Lockdown Strategies-a Case Study for Storrs Campus Community, University of Connecticut. Authorea Preprints.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35203, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Wang, Y., Ge, J., & Comber, A. (2021). Simulation model of pedestrian flow based on multi-agent system and Bayesian Nash equilibrium. AGILE: GIScience Series, 2, 1-7.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35204, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Wang, Y., Zhang, Q., Li, Q., Wang, J., Sannigrahi, S., Bilsborrow, R., ... & Song, C. (2021). Role of social networks in building household livelihood resilience under payments for ecosystem services programs in a poor rural community in China. Journal of Rural Studies.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35205, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Wang, Y. Y., & Bu, F. L. (2021, August). Emotional Interaction Computing of Actors in the Mass Incidents. In International Conference on Intelligent Computing (pp. 18-30). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35206, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Wang, Z. (2021). SIMULATION-BASED TSUNAMI EVACUATION RISK ASSESSMENT AND RISK-INFORMED MITIGATION (Doctoral dissertation, Colorado State University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35207, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Wang, Z., & Chen, A. (2021). On ISRC Rumor Spreading Model for Scale-Free Networks with Self-Purification Mechanism. Complexity, 2021.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35208, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Wang, Z., & Jia, G. (2021). Simulation-Based and Risk-Informed Assessment of the Effectiveness of Tsunami Evacuation Routes Using Agent-Based Modeling: A Case Study of Seaside, Oregon. International Journal of Disaster Risk Science, 1-21.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35209, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Wang, Z., & Jia, G. (2021). Tsunami evacuation risk assessment and probabilistic sensitivity analysis using augmented sample-based approach. International Journal of Disaster Risk Reduction, 102462.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35210, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Wang, Z. Y., Shi, P. J., Zhang, X. B., Wang, Y. S., & Xie, X. Y. (2021). Simulation of Lanzhou urban land expansion based on multi-agent model. Ying Yong Sheng tai xue bao= The Journal of Applied Ecology, 32(6), 2169-2179.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35211, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Wasesa, M., Ramadhan, F. I., Nita, A., Belgiawan, P. F., & Mayangsari, L. (2021). Impact of overbooking reservation mechanism on container terminal\u2019s operational performance and greenhouse gas emissions. The Asian Journal of Shipping and Logistics.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35212, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Watzek, J., Hauber, M. E., Jack, K. M., Murrell, J. R., Tecot, S. R., & Brosnan, S. F. (2021). MODELLING Collective Decision-Making: Insights Into COLLECTIVE anti-predator Behaviors From AN Agent-Based APPROACH. Behavioural Processes, 104530.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Modeling, Agent-Based Approach, Collective Decision-Making" + }, + { + "id": 35213, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Webster, R. (2021). Dynamic Causal Inference Using a Hardware Implementation of Spiking Neurons (Doctoral dissertation, University of Otago).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology" + }, + { + "id": 35214, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Wens, M. L., van Loon, A. F., Veldkamp, T. I., & Aerts, J. C. (2021). Education, financial aid and awareness can reduce smallholder farmers\u2019 vulnerability to drought under climate change. Natural Hazards and Earth System Sciences Discussions, 1-36.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35215, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "White, A. L., & Gaff, H. D. (2021). Application and Modeling of a Tick-Killing Robot, TickBot. In The Mathematics of Patterns, Symmetries, and Beauties in Nature (pp. 31-57). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Computer Science" + }, + { + "id": 35216, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Widiyanto, S., Adi, D., Nurdin, N., & Fadila, F. (2021). Agent-Based Simulation for Evaluating the Effect of Different Walking and Driving Speed on Disaster Evacuation in Aceh. IPTEK The Journal of Engineering, 7(2), 50-58.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35217, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Will, M., Groeneveld, J., Frank, K., & M\u00fcller, B. (2021). Informal risk-sharing between smallholders may be threatened by formal insurance: Lessons from a stylized agent-based model. PloS one, 16(3), e0248757.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35218, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Williams, Timothy. Agent-Based Modeling of Resilience in Smallholder Agriculture: Toward Robust Models and Equitable Outcomes. Diss. 2021.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35219, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Wilsdorf, P., Wolpers, A., Hilton, J., Haack, F., & Uhrmacher, A. M. (2021). Automatic Reuse, Adaption, and Execution of Simulation Experiments via Provenance Patterns. arXiv preprint arXiv:2109.06776.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Miscellaneous" + }, + { + "id": 35220, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Wojcieszak, M., Sobkowicz, P., Yu, X., & Bulat, B. (2021). What Information Drives Political Polarization? Comparing the Effects of In-group Praise, Out-group Derogation, and Evidence-based Communications on Polarization. The International Journal of Press/Politics, 19401612211004418.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35221, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Wooditch, A. (2021). The Benefits of Patrol Officers Using Unallocated Time for Everyday Crime Prevention. Journal of Quantitative Criminology, 1-25.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35222, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Wu, A. S., Mathias, H. D., Giordano, J. P., & Pherwani, A. (2021). Collective control as a decentralized task allocation testbed.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35223, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Wu, H., & Zhou, Y. (2021). Optimal degree of openness in open innovation: A perspective from knowledge acquisition & knowledge leakage. Technology in Society, 67, 101756.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35224, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Wu, R., Wang, Z., & Shi, Q. (2021). Increment of Heterogeneous Knowledge in Enterprise Innovation Ecosystem: An Agent-Based Simulation Framework. Complexity, 2021.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35225, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Wu, S., Wang, X., & Su, J. (2021). Statistical analysis of the community lockdown for COVID-19 pandemic. Applied Intelligence, 1-18.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Statistics, COVID-19, Pandemic, Economics" + }, + { + "id": 35226, + "sort": null, + "year": 2021, + "is_ccl": true, + "reference": "Wu, S., Horn, M., & Wilensky, U. (Apr 2021). Positioning teachers as co-designers to integrate CT practices in STEM. Related Paper-Set on Integrating Computational Thinking in Science Curricula: Teacher Professional Development and Student Assessment. NARST Annual Conference (NARST 2021). Online Presentation.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35227, + "sort": null, + "year": 2021, + "is_ccl": true, + "reference": "Wu, S. P. W., Peel, A., Bain, C., Horn, M. S. & Wilensky, U. (2021). Different Paths, Same Direction: How Teachers Learn Computational Thinking in STEM Practices through Professional Development. In Looi, C.K., Wadhwa, B., Dagien\u00e9, V., Seow, P., Kee, Y.H., & Wu, L.K. (Eds.) Proceedings of the 5th APSCE International Computational Thinking and Stem in Education Conference (CTE) (pp.52-58).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computational Thinking, STEM, Education" + }, + { + "id": 35228, + "sort": null, + "year": 2021, + "is_ccl": true, + "reference": "Wu, S., Jones, B. (*), Swanson, H., Horn, M., Wilensky, U. (2021). A Tale of Two PDs: Exploring Teachers' Experiences in Co-designing Computational Activities. Proceedings of the 15th International Conference of the Learning Sciences. Bochum, Germany: International Society of the Learning Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35229, + "sort": null, + "year": 2021, + "is_ccl": true, + "reference": "Wu, S. P. W., Anton, G., Bain, C., Peel, A. N., Horn, M. S., & Wilensky, U. (2021). Tools and resources for integrating computational thinking into your science classes. Presented at the NSTA National Conference 2021, Chicago, IL.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 35230, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Xiang, F., Chen, K., Su, J., Liu, H., & Zhang, W. (2021). Penetration Planning and Design Method of Unmanned Aerial Vehicle Inspired by Biological Swarm Intelligence Algorithm. Wireless Communications and Mobile Computing, 2021.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 35231, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Xiang, L., Shen, G. Q., Li, D., Tan, Y., & Jin, X. (2021). A Multi-Agent Platform to Explore Strategies for Age-Friendly Community Projects in Urban China. The Gerontologist.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35232, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Xiong, M., Wang, Y., & Cheng, Z. (2021, December). Research on Modeling and Simulation of Information Cocoon Based on Opinion Dynamics. In 2021 The 9th International Conference on Information Technology: IoT and Smart City (pp. 161-167).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Simulation, Information Technology, IoT, Smart City" + }, + { + "id": 35233, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Xu, L., Mak, S., & Brintrup, A. (2021). Will bots take over the supply chain? Revisiting Agent-based supply chain automation.\u00a0International Journal of Production Economics, 108279.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35234, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Xue, X., Chen, F., Zhou, D., Wang, X., Lu, M., & Wang, F. Y. (2021). Computational Experiments for Complex Social Systems--Part I: The Customization of Computational Model. IEEE Transactions on Computational Social Systems.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35235, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Yadav, A., & Berthelsen, U. D. (Eds.). (2021). Computational Thinking in Education: A Pedagogical Perspective. Routledge.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computational Thinking" + }, + { + "id": 35236, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Yang, J. S. (2021). Dynamics of Firm\u2019s Investment in Education and Training: An Agent-based Approach. Computational Economics, 1-35.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35237, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Yao, H., Jiang, Y., & Yang, R. (2021). Reconstruction Method of Landscape Planning Mode based on VR Technology and Wireless Communication Technology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35238, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Yletyinen, J., Perry, G. L. W., Stahlmann-Brown, P., Pech, R., & Tylianakis, J. M. (2021). Multiple social network influences can generate unexpected environmental outcomes. Scientific Reports, 11(1), 1-14.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 35239, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Yoon, S. A. (2021). Complex Systems Research in K12 Science Education: A Focus on What Works for Whom and under Which Conditions.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35240, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Yuan, F. (2021). Smart city next-gen social networks system based on software reconstruction model and cognitive computing. Social Network Analysis and Mining, 11(1), 1-14.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Social Network Analysis and Mining" + }, + { + "id": 35241, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Yu, J. (2021).\u00a0Evolving autonomous agents with simulated brains using L2L and Netlogo\u00a0(No. FZJ-2022-00853). J\u00fclich Supercomputing Center.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Ecology, Miscellaneous" + }, + { + "id": 35242, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Yu, X., Nian, F., Yao, Y., & Luo, L. (2021). Phase Transition in Group Emotion. IEEE Transactions on Computational Social Systems.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35243, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Yu, Y., Yazan, D. M., Bhochhibhoya, S., & Volker, L. (2021). Towards Circular Economy Through Industrial Symbiosis in the Dutch Construction Industry: A Case of Recycled Concrete Aggregates. Journal of Cleaner Production, 126083.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35244, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Zagaria, C., Schulp, C. J., Zavalloni, M., Viaggi, D., & Verburg, P. H. (2021). Modelling transformational adaptation to climate change among crop farming systems in Romagna, Italy. Agricultural Systems, 188, 103024.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Climate Change, Agriculture, Italy" + }, + { + "id": 35245, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Zander, S. (2021). Wirkungsgef\u00fcge f\u00fcr einen systemischen Zugang zum mathematischen Modellieren nutzen. In Neue Materialien f\u00fcr einen realit\u00e4tsbezogenen Mathematikunterricht 8 (pp. 119-132). Springer Spektrum, Wiesbaden.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Economics, Miscellaneous" + }, + { + "id": 35246, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Zanker, M., Bure\u0161, V., & Tu\u010dn\u00edk, P. (2021). Environment, Business, and Health Care Prevail: A Comprehensive, Systematic Review of System Dynamics Application Domains. Systems, 9(2), 28.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35247, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Zhang, G., Li, H., He, R., & Lu, P. (2021). Agent-based modeling and life cycle dynamics of COVID-19-related online collective actions. Complex & Intelligent Systems, 1-19.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35248, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Zhang, J. (2021). Agent-Based Optimizing Match Between Passenger Demand and Service Supply for Urban Rail Transit Network With NetLogo. IEEE Access, 9, 32064-32080.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35249, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Zhang, J. (2021). Is competition sufficient to drive observed retail location and revenue patterns? An agent-based case study (Master's thesis, University of Waterloo).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35250, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Zhang, J., & Robinson, D. T. (2021). Replication of an agent-based model using the Replication Standard. Environmental Modelling & Software, 105016.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35251, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Zhang, T., Dong, P., Zeng, Y., & Ju, Y. (2022). Analyzing the diffusion of competitive smart wearable devices: An agent-based multi-dimensional relative agreement model. Journal of Business Research, 139, 90-105.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35252, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Zheng, C. (2021). Evolutionary Game Analysis of Knowledge Sharing in Low-Carbon Innovation Network. Complexity, 2021.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Evolutionary Game Analysis" + }, + { + "id": 35253, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Zheng, G., Gong, B., & Zhang, Y. (2021). Dynamic Network Security Mechanism Based on Trust Management in Wireless Sensor Networks. Wireless Communications and Mobile Computing, 2021.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Ecology, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35254, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Zhong C. (2021). Adaptive Active Immune Policy for Sensor Nodes in the Internet of Things. Advances in Artificial Intelligence and Security Cham 2021. Springer International Publishing Pages: 514-525.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Artificial Intelligence, Security" + }, + { + "id": 35255, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Zhou, Q. (2021). Detecting the public\u2019s information behaviour preferences in multiple emergency events. Journal of Information Science, 01655515211027789.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35256, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Zhou, S., Fu, H., Tao, S., Han, Y., & Mao, M. (2021). Bridging the top-down and bottom-up approaches to smart urbanization? A reflection on Beijing\u2019s Shuangjing International Sustainable Development Community Pilot. International Journal of Urban Sciences, 1-23.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35257, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Zhu, L., Ding, C., Zhu, T., & Wang, Y. (2021). A review on the forward osmosis applications and fouling control strategies for wastewater treatment. Frontiers of Chemical Science and Engineering, 1-20.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Wastewater Treatment, Fouling Control, Chemical Science and Engineering" + }, + { + "id": 35258, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Zhu, Z., Yi, W., Ruifeng, F., Liya, L., & Meng, Q. Modeling on Anti-UAV System-of-systems Combat OODA Loop Based on NetLogo. Journal of System Simulation, 33(8), 1791.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 35259, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Zia, K., Farooq, U., & Al Ajmi, S. (2021). Finding the Impact of Market Visibility and Monopoly on Wealth Distribution and Poverty Using Computational Economics.\u00a0Computational Economics, 1-25.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Computation, Ecology, Archaeology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35260, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Zolfagharipoor, M. A., & Ahmadi, A. (2021). Agent-based modeling of participants' behaviors in an inter-sectoral groundwater market. Journal of Environmental Management, 299, 113560.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35261, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Zong, X., Liu, A., Wang, C., Ye, Z., & Du, J. (2021, September). Indoor evacuation model based on visual-guidance artificial bee colony algorithm. In Building Simulation (pp. 1-14). Tsinghua University Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 35262, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Zouhri, S., El Baroudi, M., & Saadi, S. (2021). Agent-Based Model for Proteins Interaction inside Cancer Cell. American Journal of Computational and Applied Mathematics, 11(2), 42-50.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics" + }, + { + "id": 35263, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Z\u00fcfle, A., Wenk, C., Pfoser, D., Crooks, A., Kim, J. S., Kavak, H., ... & Jin, H. (2021). Urban life: a model of people and places. Computational and Mathematical Organization Theory, 1-32.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35264, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Zuo, Y., & Zhao, X. (2021). Effects of herding behavior of tradable green certificate market players on market efficiency: insights from heterogeneous agent model. Frontiers in Energy, 1-20.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35265, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Zia, K., Farooq, U., Shafi, M., & Ferscha, A. (2021). On the effectiveness of multi-feature evacuation systems: an agent-based exploratory simulation study. PeerJ Computer Science, 7, e531.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Ecology, Physics, Chemistry, Economics" + }, + { + "id": 35266, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Zijlstra, T. W., de Vries, H., & Sterck, E. H. (2021). Emotional bookkeeping and differentiated affiliative relationships: Exploring the role of dynamics and speed in updating relationship quality in the EMO-model. PloS one, 16(4), e0249519.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35267, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Zohar, A. R., & Levy, S. T. (2021). From feeling forces to understanding forces: The impact of bodily engagement on learning in science. Journal of Research in Science Teaching, 1\u2013 36.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35268, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Zouhri, S., El Baroudi, M., & Saadi, S. (2021). Agent-Based Model for Proteins Interaction inside Cancer Cell. American Journal of Computational and Applied Mathematics, 11(2), 42-50.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Computer Science" + }, + { + "id": 35269, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Zuccotti, C. V., Lorenz, J., Paolillo, R., S\u00e1nchez, A. R., & Serka, S. (2021). Exploring the dynamics of neighborhood ethnic segregation with agent-based modelling: an empirical application to Bradford.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35270, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "\u0418\u043b\u044c\u0438\u043d\u0441\u043a\u0438\u0439, \u0410. \u0418. (2021). \u0410\u0413\u0415\u041d\u0422\u041d\u041e\u0415 \u041c\u041e\u0414\u0415\u041b\u0418\u0420\u041e\u0412\u0410\u041d\u0418\u0415 \u0420\u0410\u0417\u0412\u0418\u0422\u0418\u042f \u0421\u041b\u041e\u0416\u041d\u041e\u0419 \u041d\u0410\u041b\u041e\u0413\u041e\u0412\u041e\u0419 \u042d\u041a\u041e\u0421\u0418\u0421\u0422\u0415\u041c\u042b \u0412 \u0421\u041b\u0423\u0427\u0410\u0415 \u0420\u0410\u0417\u041c\u042b\u0412\u0410\u041d\u0418\u042f \u041d\u0410\u041b\u041e\u0413\u041e\u0412\u041e\u0419 \u0411\u0410\u0417\u042b \u041f\u0420\u0418 \u0412\u041d\u0415\u0414\u0420\u0415\u041d\u0418\u0418 SUPTECH \u0418 REGTECH. \u0425\u0440\u043e\u043d\u043e\u044d\u043a\u043e\u043d\u043e\u043c\u0438\u043a\u0430, (4 (32)), 60-63.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Anthropology, Economics, Ecology, History, Miscellaneous" + }, + { + "id": 35271, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "\u0412\u043e\u043b\u043e\u0431\u0443\u0435\u0432, \u041d. \u0410., \u0413\u0430\u0439\u0434\u0430\u043c\u0430\u0448\u043a\u043e, \u0418. \u0412., \u0413\u0440\u043e\u0448\u0435\u0432, \u0418. \u0412., \u041b\u043e\u0433\u0438\u043d\u043e\u0432, \u0415. \u041b., \u042d\u0440\u0438\u0430\u0448\u0432\u0438\u043b\u0438, \u041d. \u0414., & \u0428\u043a\u0443\u0442\u0430, \u0410. \u0410. (2021). \u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u043e-\u0446\u0438\u0444\u0440\u043e\u0432\u0430\u044f \u0434\u0435\u0442\u0435\u0440\u043c\u0438\u043d\u0430\u0446\u0438\u044f \u0443\u0447\u0435\u0431\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 \u0432 \u0441\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0445 \u0443\u0441\u043b\u043e\u0432\u0438\u044f\u0445 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0433\u043e \u043e\u0431\u0449\u0435\u0441\u0442\u0432\u0430 \u0438 \u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u044b\u0445 \u043a\u043e\u043c\u043c\u0443\u043d\u0438\u043a\u0430\u0446\u0438\u0439. \u041e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0438\u0435. \u041d\u0430\u0443\u043a\u0430. \u041d\u0430\u0443\u0447\u043d\u044b\u0435 \u043a\u0430\u0434\u0440\u044b, (4), 245-249.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35272, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "\u0411\u0443\u0440\u043e\u0432\u0430, \u0410. \u0410., \u0411\u0443\u0440\u043e\u0432, \u0421. \u0421., \u041f\u0430\u0440\u044b\u0433\u0438\u043d, \u0414. \u0421., \u0424\u0438\u043d\u043e\u0433\u0435\u0435\u0432, \u0410. \u0413., & \u0421\u043c\u0438\u0440\u043d\u043e\u0432\u0430, \u0422. \u0412. (2021). \u041f\u0410\u041d\u0415\u041b\u042c \u0410\u0414\u041c\u0418\u041d\u0418\u0421\u0422\u0420\u0418\u0420\u041e\u0412\u0410\u041d\u0418\u042f \u041f\u041b\u0410\u0422\u0424\u041e\u0420\u041c\u042b \u041c\u041d\u041e\u0413\u041e\u0410\u0413\u0415\u041d\u0422\u041d\u041e\u0413\u041e \u041c\u041e\u0414\u0415\u041b\u0418\u0420\u041e\u0412\u0410\u041d\u0418\u042f \u0421 \u0412\u041e\u0417\u041c\u041e\u0416\u041d\u041e\u0421\u0422\u042c\u042e \u041f\u041e\u0421\u0422\u0420\u041e\u0415\u041d\u0418\u042f \u0413\u0420\u0410\u0424\u0418\u0427\u0415\u0421\u041a\u0418\u0425 \u041e\u0422\u0427\u0415\u0422\u041e\u0412. International Journal of Open Information Technologies, 9(12), 4-14.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35273, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "\u041f\u0435\u0442\u0440\u043e\u0432, \u0410. \u041f. \u0427., \u0410\u0445\u0440\u0435\u043c\u0435\u043d\u043a\u043e, \u0410. \u0421., \u0416\u0435\u0433\u043b\u043e\u0432, \u0421. \u0410., & \u041a\u0440\u0443\u0447\u0438\u043d\u0441\u043a\u0430\u044f, \u0415. \u0412. (2021). Is Network Structure Important for Protest Mobilization? Findings from Agent-Based Modeling. \u041c\u043e\u043d\u0438\u0442\u043e\u0440\u0438\u043d\u0433 \u043e\u0431\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0433\u043e \u043c\u043d\u0435\u043d\u0438\u044f: \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0438 \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0435 \u043f\u0435\u0440\u0435\u043c\u0435\u043d\u044b, (6).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35274, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "\u90d1\u8363, \u738b\u6653\u5b87, & \u5f20\u827a\u6e90. (2021). \u57fa\u4e8e ACP \u7406\u8bba\u7684\u4f01\u4e1a\u7ade\u4e89\u60c5\u62a5\u667a\u80fd\u7cfb\u7edf\u6784\u5efa\u7814\u7a76. \u60c5\u62a5\u7406\u8bba\u4e0e\u5b9e\u8df5, 44(12), 148.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35275, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "\u9648\u6995, & \u5434\u624d\u7434. (2021). \u65b0\u51a0\u80ba\u708e\u75ab\u60c5\u9632\u63a7\u63aa\u65bd\u6548\u679c\u4eff\u771f\u7814\u7a76. \u53f0\u5dde\u5b66\u9662\u5b66\u62a5.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35276, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "\u5f20\u723d. (2021). \u73e0\u6d77\u5e02\u9999\u6d32\u57ce\u533a\u6d2a\u6d9d\u707e\u5bb3\u6a21\u62df\u53ca\u884c\u8f66\u5f71\u54cd\u4eff\u771f (Master's thesis, \u6cb3\u5317\u5de5\u7a0b\u5927\u5b66).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35277, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Abdalbaki, S. M. (2020). A cellular automata modelling approach in household water use. Journal of Water, Sanitation and Hygiene for Development.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 35278, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Abdulsattar, H., Siam, M. R. K., & Wang, H. (2020). Characterisation of the impacts of autonomous driving on highway capacity in a mixed traffic environment: an agent-based approach.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35279, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Abubakar, H., Yusuf, S., & Abdurrahman, Y. (2020). Discrete Artificial Dragonflies Algorithm in Agent Based Modelling for Exact Boolean kSatisfiability Problem. Journal of Advances in Mathematics and Computer Science, 115-134.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Computer Science, Modeling" + }, + { + "id": 35280, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Accolla, C., Vaugeois, M., Grimm, V., Moore, A. P., Rueda\u2010Cediel, P., Schmolke, A., & Forbes, V. E. (2020). A review of key features and their implementation in unstructured, structured, and agent\u2010based population models for ecological risk assessment. Integrated Environmental Assessment and Management.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35281, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Adamatti, D. F. Circadian Rhythm and Pain: Mathematical Model Based on Multiagent Simulation. In Ambient Intelligence\u2013Software and Applications: 11th International Symposium on Ambient Intelligence (Vol. 1, p. 309). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics" + }, + { + "id": 35282, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Adamatti, D. F. Development of a Multiagent Simulator to Genetic Regulatory Networks. In Ambient Intelligence\u2013Software and Applications: 11th International Symposium on Ambient Intelligence (p. 279). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science" + }, + { + "id": 35283, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Aghaie, V., Alizadeh, H., & Afshar, A. (2020). Emergence of social norms in the cap-and-trade policy: An agent-based groundwater market. Journal of Hydrology, 125057.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35284, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Ahmed, N., Alo, R., Amelink, C., Baek, Y. Y., Chudhary, A., Collins, K., ... & Kenyon, R. (2020). net. science: A Cyberinfrastructure for Sustained Innovation in Network Science and Engineering.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, Economics, History, Social Science, Education" + }, + { + "id": 35285, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Akwafuo, S. E., Abah, T., & Oppong, J. R. (2020). Evaluation of the Burden and Intervention Strat-effigies of TB-HIV Co-Infection in West Africa. J Infect Dis Epidemiol, 6, 143.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Epidemiology, Infectious Diseases" + }, + { + "id": 35286, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Alaghband, M., & Garibay, I. (2020). Effects of Non-Cognitive Factors on Post-Secondary Persistence of Deaf Students: An Agent-Based Modeling Approach. arXiv preprint arXiv:2006.12624.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35287, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Al Barghuthi, N. B., & Togher, M. (2020, March). Analysis of Frameworks for Traffic Agent Simulations. In International Symposium on Intelligent Computing Systems (pp. 44-54). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Social Science, Education, Epidemiology" + }, + { + "id": 35288, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Aljarah, R., & Mahmood, B. (2020, February). Towards the Impact of Mobility Patterns on Network Resources in Smart Cities. In 2020 6th International Engineering Conference \u201cSustainable Technology and Development\"(IEC) (pp. 126-130). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35289, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Aljumah, A., Kaur, A., Bhatia, M., & Ahamed Ahanger, T. (2020). Internet of things\u2010fog computing\u2010based framework for smart disaster management. Transactions on Emerging Telecommunications Technologies, e4078.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35290, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Al-Khulaidy, A., & Swartz, M. (2020, May). Along the border: an agent-based model of migration along the United States-Mexico border. In Proceedings of the 2020 Spring Simulation Conference (pp. 1-12).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35291, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Alm, J., Gerbrands, P., & Kirchler, E. (2020). Using \"responsive regulation\" to reduce tax base erosion. Regulation & Governance.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35292, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Al-Madhlom, Q., Al-Ansari, N., Hamza, B. A., Laue, J., & Hussain, H. M. (2020). Seepage Velocity: Large Scale Mapping and the Evaluation of Two Different Aquifer Conditions (Silty Clayey and Sandy). Hydrology, 7(3), 60.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Seepage Velocity" + }, + { + "id": 35293, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Alonso Vicario, S., Mazzoleni, M., Bhamidipati, S., Gharesifard, M., Ridolfi, E., Pandolfo, C., & Alfonso, L. (2020). Unravelling the influence of human behaviour on reducing casualties during flood evacuation. Hydrological Sciences Journal.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35294, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Alsassa, S., Lef\u00e8vre, T., Laugier, V., Stindel, E., & Ansart, S. (2020). Modeling Early Stages of Bone and Joint Infections Dynamics in Humans: A Multi-Agent, Multi-System Based Model. Frontiers in molecular biosciences, 7, 26.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Molecular Biology, Modeling, Computer Science" + }, + { + "id": 35295, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Al Shamsi, A. A. (2020). School Auditorium Evacuation Simulation. International Journal of Information Technology and Language Studies, 4(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35296, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Alvarado, M., & Arroyo, R. (2020). Cancer Metastasis and the Immune System Response: CM-IS Modeling by Ising Model. Research in Computing Science, 149(5), 123-129.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 35297, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Amadei, B. (2020). Agent-Based and System Dynamics Modeling of Water Field Services. Challenges, 11(2), 13.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, System Dynamics, Computer Science, Economics" + }, + { + "id": 35298, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Amir, S., Asif, F. M., & Roci, M. (2020). Towards Circular Economy: Enhanced Decision-Making in Circular Manufacturing Systems. In Sustainable Consumption and Production, Volume II (pp. 257-279). Palgrave Macmillan, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35299, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "An, S., Bates, R., Hammock, J., Rugaber, S., Weigel, E., & Goel, A. (2020). Scientific Modeling Using Large Scale Knowledge. In: Bittencourt, I., Cukurova, M., Muldner, K., Luckin, R., & Mill\u00e1n, E. (eds), Artificial Intelligence in Education. AIED 2020. Lecture Notes in Computer Science, vol 12164. Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biological, Artificial Intelligence, Computer Science, Education, Knowledge, Learning" + }, + { + "id": 35300, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Anderson, E., & Wendel, D. (2020). Learning Science Through Coding: An Investigation Into the Design of a Domain Specific Modeling Experience. The Interdisciplinarity of the Learning Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Coding, Modeling, Computer Science, Science" + }, + { + "id": 35301, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Anderson, S., & Anderson, S. D. (2020, June). Coding and Music Creation in a Multi-Agent Environment. In Proceedings of the 2020 ACM Conference on Innovation and Technology in Computer Science Education (pp. 527-528).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Coding, Music Creation" + }, + { + "id": 35302, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Anderson, T., Leung, A., Dragicevic, S., & Perez, L. (2020). Modeling the geospatial dynamics of residential segregation in three Canadian cities: An agent\u2010based approach. Transactions in GIS.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35303, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Anderson, T., Leung, A., Perez, L., & Dragi\u0107evi\u0107, S. (2020). Investigating the Effects of Panethnicity in Geospatial Models of Segregation. Applied Spatial Analysis and Policy, 1-23.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35304, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Angenendt, M., B\u00e4cker, A., Merten, H., M\u00fcller, M. M., Zons, G., Sokolov, E., ... & Symposion, P. The impact of the opposition in established democracies.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35305, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Angourakis, A., Bates, J., Baudouin, J. P., Giesche, A., Ustunkaya, M. C., Wright, N., ... & Petrie, C. A. (2020). How to \u2018downsize\u2019a complex society: an agent-based modelling approach to assess the resilience of Indus Civilisation settlements to past climate change. Environmental Research Letters.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Modeling, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35306, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Aniruddha, B., & Abi Tamim, V. (2020). Modelling the challenges of managing free-ranging dog populations. Scientific Reports (Nature Publisher Group), 10(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 35307, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Anne, L., Anandakumar, S., Mahendran, A., Ghalib, M. R., & Ghosh, U. A. Study and Analysis of Trust Management System in Cloud Technologies. In Applications of Artificial Intelligence for Smart Technology (pp. 220-232). IGI Global.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35308, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Antczak, T., Weron, R., & Zabawa, J. (2020). Data-driven simulation modeling of the checkout process in supermarkets: Insights for decision support in retail operations (No. WORMS/20/16). Department of Operations Research and Business Intelligence, Wroclaw University of Science and Technology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35309, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Aqib, M., & Ukil, A. (2020, November). Modelling of electric vehicle charging and discharging profile to mimic real life scenario at charging stations. In 2020 IEEE REGION 10 CONFERENCE (TENCON) (pp. 501-505). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Electricity, Modeling" + }, + { + "id": 35310, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Arag\u00f3n, A., Gaither, M. J., & Madden, M. (2020). MIXED GEOSPATIAL METHODS BASELINE STUDY TO EVALUATE AND MODEL GENTRIFICATION ALONG THE WESTSIDE ATLANTA BELTLINE, USA. The International Archives of Photogrammetry, Remote Sensing and Spatial Information Sciences, 43, 527-531.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35311, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Ara\u00fajo, E., & Gerritsen, C. (2020). Creating a temporal pattern for street robberies using ABM and data from a small city in South East Brazil. Agent-Based Modelling for Criminological Theory Testing and Development, 146.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35312, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Ara\u00fajo, M. S., da Silva, T. F., Sampaio, V. A., Melo, G. F., Junior, R. J. F., da Costa, L. F., ... & de Campos, G. A. (2020, October). Cooperative Observation of Smart Target Agents. In Brazilian Conference on Intelligent Systems (pp. 77-92). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35313, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Araujo-Granda, P., Gras, A., Ginovart, M., & Moulton, V. (2020). INDISIM-Denitrification, an individual-based model for study the denitrification process. Journal of industrial microbiology & biotechnology, 47(1), 1-20.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling" + }, + { + "id": 35314, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Arden, R., Ruseno, N., & Hidayat, Y. A. (2020). CARGO OPTIMIZATION IN AN AIRLINE USING AGENT\u2013BASED MODELLING.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35315, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Arnould-P\u00e9tr\u00e9, M., Guillaumot, C., Danis, B., F\u00e9ral, J. P., & Sauc\u00e8de, T. Individual-based model of population dynamics in a sea urchin of the Kerguelen Plateau (Southern Ocean), Abatus cordatus, under changing environmental conditions. Ecological Modelling, 440, 109352.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35316, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Asgharpourmasouleh, A., Fattahzadeh, M., Mayerhoffer, D., & Lorenz, J. (2020). On the Fate of Protests: Dynamics of Social Activation and Topic Selection Online and in the Streets. In Computational Conflict Research (pp. 141-164). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35317, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Ashiku, L., & Dagli, C. (2020). Agent Based Cybersecurity Model for Business Entity Risk Assessment. In 2020 IEEE International Symposium on Systems Engineering (ISSE) (pp. 1-6). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Cybersecurity" + }, + { + "id": 35318, + "sort": null, + "year": 2020, + "is_ccl": true, + "reference": "Aslan, U., LaGrassa, N., Horn, M., & Wilensky, U. (2020). Putting the Taxonomy into Practice: Investigating Students\u2019 Learning of Chemistry with Integrated Computational Thinking Activities. Paper presented at the American Education Research Association (AERA) Conference. San Francisco, CA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Chemistry" + }, + { + "id": 35319, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Assa, J., & Lengfelder, C. (2020). Can Enhancing Capabilities Promote Energy Justice? An Agent-Based Model Approach. Mendeley Data, 1.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35320, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Augustijn, E. W., Abdulkareem, S. A., Sadiq, M. H., & Albabawat, A. A. (2020, April). Machine Learning to Derive Complex Behaviour in Agent-Based Modellzing. In 2020 International Conference on Computer Science and Software Engineering (CSASE) (pp. 284-289). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Machine Learning, Computer Science, Biology" + }, + { + "id": 35321, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Azim, M. A., Sathasivam, S., Alzaeemi, S. A. S., & Mahmood, M. (2019). Agent Based Modeling for Comparing the Performances of Hyperbolic and Zeng and Martinez Activations Functions. International Journal of Computer Networks and Communications Security, 7(12), 250-257.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 35322, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Azucena, J., Alkhaleel, B., Liao, H., & Nachtmann, H. (2020). Hybrid simulation to support interdependence modeling of a multimodal transportation network. Simulation Modelling Practice and Theory, 102237.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry" + }, + { + "id": 35323, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Baccega, D. (2020). An agent-based model to support SARS-CoV-2 infection control strategies at school.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35324, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Badham, J., Kee, F., & Hunter, R. F. (2020). Network structure influence on simulated network interventions for behaviour change. Social Networks, 64, 55-62.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35325, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Baena, B., Cobian, C., Larios, V. M., Orizaga, J. A., Maciel, R., Cisneros, M. P., & Beltran-Ramirez, J. R. (2020). Adapting food supply chains in Smart Cities to address the impacts of COVID19 a case study from Guadalajara metropolitan area. In 2020 IEEE International Smart Cities Conference (ISC2) (pp. 1-8). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35326, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Baker, E., Barbillon, P., Fadikar, A., Gramacy, R. B., Herbei, R., Higdon, D., ... & Sacks, J. (2020). Stochastic Simulators: An Overview with Opportunities. arXiv preprint arXiv:2002.01321.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Stochastic Simulators, Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 35327, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Bai, S. (2020). Simulations of COVID-19 spread by spatial agent-based model and ordinary differential equations. International Journal of Simulation and Process Modelling, 15(3), 268-277.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Differential Equations, Spatial Modelling, Computer Science" + }, + { + "id": 35328, + "sort": null, + "year": 2020, + "is_ccl": true, + "reference": "Bain, C., & Wilensky, U. (2020, February). Vectors of CT-ification: Integrating Computational Activities in STEM Classrooms. In Proceedings of the 51st ACM Technical Symposium on Computer Science Education (pp. 1361-1361).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 35329, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "BAIN, C., DABHOLKAR, S., & WILENSKY, U. (2020). Confronting Frame Alignment in CT Infused STEM Classrooms. CoolThink@ JC, 91.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35330, + "sort": null, + "year": 2020, + "is_ccl": true, + "reference": "Bain, C., Anton, G., Horn, M., Wilensky, U. (2020). Back to Computational Transparency: Co-design with Teachers to Integrate Computational Thinking in Science Classrooms. Proceedings of the International Conference for the Learning Sciences (ICLS 2020), Nashville, USA: ISLS.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Education" + }, + { + "id": 35331, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Bampoh, D. K., Earl, J. E., & Zollner, P. A. (2021). Simulating the relative effects of movement and sociality on the distribution of animal-transported subsidies. Theoretical Ecology, 1-14.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35332, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Bano, A., Ud Din, I., & Al-Huqail, A. A. (2020). AIoT-Based Smart Bin for Real-Time Monitoring and Management of Solid Waste. Scientific Programming, 2020.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35333, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Bao, H., Dong, H., Jia, J., Peng, Y., & Li, Q. (2020). Impacts of land expropriation on the entrepreneurial decision-making behavior of land-lost peasants: An agent-based simulation. Habitat International, 95, 102096.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35334, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Barabashev, A. G. (2020). Constructive ending: how to finalize the conclusion and discussion of a research project and a journal article. Handbook of Research Methods in Public Administration, Management and Policy, 395.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35335, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Baral, N., Gunaratne, C., Jayalath, C., Rand, W., Senevirathna, C., & Garibay, I. (2020). Negative Influence Gradients Lead to Lowered Response Capacity on Social Networks.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35336, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Barazza, E., & Strachan, N. (2020). The co-evolution of climate policy and investments in electricity markets: Simulating agent dynamics in UK, German and Italian electricity sectors. Energy Research & Social Science, 65, 101458.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Climate Policy, Electricity Markets, Simulation, Economics, Social Science, Physics, Chemistry, Urban Studies, Miscellaneous" + }, + { + "id": 35337, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Barazza, E., & Strachan, N. The key role of historic path-dependency and competitor imitation on the electricity sector low-carbon transition. Energy Strategy Reviews, 33, 100588.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35338, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Barbet, V., Bourl\u00e8s, R., & Rouchier, J. (2020). Informal risk-sharing cooperatives: the effect of learning and other-regarding preferences. Journal of Evolutionary Economics, 1-28.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35339, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Barbosa, P., Schumaker, N. H., Brandon, K. R., Bager, A., & Grilo, C. (2020). Simulating the consequences of roads for wildlife population dynamics. Landscape and Urban Planning, 193, 103672.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 35340, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Barker, A. K., Scaria, E., Alagoz, O., Sethi, A. K., & Safdar, N. (2020). Reducing C. difficile in children: An agent-based modeling approach to evaluate intervention effectiveness.\u00a0Infection Control & Hospital Epidemiology, 1-9.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Economics, Computer Science, Infectious Diseases" + }, + { + "id": 35341, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Barthelemy, J., Amirghasemi, M., Arshad, B., Fay, C., Forehead, H., Hutchison, N., ... & Perez, P. (2020). Problem-Driven and Technology-Enabled Solutions for Safer Communities: The case of stormwater management in the Illawarra-Shoalhaven region (NSW, Australia). Handbook of Smart Cities, 1-28.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35342, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Bartlett, T. (2020). Privacy and Security Management Practices of Emerging Technologies: Internet of Things (Doctoral dissertation, Robert Morris University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35343, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Bassi, F., Bauermann, T., Lang, D., & Setterfield, M. (2020). Is capacity utilization variable in the long run? An agent-based sectoral approach tomodeling hysteresis in the normal rate of capacity utilization.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35344, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Basu, D., & Panorkou, N. (2020, January). Utilizing mathematics to examine sea level rise as an environmental and a social issue. In Mathematics Education Across Cultures: Proceedings of the 42nd Meeting of the North American Chapter of the International Group for the Psychology of Mathematics Education.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Mathematics" + }, + { + "id": 35345, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Bautista-Torres, A., Bautista-Aleman, E. A., & Espitia-Cuchango, H. E. (2020). Cellular Automata Implemented on FPGA Based on Totalistic Rules for Deterministic Systems.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 35346, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Beckedorf, J., Hartung, D., & Sittig, P. (2020). 15. Analyzing high volumes of German court decisions in an interdisciplinary class of law and computer science students. Computational Legal Studies: The Promise and Challenge of Data-Driven Research, 328.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35347, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Bedar, R. A. H., & Al-Shboul, M. (2020). The Effect of Using STEAM Approach on Developing Computational Thinking Skills among High School Students in Jordan. International Journal of Interactive Mobile Technologies, 14(14).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35348, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Belgrad, B. A., & Griffen, B. D. (2020). Which mechanisms are responsible for population patterns across different quality habitats? A new approach. Oikos.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology" + }, + { + "id": 35349, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Bell, A. (2020). Two Approaches to Teaching with NetLogo: Examining the Role of Structure and Agency.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35350, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Belsare, A. V., Gompper, M. E., Keller, B., Sumners, J., Hansen, L., & Millspaugh, J. J. (2020). An agent-based framework for improving wildlife disease surveillance: A case study of chronic wasting disease in Missouri white-tailed deer. Ecological Modelling, 417, 108919.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35351, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Belsare, A., Gompper, M., Keller, B., Sumners, J., Hansen, L., & Millspaugh, J. (2020). Size Matters: Sample size assessments for chronic wasting disease surveillance using an agent-based modeling framework. MethodsX, 100953.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35352, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Belsare, A. V., & Stewart, C. M. (2020). OvCWD: An agent\u2010based modeling framework for informing chronic wasting disease management in white\u2010tailed deer populations. Ecological Solutions and Evidence, 1(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Ecology, Computer Science" + }, + { + "id": 35353, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Berger, C., & Mahdavi, A. (2020). Review of current trends in agent-based modeling of building occupants for energy and indoor-environmental performance analysis. Building and Environment, 173, 106726.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35354, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Bezzaoucha, F. S., Sahnoun, M. H., & Benslimane, S. M. (2020). Multi-component modeling and classification for failure propagation of an offshore wind turbine. International Journal of Energy Sector Management.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35355, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Biagetti, A., Ferrando, A., & Mascardi, V. (2020, October). The DigForSim Agent Based Simulator of People Movements in Crime Scenes. In International Conference on Practical Applications of Agents and Multi-Agent Systems (pp. 42-54). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35356, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Bidoki, N. H., Schiappa, M., Sukthankar, G., & Garibay, I. (2020). Modeling social coding dynamics with sampled historical data. Online Social Networks and Media, 16.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35357, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Bielik, T., Fonio, E., Feinerman, O., Duncan, R. G., & Levy, S. T. (2020). Working Together: Integrating Computational Modeling Approaches to Investigate Complex Phenomena. Journal of Science Education and Technology, 1-18.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35358, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Biermann, L. (2020). Assessing the impacts of human disturbance on wildlife: insights from wildfowl on the Exe Estuary (Doctoral dissertation, Bournemouth University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 35359, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Bilsborrow, R. E. (2020). Economic and Related Aspects of Land Use on Islands: A Meta Perspective. In Land Cover and Land Use Change on Islands (pp. 11-62). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35360, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Bina, K., & Moghadas, N. (2020). BIM-ABM simulation for emergency evacuation from conference hall, considering gender segregation and architectural design. Architectural Engineering and Design Management, 1-15.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35361, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Binhomaid, O., & Hegazy, T. (2020). Agent-based Simulation of Workers\u2019 Behaviors, Productivity, and Safety around Construction Obstacles. Canadian Journal of Civil Engineering, (ja).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35362, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Bodine, E. N., Panoff, R. M., Voit, E. O., & Weisstein, A. E. (2020). Agent-Based Modeling and Simulation in Mathematics and Biology Education. Bulletin of Mathematical Biology, 82(8), 1-19.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Simulation, Education" + }, + { + "id": 35363, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Bologov, A. (2020). Assessement of the Ability of Elective Choice System. Review of Business and Economics Studies, (3).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Assessement" + }, + { + "id": 35364, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Bommel, P. (2020). Participatory modelling and interactive simulation to support the management of the commons (Doctoral dissertation, Universit\u00e9 de Montpellier).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35365, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Borer, B. (2020). A marriage made in soil-quantifying bacterial life in soil hotspots using individual-based and metabolic network modeling (Doctoral dissertation, ETH Zurich).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 35366, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Bosse, S. (2020, September). Self-organising Urban Traffic Control on Micro-level Using Reinforcement Learning and Agent-Based Modelling. In Proceedings of SAI Intelligent Systems Conference (pp. 745-764). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Economics, History, Social Science, Education" + }, + { + "id": 35367, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Boukehila, A., & Taleb, N. (2020, February). Statistical Study To Detect Emergent Behaviours. In 2020 2nd International Conference on Mathematics and Information Technology (ICMIT) (pp. 164-168). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Statistics" + }, + { + "id": 35368, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Boyd, R., Walker, N., Hyder, K., Thorpe, R., Roy, S., & Sibly, R. (2020). SEASIM-NEAM: a Spatially-Explicit Agent-based SIMulator of NorthEast Atlantic Mackerel population dynamics. MethodsX, 101044.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 35369, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Brady, C., Gresalfi, M., Steinberg, S., & Knowe, M. (2020). Debugging for Art\u2019s Sake: Beginning Programmers\u2019 Debugging Activity in an Expressive Coding Context. The Interdisciplinarity of the Learning Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Programming" + }, + { + "id": 35370, + "sort": null, + "year": 2020, + "is_ccl": true, + "reference": "Brady, C., Stroup, W. M., Petrosino, A. & Wilensky, U. J. (2020) Amplifying the Restructuration Potential of Agent-Based Modeling Through Group-Based Activity Structures [Symposium]. AERA Annual Meeting San Francisco, CA http://tinyurl.com/szuaxl3 (Conference Canceled)", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35371, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Brahmbhatt, M., & Sonar, S. (2020). Transit Time Comparison of Different Modes of Transportation. Studies in Indian Place Names, 40(9), 88-93.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35372, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Brainard, J., Hunter, P. R., & Hall, I. R. (2020). An agent-based model about the effects of fake news on a norovirus outbreak. Revue d'\u00c9pid\u00e9miologie et de Sant\u00e9 Publique.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 35373, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Braun, B., Tarakta\u015f, B., Beckage, B., & Molofsky, J. (2020). Phase transitions and social distancing control measures for SARS-CoV-2 on small world networks. arXiv preprint arXiv:2005.09751.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35374, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Braun, B., Tarakta\u015f, B., Beckage, B., & Molofsky, J. (2020). Simulating phase transitions and control measures for network epidemics caused by infections with presymptomatic, asymptomatic, and symptomatic stages. PLOS ONE, 15(9), e0238412.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Chemistry, Economics" + }, + { + "id": 35375, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Brearcliffe, D. (2020). Non-Pharmaceutical Herd Immunity using Homemade Masks (No. 4432). EasyChair.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Miscellaneous" + }, + { + "id": 35376, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Brearcliffe, D., & Crooks, A. (2020). Creating Intelligent Agents: Combining Agent-Based Modeling with Machine Learning (No. 4403). EasyChair.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Machine Learning, Ecology, Computer Science, Economics" + }, + { + "id": 35377, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Breen, C. D., & Frezza, S. (2020). Charismatic Leadership and the Formation of Hate Groups. International Annals of Criminology, 1-36.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35378, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Brignone, S., Grimaldi, R., Denicolai, L., & Palmieri, S. (2020). Intelligenza artificiale, robot e rappresentazione della conoscenza. Il Laboratorio di simulazione del comportamento e robotica educativa\" Luciano Gallino\".", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 35379, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Brodskiy, V. A., Pimenov, D. M., Chernov, P. L., Dzhamaldinova, M. D., & Kurdyukova, N. O. (2020). A Review of Agent-Based Modeling in the Cooperative Sector of Economics. Frontier Information Technology and Systems Research in Cooperative Economics, 261-268.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Economics" + }, + { + "id": 35380, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Broniec, W., An, S., Rugaber, S., & Goel, A. K. (2020). Using VERA to explain the impact of social distancing on the spread of COVID-19. arXiv preprint arXiv:2003.13762.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35381, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Brughmans, T. (2020). Evaluating the Potential of Computational Modelling for Informing Debates on Roman Economic Integration. In Complexity Economics (pp. 105-123). Palgrave Macmillan, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35382, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Buechley, L. Self-Directed Constructionist Communities: Interview with Leah Buechley. In Holbert, N., Berland, M., & Kafai, Y. B. (eds.), Designing Constructionist Futures: The Art, Theory, and Practice of Learning Designs, 381.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35383, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Buenaventura, A., Calgo, C. J., Bardeloza, D. K. D., Libatique, N. J. C., & Tangonan, G. L. (2020). Agent-based modeling of the spread of fire in urban settlements in the Philippines. Proceedings of the Samahang Pisika ng Pilipinas.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35384, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Buhat, C. A. H., Lutero, D. S., Olave, Y. H., Torres, M. C., & Rabajante, J. F. (2020). Modeling the Transmission of Respiratory Infectious Diseases in Mass Transportation Systems. medRxiv.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35385, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Buhat, C. A. H., Rabajante, J. F., & Paller, V. G. V. (2020). Spatiotemporal modeling of parasite aggregation among fish hosts in a lentic ecosystem. Modeling Earth Systems and Environment, 1-17.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Modeling" + }, + { + "id": 35386, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Buhat, C. A., & Villanueva, S. K. (2020). Determining the effectiveness of practicing non-pharmaceutical interventions in improving virus control in a pandemic using agent-based modelling. Mathematics in Applied Sciences and Engineering, 1(4), 423-438.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Economics, Computer Science, Physics, Chemistry, Ecology, Modeling" + }, + { + "id": 35387, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Bulson, L., Becher, M. A., McKinley, T. J., & Wilfert, L. (2020). Long\u2010term effects of antibiotic treatments on honeybee colony fitness\u2013a modelling approach. Journal of Applied Ecology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Modelling" + }, + { + "id": 35388, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Burbach, L., Belavadi, P., Halbach, P., Kojan, L., Plettenberg, N., Nakayama, J., ... & Valdez, A. C. (2020, July). Netlogo vs. Julia: Evaluating Different Options for the Simulation of Opinion Dynamics. In International Conference on Human-Computer Interaction (pp. 3-19). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35389, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Cabrera, M. A. S., & Barrientos, A. H. (2020). Feasibility Study for Using Energy-Harvesting Floor in Urban Public Transportation System: Case of Subway Stations. Journal of Electrical Power & Energy Systems, 4(1), 11-21.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35390, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Cabrera-Becerril, A., Peralta, R., Miramontes, P., Vargas-de-Leon, C., & Alonso, R. (2020). Increase of non-vaccine human papillomavirustypes in a group of HPV-vaccinated Mexicanwomen. Evidence of Pathogenic StrainReplacement. medRxiv.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Pathogenic Strain Replacement" + }, + { + "id": 35391, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Caetano-Anoll\u00e9s, G., Mughal, F., Aziz, M. F., Ko\u00e7, I., Caetano-Anoll\u00e9s, K., Caetano-Anoll\u00e9s, D., & Mittenthal, J. E. (2020). Linkage: A \u201cdouble tale\u201d of module creation in evolving networks. Untangling Molecular Biodiversity, pp. 91-168. https://doi.org/10.1142/9789814656627_0003", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35392, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Calabr\u00f2, G., Inturri, G., Le Pira, M., Pluchino, A., & Ignaccolo, M. (2020). Bridging the gap between weak-demand areas and public transport using an ant-colony simulation-based optimization. Transportation Research Procedia, 45, 234-241.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35393, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Calabr\u00f2, G., Torrisi, V., Inturri, G., & Ignaccolo, M. (2020). Improving inbound logistic planning for large-scale real-world routing problems: a novel ant-colony simulation-based optimization. European Transport Research Review, 12, 1-11.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35394, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Calcagno, S. F., Mailleret, L., Malausa, T., & Vercken, E. (2020). Shifts from pulled to pushed range expansions.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35395, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Camargo, P., Mattos, S., & Goldenberg, C. (2020, February). Complexity and Collective Intelligence on Demand for a Sustainable Future. In 2020 IEEE 14th International Conference on Semantic Computing (ICSC) (pp. 347-349). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 35396, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Camp, J., Nelson, K., Philip, C. E., Moravec, M., Scheffler, D. W., & Johnson, P. (2020). Utilizing Agent-Based Modeling to Evaluate Operational Impacts of an Incident and Possible Alternatives on US Waterways. Transportation Research Record, 0361198120941504.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35397, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Camparotti, C. E. S. (2020). Analysis of industrial symbiosis through agent-based simulation: application in the agro-industrial sector.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35398, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Campos, R. F. D. A., Cunha, D. A. D., & Bueno, N. P. (2020). Information dissemination in socio-ecological systems: Analysis of a hybrid model of System Dynamics and Agent-Based Modeling. Nova Economia, 30(1), 257-286.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, System Dynamics, Agent-Based Modeling" + }, + { + "id": 35399, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Caprioli, C., Bottero, M., & De Angelis, E. (2020). Supporting Policy Design for the Diffusion of Cleaner Technologies: A Spatial Empirical Agent-Based Model. ISPRS International Journal of Geo-Information, 9(10), 581.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Spatial Analysis, Agent-Based Modeling" + }, + { + "id": 35400, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "C\u00e1rdenas Gonz\u00e1lez, L., & Soto Lozano, C. (2020). Modelaci\u00f3n de un sistema inteligente de tr\u00e1fico vehicular por medio de una simulaci\u00f3n basada en agentes.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35401, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Cardinot, M. (2020). Coevolutionary spatial game theory: The impact of abstention. Small, 4(4), 1-7.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35402, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Carney, M., & Davies, B. (2020). Agent-Based Modeling, Scientific Reproducibility, and Taphonomy: A Successful Model Implementation Case Study.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35403, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Carpente, M. S., Guijarro-Berdi\u00f1as, B., Alonso-Betanzos, A., Rodr\u00edguez-Arias, A., & Dimitru, A. (2020). An Agent-Based Model to Simulate the Spread of a Virus Based on Social Behavior and Containment Measures. In Multidisciplinary Digital Publishing Institute Proceedings (Vol. 54, No. 1, p. 22).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35404, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Carrella, E., Bailey, R., & Madsen, J. (2020). Calibrating agent-based models with linear regressions. Journal Of Artificial Societies and Social Simulation, 23(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35405, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Carr-Markell, M. (2020). Effects of native prairie forbs on the foraging choices and recruitment behavior of honey bees (Apis mellifera).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 35406, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Ceballos, Y. F., Galarcio-Noguera, J. D., Maya-Duque, P. A., & Ramirez-Cordoba, G. L. (2020). Agent-based Model for Environmental Awareness and Extended Producer Responsibility in Developing Countries. Scientia et Technica, 25(3), 430-437.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35407, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Centorrino, P., Corbetta, A., Cristiani, E., & Onofri, E. (2020). Managing Crowded Museums: Visitors Flow Measurement, Analysis, Modeling, and Optimization. arXiv preprint arXiv:2006.16830.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35408, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Chakarov, A. G. (2020). Integrating Computational Thinking into Middle School Science Curriculum Using Programmable Sensor Technologies (Doctoral dissertation, University of Colorado at Boulder).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 35409, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Challenge, S., Jansens, R., Kingston, M., Landess, M., Morrison, B., Dubey, M., & Guerin, S. (2020). It\u2019s \u2018Bout To Get Lit Up In Here.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Miscellaneous" + }, + { + "id": 35410, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Chappin, \u00c9. J., Nikolic, I., & Yorke-Smith, N. (2020). Agent-based modelling of the social dynamics of energy end use. In Energy and Behaviour (pp. 321-351). Academic Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35411, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Chattoe-Brown, E. (2020). Why questions like \u2018do networks matter?\u2019matter to methodology: how Agent-Based Modelling makes it possible to answer them. International Journal of Social Research Methodology, 1-14.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Methodology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35412, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Chen, B., Chen, H., Ning, D., Zhu, M., Ai, C., Qiu, X., & Dai, W. (2020). A Two-Tier Partition Algorithm for the Optimization of the Large-scale Simulation of Information Diffusion in Social Networks. Symmetry, 12(5), 843.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35413, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Chen, H. C., Han, Q., & De Vries, B. (2020). Modeling the spatial relation between urban morphology, land surface temperature and urban energy demand. Sustainable Cities and Society, 102246.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Urban Studies, Computer Science, Economics, Physics, Chemistry, Archaeology" + }, + { + "id": 35414, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Chen, K., Li, Y., & Linderman, K. (2020). Supply Network Resilience Learning: An Exploratory Data Analytics Study.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35415, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Chen, S., He, Q., & Xiao, H. (2020). A study on cross-border e-commerce partner selection in B2B mode. Electronic Commerce Research, 1-21.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, E-commerce, Economics, Computer Science, Marketing" + }, + { + "id": 35416, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Chen, S., Wu, J., Pan, Y., Ge, J., & Huang, Z. (2020). Simulation and case study on residential stochastic energy use behaviors based on human dynamics. Energy and Buildings, 110182.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35417, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Chen, S., Zhang, H., Guan, J., & Rao, Z. (2020, March). Agent-based modeling and simulation of stochastic heat pump usage behavior in residential communities. In Building Simulation (pp. 1-19). Tsinghua University Press", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35418, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Chen, Y., Chen, F., Lin, Z., & Pan, X. (2020). Comprehensive Evaluation of Underground Garage Traffic Design Scheme Based on Data Envelopment Analysis. In CICTP 2020 (pp. 4077-4088).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35419, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Cheng, C., Luo, Y., & Yu, C. (2020). Dynamic mechanism of social bots interfering with public opinion in network. Physica A: Statistical Mechanics and its Applications, 124163.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Social Science, Economics" + }, + { + "id": 35420, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Chennoufi, M., & Bendella, F. (2020). Fuzzy controller and emotional model for evacuation of virtual crowd behaviors. Intelligent Decision Technologies, 14(2), 199-214.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Fuzzy controller, emotional model, evacuation, virtual crowd behaviors" + }, + { + "id": 35421, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Chennoufi, M., Bendella, F., & Bouzid, M. (2020). Best A* discovery for multi agents planning. International Journal of Operational Research, 38(3), 343-363.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35422, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "CHIRI\u021a\u0102, N., & NICA, I. (2020). Analysis of the impact generated by COVID-19 in banking institutions and possible economic effects. Theoretical and Applied Economics, 22(3 (624), Autumn), 21-40.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Economics, Biology, Sociology" + }, + { + "id": 35423, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Christensen, C., & Salmon, J. (2020). An agent-based modeling approach for simulating the impact of small unmanned aircraft systems on future battlefields. The Journal of Defense Modeling and Simulation, 1548512920963904.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35424, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Christensen, D., & Lombardi, D. (2020). Understanding Biological Evolution Through Computational Thinking. Science & Education, 1-43.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computation, Ecology" + }, + { + "id": 35425, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Chudzinska, M., Dupont, Y. L., Nabe-Nielsen, J., Maia, K. P., Henriksen, M. V., Rasmussen, C., ... & Tr\u00f8jelsgaard, K. (2020). Combining the strengths of agent-based modelling and network statistics to understand animal movement and interactions with resources: example from within-patch foraging decisions of bumblebees. Ecological Modelling, 430, 109119.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Network Statistics, Modeling, Ecology" + }, + { + "id": 35426, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Chudzinska, M., Nabe-Nielsen, J., Smout, S., Aarts, G., Brasseur, S., Graham, I., ... & McConnell, B. AgentSeal: Agent-based model describing movement of marine central-place foragers. Ecological Modelling, 440, 109397.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 35427, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Collard, P. (2020). Second-order micromotives and macrobehaviour. Journal of Computational Social Science, 1-21.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35428, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Colombi, A., Scianna, M., & Preziosi, L. (2020). Collective migration and patterning during early development of zebrafish posterior lateral line. Philosophical Transactions of the Royal Society B, 375(1807), 20190385.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 35429, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Conti, E., Di Mauro, L. S., Pluchino, A., & Mulder, C. (2020). Testing for top\u2010down cascading effects in a biomass\u2010driven ecological network of soil invertebrates. Ecology and Evolution.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35430, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Cooksey, R. W. (2020). Specialised Statistical Procedures. In Illustrating Statistical Procedures: Finding Meaning in Quantitative Data (pp. 557-693). Springer, Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Statistics" + }, + { + "id": 35431, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Cooper, G. S., Willcock, S., & Dearing, J. A. (2020). Regime shifts occur disproportionately faster in larger ecosystems. Nature Communications, 11(1), 1-10.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 35432, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Costa, L., Ara\u00fajo, M., Silva, T., Junior, R., Andrade, J., & Campos, G. (2020, January). Comparative Study of Neural Networks Techniques in the Context of Cooperative Observations. In Anais do XVI Encontro Nacional de Intelig\u00eancia Artificial e Computacional (pp. 563-574). SBC.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35433, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Cotfas, L. A., Delcea, C., Milne, R. J., & Salari, M. (2020). Evaluating Classical Airplane Boarding Methods Considering COVID-19 Flying Restrictions.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35434, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Craze, G. J. (2020). Inflammation-Associated Mood Deterioration and the Degradation of Affective Climate: An Agent-Based Model (Doctoral dissertation, Case Western Reserve University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35435, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Crespi, C., Fargetta, G., Pavone, M., Scollo, R. A., & Scrimali, L. (2020, November). A Game Theory Approach for Crowd Evacuation Modelling. In International Conference on Bioinspired Methods and Their Applications (pp. 228-239). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Game Theory, Modeling" + }, + { + "id": 35436, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Cuevas, E. (2020). An agent-based model to evaluate the COVID-19 transmission risks in facilities. Computers in Biology and Medicine, 103827.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 35437, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Cuevas, E., G\u00e1lvez, J., Avila, K., Toski, M., & Rafe, V. (2020). A new metaheuristic approach based on agent systems principles. Journal of Computational Science, 101244.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35438, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Cui, L., He, T., Jiang, Y., Li, M., Wang, O., Jiajue, R., ... & Xia, W. (2020). Predicting the intervention threshold for initiating osteoporosis treatment among postmenopausal women in China: a cost-effectiveness analysis based on real-world data. Osteoporosis International, 31(2), 307-316.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Statistics, Computer Science, Epidemiology, Miscellaneous" + }, + { + "id": 35439, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Cunha, M. E. S., Rossetti, R. J., & Campos, P. (2020). Modelling Smart Cities Through Socio-Technical Systems. In 2020 IEEE International Smart Cities Conference (ISC2) (pp. 1-8). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Socio-Technical Systems, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35440, + "sort": null, + "year": 2020, + "is_ccl": true, + "reference": "Dabholkar, S., Peel, A, Anton, G., Horn, M. & Wilensky, U. (2020). Analysis of teachers\u2019 involvement in co-design and implementation of CT (Computational Thinking) integrated biology units. Paper accepted at the American Education Research Association (AERA) Conference, San Francisco, CA, USA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Archaeology, Ecology, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35441, + "sort": null, + "year": 2020, + "is_ccl": true, + "reference": "Dabholkar, S., & Wilensky, U. (2020). DESIGNING COMPUTATIONAL MODELS AS EMERGENT SYSTEMS MICROWORLDS TO SUPPORT LEARNING OF SCIENTIFIC INQUIRY.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Ecology, Physics, Chemistry, Economics, History, Social Science, Education, Epidemiology" + }, + { + "id": 35442, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Daems, D. (2020). A Review and Roadmap of Online Learning Platforms and Tutorials in Digital Archaeology. Advances in Archaeological Practice, 8(1), 87-92.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35443, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Daghriri, T., & Ozmen, O. (2020). Quantifying the Effects of Social Distancing on the Spread of COVID-19. Available at SSRN 3696983.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35444, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Dahirel, M., Bertin, A., Haond, M., Blin, A., Lombaert, E., Calcagno, V., ... & Vercken, E. (2020). Shifts from pulled to pushed range expansions caused by reductions in connectedness. bioRxiv.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35445, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Dalle Nogare, D., & Chitnis, A. B. (2020, April). NetLogo agent-based models as tools for understanding the self-organization of cell fate, morphogenesis and collective migration of the zebrafish posterior Lateral Line primordium. In Seminars in cell & developmental biology (Vol. 100, pp. 186-198). Academic Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Cell fate, morphogenesis, collective migration, zebrafish" + }, + { + "id": 35446, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Davidson, A. L., Khaddage, F., & Ogata, H. (2020). Thematic Working Group. Learners and learning contexts: New alignments for the digital age, 18.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35447, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "D'Auria, M., Scott, E. O., Lather, R. S., Hilty, J., & Luke, S. (2020). Assisted Parameter and Behavior Calibration in Agent-based Models with Distributed Optimization.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35448, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Davis, N., Polhill, J. G., & Aitkenhead, M. J. Measuring heterogeneity in soil networks: a network analysis and simulation-based approach. Ecological Modelling, 439, 109308.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35449, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "de Boer, A., Krul, L., Fehr, M., Geurts, L., Kramer, N., Urbieta, M. T., ... & Hepburn, P. A. (2020). Animal-free strategies in food safety & nutrition: What are we waiting for? Part I: Food safety. Trends in Food Science & Technology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Food Safety, Nutrition, Technology" + }, + { + "id": 35450, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Deboscker, S., S\u00e9verac, F., Gaudart, J., M\u00e9nard, C., Meyer, N., & Lavigne, T. (2020). An agent-based model to simulate the transmission of vancomycin-resistant enterococci according different prevention and control measures. Infection Control & Hospital Epidemiology, 1-7.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35451, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "De Kock, P., & Carta, S. (2020). Trojans of ambiguity vs resilient regeneration: visual meaning in cities. Construction Economics and Building.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35452, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "De Masi, G., & Ferrante, E. (2020). Quality-dependent adaptation in a swarm of drones for environmental monitoring. In 2020 Advances in Science and Engineering Technology International Conferences (ASET) (pp. 1-6). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 35453, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "de Oca, E. M., Suppi, R., De Giusti, L., & Naiouf, M. (2020). Green High Performance Simulation for AMB models of Aedes aegypti/Simulacion Green de Alto Rendimiento de un Modelo Basado en Agentes del Mosquito Aedes aegypti. Journal of Computer Science & Technology, 20(1), 15-23.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Miscellaneous" + }, + { + "id": 35454, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Delcea, C., Cotfas, L. A., Bradea, I. A., Bolo\u0219, M. I., & Ferruzzi, G. (2020). Investigating the Exits\u2019 Symmetry Impact on the Evacuation Process of Classrooms and Lecture Halls: An Agent-Based Modeling Approach. Symmetry, 12(4), 627.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35455, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Delcea, C., Cotfas, L. A., Craciun, L., & Molanescu, A. G. (2020). An agent-based modeling approach to collaborative classrooms evacuation process. Safety science, 121, 414-429.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35456, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Delcea, C., Milne, R. J., & Cotfas, L. A. (2020). Determining the Number of Passengers for Each of Three Reverse Pyramid Boarding Groups with COVID-19 Flying Restrictions. Symmetry, 12(12), 2038.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35457, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "de Mingo L\u00f3pez, L. F., Blas, N. G., Castellanos Pe\u00f1uela, A. L., & Castellanos Pe\u00f1uela, J. B. (2020). Swarm Intelligence Models: Ant Colony Systems Applied to BNF Grammars Rule Derivation. International Journal of Foundations of Computer Science, 31(01), 103-116.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Swarm Intelligence Models" + }, + { + "id": 35458, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "de Oliveira Zamberlan, A., Bordini, R. H., Kurtz, G. C., & Fagan, S. B. (2020). Multi-Agent Systems, Simulation and Nanotechnology. In Multi Agent Systems-Strategies and Applications. IntechOpen.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Nanotechnology" + }, + { + "id": 35459, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Derbal, Y. (2020). Agent-Based Model of Cell Signaling in Cancer. In 2020 IEEE Canadian Conference on Electrical and Computer Engineering (CCECE) (pp. 1-4). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Chemistry" + }, + { + "id": 35460, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Dhariwal, M., & Dhariwal, S. (2020, April). Let's Chance: Playful Probabilistic Programming for Children. In Extended Abstracts of the 2020 CHI Conference on Human Factors in Computing Systems Extended Abstracts (pp. 1-7).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Probability, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35461, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Dhou, K. (2020). A new chain coding mechanism for compression stimulated by a virtual environment of a predator\u2013prey ecosystem. Future Generation Computer Systems, 102, 650-669.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics" + }, + { + "id": 35462, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Dhou, K., & Cruzen, C. (2020). A highly efficient chain code for compression using an agent-based modeling simulation of territories in biological beavers. Future Generation Computer Systems.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 35463, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Diaconescu, A., Di Felice, L. J., & Mellodge, P. (2020). Exogenous coordination in multi-scale systems: How information flows and timing affect system properties. Future Generation Computer Systems.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35464, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "D\u00edaz Monsalvea, J., Enr\u00edquez Corredor, I., Pinto Moreno, \u00c1. M., & S\u00e1nchez Santamar\u00eda, J. (2020). Evaluaci\u00f3n de una emulaci\u00f3n de un sistema ASRS acoplado a un sistema de compras.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35465, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Di Fiore, A. (2020). The Promise of Spatially Explicit Agent-Based Models for Primatology Research. Spatial Analysis in Field Primatology: Applying GIS at Varying Scales, 280.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Spatial Analysis, GIS, Primatology" + }, + { + "id": 35466, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Dignum, F., Dignum, V., Davidsson, P., Ghorbani, A., van der Hurk, M., Jensen, M., ... & Mellema, R. (2020). Analysing the combined health, social and economic impacts of the corovanvirus pandemic using agent-based social simulation. arXiv preprint arXiv:2004.12809.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35467, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Di Mauro, L. S., Mulder, C., Conti, E., & Pluchino, A. (2020). Robustness of soil ecosystems under different regimes of management. arXiv preprint arXiv:2005.13414.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, arXiv" + }, + { + "id": 35468, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Dinh, L., & Parulian, N. (2020). COVID\u201019 pandemic and information diffusion analysis on Twitter. Proceedings of the Association for Information Science and Technology, 57(1), e252.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Information Science, Technology, Sociology, Economics, Public Health" + }, + { + "id": 35469, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Dogaroglu, B., & Caliskanelli, S. P. (2020). Investigation of car park preference by intelligent system guidance. Research in Transportation Business & Management, 100567.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35470, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Dom\u00ednguez Ca\u00f1izares, R., & Cannella, S. (2020). Insights on Multi-Agent Systems Applications for Supply Chain Management.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35471, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Dominguez, R., & Cannella, S. (2020). Insights on Multi-Agent Systems Applications for Supply Chain Management. Sustainability, 12(5), 1935.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35472, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Dong, J., Liu, R., Qiu, Y., & Crossan, M. (2020). Should knowledge be distorted? Managers' knowledge distortion strategies and organizational learning in different environments. The Leadership Quarterly, 101477.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35473, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "D'Orazio, M., Bernardini, G., & Quagliarini, E. (2020). A probabilistic model to evaluate the effectiveness of main solutions to COVID-19 spreading in university buildings according to proximity and time-based consolidated criteria.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35474, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "D'Orazio, M., Bernardini, G., & Quagliarini, E. (2020). How to restart? An agent-based simulation model towards the definition of strategies for COVID-19\" second phase\" in public buildings. arXiv preprint arXiv:2004.12927.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Physics, Economics, Social Science, Miscellaneous" + }, + { + "id": 35475, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Dore, K. M., Sewell, D., Mattenet, E. M., & Turner, T. R. (2020). GIS and GPS Techniques in an Ethnoprimatological Investigation of St Kitts Green Monkey (Chlorocebus sabaeus) Crop-Foraging Behavior. Spatial Analysis in Field Primatology: Applying GIS at Varying Scales, 403.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "GIS, Field Primatology, Astronomy, Archaeology, Spatial Analysis, Crop-Foraging" + }, + { + "id": 35476, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Dos Santos, A. T., Machado, C. M., & Adamatti, D. F. (2020). Circadian Rhythm and Pain: Mathematical Model based on Multiagent Simulation. Journal of Medical Systems, 44(10), 1-9.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Simulation" + }, + { + "id": 35477, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Dou, Y., Xue, X., Wu, C., Luo, X., & Wang, Y. (2020). Interorganizational Diffusion of Prefabricated Construction Technology: Two-Stage Evolution Framework. Journal of Construction Engineering and Management, 146(9), 04020114.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Construction Engineering and Management, Diffusion, Economics, Management" + }, + { + "id": 35478, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Douglas, A., Mazzuchi, T., & Sarkani, S. (2020). A stakeholder framework for evaluating the\u2010ilities of autonomous behaviors in complex adaptive systems. Systems Engineering.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35479, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Drummond, F. A., & Collins, J. A. (2020). Field Perimeter Trapping to Manage Rhagoletis mendax (Diptera: Tephritidae) in Wild Blueberry. Journal of Economic Entomology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology" + }, + { + "id": 35480, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Du, J., Zhao, D., Issa, R. R., & Singh, N. (2020). BIM for Improved Project Communication Networks: Empirical Evidence from Email Logs. Journal of Computing in Civil Engineering, 34(5), 04020027.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35481, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Duarte, R. A., Silva, D. F., & Alvarado, M. (2020). Cancer metastasis and the immune system response: modeling the micro-environment by Ising hamiltonian. Suplemento de la Revista Mexicana de F\u00edsica, 1(4), 25-31.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Physics, Biology, Miscellaneous" + }, + { + "id": 35482, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Dubovi, I., Levy, S. T., Levy, M., Zuckerman Levin, N., & Dagan, E. (2020). Glycemic control in adolescents with type 1 diabetes: Are computerized simulations effective learning tools?. Pediatric Diabetes, 21(2), 328-338.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 35483, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "DuHadway, S., & Narasimhan, R. (2020). Subverting Process\u2010Based Controls: Oscillation in Automotive Recalls and a Simulation on Opportunism within a Network. Decision Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35484, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Eitzel, M. V., Solera, J., Wilson, K., Neves, K., Fisher, A., Veski, A., ... & Mhike Hove, E. (2020). Indigenous climate adaptation sovereignty in a Zimbabwean agro-pastoral system: exploring definitions of sustainability success using a participatory agent-based model. Ecology and Society, 25(4).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35485, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Eitzel, M. V., Solera, J., Wilson, K. B., Neves, K., Fisher, A. C., Veski, A., ... & Mhike Hove, E. (2020). Using mixed methods to construct and analyze a participatory agent-based model of a complex Zimbabwean agro-pastoral system. PloS one, 15(8), e0237638.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35486, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Elfakir, A., Tkiouat, M., Pakgohara, A., & Fairchild, R. (2020). Can Real Options Reduce Moral hazards in Profit and Loss sahring contracts?: A Behavioural Approach Using Game Theory and Agent Based Simulation.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Game Theory, Agent-Based Simulation, Economics" + }, + { + "id": 35487, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Elffers, H., Gerritsen, C., & Birks, D. (2020). Agent-based modeling for testing and developing theories. Agent-Based Modelling for Criminological Theory Testing and Development, 187.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35488, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "El-Khateeb, E., Burkhill, S., Murby, S., Amirat, H., Rostami-Hodjegan, A., & Ahmad, A. (2020). Physiological-based pharmacokinetic modeling trends in pharmaceutical drug.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Physiology" + }, + { + "id": 35489, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Elzinga, D. C., Boggess, E., Collignon, J., Riederer, A., & Capaldi, A. (2020). An agent\u2010based model determining a successful reintroduction of the extinct passenger pigeon. Natural Resource Modeling, e12292.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 35490, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Engebretsen, B. J. (2020). Teaching Through COVID-19 Part I: COVID-19, Public, and Global Health: It's Personal. Teaching through COVID-19 in Science Education and Civic Engagement, 12(2), 27.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "COVID-19, Public, Global Health" + }, + { + "id": 35491, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "ER\u00dcM\u0130T, A. K., \u00d6NG\u00d6Z, S., & AKSOY, D. A. (2020). Designing A Computer Programming Environment For Gifted Students: A Case Study.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35492, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Escudero Marin, P. (2020). Using agent-based modelling and simulation to model performance measurement in healthcare (Doctoral dissertation, Lancaster University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35493, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Evans, B. P., Glavatskiy, K., Harr\u00e9, M. S., & Prokopenko, M. (2020). The impact of social influence in Australian real-estate: market forecasting with a spatial agent-based model. arXiv preprint arXiv:2009.06914.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35494, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Evans, L. C., Oliver, T. H., Sims, I., Greenwell, M. P., Melero, Y., Watson, A., ... & Walters, R. J. (2020). Behavioural modes in butterflies: their implications for movement and searching behaviour. Animal Behaviour, 169, 23-33.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35495, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Ezzat, H. M. (2020). Behavioral agent-based framework for interacting financial markets. Review of Economics and Political Science.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35496, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Fajardo, S., Hofstede, G. J., de Vries, M., Kramer, M. R., & Bernal, A. (2020). Gregarious Behavior, Human Colonization and Social Diferentiation: An Agent-based Model. SocArXiv. September, 26.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35497, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Farjamirad, M., & Niknami, K. A. (2020). Frequency of Using Stone Ossuaries in Marvdasht Plain (Fourth\u2013Seventh Century AD): Explaining Funerary Patterns Through Agent-Based Modelling. In Archaeology of Iran in the Historical Period (pp. 363-371). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Archaeology, Biology, Miscellaneous" + }, + { + "id": 35498, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Fard, G. G., Bradley, E., & Peleg, O. (2020). Data-Driven Modeling of Resource Distribution in Honeybee Swarms. bioRxiv.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Data Science, Computer Science, Economics, Physics, Chemistry, Ecology" + }, + { + "id": 35499, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Faria, L. F. F. D., Asevedo, L. F. D., Vieira, J. G. V., & Silva, J. E. A. R. D. (2020). A combined approach of multiple-criteria decision analysis and discrete-event simulation: lessons learned from a fleet composition study. World Review of Intermodal Transportation Research, 9(2), 97-119.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35500, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Farias, G., Leitzke, B., Born, M., Aguiar, M., & Adamatti, D. (2020). Water Resources Analysis: An Approach based on Agent-Based Modeling. Revista de Inform\u00e1tica Te\u00f3rica e Aplicada, 27(2), 81-95.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 35501, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Farjam, M., & Bravo, G. (2020). Fixing Sample Biases in Experimental Data Using Agent-Based Modelling. In Advances in Social Simulation (pp. 155-159). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling" + }, + { + "id": 35502, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Fazio, C. (2020). Active Learning Methods and Strategies to Improve Student Conceptual Understanding: Some Considerations from Physics Education Research. In Research and Innovation in Physics Education: Two Sides of the Same Coin (pp. 15-35). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Physics, Education" + }, + { + "id": 35503, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Fedriani, J. M., Ayll\u00f3n, D., Wiegand, T., & Grimm, V. (2020). Intertwined effects of defaunation, increased tree mortality and density compensation on seed dispersal. Ecography.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35504, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Feinberg, A., Ghorbani, A., & Herder, P. M. (2020). Commoning toward urban resilience: The role of trust, social cohesion, and involvement in a simulated urban commons setting. Journal of Urban Affairs, 1-26.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35505, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Feinberg, A., Hooijschuur, E., & Ghorbani, A. (2020). Simulation of Behavioural Dynamics Within Urban Gardening Communities. In Advances in Social Simulation (pp. 161-167). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Social Science" + }, + { + "id": 35506, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Fekih, S. (2020). People Displacement in a Conflict Zone\u2013A Case Study of Mosul Battle, Iraq (Master's thesis, University of Twente).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35507, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Feliciani, T., Flache, A., & M\u00e4s, M. (2020). Persuasion without polarization? Modelling persuasive argument communication in teams with strong faultlines. Computational and Mathematical Organization Theory, 1-32.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35508, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Feliciani, T., Moorthy, R., Lucas, P., & Shankar, K. (2020). Grade Language Heterogeneity in Simulation Models of Peer Review. Journal of Artificial Societies and Social Simulation, 23(3), 1-8.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35509, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Ferreira, D. C. S., Tejada, J., & dos Santos Bispo, G. R. (2020). A NetLogo implementation of the norms and meta-norms game: Behavior Analysis meets Agent Based Modeling.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35510, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Fichera, A., Pluchino, A., & Volpe, R. (2020). From self-consumption to decentralized distribution among prosumers: A model including technological, operational and spatial issues. Energy Conversion and Management, 217, 112932.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35511, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Fichera, A., Pluchino, A., & Volpe, R. (2020). Modelling Energy Distribution in Residential Areas: A Case Study Including Energy Storage Systems in Catania, Southern Italy. Energies, 13(14), 3715.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35512, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Fioretti, G., & Lomi, A. (2020). Emergence of Organizations out of Garbage Can Dynamics. Available at SSRN 3581357.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35513, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Fioretti, G., & Policarpi, A. (2020). The Less Intelligent the Elements, the More Intelligent the Whole. Or, Possibly Not?. Or, Possibly Not.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 35514, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Flood, V. J., Shvarts, A., & Abrahamson, D. (2020).\u00a0Teaching with embodied learning technologies for mathematics: Responsive teaching for embodied learning. ZDM Mathematics Education, 52(7), 1307-1331.\u00a0https://doi.org/10.1007/s11858-020-01165-7", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Education" + }, + { + "id": 35515, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Fouladvand, J., Mouter, N., Ghorbani, A., & Herder, P. (2020). Formation and Continuation of Thermal Energy Community Systems: An Explorative Agent-Based Model for the Netherlands. Energies, 13(11), 2829.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Miscellaneous" + }, + { + "id": 35516, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Fr\u00e4nken, J. P., & Pilditch, T. (2020). Cascades across networks are sufficient for the formation of echo chambers: An agent-based model.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35517, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Frantz, C. K. (2020). Impact of Meta-roles on the Evolution of Organisational Institutions. In Multi-Agent-Based Simulation XXI: 21st International Workshop, MABS 2020, Auckland, New Zealand, May 10, 2020, Revised Selected Papers (p. 66). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35518, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Friedrich, I. D., Hirnsperger, M., & Bauer, S. Understanding the Demographic Future of Small Arctic Villages Using Agent-Based Modeling.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35519, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Fu, Q., Tian, Y., & Sun, J. (2020). Integration of an Agent-Based Joint Route and Departure Time Choice Model with the Dynamic Traffic Assignment Package. In CICTP 2020 (pp. 3087-3099).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35520, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "F\u00fcllsack, M., Kapeller, M., Plakolb, S., & J\u00e4ger, G. (2020). Training LSTM-Neural Networks on Early Warning Signals of declining cooperation in simulated Repeated Public Good Games. MethodsX, 100920.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, LSTM, Neural Networks, Computer Science, MethodsX" + }, + { + "id": 35521, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Gah, E. (2020). Ant-Inspired Control Strategies for Collective Transport by Dynamic Multi-Robot Teams with Temporary Leaders (Doctoral dissertation, Arizona State University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35522, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Gajary, L. C. (2020). Hybridizing agent-based with system dynamics models: principles for theory development in public policy and management research. Handbook of Research Methods in Public Administration, Management and Policy, 63.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, System Dynamics, Research Methods, Public Administration, Management, Policy" + }, + { + "id": 35523, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Galindro, A., Matias, J., Cerveira, A., Santos, C., & Marta-Costa, A. (2020). Prediction of Viticulture Farms Behaviour: An Agent-Based Model Approach. In The Changing Role of SMEs in Global Business (pp. 155-178). Palgrave Macmillan, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35524, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Gallagher, C. A., Grimm, V., Kyhn, L. A., Kinze, C. C., & Nabe-Nielsen, J. (2020). Movement and seasonal energetics mediate vulnerability to disturbance in marine mammal populations.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35525, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Gao, J., Zheng, D., & Yang, S. (2020). Perceiving spatiotemporal traffic anomalies from sparse representation-modeled city dynamics. Personal and Ubiquitous Computing, 1-14.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Economics" + }, + { + "id": 35526, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Gao, S., Song, X., & Ding, R. (2020). Promoting Information Transfer in Collaborative Projects through Network Structure Adjustment. Journal of Construction Engineering and Management, 146(2), 04019108.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Network Structure, Computer Science, Management" + }, + { + "id": 35527, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Garc\u00eda, A. P., & Rodr\u00edguez-Pat\u00f3n, A. (2020). Applying Evolutionary Metaheuristics for Parameter Estimation of Individual-Based Models. arXiv preprint arXiv:2005.12841.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35528, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Garcia Filho, C. (2020). Simulating social distancing measures in household and close contact transmission of SARS-CoV-2. Cadernos de Sa\u00fade P\u00fablica, 36(5).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35529, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Garibo i Orts, \u00d3., Conejero, J. A., & Urchuegu\u00eda, J. F. (2020). Rational Design of a Genetic Finite State Machine: Combining Biology, Engineering, and Mathematics for Bio-Computer Research. Mathematics, 8(8), 1362.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Engineering, Computer Science" + }, + { + "id": 35530, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Garrigan, S. R. (2020). Frameworks for Integration of Future-Oriented Computational Thinking in K-12 Schools. In Handbook of Research on Integrating Computer Science and Computational Thinking in K-12 Education (pp. 30-44). IGI Global.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science, Computational Thinking" + }, + { + "id": 35531, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Gatto, J. V., & Trexler, J. C. (2020). Speed and directedness predict colonization sequence post-disturbance. Oecologia, 1-15.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 35532, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Gautam, A., Bortz, W., & Tatar, D. (2020, February). Abstraction Through Multiple Representations in an Integrated Computational Thinking Environment. In Proceedings of the 51st ACM Technical Symposium on Computer Science Education (pp. 393-399).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 35533, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Geaves, L. (2020). Agent-Based Modeling of Flood Insurance Futures. In Oxford Research Encyclopedia of Natural Hazard Science.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35534, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Gendreau Chakarov, A., Biddy, Q., Jacobs, J., Recker, M., & Sumner, T. (2020, August). Opening the Black Box: Investigating Student Understanding of Data Displays Using Programmable Sensor Technology. In Proceedings of the 2020 ACM Conference on International Computing Education Research (pp. 291-301).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Data Displays, Programmable Sensor Technology" + }, + { + "id": 35535, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Gerritsen, C., & Elffers, H. (2020). Agent-based modeling for criminological theory testing and development. Agent-Based Modelling for Criminological Theory Testing and Development, 1.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35536, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Gersie, S. (2020). PREDICTING CATTLE GRAZING DISTRIBUTIONS: AN AGENT-BASED MODELING APPROACH. 2020-CSU Theses and Dissertations.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Artificial Intelligence" + }, + { + "id": 35537, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Gesell, S. B., de la Haye, K., Sommer, E. C., Saldana, S. J., Barkin, S. L., & Ip, E. H. (2020). Identifying Social Network Conditions that Facilitate Sedentary Behavior Change: The Benefit of Being a \u201cBridge\u201d in a Group-based Intervention. International Journal of Environmental Research and Public Health, 17(12), 4197.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35538, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Geyer, J., Nguyen, J., Farrenkopf, T., & Guckert, M. (2020, October). AGADE Traffic 2.0-A Knowledge-Based Approach for Multi-agent Traffic Simulations. In International Conference on Practical Applications of Agents and Multi-Agent Systems (pp. 417-420). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Archaeology, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35539, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Ghaitaranpour, A., Mohebbi, M., Koocheki, A., & Ngadi, M. O. (2020). An agent-based coupled heat and water transfer model for air frying of doughnut as a heterogeneous multiscale porous material. Innovative Food Science & Emerging Technologies, 102335.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Heat Transfer, Porous Materials, Computer Science, Food Science, Ecology, Physics, Modeling, Heat, Water, Engineering" + }, + { + "id": 35540, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Gharakhanlou, N. M., & Hooshangi, N. (2020, July). Spatio-temporal simulation of the novel coronavirus (COVID-19) outbreak using the agent-based modeling approach (case study: Urmia, Iran). Informatics in Medicine Unlocked, 20.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35541, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Gharakhanlou, N. M., Hooshangi, N., & Helbich, M. (2020). A Spatial Agent-Based Model to Assess the Spread of Malaria in Relation to Anti-Malaria Interventions in Southeast Iran. ISPRS International Journal of Geo-Information, 9(9), 549.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Malaria, Spatial Analysis, Computer Science, Geography, Economics, Iran, Interventions" + }, + { + "id": 35542, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Gilbert, L. Teaching Geoscience Tools for Addressing Societal Grand Challenges: A Unique Study-Away Experience During COVID-19. Teaching through COVID-19, 32.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Teaching" + }, + { + "id": 35543, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Girwidz, R. (2020). Simulating waves and macroscopic phonons. European Journal of Physics.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Physics" + }, + { + "id": 35544, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Gkiolmas, A., Stoumpa, A., Chalkidis, A., & Skordoulis, C. (2020). A Combination of Historical Physics Documents and Other Teaching Tools for the Instruction of Prospective Teachers in Chaos and Complexity. In Fundamental Physics and Physics Education Research (pp. 251-261). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Physics" + }, + { + "id": 35545, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Godois, L. M., Adamatti, D. F., & Emmendorfer, L. R. (2020). A multi-agent-based algorithm for data clustering. Progress in Artificial Intelligence, 1-9.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 35546, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Gomes, E., Banos, A., Abrantes, P., Rocha, J., & Schl\u00e4pfer, M. (2020). Future land use changes in a peri-urban context: Local stakeholder views. Science of The Total Environment, 137381.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35547, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Gomez, M. M., & Weiss, M. B. (2020). A comprehensive secondary market model for virtualized wireless connectivity. Telecommunications Policy, 44(10), 102021.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35548, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Gona, R. (2020). Application of Micro Cloud for Cooperative Vehicles (Doctoral dissertation, Southern Illinois University at Carbondale).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Archaeology, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35549, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Gong, Y. (2020). Influence Among Preferences and Its Transformation to Behaviors in Groups. In Group Decision and Negotiation: A Multidisciplinary Perspective: 20th International Conference on Group Decision and Negotiation, GDN 2020, Toronto, ON, Canada, June 7\u201311, 2020, Proceedings (p. 104). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Group Decision and Negotiation" + }, + { + "id": 35550, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Gonz\u00e1lez-M\u00e9ndez, M., Olaya, C., Fasolino, I., Grimaldi, M., & Obreg\u00f3n, N. (2020). Agent-Based Modeling for Urban Development Planning based on Human Needs. Conceptual Basis and Model Formulation. Land Use Policy, 105110.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35551, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Grajdura, S. A., Borjigin, S. G., & Niemeier, D. A. (2020, November). Agent-based wildfire evacuation with spatial simulation: a case study. In Proceedings of the 3rd ACM SIGSPATIAL International Workshop on GeoSpatial Simulation (pp. 56-59).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Simulation, Spatial Simulation, Fire" + }, + { + "id": 35552, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Grantham, E. O., & Giabbanelli, P. J. (2020, May). Creating perceptual uncertainty in agent-based models with social interactions. In Proceedings of the 2020 Spring Simulation Conference (pp. 1-12).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35553, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Gravel-Miguel, C., & Coward, F. Palaeolithic Social Networks and Behavioural Modernity. In Brughmans, T., Mills, B., Munson, J., & Peeples, M. (eds.), The Oxford Handbook of Archaeological Network Research. Oxford: Oxford University Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Archaeology, Social Science" + }, + { + "id": 35554, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Greco, A., Pluchino, A., Caddemi, S., Cali\u00f2, I., & Cannizzaro, F. (2020). On profile reconstruction of Euler\u2013Bernoulli beams by means of an energy based genetic algorithm. Engineering with Computers, 36(1), 239-250.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Engineering, Genetics" + }, + { + "id": 35555, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Greenberg, B. (2020). Improving Information Exchange in Disaster Response: Responder Behavior and the Effects of Organizational Design (Doctoral dissertation, The George Washington University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35556, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Green, D. G., Klomp, N. I., Rimmington, G., & Sadedin, S. (2020). Virtual Worlds: The Role of Simulation in Ecology. In Complexity in Landscape Ecology (pp. 177-195). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Simulation, Computer Science, Landscape Ecology" + }, + { + "id": 35557, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Gregg, R. (2020). Multi-Scale Modeling of the Innate Immune System: A Dynamic Investigation into Pathogenic Detection (Doctoral dissertation, University of Pittsburgh).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35558, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Gresalfi, M., Brady, C., Knowe, M., & Steinberg, S. (2020). Engaging in a New Practice: What Are Students Doing When They Are \u201cDoing\u201d Debugging?.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35559, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Grimm, V., Railsback, S. F., Vincenot, C. E., Berger, U., Gallagher, C., DeAngelis, D. L., ... & Johnston, A. S. (2020). The ODD protocol for describing agent-based and other simulation models: A second update to improve clarity, replication, and structural realism. Journal of Artificial Societies and Social Simulation, 23(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35560, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Groff, E. R., & Badham, J. (2020). Examining guardianship against theft. Agent-Based Modelling for Criminological Theory Testing and Development, 71.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35561, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "GRONAU, S., HADERSDORFER, J., N\u00d6LDEKE, B., PETRUSJANZ, N., ST\u00dcTZEL, H., & WINTER, E. (2020). Food security in rural Zambia.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35562, + "sort": null, + "year": 2020, + "is_ccl": true, + "reference": "Grover, S., Ventures, L. G., Biswas, G., Farris, A. V., Sengupta, P., Covitt, B. A., ... & Horn, M. (2020). Integrating STEM and Computing in PK-12: Operationalizing Computational Thinking for STEM Learning and Assessment. The Interdisciplinarity of the Learning Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "STEM, Computing, Learning Sciences" + }, + { + "id": 35563, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Guerrin, F. (2020). Agent-Based Modelling of a Simple Synthetic Rangeland Ecosystem. In Landscape Modelling and Decision Support (pp. 179-215). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 35564, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Gulied, M., Al Nouss, A., Khraisheh, M., & AlMomani, F. (2020). Modeling and simulation of fertilizer drawn forward osmosis process using Aspen Plus-MATLAB model. Science of The Total Environment, 700, 134461.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Modeling and simulation" + }, + { + "id": 35565, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Gumzej, R., & Rakovska, M. (2020). Simulation Modeling and Analysis for Sustainable Supply Chains. In Sustainable Logistics and Production in Industry 4.0 (pp. 145-160). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Simulation Modeling, Analysis, Sustainable Logistics, Production, Industry 4.0" + }, + { + "id": 35566, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Guo, X., Chen, J., Azizi, A., Fewell, J., & Kang, Y. (2020). Dynamics of Social Interactions, in the Flow of Information and Disease Spreading in Social Insects Colonies: Effects of Environmental Events and Spatial Heterogeneity. Journal of Theoretical Biology, 110191.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 35567, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Hadjimichael, A., Gold, D., Hadka, D., & Reed, P. (2020). Rhodium: Python Library for Many-Objective Robust Decision Making and Exploratory Modeling. Journal of Open Research Software, 8(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 35568, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Hai-xiang, G. U. O., Jin-ling, L. I., Long-hui, L. I. U., & Xiao-ling, K. E. (2020). \u0439 \u023a \u0771 \u0136 Agent . \u03f5\u0373 \u0467 , 22(4), 579-585.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35569, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Hajmohammad, S., & Shevchenko, A. (2020). Mitigating sustainability risk in supplier populations: an agent-based simulation study. International Journal of Operations & Production Management.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Sociology, Computer Science, Physics, Ecology, Management, Simulation, Statistics" + }, + { + "id": 35570, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Hall, S. M. (2020). Opportunities and Obstacles in the Transition to a Distributed Network of Rooftop Solar: A Multi-Method Approach.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35571, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Han, C. K., Sadiq, A. S., Mirjalili, S., & Tahir, A. (2020). Trust aware crowd associated network-based approach for optimal waste management in smart cities.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35572, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Han, X. (2020, December). Influence of exits and evacuees on evacuation efficiency. In IOP Conference Series: Earth and Environmental Science (Vol. 608, No. 1, p. 012031). IOP Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35573, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Hana\u010dek, K., Langemeyer, J., Bileva, T., & Rodr\u00edguez-Labajos, B. Understanding environmental conflicts through cultural ecosystem services-the case of agroecosystems in Bulgaria. Ecological Economics, 179, 106834.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 35574, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Hannoun, G. J., Murray-Tuite, P., Heaslip, K., & Chantem, T. (2020). Meso-and Micro-scopic Routing of an Emergency Response Vehicle with Connected Vehicle Technologies.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35575, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Hartbauer, M. (2020). From Insect Vision to a Novel Bio-Inspired Algorithm for Image Denoising. In Bio-Inspired Technology. IntechOpen.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 35576, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Hartmann, S. (2020). A Conversation about Modeling in Philosophy.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Philosophy" + }, + { + "id": 35577, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Hasbach, J. D., Witte, T. E., & Bennewitz, M. (2020, July). On the Importance of Adaptive Operator Training in Human-Swarm Interaction. In International Conference on Human-Computer Interaction (pp. 311-329). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35578, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Hassan, I. M., & Hassan, K. R. (2020). Vehicular Social Networks and Vehicular Ad-hoc Networks, Applications, Modelling Tools and Challenges: A Survey. International Journal of Computer Applications, 975, 8887.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 35579, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Hasson, S. T., & Hussein, Z. (2020, February). Correlation among network centrality metrics in complex networks. In 2020 6th International Engineering Conference \u201cSustainable Technology and Development\"(IEC) (pp. 54-58). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Network Theory, Computer Science, Engineering" + }, + { + "id": 35580, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Hauke, J., Achter, S., & Meyer, M. (2020). Theory development via replicated simulations and the added value of standards. The journal of artificial societies and social simulation, 23(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35581, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "He, Z., Huang, D., Fang, J., & Wang, B. (2020). Stakeholder Conflict Amplification of Large-Scale Engineering Projects in China: An Evolutionary Game Model on Complex Networks. Complexity, 2020.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35582, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Healy, C., Pekins, P. J., Atallah, S., & Congalton, R. G. (2020). Using agent-based models to inform the dynamics of winter tick parasitism of moose. Ecological Complexity, 41, 100813.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 35583, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Helikar, T. (2020). The Need for Research-Grade Systems Modeling Technologies for Life Science Education. Trends in Molecular Medicine.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 35584, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Herberich, M. M., Gayler, S., Anand, M., & Tielb\u00f6rger, K. (2020). Biomass\u2013density relationships of plant communities deviate from the self\u2010thinning rule due to age structure and abiotic stress. Oikos.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology" + }, + { + "id": 35585, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Hern\u00e1ndez, P., Pena, C., Ramos, A., & G\u00f3mez-Cadenas, J. J. (2020). A simple formulation of non-Markovian SEIR. arXiv preprint arXiv:2005.09975.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology" + }, + { + "id": 35586, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Hess, B., Dreber, N., Liu, Y., Wiegand, K., Ludwig, M., Meyer, H., & Meyer, K. M. (2020). PioLaG: a piosphere landscape generator for savanna rangeland modelling. Landscape Ecology, 1-22.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 35587, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Highlander, H., & Singley, A. (2020). COVID-19: A Mathematical Model for the Effect of Social Distancing on the Spread of COVID-19. Letters in Biomathematics.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Econometrics, Computer Science" + }, + { + "id": 35588, + "sort": null, + "year": 2020, + "is_ccl": true, + "reference": "Hjorth, A., Head, B., Brady, C. & Wilensky, U. (2020). LevelSpace \u2013 a NetLogo Extension for Multi-Level Agent-Based Modeling. Journal of Artificial Societies and Social Simulation, Journal of Artificial Societies and Social Simulation, vol. 23(1), pages 1-4.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35589, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Hoffmann, B., Urquhart, N., Chalmers, K., & Guckert, M. (2020). Athos: An Extensible DSL for Model Driven Traffic and Transport Simulation. Modellierung 2020.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 35590, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Hokamp, S. Agent-based Modeling of Human Exposure to Urban Environmental Stressors\u2013A Docking Study.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 35591, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Hooten, M., Wikle, C., & Schwob, M. (2020). Statistical Implementations of Agent\u2010Based Demographic Models. International Statistical Review.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Statistical Implementations" + }, + { + "id": 35592, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Hou, J., Yu, T., & Xiao, R. (2020, September). Structure Reversal of Online Public Opinion for the Heterogeneous Health Concerns under NIMBY Conflict Environmental Mass Events in China. In Healthcare (Vol. 8, No. 3, p. 324). Multidisciplinary Digital Publishing Institute.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35593, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Hsiao, Y. (2020). Evaluating the Mobilization Effect of Online Political Network Structures: A Comparison between the Black Lives Matter Network and Ideal Type Network Configurations. Social Forces.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35594, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Huang, M., & Pape, A. D. (2020). The Impact of Online Consumer Reviews on Online Sales: The Case-Based Decision Theory Approach. Journal of Consumer Policy, 1-28.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35595, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Huber, R., Hang, X., Keller, K., & Finger, R. (2020). FARMIND: Farm Interaction and Decision Model.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35596, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Hui, W., Xin-gang, Z., Ling-zhi, R., & Fan, L. (2020). An agent-based modeling approach for analyzing the influence of market participants' strategic behavior on green certificate trading. Energy, 119463.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35597, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Hussein, S. E. (2020). Rehabilitation Center Planning using Multi-agent Systems (Dept. E). MEJ. Mansoura Engineering Journal, 34(1), 22-30.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 35598, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Husssein, A. A., Salman, M. A., Al Essa, H. A., & Hussein, N. Y. (2020). Developing Agent-Based Model for Colorization. Journal of University of Babylon for Pure and Applied Sciences, 147-157.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 35599, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Hutchins, N. M., Biswas, G., Mar\u00f3ti, M., L\u00e9deczi, \u00c1., Grover, S., Wolf, R., ... & McElhaney, K. (2020). C2STEM: a System for Synergistic Learning of Physics and Computational Thinking. Journal of Science Education and Technology, 29(1), 83-100.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Physics, Computer Science, Chemistry, Ecology, Mathematics, Education" + }, + { + "id": 35600, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Hutchins, N. M., Biswas, G., Wolf, R. C., Chin, D. B., Grover, S., Ventures, L. G., & Blair, K. P. (2020). Computational Thinking in Support of Learning and Transfer. The Interdisciplinarity of the Learning Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35601, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Hutchins, N. M., Biswas, G., Zhang, N., Snyder, C., L\u00e9deczi, \u00c1., & Mar\u00f3ti, M. (2020). Domain-Specific Modeling Languages in Computer-Based Learning Environments: a Systematic Approach to Support Science Learning through Computational Modeling. International Journal of Artificial Intelligence in Education, 1-44.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Artificial Intelligence, Education" + }, + { + "id": 35602, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Hwang, I. (2020). An Agent-Based Model of Firm Size Distribution and Collaborative Innovation. Journal of Artificial Societies and Social Simulation, 23(1), 1-9.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35603, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Iasiello, C. A. (2020, May). Using agent based modeling to interpret underlying factors of underrepresentation of minorities in Hollywood films. In Proceedings of the 2020 Spring Simulation Conference (pp. 1-12).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35604, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Iasiello, C., Crooks, A., & Wittman, S. (2020, October). The Human Resource Management Parameter Experimentation Tool. In International Conference on Social Computing, Behavioral-Cultural Modeling and Prediction and Behavior Representation in Modeling and Simulation (pp. 298-307). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Social Science, Computer Science" + }, + { + "id": 35605, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Ibrahim, B. K., Mahdi, M. A., & Salman, M. A. (2020, April). Triple Mobile Anchors Approach for Localization in WSN. In 2020 International Conference on Computer Science and Software Engineering (CSASE) (pp. 174-179). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 35606, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Imran, M., Rodrigues, J. J., Kamal, A. E., Ahmed, E., Xia, F., & Awan, I. (2020). IEEE Access Special Section Editorial: Survivability Strategies for Emerging Wireless Networks. IEEE Access, 8, 225219-225225.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "* Computer Science\n* Biology\n* Ecology\n* Physics\n* Miscellaneous" + }, + { + "id": 35607, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Innocenti, E., Detotto, C., Idda, C., Parker, D. C., & Prunetti, D. (2020). An iterative process to construct an interdisciplinary ABM using MR POTATOHEAD: An application to Housing Market Models in touristic areas. Ecological Complexity, 44, 100882.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35608, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Insua, D. R., Baylon, C., & Vila, J. (Eds.). (2020). Security Risk Models for Cyber Insurance. CRC Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35609, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Ionu\u021b, N. I. C. A. (2020). Simulation of financial contagion effect using the NetLogo software at the level of the banking network. Theoretical and Applied Economics, 22(3 (624), Autumn), 55-74.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Computer Science, Physics, Chemistry, Mathematics, Theory" + }, + { + "id": 35610, + "sort": null, + "year": 2020, + "is_ccl": true, + "reference": "Irgens, G. A., Dabholkar, S., Bain, C., Woods, P., Hall, K., Swanson, H., ... & Wilensky, U. (2020). Modeling and Measuring High School Students\u2019 Computational Thinking Practices in Science. Journal of Science Education and Technology, 29(1), 137-161.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Ecology, Urban Studies" + }, + { + "id": 35611, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Isgro, F. (2020). Fuselage Design Studies to Improve Boarding Performance of Novel Passenger Aircraft: An Approach from Knowledge-Based Engineering and Agent-Based Modelling.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Engineering, Modelling" + }, + { + "id": 35612, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Ivanek, R., & Wiedmann, M. (2020). CPS 2018 RFP FINAL PROJECT REPORT.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Miscellaneous" + }, + { + "id": 35613, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Ivars-Silva, F., Rossetti, R. J., & Porto, P. (2020). Emotional Contagion Modeled Through the Empathy Quotient: An Epidemiological Analogy Towards Social Sustainability. In 2020 IEEE International Smart Cities Conference (ISC2) (pp. 1-8). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35614, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Izquierdo, S. S., & Izquierdo, L. R. \u201cTEST TWO, CHOOSE THE BETTER\u201d LEADS TO HIGH COOPERATION IN THE CENTIPEDE GAME.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 35615, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Jablonski, K. E., Boone, R. B., & Meiman, P. J. (2020). Predatory plants and patchy cows: modeling cattle interactions with toxic larkspur amid variable heterogeneity. Rangeland Ecology & Management, 73(1), 73-83.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 35616, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Jacobson, M. J., Goldwater, M., Markauskaite, L., Lai, P. K., Kapur, M., Roberts, G., & Hilton, C. (2020). Schema abstraction with productive failure and analogical comparison: Learning designs for far across domain transfer. Learning and Instruction, 65, 101222.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Schema abstraction, productive failure, analogical comparison" + }, + { + "id": 35617, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Jacquet, J. M., & Barkallah, M. (2020). Anemone: A workbench for the Multi-Bach coordination language. Science of Computer Programming, 102579.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 35618, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Jaffer, M. A. (2020, November). Can Zakat Charity Help Reduce Economic Inequality?. In International Conference of Zakat (pp. 279-294).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Zakat charity" + }, + { + "id": 35619, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Jager, W., Abramczuk, K., Komendant-Brodowska, A., Baczko-Dombi, A., Fecher, B., Sokolovska, N., & Spits, T. (2020). Looking into the Educational Mirror: Why Computation Is Hardly Being Taught in the Social Sciences, and What to Do About It. In Advances in Social Simulation (pp. 239-245). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35620, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Jager, W., & Yamu, C. (2020). 19. Simulating community dynamics for transitional urban planning processes. Handbook on Planning and Complexity, 373.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35621, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Jagielski, P. M. (2020). Exploring the Energetic Consequences and Decision-Making Behaviours of Polar Bears (Ursus maritimus) Foraging on Common Eider (Somateria mollissima) Seaduck Eggs on Mitivik Island, Nunavut (Doctoral dissertation, University of Windsor (Canada)).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35622, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Jayadevan, A., Nayak, R., Karanth, K. K., Krishnaswamy, J., DeFries, R., Karanth, K. U., & Vaidyanathan, S. (2020). Navigating paved paradise: Evaluating landscape permeability to movement for large mammals in two conservation priority landscapes in India. Biological Conservation, 247, 108613.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35623, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Jessica, S. Y. (2020). Multi-Scale, Multi-Class Agent-Based Models of Biological Systems (Doctoral dissertation, Northwestern University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 35624, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Jiang, F., Zhang, J., & Zhao, X. (2020). Research on the influence mechanism of resettlers participation in migrant work in the context of relationship network. Peer-to-Peer Networking and Applications, 1-10.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35625, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Jiang, G., Feng, X., Liu, W., & Liu, X. (2020). Clicking position and user posting behavior in online review systems: A data-driven agent-based modeling approach. Information Sciences, 512, 161-174.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35626, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Jiang, H., Chen, C., Zhao, S., & Wu, Y. (2020). Evolution of a Technology Standard Alliance Based on an Echo Model Developed through Complex Adaptive System Theory. Complexity, 2020.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35627, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Jiang, X., & Zhao, B. (2020). Modeling on the epidemic of coronavirus disease 2019. J Bio Med Open Access, 1(1), 103.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Coronavirus disease 2019" + }, + { + "id": 35628, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Jimenez, A. F., Cardenas, P. F., Canales, A., Jimenez, F., & Portacio, A. (2020). A survey on intelligent agents and multi-agents for irrigation scheduling. Computers and Electronics in Agriculture, 105474.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35629, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Johanes, P. (2020). Technology as a Gateway to a Philosophy of the Learning Sciences. Stanford University.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35630, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Joshi, M. Y., Flacke, J., & Schwarz, N. (2020). Do microfinance institutes help slum-dwellers in coping with frequent disasters? An agent-based modelling study. International Journal of Disaster Risk Reduction, 101627.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35631, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Kaaronen, R. O., & Strelkovskii, N. (2020). Cultural Evolution of Sustainable Behaviors: Pro-environmental Tipping Points in an Agent-Based Model. One Earth, 2(1), 85-97.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35632, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Kabora, T. K., Stump, D., & Wainwright, J. (2020). How did that get there? Understanding sediment transport and accumulation rates in agricultural landscapes using the ESTTraP agent-based model. Journal of Archaeological Science: Reports, 29, 102115.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Sediment transport, Agricultural landscapes, Agent-based model, Archaeology" + }, + { + "id": 35633, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Kafai, Y., Hutchins, N., Snyder, C., Brennan, K., Haduong, P., DesPortes, K., ... & Fields, D. (2020). Turning Bugs into Learning Opportunities: Understanding Debugging Processes, Perspectives and Pedagogies.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35634, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Kaiser, K. E., Flores, A. N., & Vernon, C. R. (2020). Janus: A Python Package for Agent-Based Modeling of Land Use and Land Cover Change. Journal of Open Research Software, 8(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35635, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Kaligotla, C., Y\u00fccesan, E., & Chick, S. E. (2020). Diffusion of competing rumours on social media. Journal of Simulation, 1-21.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Sociology, Computer Science, Economics" + }, + { + "id": 35636, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Kampik, T., & Najjar, A. (2020). Simulating, Off-Chain and On-Chain: Agent-Based Simulations in Cross-Organizational Business Processes. Information, 11(1), 34.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35637, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Kantasa-ard, A., Nouiri, M., Bekrar, A., Ait el cadi, A., & Sallez, Y. (2020). Machine learning for demand forecasting in the physical internet: a case study of agricultural products in Thailand. International Journal of Production Research, 1-25.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35638, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Karimi, M. J., & Vaez-Zadeh, S. (2020). An Agent-Based Model for Electric Energy Policy Assessment. Electric Power Systems Research, 106903.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35639, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Karnouskos, S., Leitao, P., Ribeiro, L., & Colombo, A. W. (2020). Industrial Agents as a Key Enabler for Realizing Industrial Cyber-Physical Systems: Multiagent Systems Entering Industry 4.0. IEEE Industrial Electronics Magazine, 14(3), 18-32.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35640, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Karsai, I., Schmickl, T., & Kampis, G. (2020). Forest Fires: Fire Management and the Power Law. In Resilience and Stability of Ecological and Social Systems (pp. 63-77). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 35641, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Karsai, I., Schmickl, T., & Kampis, G. (2020). Habitat Fragmentation. In Resilience and Stability of Ecological and Social Systems (pp. 47-61). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35642, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Katerndahl, D. A., Burge, S. K., Ferrer, R. L., Wood, R., & Montanez Villacampa, M. D. P. (2020). Modeling Women\u2019s Need For Action in Violent Relationships. Journal of interpersonal violence, 0886260519900943.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35643, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Katz, K., & Naug, D. (2020). A mechanistic model of how metabolic rate can interact with resource environment to influence foraging success and lifespan. Ecological Modelling, 416, 108899.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 35644, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Kaur, H., Kaur, H., & Singh, A. (2020). Multi-agent Based Recommender System for Netflix. In Proceedings of International Conference on IoT Inclusive Life (ICIIL 2019), NITTTR Chandigarh, India (pp. 211-221). Springer, Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Recommendation Systems, Internet, Computer Science, Economics" + }, + { + "id": 35645, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Kazil, J., Masad, D., & Crooks, A. (2020, October). Utilizing Python for Agent-Based Modeling: The Mesa Framework. In International Conference on Social Computing, Behavioral-Cultural Modeling and Prediction and Behavior Representation in Modeling and Simulation (pp. 308-317). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35646, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Kelsey, J., & Kadivar, S. (2020). Stakeholder-driven design and appraisal in hydroelectric projects: a participatory gaming approach.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35647, + "sort": null, + "year": 2020, + "is_ccl": true, + "reference": "Kelter, J. Z., Peel, A., Bain, C., Anton, G., Dabholkar, S., Aslan, \u00dc., Horn, M., & Wilensky, U. (2020). Seeds of (r)Evolution: Constructionist Co-Design with High School Science Teachers. In B. Tangney, J. Rowan Byrne, & C. Girvan (Eds.), Proceedings of the 2020 Constructionism Conference, Dublin, Ireland, May 26\u2014May 29, 2020 (p.497-505). (ISBN 978-1-911566-09-0)", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Constructionism, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35648, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Khadim, S., Riaz, F., Jabbar, S., Khalid, S., & Aloqaily, M. (2020). A non-cooperative rear-end collision avoidance scheme for non-connected and heterogeneous environment. Computer Communications, 150, 828-840.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Miscellaneous" + }, + { + "id": 35649, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Khan, I., Lewis, M., & Ca\u00f1amero, L. (2020, July). Modelling the Social Buffering Hypothesis in an Artificial Life Environment. In Artificial Life Conference Proceedings (pp. 393-401). One Rogers Street, Cambridge, MA 02142-1209 USA journals-info@ mit. edu: MIT Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35650, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Khansari, N., & Hewitt, E. (2020). Incorporating an agent-based decision tool to better understand occupant pathways to GHG reductions in NYC buildings. Cities, 97, 102503.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35651, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Kharlov, L. (2020). Modelling the Disruptive Innovations. Review of Business and Economics Studies, (3).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35652, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Khelfa, B., & Tordeux, A. (2020). DYNAMIC SAFETY ANALYSIS FOR AUTOMATED DRIVING.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35653, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Kim, I., & Kwon, H. (2020). Assessing the Impacts of Urban Land Use Changes on Regional Ecosystem Services According to Urban Green Space Policies Via the Patch-Based Cellular Automata Model. Environmental Management, 1-13.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Urban Studies" + }, + { + "id": 35654, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Kla\u00dfmann, S., Dahmen, N., & Seifert, U. (2020). A Digital Habitat for interdisciplinary music research and teaching.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35655, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Kn\u00f6\u00f6s Franz\u00e9n, L., Sch\u00f6n, S., Papageorgiou, A., Staack, I., \u00d6lvander, J., Krus, P., ... & Jouannet, C. (2020). A System of Systems Approach for Search and Rescue Missions. In AIAA Scitech 2020 Forum (p. 0455).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35656, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Koehler, M., Slater, D. M., Jacyna, G., & Thompson, J. R. (2020). Modeling COVID-19 for lifting non-pharmaceutical interventions. medRxiv.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35657, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Ko\u013evekov\u00e1, G., Raisov\u00e1, M., Zori\u010dak, M., & Gazda, V. (2020). Endogenous Shared Punishment Model in Threshold Public Goods Games. Computational Economics, 1-25.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35658, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Kooi, B. W., & Kooijman, S. A. L. M. (2020). A cohort projection method to follow deb-structured populations with periodic, synchronized and iteroparous reproduction. Ecological Modelling, 436, 109298.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 35659, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Koretsky, M. D. (2020). An interactive virtual laboratory addressing student difficulty in differentiating between chemical reaction kinetics and equilibrium. Computer Applications in Engineering Education, 28(1), 105-116.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Engineering Education" + }, + { + "id": 35660, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Koralewski, T. E., Wang, H. H., Grant, W. E., Brewer, M. J., Elliott, N. C., Westbrook, J. K., ... & Michaud, J. P. (2020). Integrating Models of Atmospheric Dispersion and Crop-Pest Dynamics: Linking Detection of Local Aphid Infestations to Forecasts of Region-Wide Invasion of Cereal Crops. Annals of the Entomological Society of America.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Atmospheric Dispersion, Crop-Pest Dynamics, Forecasting, Computer Science, Economics, Archaeology, Physics, Chemistry, Urban Studies" + }, + { + "id": 35661, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Koralewski, T. E., Wang, H. H., Grant, W. E., LaForest, J. H., Brewer, M. J., Elliott, N. C., & Westbrook, J. K. (2020). Toward near-real-time forecasts of airborne crop pests: Aphid invasions of cereal grains in North America. Computers and Electronics in Agriculture, 179, 105861.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Agriculture, Ecology, Physics, Economics" + }, + { + "id": 35662, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Korb, S., & Sacks, R. (2020). Agent-Based Simulation of General Contractor\u2013Subcontractor Interactions in a Multiproject Environment. Journal of Construction Engineering and Management, 147(1), 04020151.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35663, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Krawczyk, M. J., & Ku\u0142akowski, K. (2020). How to be influential being weakly connected. Physica D: Nonlinear Phenomena, 132644.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Physics, Miscellaneous" + }, + { + "id": 35664, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Kshirsagar, J., Hayatnagarkar, H., & Dewan, A. (2020). EPIRUST: TOWARDS A FRAMEWORK FOR LARGE-SCALE AGENT-BASED EPIDEMIOLOGICAL SIMULATIONS USING RUST LANGUAGE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 35665, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Kuznetsov, A. V., Halaimova, A. V., Ufimtseva, M. A., & Chelebieva, E. S. (2020). Blocking a chemical communication between Trichoplax organisms leads to their disorderly movement. International Journal of Parallel, Emergent and Distributed Systems, 1-10.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 35666, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Kynigos, C. Half-Baked Constructionism: A Strategy to Address the Challenge of Infusing Constructionism in Education in Greece. In Holbert, N., Berland, M., & Kafai, Y. B. (eds.), Designing Constructionist Futures: The Art, Theory, and Practice of Learning Designs, 61.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Constructionism, Education, Greece" + }, + { + "id": 35667, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Laguna-Sanchez, G. A., & Lopez-Sauceda, J. (2020). Agent-Supported Heuristic Model for the Dynamic Spread of Infectious Diseases.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35668, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Laili, Y., Zhang, L., & Luo, Y. (2020). A pattern-based validation method for the credibility evaluation of simulation models. SIMULATION, 96(2), 151-167.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Validation, Computer Science, Economics, Physics, Chemistry, Archaeology" + }, + { + "id": 35669, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Lall, M. (2020). AN AGENT-BASED SIMULATION OF AN ALTERNATIVE PARKING BAY CHOICE STRATEGY. The South African Journal of Industrial Engineering, 31(2), 107-115.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35670, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Larson, H. (2020). Agent-Based Modeling of Locust Foraging and Social Behavior.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 35671, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "LEBLOND, V., DESBUREAUX, L., & BIELECKI, V. (2020). A NEW AGENT-BASED SOFTWARE FOR DESIGNING AND OPTIMIZING EMERGING MOBILITY SERVICES: APPLICATION TO CITY OF RENNES.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35672, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Lee, J. S., & Wolf-Branigin, M. (2020). Innovations in modeling social good: A demonstration with juvenile justice intervention. Research on Social Work Practice, 30(2), 174-185.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35673, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Lee, J. Y., Sadler, N. C., Egbert, R. G., Anderton, C. R., Hofmockel, K. S., Jansson, J. K., & Song, H. S. (2020). Deep Learning Predicts Microbial Interactions from Self-organized Spatiotemporal Patterns. Computational and Structural Biotechnology Journal.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, Social Science, Education" + }, + { + "id": 35674, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Lee, S., & Clinedinst, L. (2020). Mathematical Biology: Expand, Expose, and Educate!. Bulletin of Mathematical Biology, 82(9), 1-15.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Mathematical Biology" + }, + { + "id": 35675, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Legaspi, J., Canfield, C. I., Gill, K. S., Wyglinski, A. M., & Bhadai, S. V. (2020, May). Integrated Agent-Based Model for Broadband Resource Allocation Analysis. In 2020 IEEE 91st Vehicular Technology Conference (VTC2020-Spring) (pp. 1-5). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35676, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Leitzke, B., Pereira, L., & Adamatti, D. (2020, January). Simula\u00e7\u00e3o Multiagente para Controle de Polui\u00e7\u00e3o na \u00c1gua. In Anais do XVI Encontro Nacional de Intelig\u00eancia Artificial e Computacional (pp. 142-153). SBC.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 35677, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Lestari, D. P., Sabri, A., Handhika, T., Sari, I., & Fahrurozi, A. (2020, May). The simulation of evacuation from multistorey building using NetLogo. In IOP Conference Series: Materials Science and Engineering (Vol. 854, No. 1, p. 012060). IOP Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation, NetLogo" + }, + { + "id": 35678, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "L\u00e9vy, P., Zhang, Y., & van de Pol, M. (2020). DESIGNING A POLICY MAK-ING TOOL TO MITIGATE SE-CURITY OF SUPPLY RISKS.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35679, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Li, F., Du, T. C., & Wei, Y. (2020). Enhancing supply chain decisions with consumers\u2019 behavioral factors: An illustration of decoy effect. Transportation Research Part E: Logistics and Transportation Review, 144, 102154.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Consumer Behavior, Logistics, Economics" + }, + { + "id": 35680, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Li, S., Liu, Z., & Li, Y. (2020). Temporal and spatial evolution of online public sentiment on emergencies. Information Processing & Management, 57(2), 102177.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35681, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Li, Y., Schoenfeld, A. H., Graesser, A. C., Benson, L. C., English, L. D., & Duschl, R. A. (2020). On Computational Thinking and STEM Education.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Chemistry" + }, + { + "id": 35682, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Li, Z., Fang, A., Cui, H., Ding, J., Liu, B., Xie, G., ... & Xing, D. (2020). Synthetic bacterial consortium enhances hydrogen production in microbial electrolysis cells and anaerobic fermentation. Chemical Engineering Journal, 127986.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Hydrogen production, Microbial electrolysis cells, Anaerobic fermentation" + }, + { + "id": 35683, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Liao, M., Zhang, J., & Wang, R. (2020). A dynamic evolutionary game model of web celebrity brand eWOM marketing control strategy. Asia Pacific Journal of Marketing and Logistics.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35684, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Liao, M., Qi, L., & Zhang, J. (2020). The Dynamic Evolution Mechanism of Heterogeneous OWOM\u2014An Improved Viral Marketing Model. Information, 11(3), 140.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Virology, Modeling" + }, + { + "id": 35685, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Lin, G., Palopoli, M., & Dadwal, V. (2020). From Causal Loop Diagrams to System Dynamics Models in a Data-Rich Ecosystem. In Leveraging Data Science for Global Health (pp. 77-98). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, System Dynamics" + }, + { + "id": 35686, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Lin, S. Y. (2020). Distributed Simulation of Interdependencies in Community Resilience (Doctoral dissertation).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35687, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Lira, M. (2020). How Knowledge-in-Pieces Informs Research in Math-Bio Education.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Math, Education" + }, + { + "id": 35688, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Lira, M. (2020). Why Knowledge Analysis Changes the Design of Computational Learning Environments in Biology Education.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 35689, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Lisianti, S., Hagijanto, A. D., & Malkisedek, M. H. (2020). Kajian Visual Siger dalam Budaya Kontemporer Masyarakat Lampung. Jurnal DKV Adiwarna, 1(16), 11.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Miscellaneous" + }, + { + "id": 35690, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Liu, C., Jackson, L. V., Hutchings, S. J., Tuesca, D., Moreno, R., Mcindoe, E., & Kaundun, S. S. (2020). A holistic approach in herbicide resistance research and management: from resistance detection to sustainable weed control. Scientific Reports, 10(1), 1-9.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Herbicide Resistance" + }, + { + "id": 35691, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Liu, C., Zhou, H., & Liu, H. (2020). The Difference of FOIPW between the Eastern Coastal Areas and Other Areas of China. Journal of Coastal Research, 103(sp1), 222-225.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 35692, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Liu, C. J., Liu, Z., Chai, Y. J., & Liu, T. T. (2020). Review of Virtual Traffic Simulation and Its Applications. Journal of Advanced Transportation, 2020.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Miscellaneous" + }, + { + "id": 35693, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Liu, G., Ye, J., & Argyres, C. (2020). Modeling and simulation of the knowledge growth process among new energy technology firms in the distributed innovation network. DYNA-Ingenier\u00eda e Industria, 95(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35694, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Liu, J., Zhang, M., & Nikita, N. Agent-based design research to explore the effectiveness of bottom-up organizational design in shaping sustainable vernacular landscapes: A case in Hailar, China. Landscape and Urban Planning, 205, 103961.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35695, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "London, J. O. N. (2020). African-American High-Tech Enterprises: Agent-Based Modeling and Simulation for Innovation (Doctoral dissertation, University of Bridgeport).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35696, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "London, J. O. N., & Sheikh, N. J. (2020). Innovation in African-American high-tech enterprises: a multi-agent approach. Entrepreneurship and Sustainability Issues, 7(4), 3101-3121.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35697, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Lorenz, F., & Jeyapragasan, G. (2020). The impact of climate change on tri-trophic interactions and crop production. The iScientist, 5(1), 4-12.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35698, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Lorenz, J., Neumann, M., & Schr\u00f6der, T. (2020). Individual attitude change and societal dynamics: Computational experiments with psychological theories.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35699, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "LORENZ, W. E., & WURZER, G. (2020). FL\u00c4VIZ IN THE REZONING PROCESS.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35700, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Lorenz, W., & Wurzer, G. (2020). FRACAM: A 2.5 D Fractal Analysis Method for Facades. Education and Digital Theory - Ethics, Cybernetics, Feedback, Theory, 1, 495-504.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 35701, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Lorig, F., & Timm, I. J. (2020). Simulation-Based Data Acquisition. In Principles of Data Science (pp. 1-15). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation" + }, + { + "id": 35702, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Lu, J., Liu, X., Feng, Y., & Lin, X. Simulation and Analysis of Community Energy Consumption Based on Multi-agent Modeling. In 2020 IEEE 4th Conference on Energy Internet and Energy System Integration (EI2) (pp. 1280-1284). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Analysis, Modeling, Energy, Computer Science, Ecology" + }, + { + "id": 35703, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Lu, P., Zhang, Z., Li, M., Chen, D., & Yang, H. (2020). Agent-based modeling and simulations of terrorist attacks combined with stampedes. Knowledge-Based Systems, 106291.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35704, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Lu, Q., Fricke, G. M., Ericksen, J. C., & Moses, M. E. (2020). Swarm Foraging Review: Closing the Gap Between Proof and Practice. Current Robotics Reports, 1-11.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 35705, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Lubida, A. P., Rajabi, M., Pilesj\u00f6, P., & Mansourian, A. (2020). Investigating an Agent Based Modelling approach for SDI planning: A case study of Tanzania NSDI development. South African Journal of Geomatics, 9(2), 198-218.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35706, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Luke, S. (2020). Assisted Parameter and Behavior Calibration in Agent-Based Models with Distributed Optimization. In Advances in Practical Applications of Agents, Multi-Agent Systems, and Trustworthiness. The PAAMS Collection: 18th International Conference, PAAMS 2020, L\u2019Aquila, Italy, October 7\u20139, 2020, Proceedings (p. 93). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Behavior, Optimization, Computer Science, Economics, Physics, Miscellaneous" + }, + { + "id": 35707, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Luo, H., Wang, Z., Yang, S., Yang, H., & Gong, Y. (2020, June). Influence Among Preferences and Its Transformation to Behaviors in Groups. In International Conference on Group Decision and Negotiation (pp. 104-119). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35708, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Luthra, M., Izquierdo, E. J., & Todd, P. M. (2020, July). Cognition Evolves with the Emergence of Environmental Patchiness. In Artificial Life Conference Proceedings (pp. 450-458). One Rogers Street, Cambridge, MA 02142-1209 USA journals-info@ mit. edu: MIT Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35709, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Luurssen-Masurel, N., Weel, A., Hazes, J., & De Jong, P. (2020). OP0283 COMPARING COST-UTILITY OF DMARDS IN SERONEGATIVE RHEUMATOID ARTHRITIS PATIENTS; A TREACH SUBANALYSIS.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35710, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Lv, X., Li, N., Xu, X., & Yang, Y. (2020). Understanding the emergence and development of online travel agencies: a dynamic evaluation and simulation approach. Internet Research.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35711, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Lynch, C. J., Diallo, S. Y., Kavak, H., & Padilla, J. J. (2020). A content analysis-based approach to explore simulation verification and identify its current challenges. Plos one, 15(5), e0232929.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35712, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Maestro-Prieto, J. A., Rodr\u00edguez, S., Casado, R., & Corchado, J. M. (2020). Agent organisations: from independent agents to virtual organisations and societies of agents. ADCAIJ: Advances in Distributed Computing and Artificial Intelligence Journal, 9(4), 55-70.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35713, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Magessi, N. T., & Antunes, L. (2020). Influences of Innovation in Market Value. In Advances in Social Simulation (pp. 291-305). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Economics, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35714, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Maggi, E., & Vallino, E. (2020). Price-based and motivation-based policies for sustainable urban commuting: An agent-based model. Research in Transportation Business & Management, 100588.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35715, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Mahdavi, A. (2020). Bringing HIM closer to HER.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 35716, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Mahmood, B. M., & Dabdawb, M. M. (2020). The Pandemic COVID-19 Infection Spreading Spatial Aspects: A Network-Based Software Approach. AL-Rafidain Journal of Computer Sciences and Mathematics, 14(1), 159-170.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Network-Based Software Approach, Spatial Aspects" + }, + { + "id": 35717, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Manson, S., An, L., Clarke, K. C., Heppenstall, A., Koch, J., Krzyzanowski, B., ... & Tesfatsion, L. (2020). Methodological issues of spatial agent-based models. JASSS-THE JOURNAL OF ARTIFICIAL SOCIETIES AND SOCIAL SIMULATION, 23(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35718, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Mao, C., Yu, X., Zhou, Q., Harms, R., & Fang, G. (2020). Knowledge growth in university-industry innovation networks\u2013Results from a simulation study. Technological forecasting and social change, 151, 119746.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35719, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Maqbool, A., Afzal, F., & Razia, A. (2020). Disaster Mitigation in Urban Pakistan Using Agent Based Modeling with GIS. ISPRS International Journal of Geo-Information, 9(4), 203.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Geography, GIS, Physics, Social Science, Urban Studies, Geology" + }, + { + "id": 35720, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Maradan, M. (2020). Uncertainty in deliberate lexical interventions: Exploring Esperanto speakers\u2019 opinions through corpora.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35721, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Marconi, L., & Cecconi, F. (2020). Opinion dynamics and consensus formation in a Deffuant model with extremists and moderates. arXiv preprint arXiv:2010.01534.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, arXiv" + }, + { + "id": 35722, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Mardani, S., Rahman, A., & Nafissi, N. (2020). An Agent-based Modeling for Breast Tissue Simulation and the Growth and Spread of Tumor in Various Breast Cancer States. Journal of Health and Biomedical Informatics, 6(4), 272-287.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Tumor growth, Breast cancer" + }, + { + "id": 35723, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Marilisa, C., Chiara, L., Mercatali, L., Ibrahim, T., & Emanuele, G. (2020). An in-silico study of cancer cell survival and spatial distribution within a 3D microenvironment. Scientific Reports (Nature Publisher Group), 10(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Miscellaneous" + }, + { + "id": 35724, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Marshall, S. (2020). Modelling the impact of alternative educational qualifications on the New Zealand higher education system.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35725, + "sort": null, + "year": 2020, + "is_ccl": true, + "reference": "Martin, Bain, Swanson, Horn & Wilensky (2020). Building Blocks: Designing scientific, domain-specific block-based modeling environments. ICLS, Nashville, TN.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 35726, + "sort": null, + "year": 2020, + "is_ccl": true, + "reference": "Martin, K., Horn, M., & Wilensky, U. (2020). Constructivist Dialogue Mapping Analysis of Ant Adaptation. Informatics in Education, 18(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Informatics, Education" + }, + { + "id": 35727, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Martin, K., & Sengupta, P. (2020). Multi-Agent Simulations of Intra-colony Violence in Ants. Proceedings of the International Conference of Complex Systems.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 35728, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Martin Bicher, S., Rippinger, C., Urach, C., Brunmeir, D., Siebert, U., & Popper, N. (2020). Evaluation of Contact-Tracing Policies Against the Spread of SARS-CoV-2 in Austria\u2013An Agent-Based Simulation.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35729, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Martins, A. C. (2020). Senescence, change, and competition: when the desire to pick one model harms our understanding. arXiv preprint arXiv:2011.04172.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 35730, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Marvuglia, A., Koppelaar, R., & Rugani, B. (2020). The effect of green roofs on the reduction of mortality due to heatwaves: Results from the application of a spatial microsimulation model to four European cities. Ecological Modelling, 109351.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35731, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Matsuda, M., Kondo, T., Kawai, W., Hamanaka, J., Matsushita, N., Chino, S., ... & Kimura, F. (2020). E-Catalogues of Equipment for Constructing an Injection Molding Digital Eco-Factory. In EcoDesign and Sustainability I (pp. 501-516). Springer, Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35732, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Matsumoto, Y. (2020). Effects of mucus trail following on the distance between individuals of opposite sex and its influence on the evolution of the trait in the Ezo abalone Haliotis discus hannai. PeerJ, 8, e8710.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 35733, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Mazar, M., Bettayeb, B., Klement, N., & LOUIS, A. (2020). Dynamic scheduling of robotic mildew treatmentby UV-c in horticulture.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 35734, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "McAlpine, A., Kiss, L., Zimmerman, C., & Chalabi, Z. (2020). Agent-based modeling for migration and modern slavery research: a systematic review. Journal of Computational Social Science, 1-90.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35735, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "McDonald, W. (2020). Design and Implementation of an Agent-Based Model of Pertussis with Performance Considerations (Doctoral dissertation, University of Saskatchewan).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35736, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "McGill, E., Petticrew, M., Marks, D., McGrath, M., Rinaldi, C., & Egan, M. (2020). Applying a complex systems perspective to alcohol consumption and the prevention of alcohol\u2010related harms in the 21st century: a scoping review. Addiction.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35737, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "McGill, M. M., & Decker, A. (2020, June). Tools, Languages, and Environments Used in Primary and Secondary Computing Education. In Proceedings of the 2020 ACM Conference on Innovation and Technology in Computer Science Education (pp. 103-109).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35738, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "McKay, V. R., Cambey, C. L., Combs, T. B., Stubbs, A. W., Pichon, L. C., & Gaur, A. H. (2020). Using a Modeling-Based Approach to Assess and Optimize HIV Linkage to Care Services. AIDS and Behavior, 1-11.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, HIV, Care Services" + }, + { + "id": 35739, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "McLean, A., McDonald, W., & Goodridge, D. (2020). Simulation Modeling as a Novel and Promising Strategy for Improving Success Rates With Research Funding Applications: A Constructive Thought Experiment. JMIR Nursing, 3(1), e18983.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Nursing" + }, + { + "id": 35740, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "McMullen, P. R. (2020). An Agent-Based Approach to the Newsvendor Problem with Price-Dependent Demand. American Journal of Operations Research, 10(4), 101-110.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35741, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "McMullen, P. R. (2020). Social Distancing via Coulomb\u2019s Law. Applied Mathematics, 11(07), 532.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Social Science" + }, + { + "id": 35742, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Meles, T., & Ryan, L. (2020). Adoption of Renewable Home Heating Systems: An Agent-Based Model of Heat Pump Systems in Ireland.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35743, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Mellacher, P., & Scheuer, T. (2020). Wage Inequality, Labor Market Polarization and Skill-Biased Technological Change: An Evolutionary (Agent-Based) Approach. Computational Economics, 1-46.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 35744, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Menczer, F., Fortunato, S., & Davis, C. A. (2020). A First Course in Network Science. Cambridge University Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Network Science" + }, + { + "id": 35745, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Meskini, F. Z., & Aboulaich, R. (2020, June). A New Cooperative Insurance Based On Blockchain Technology: Six Simulations To Evaluate The Model. In 2020 International Conference on Intelligent Systems and Computer Vision (ISCV) (pp. 1-7). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Blockchain Technology, Computer Science, Economics, Simulation, Mathematics" + }, + { + "id": 35746, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Miao, H., Hashemi-Beni, L., Mulrooney, T., Kurkalova, L. A., Liang, C. L., Jha, M., & Monty, G. (2020). SPATIAL DIFFERENCES IN FRESH VEGETABLE SPENDING: A CASE STUDY IN GUILFORD COUNTY, NORTH CAROLINA. The International Archives of Photogrammetry, Remote Sensing and Spatial Information Sciences, 44, 73-77.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35747, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Mierlo, S. V., Vangheluwe, H., Breslav, S., Goldstein, R., & Khan, A. (2020). Extending Explicitly Modelled Simulation Debugging Environments with Dynamic Structure. ACM Transactions on Modeling and Computer Simulation (TOMACS), 30(1), 1-25.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Simulation, Computer Science, Ecology" + }, + { + "id": 35748, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Milne, R. J., Cotfas, L. A., Delcea, C., Cr\u0103ciun, L., & Mol\u0103nescu, A. G. (2020). Adapting the reverse pyramid airplane boarding method for social distancing in times of COVID-19. Plos one, 15(11), e0242131.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35749, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Milne, R. J., Cotfas, L. A., Delcea, C., Salari, M., Cr\u0103ciun, L., & Mol\u0103nescu, A. G. (2020). Airplane Boarding Method for Passenger Groups When Using Apron Buses. IEEE Access, 8, 18019-18035.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35750, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Milne, R. J., Delcea, C., & Cotfas, L. A. (2020). Airplane Boarding Methods that Reduce Risk from COVID-19. Safety Science, 105061.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35751, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Mintram, K. S., Maynard, S. K., Brown, A. R., Boyd, R., Johnston, A. S. A., Sibly, R. M., ... & Tyler, C. R. (2020). Applying a Mechanistic Model to Predict Interacting Effects of Chemical Exposure and Food Availability on Fish Populations. Aquatic Toxicology, 105483.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Chemical Exposure, Fish Populations, Modeling" + }, + { + "id": 35752, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Misra, A. (2020). Entrepreneurship in the Rural Labour Market: An Agent-Based Modelling Approach (Doctoral dissertation, University of Essex).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Entrepreneurship" + }, + { + "id": 35753, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Modu, B., Polovina, N., & Konur, S. (2020). Agent-Based Modelling of Malaria Transmission Dynamics. arXiv preprint arXiv:2004.06477.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Ecology, Computer Science" + }, + { + "id": 35754, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Montes de Oca, E. S., Suppi, R., De Giusti, L. C., & Naiouf, M. (2020). Green High Performance Simulation for AMB models of Aedes aegypti. Journal of Computer Science & Technology, 20.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 35755, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Moradi, S., & Nejat, A. (2020). RecovUS: An Agent-Based Model of Post-Disaster Household Recovery. Journal of Artificial Societies and Social Simulation, 23(4), 1-13.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35756, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Mozahem, N. A. (2020). Social cognitive theory and women\u2019s career choices: an agent\u2014based model simulation. Computational and Mathematical Organization Theory, 1-26.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35757, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Murphy, K. J., Ciuti, S., & Kane, A. (2020). An introduction to agent\u2010based models as an accessible surrogate to field\u2010based research and teaching. Ecology and Evolution.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35758, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Muschett, G., & Morales, N. S. (2020). Using Ecological Modelling to Assess the Long-Term Survival of the West-Indian Manatee (Trichechus manatus) in the Panama Canal. Water, 12(5), 1275.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35759, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Nagasawa, R., Mas, E., Moya, L., & Koshimura, S. (2020). Multi-UAV path planning methodology for postdisaster building damage surveying.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35760, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Nakagawa, M., Bahr, K., & Lo-Iacono-Ferreira, V. (2020). Human Aspects of Project Management: Agent-Based Modeling. In Project Management and Engineering Research (pp. 117-129). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35761, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Naredo, E., Ryan, C., Guevara, I., Margaria, T., Urbano, P., & Trujillo, L. (2020, July). General controllers evolved through grammatical evolution with a divergent search. In Proceedings of the 2020 Genetic and Evolutionary Computation Conference Companion (pp. 243-244).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Grammar" + }, + { + "id": 35762, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Nathan, M. J., & Swart, M. I. (2020). Materialist epistemology lends design wings: educational design as an embodied process. Educational Technology Research and Development, 1-30.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35763, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Naufel, L. R. M. (2020). Complex Systems Approach for Simulation & Analysis of Socio-Technical Infrastructure Systems: An Empirical Demonstration (Doctoral dissertation, Arizona State University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35764, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Navarro-Meneses, F. J. (2020). Agile and Value Creation in Agent-Based Social Simulation. Journal of Creating Value, 2394964320961903.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Agile, Value Creation, Agent-Based Social Simulation" + }, + { + "id": 35765, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Nery, T. H. D. O. (2020). Segrega\u00e7\u00f5es no curso de licenciatura em Matem\u00e1tica na perspectiva da segrega\u00e7\u00e3o de \nSchelling.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Sociology" + }, + { + "id": 35766, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Nguyen, M. L. K. N., Megiddo, D. I., & Howick, P. S. (2020). Hybrid Simulation for Modelling Healthcare-Associated Infections: Promising but Challenging. Clinical Infectious Diseases.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35767, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Nguyen, T. H., & Jung, J. J. (2020). Multiple ACO-based method for solving dynamic MSMD traffic routing problem in connected vehicles. Neural Computing and Applications, 1-10.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35768, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Niazi, M. A., Iantovics, L. B., & Temkin, A. (2020). Review of \u201cThe Model Thinker\u201d by Scott Page.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35769, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Nishi, T., Matsuda, M., Hasegawa, M., Alizadeh, R., Liu, Z., & Terunuma, T. (2020). Automatic Construction of Virtual Supply Chain as Multi-Agent System Using Enterprise E-Catalogues. International Journal of Automation Technology, 14(5), 713-722.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 35770, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Noah, M. S. A. (2020). BUILDING INTELLIGENT AUTONOMOUS AGENTS AND MULTI AGENTS USING THE FETCH. AI DECENTRALISED OPEN ECONOMIC FRAMEWORK.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 35771, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Noemi, G., Samanta, R., Federica, V., Alessandra, B., & Gabriella, B. (2020). Agent-Based Modeling and Simulation of Care Delivery for Patients With Thrombotic and Bleeding Disorders. Studies in health technology and informatics, 270, 1193-1194.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Health Technology, Simulation, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35772, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Norouziasl, S., & Jafari, A. (2020, November). Comparing Office Layouts Regarding Lighting Energy Saving Potentials Using Agent-Based Real-Time Simulation of Occupancy Behavioral Patterns. In Construction Research Congress 2020: Computer Applications (pp. 972-981). Reston, VA: American Society of Civil Engineers.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Office Layout" + }, + { + "id": 35773, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Norouziasl, S., Jafari, A., & Wang, C. (2020). An agent-based simulation of occupancy schedule in office buildings. Building and Environment, 107352.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35774, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Nwokoye, C. H., Umeugoji, C., & Umeh, I. (2020). Evaluating Degrees of Differential Infections on Sensor Networks\u2019 Features Using the SEjIjR-V Epidemic Model. Egyptian Computer Science Journal, 44(3).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Epidemiology" + }, + { + "id": 35775, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Oh, H., Trinh, M. P., Vang, C., & Becerra, D. (2020). Addressing Barriers to Primary Care Access for Latinos in the US: An Agent-Based Model. Journal of the Society for Social Work and Research, 11(2), 000-000.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35776, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Olenick, J. D. (2020). Still Learning: Introducing the Learning Transfer Model, a Formal Model of Transfer (Doctoral dissertation, Michigan State University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35777, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Oliveira, J. D., de Borba Campos, M., & Paix\u00e3o-Cortes, V. S. M. (2020, July). Usable and Accessible Robot Programming System for People Who Are Visually Impaired. In International Conference on Human-Computer Interaction (pp. 445-464). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Human-Computer Interaction" + }, + { + "id": 35778, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "O'Neill, J. (2020). The Ability to Unite Under Crisis: Ethnic Group Consolidation During Ethnic Conflict in Latin America (Doctoral dissertation, The Ohio State University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35779, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Ornelas, N. O. 2020. An Ecosystem: Computational Thinking, Project-Based Learning & Logo.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 35780, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Orsi, F., Scuttari, A., & Marcher, A. (2020). How much traffic is too much? Finding the right vehicle quota for a scenic mountain road in the Italian Alps. Case Studies on Transport Policy, 8, 1270-1284. https://doi.org/10.1016/j.cstp.2020.08.007", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Transport Policy, Case Studies on Transport Policy, Geology" + }, + { + "id": 35781, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Oruro, E. M., Pardo, G. V., Lucion, A. B., Calcagnotto, M. E., & Idiart, M. A. (2020). Maturation of pyramidal cells in anterior piriform cortex may be sufficient to explain the end of early olfactory learning in rats. Learning & Memory, 27(12), 20-32.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35782, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Oruro, E. M., Pardo, G. V., Lucion, A. B., Calcagnotto, M. E., & Idiart, M. A. (2020). The maturational characteristics of the GABA input in the anterior piriform cortex may also contribute to the rapid learning of the maternal odor during the sensitive period. Learning & Memory, 27(12), 493-502.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Learning, Memory, GABA, Odor" + }, + { + "id": 35783, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "O'Shea, T., Bates, P., & Neal, J. (2020). Testing the impact of direct and indirect flood warnings on population behaviour using an agent-based model. Natural Hazards and Earth System Sciences, 20(8), 2281-2305.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35784, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Osterritter, L. J., & Carley, K. M. (2020, October). Modeling Interventions for Insider Threat. In International Conference on Social Computing, Behavioral-Cultural Modeling and Prediction and Behavior Representation in Modeling and Simulation (pp. 55-64). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35785, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Pala, D., Annovazzi-Lodi, L., Bellazzi, R., Fiscante, N., Franzini, M., Larizza, C., ... & Casella, V. (2020). THE KEY ROLE OF GEOGRAPHIC INFORMATION IN EXPOSOMICS: THE EXAMPLE OF THE H2020 PULSE PROJECT. The International Archives of Photogrammetry, Remote Sensing and Spatial Information Sciences, 43, 283-289.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35786, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Palau, A. S., Liang, Z., L\u00fctgehetmann, D., & Parlikad, A. K. (2020). Collaborative Prognostics in Social Asset Networks. In Value Based and Intelligent Asset Management (pp. 329-349). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35787, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Pal, C. V., Leon, F., Paprzycki, M., & Ganzha, M. (2020). A Review of Platforms for the Development of Agent Systems. arXiv preprint arXiv:2007.08961.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, arXiv" + }, + { + "id": 35788, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Panorkou, N., & Germia, E. (2020). Examining Students\u2019 Quantitative Reasoning in a Virtual Ecosystem Simulation of the Water Cycle.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 35789, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Panov, S. (2020). To Derogate (and Notify), or Not to Derogate (and Not to Notify), that is the Question!: An Analysis of the Legal Framework of the COVID-19 State of Emergency in the Republic of Bulgaria and ECHR Practice.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Law, Economics, History, Miscellaneous" + }, + { + "id": 35790, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Papastamatiou, Y. P., Bodey, T. W., Caselle, J. E., Bradley, D., Freeman, R., Friedlander, A. M., & Jacoby, D. M. (2020). Multiyear social stability and social information use in reef sharks with diel fission\u2013fusion dynamics. Proceedings of the Royal Society B, 287(1932), 20201063.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35791, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Papparlardo, F., Russo, G., Pennisi, M., Palumbo, G. A. P., Sgroi, G., Motta, S., & Maimone, D. (2020). The Potential of Computational Modeling to Predict Disease Course and Treatment Response in Patients with Relapsing Multiple Sclerosis.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Epidemiology" + }, + { + "id": 35792, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Park, H. (2020). Evolutionary Ecological Model of Defense Activation Disorders Via the Marginal Value Theorem. Psychiatry Investigation.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Evolutionary Ecological Model" + }, + { + "id": 35793, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Park, S. H. (2020). Does capitalism need a government to be nice: Robert Axelrod and his iterated prisoner's dilemma computer tournament [Original paper]. Frontiers in Education Technology, 3(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35794, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Parsa, A. B., Movahedi, A., Taghipour, H., Derrible, S., & Mohammadian, A. K. (2020). Toward safer highways, application of XGBoost and SHAP for real-time accident detection and feature analysis. Accident Analysis & Prevention, 136, 105405.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "* Biology\n* Ecology\n* Archaeology\n* Computer Science\n* Economics\n* History\n* Physics\n* Chemistry\n* Urban Studies\n* Social Science\n* Education\n* Epidemiology\n* Miscellaneous" + }, + { + "id": 35795, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Parthiban, M., & Ram Kumar, P. (2020). Applications of discrete event simulation: A literature review.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35796, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Pathak, A., Mohan, V. M., & Banerjee, A. (2020). An agent based modelling approach to study lockdown efficacy for infectious disease spreads. medRxiv.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Infectious Disease, Modeling, Economics, Computer Science, Epidemiology" + }, + { + "id": 35797, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Paudel, R. (2020). A Systems Approach to Analyze Household Vulnerability to Food Insecurity in Rural Southern Mali Using a Spatially-Explicit Integrated Social and Biophysical Model (Doctoral dissertation, Michigan State University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35798, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Paul, R., Eaton, S. E., Laird, G., Nelson, N., & Brennan, R. (2020). USING AGENT-BASED MODELLING FOR EER EXPERIMENTAL DESIGN: PRELIMINARY VALIDATION BASED ON STUDENT CHEATING BEHAVIOURS. Proceedings of the Canadian Engineering Education Association (CEEA).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Economics, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35799, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Pawlowski, T., & van Dinther, C. (2020). Assessing the Impact of Electric Vehicle Charging Behavior on the Distribution Grid.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35800, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Payette, N. (2020). Collaborating Like Professionals: Integrating NetLogo and GitHub. In Advances in Social Simulation (pp. 343-348). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Social Science" + }, + { + "id": 35801, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Pea, R., Grover, S., & Ventures, L. G. (2020). Weaving the Fabric of Adaptive STEM Learning Environments Across Domains and Settings. The Interdisciplinarity of the Learning Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35802, + "sort": null, + "year": 2020, + "is_ccl": true, + "reference": "Peel, A., Dabholkar, S., Anton, G., Wu, S., Wilensky, U., & Horn, M. (2020). A Case Study of Teacher Professional Growth Through Co-design and Implementation of Computationally Enriched Biology Units.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 35803, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Petrasova, A., Gaydos, D. A., Petras, V., Jones, C. M., Mitasova, H., & Meentemeyer, R. K. (2020). Geospatial simulation steering for adaptive management. Environmental Modelling & Software, 104801.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Geographic Information Science, Simulation" + }, + { + "id": 35804, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Phetheet, J. (2020). Simulating and Analyzing Use of Water and Renewable Energy in Agricultural Areas Using FEWCalc and DSSAT (Doctoral dissertation, University of Kansas).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35805, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Phetheet, J., Hill, M. C., Barron, R. W., Rossi, M. W., Amanor-Boadu, V., Wu, H., & Kisekka, I. (2020). Consequences of climate change on food-energy-water systems in arid regions without agricultural adaptation, analyzed using FEWCalc and DSSAT. Resources, Conservation and Recycling, 105309.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35806, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Philips, I. (2020). An Agent Based Model to Estimate Lynx Dispersal if Re-Introduced to Scotland. Applied Spatial Analysis and Policy, 13(1), 161-185.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35807, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Phuttharak, J., & W Loke, S. (2020). Iterative Spatial Crowdsourcing in Peer-to-Peer Opportunistic Networks. Electronics, 9(7), 1085.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35808, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Platas-L\u00f3pez, A., Guerra-Hern\u00e1ndez, A., Cruz-Ram\u00edrez, N., Quiroz-Castellanos, M., Grimaldo, F., Paolucci, M., & Cecconi, F. (2020). Towards an Agent-Based Model for the Analysis of Macroeconomic Signals. In Intuitionistic and Type-2 Fuzzy Logic Enhancements in Neural and Optimization Algorithms: Theory and Applications (pp. 551-565). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35809, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Pobuda, P. (2020). The Digital Twin of the Economy: Proposed Tool for Policy Design and Evaluation. Real-World Economics Review, issue no. 94, pp. 140-148.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35810, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Premo, L. S. (2020). Population Size Limits the Coefficient of Variation in Continuous Traits Affected by Proportional Copying Error (and Why This Matters for Studying Cultural Transmission). Journal of Archaeological Method and Theory, 1-23.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35811, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Proctor, C. C. (2020). Supporting Critical Computational Literacies Through Interactive Storytelling (Doctoral dissertation, Stanford University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Social Science, Education" + }, + { + "id": 35812, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Pulley, M., Rodriguez, L., Lewis, M., Kohler, B., & Gordillo, L. (2020). Guiding Students to Understand Functional Responses: Holling's Disc Experiment Revisited. PRIMUS, 1-20.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 35813, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Pumain, D. (Ed.). (2020). Geographical Modelling: Cities and Territories. John Wiley & Sons.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Geography" + }, + { + "id": 35814, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Punzalan, A. (2020). Predicting Condor Range Expansion in California to Reduce Development Threats. 2020-CSU Theses and Dissertations.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 35815, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Putriani, D., Ghani, G. M., & Kartiwi, M. (2020). EXPLORATION OF AGENT-BASED SIMULATION: THE MULTIPLIER EFFECT OF ZAKAH ON ECONOMIC GROWTH1. Journal of Islamic Monetary Economics and Finance, 6(3), 641-666.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Mathematics" + }, + { + "id": 35816, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Qian, C., Yu, K., & Gu, H. (2020). Flexibility mechanisms in a dynamic distribution network. Journal of Business & Industrial Marketing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35817, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Qin, M., Chen, L., Jing, N., & Chen, Q. (2020, July). Simulation Research on the Formation Behavior of a Compound College Students\u2019 Entrepreneurship Team Based on NetLogo. In 2020 International Conference on Advanced Education, Management and Social Science (AEMSS2020) (pp. 236-239). Atlantis Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation, Entrepreneurship, NetLogo" + }, + { + "id": 35818, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Raczynski, S. (2020). Prey-Predator Models Revisited: Uncertainty, Herd Instinct, Fear, Limited Food, Epidemics, Evolution, and Competition. In Interacting Complexities of Herds and Social Organizations (pp. 107-132). Springer, Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35819, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Radzvilas, M., De Pretis, F., Peden, W., Tortoli, D., & Osimani, B. (2020). Double blind vs. open review: an evolutionary game logit-simulating the behavior of authors and reviewers. arXiv preprint arXiv:2011.07797.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Evolutionary Game Theory, arXiv preprint" + }, + { + "id": 35820, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Rahman, A., Naufal, F., & Partiwi, S. G. (2020, June). Measuring the entropy of organizational culture using agent-based simulation. In Managing Learning Organization in Industry 4.0: Proceedings of the International Seminar and Conference on Learning Organization (ISCLO 2019), Bandung, Indonesia, October 9-10, 2019 (p. 109). Routledge.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35821, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Rahmoeller, M., & Steinweg, J. M. (2020). Implementation of a New Quantitative Biology Course: Assessment of Students\u2019 Abilities and Confidence. PRIMUS, 1-35.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Assessment" + }, + { + "id": 35822, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Railsback, S. F., Harvey, B. C., & Ayll\u00f3n, D. (2020). Contingent trade-off decisions with feedbacks in cyclical environments: testing alternative theories. Behavioral Ecology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Economics" + }, + { + "id": 35823, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Railsback, S. F., Harvey, B. C., & Ayll\u00f3n, D. (2020). Importance of the Daily Light Cycle in Population\u2010Habitat Relations: A Simulation Study. Transactions of the American Fisheries Society.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Simulation" + }, + { + "id": 35824, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Raimbault, J. (2020). An agent-based model of interdisciplinary interactions in science. arXiv preprint arXiv:2006.16399.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 35825, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Rajabi, A., Talebzadehhosseini, S., & Garibay, I. (2020). Resistance of communities against disinformation. arXiv preprint arXiv:2004.00379.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35826, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Ralph, M. (2020). Emergent patterns in deterministic modelling. International Journal of Mathematical Education in Science and Technology, 1-11.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Computer Science" + }, + { + "id": 35827, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Razakatiana, M., Kolski, C., Mandiau, R., & Mahatody, T. (2020, November). Game Theory-based Human-Assistant Agent Interaction Model: Feasibility Study for a Complex Task. In Proceedings of the 8th International Conference on Human-Agent Interaction (pp. 187-195).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Game Theory, Human-Agent Interaction, Modeling" + }, + { + "id": 35828, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Razakatiana, M., Kolski, C., Mandiau, R., & Mahatody, T. (2020, June). Human-agent Interaction based on Game Theory: Case of a road traffic supervision task. In 2020 13th International Conference on Human System Interaction (HSI) (pp. 88-93). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Game Theory, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35829, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Recio, M. R., Singer, A., Wabakken, P., & Sand, H. (2020). Agent-based models predict patterns and identify constraints of large carnivore recolonizations, a case study of wolves in Scandinavia. Biological Conservation, 251, 108752.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 35830, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Reddy, A. S., Subha, T. D., Suresh, T., & Subash, T. D. (2020). A DTM Research based on the strategic process. Materials Today: Proceedings.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35831, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Remiszewski, K. (2020). NUTRIENT CYCLING ALONG MICROBIAL AND LITHOLOGIC GRADIENTS AND FOSTERING STUDENT SELF-CONFIDENCE IN SCIENCE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35832, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Reymond, D. (2020). Patents information for humanities research: could there be something?. Iberoamerican Journal of Science Measurement and Communication, 1(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Miscellaneous" + }, + { + "id": 35833, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Ribas-Xirgo, L. (2020, November). Multi-agent System Model of Taxi Fleets. In Workshop of Physical Agents (pp. 123-134). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35834, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Riedel, L., Herdeanu, B., Mack, H., Sevinchan, Y., & Weninger, J. (2020). Utopia: a comprehensive and collaborative modeling framework for complex and evolving systems. Journal of Open Source Software, 5(53), 2165.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35835, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Rizana, A. F., & Ramadhan, F. (2020). Penerapan Agent-Based Simulation dalam Memprediksi Penggunaan Berkelanjutan Sistem ERP. Jurnal Teknologi Informasi dan Ilmu Komputer (JTIIK), 7(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 35836, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Roach, A., Scott, I., Macfarlane, G., Jones, G. T., & Macgregor, A. (2020). OP0284 AN AGENT-BASED SIMULATION OF THE EFFECTS OF VARYING TIME TO TREATMENT WITH BIOLOGICAL AGENTS ON PATIENT HEALTH AND COST IN AXIAL SPONDYLOARTHRITIS USING NATIONAL REGISTER DATA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Computer Science, Epidemiology, Miscellaneous" + }, + { + "id": 35837, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Robertson, J. J., Swannack, T. M., McGarrity, M., & Schwalb, A. N. (2020). Zebra mussel invasion of Texas lakes: estimating dispersal potential via boats. Biological Invasions, 1-31.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35838, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Robeva, R. S., Jungck, J. R., & Gross, L. J. (2020). Changing the nature of quantitative biology education: data science as a driver. Bulletin of Mathematical Biology, 82(10), 1-30.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Data Science, Quantitative Biology, Mathematics" + }, + { + "id": 35839, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Rodriguez Recio, M., Singer, A., Wabakken, P., & Sand, H. (2020). Agent-based models predict patterns and identify constraints of large carnivore recolonizations, a case study of wolves in Scandinavia.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35840, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Rosenbusch, H., R\u00f6ttger, J., & Rosenbusch, D. (2020). Would Chuck Norris certainly win the Hunger Games?: Simulating the result reliability of Battle Royale games through agent-based models. Simulation and Gaming.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Gaming, Agent-based Models" + }, + { + "id": 35841, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Ruiz-Martin, C., Wainer, G., & Lopez-Paredes, A. (2020). Discrete-Event Modeling and Simulation of Diffusion Processes in Multiplex Networks. ACM Transactions on Modeling and Computer Simulation (TOMACS), 31(1), 1-32.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35842, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Ruscheinski, A., Wilsdorf, P., Zimmermann, J., van Rienen, U., & Uhrmacher, A. M. (2020). An Artifact-based Workflow for Finite-Element Simulation Studies. arXiv preprint arXiv:2010.07625.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35843, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Russo, G., Reche, P., Pennisi, M., & Pappalardo, F. (2020). The combination of artificial intelligence and systems biology for intelligent vaccine design. Expert Opinion on Drug Discovery, 1-15.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Artificial Intelligence, Systems Biology, Drug Discovery, Biotechnology, Computer Science, Ecology" + }, + { + "id": 35844, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Ryder, E., Ruiz, C., Weaver, S., & Gegear, R. (2020). Choosing Your Own Adventure: Engaging the New Learning Society through Integrative Curriculum Design. EPiC Series in Education Science, 3, 188-199.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Social Science" + }, + { + "id": 35845, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Sabzian, H., Shafia, M. A., Ghazanfari, M., & Bonyadi Naeini, A. (2020). Modeling the Adoption and Diffusion of Mobile Telecommunications Technologies in Iran: A Computational Approach Based on Agent-Based Modeling and Social Network Theory. Sustainability, 12(7), 2904.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35846, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Sadler, T. D., Friedrichsen, P., Zangori, L., & Ke, L. (2020). Technology-Supported Professional Development for Collaborative Design of COVID-19 Instructional Materials. Journal of Technology and Teacher Education, 28(2), 171-177.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Technology, Education" + }, + { + "id": 35847, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Saito, M., & Hayashi, H. (2020). P2P Human-Resource Sharing and Its Redistribution Strategy of Stable Coin.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Economics, Computer Science, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35848, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Sakashita, T., Watanabe, S., Hanaoka, H., Ohshima, Y., Ikoma, Y., Ukon, N., ... & Ishioka, N. S. (2020). Absorbed dose simulation of meta-211 At-astato-benzylguanidine using pharmacokinetics of 131 I-MIBG and a novel dose conversion method, RAP. Annals of Nuclear Medicine, 1-11.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Pharmacokinetics, Computer Science, Nuclear Medicine, Physics, Chemistry" + }, + { + "id": 35849, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "S\u00e1nchez-Cartas, J. M. (2020, June). Platform competition and consumer\u2019s decisions: An ABM simulation of pricing with different behavioral rules.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35850, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Santoro, M., Mazzetti, P., & Nativi, S. (2020). The VLab Framework: An Orchestrator Component to Support Data to Knowledge Transition. Remote Sensing, 12(11), 1795.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35851, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Santos, F., Nunes, I., & Bazzan, A. L. (2020). Quantitatively Assessing the Benefits of Model-driven Development in Agent-based Modeling and Simulation. Simulation Modelling Practice and Theory, 102126.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35852, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Santos, M., Cajaiba, R., Gonzalez, D., Leote, P., Ferreira, D., Bastos, R., ... & Cabral, J. A. (2020). How accurate are estimates of flower visitation rates by pollinators? Lessons from a spatially explicit agent-based model. Ecological Informatics, 101077.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Agent-Based Modeling" + }, + { + "id": 35853, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Saoud, M. S., Boubetra, A., & Attia, S. (2020). A Simulation Knowledge Extraction-Based Decision Support System for the Healthcare Emergency. Hospital Management and Emergency Medicine: Breakthroughs in Research and Practice: Breakthroughs in Research and Practice, 192.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Decision Support, Healthcare, Medicine" + }, + { + "id": 35854, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Sapienza, A., & Falcone, R. (2020). Evaluating agents\u2019 trustworthiness within virtual societies in case of no direct experience. Cognitive Systems Research.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35855, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Sarmah, D. T., Bairagi, N., & Chatterjee, S. (2020). Tracing the footsteps of autophagy in computational biology. Briefings in Bioinformatics.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computational Biology, Bioinformatics" + }, + { + "id": 35856, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Sauter, J. A., Bixler, K., Kitchen, S., & Chase, R. (2020, April). RF emitter localization with robotic swarms. In Unmanned Systems Technology XXII (Vol. 11425, p. 114250D). International Society for Optics and Photonics.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Robotics, Optics and Photonics" + }, + { + "id": 35857, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Savaglio, C., Ganzha, M., Paprzycki, M., B\u0103dic\u0103, C., Ivanovi\u0107, M., & Fortino, G. (2020). Agent-based Internet of Things: State-of-the-art and research challenges. Future Generation Computer Systems, 102, 1038-1053.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35858, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Saxena, N. (2020). Working'Failure'into your Learning Design. The Emerging Learning Design Journal, 7(1), 2", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35859, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Scataglini, S., & Perez Luque, E. (2020). Closing the Gender Gap in DHM. In 6th International Digital Human Modeling Symposium, August 31\u2013September 2, 2020, Sk\u00f6vde, Sweden (Vol. 11, pp. 408-418). IOS Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35860, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Schaff, F. (2020). Conceptualising Artificial Anasazi with an Explicit Knowledge Representation and Population Model. In Advances in Social Simulation (pp. 399-403). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Social Science, Computer Science" + }, + { + "id": 35861, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Schlaile, M. P. (2020). A Case for Economemetics? Why Evolutionary Economists Should Re-evaluate the (F) utility of Memetics. In Memetics and Evolutionary Economics (pp. 33-68). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economic Theory, Evolutionary Economics, Miscellaneous" + }, + { + "id": 35862, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Schleicher, J. (2020). Introduction to In Silico Modeling to Study ROS Dynamics. In Reactive Oxygen Species (pp. 1-32). Humana, New York, NY.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling" + }, + { + "id": 35863, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Schloesser, D. S., Hollenbeck, D., & Kello, C. T. (2020). Social Foraging in Groups of Search Agents with Human Intervention.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35864, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Schl\u00fcter, J., Bossert, A., R\u00f6ssy, P., & Kersting, M. (2020). Impact assessment of autonomous demand responsive transport as a link between urban and rural areas. Research in Transportation Business & Management, 100613.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35865, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Schmolke, A., Abi\u2010Akar, F., Roy, C., Galic, N., & Hinarejos, S. (2020). Simulating Honey Bee Large\u2010Scale Colony Feeding Studies Using the BEEHAVE Model. Part I: Model Validation. Environmental Toxicology and Chemistry.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 35866, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Schwarz, M., Auzepy, Q., & Knoeri, C. (2020). Can electricity pricing leverage electric vehicles and battery storage to integrate high shares of solar photovoltaics?. Applied Energy, 277, 115548.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Electricity pricing, Solar photovoltaics, Energy storage, Applied Energy" + }, + { + "id": 35867, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Schwarz, N., Dressler, G., Frank, K., Jager, W., Janssen, M., M\u00fcller, B., ... & Groeneveld, J. (2020). Formalising theories of human decision-making for agent-based modelling of social-ecological systems: practical lessons learned and ways forward. Socio-Environmental Systems Modelling, 2, 16340-16340.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35868, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Sedigh, A. H. A., Purvis, M. K., Savarimuthu, B. T. R., Frantz, C. K., & Purvis, M. A. (2020). Impact of different belief facets on agents' decision--a refined cognitive architecture. arXiv preprint arXiv:2004.11858.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35869, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Sedigh, A. H. A., Purvis, M. K., Savarimuthu, B. T. R., Purvis, M. A., & Frantz, C. K. (2020). Impact of meta-roles on the evolution of organisational institutions. arXiv preprint arXiv:2008.04096.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35870, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Sellers, M. W., Sayama, H., & Pape, A. D. (2020). Simulating Systems Thinking under Bounded Rationality. Complexity, 2020.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35871, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Sells, S. N., & Mitchell, M. S. (2020). The economics of territory selection. Ecological Modelling, 438, 109329.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Economics" + }, + { + "id": 35872, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Sengupta, A., & Sena, V. (2020). Impact of Open Innovation on Industries and Firms\u2013A Dynamic Complex Systems View. Technological Forecasting and Social Change.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35873, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Sfa, F. E., Nemiche, M., & Rayd, H. (2020). A generic macroscopic cellular automata model for land use change: The case of the Dr\u00e2a valley. Ecological Complexity, 43, 100851.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35874, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Shaaban, M. (2020). The roadmap to energy security in Egypt. In M. Brzoska & J. Scheffran (Eds.), Climate change, security risks, and violent conflicts: Essays from integrated climate research in Hamburg (pp. 83-102). Hamburg University Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35875, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Shafiq, A. (2020). Contemporary debates in Islamic monetary economics. Islamic Monetary Economics: Finance and Banking in Contemporary Muslim Economies, 215.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Islamic Monetary Economics" + }, + { + "id": 35876, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Shanaa, M., & Abdallah, S. (2020, November). Agent-based simulation for COVID-19 outbreak within a semi-closed environment. In 2020 First International Conference of Smart Systems and Emerging Technologies (SMARTTECH) (pp. 231-236). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Economics, Ecology, Archaeology, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35877, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Shapiro, R. B. New and Future Coding Paradigms: Interview with R. Benjamin Shapiro. In Holbert, N., Berland, M., & Kafai, Y. B. (eds.), Designing Constructionist Futures: The Art, Theory, and Practice of Learning Designs, 369.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Coding, Interview" + }, + { + "id": 35878, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Shareff, R. (2020). Agricultural Contexts as a Platform for Science and Technology: A Cross-Cultural Examination of Classroom, Community, and Modeling Dynamics (Doctoral dissertation, UC Berkeley).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35879, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Sharma, A., Tale, E., Hernandez, M., & Phuong, V. (2020). Engaging students with computing and climate change through a course in Scientific Computing. Journal of STEM Education: Innovations and Research, 20(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 35880, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Sharma, D., Khandekar, N., & Sachdeva, K. (2020). Exploratory agent-based model to understand migration scenarios: a study from the Indian Himalayan Region, Uttarakhand. Development in Practice, 1-12.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35881, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Shi, L., Zhang, L., & Lu, Y. (2020). Evaluating social network-based weight loss interventions in Chinese population: An agent-based simulation. PloS one, 15(8), e0236716.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35882, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Shi, X., Sun, Z., & Zhu, T. (2020). Multi-Agent Traffic Simulation Considering Heterogeneous Driving Behaviors and Collision. In CICTP 2020 (pp. 4646-4659).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35883, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Shiflet, A. B., Shiflet, G. W., Cannataro, M., Guzzi, P. H., Zucco, C., & Kaplun, D. A. (2020). What Are the Chances?\u2014Hidden Markov Models. In An Introduction to Undergraduate Research in Computational and Mathematical Biology (pp. 353-400). Birkh\u00e4user, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 35884, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Shinde S.B., Kurhekar M.P. (2020) Agent-Based Modeling of the Adaptive Immune System Using Netlogo Simulation Tool. In: Das K., Bansal J., Deep K., Nagar A., Pathipooranam P., Naidu R. (eds) Soft Computing for Problem Solving. Advances in Intelligent Systems and Computing, vol 1057. Springer, Singapore", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Agent-Based Modeling" + }, + { + "id": 35885, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Shoukat, A., & Moghadas, S. M. (2020). Agent-Based Modelling: An Overview with Application to Disease Dynamics. arXiv preprint arXiv:2007.04192.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Disease Dynamics" + }, + { + "id": 35886, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Shrinidhi, K. R., Sneha, V., Jain, V., & Nair, M. K. (2020). Multi-agent-Based Systems in Machine Learning and Its Practical Case Studies. In Machine Learning for Intelligent Decision Science (pp. 153-189). Springer, Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Machine Learning, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35887, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Sibbel, D. M. (2020). Agent-Based Modelling: How climate policies influence population dynamics (Master's thesis).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35888, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Sidiropoulos, G., Kiourt, C., & Moussiades, L. (2020). Crowd simulation for crisis management: the outcomes of the last decade. arXiv preprint arXiv:2006.01216.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry" + }, + { + "id": 35889, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Sikk, K., & Caruso, G. (2020). A spatially explicit agent-based model of central place foraging theory and its explanatory power for hunter-gatherers settlement patterns formation processes. Adaptive Behavior, 1059712320922915.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35890, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Silva, A., & Oliveira, M. (2020, January). Simulando o Jogo de Negocia\u00e7\u00e3o Pit Game em um Sistema Multi-Agentes Implementado com o Framework JaCaMo. In Anais do XVI Encontro Nacional de Intelig\u00eancia Artificial e Computacional (pp. 938-948). SBC.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 35891, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Silva J., Varela N., Lezama O.B.P. (2020) Optimizing Street Mobility Through a NetLogo Simulation Environment. In: Smys S., Tavares J., Balas V., Iliyasu A. (eds) Computational Vision and Bio-Inspired Computing. ICCVBIC 2019. Advances in Intelligent Systems and Computing, vol 1108. Springer, Cham", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computation, Computer Science, Ecology, Simulation, Optics, Bio-Inspired Computing" + }, + { + "id": 35892, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Silva, T., Ara\u00fajo, M., Junior, R., Costa, L., Andrade, J., & Campos, G. (2020, October). Classifying Organizational Structures on Targets in the Cooperative Target Observation. In Anais do XVII Encontro Nacional de Intelig\u00eancia Artificial e Computacional (pp. 718-729). SBC.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35893, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Silva, W. T., Harding, K. C., Marques, G. M., B\u00e4cklin, B. M., Sonne, C., Dietz, R., ... & Desforges, J. P. (2020). Life cycle bioenergetics of the gray seal (Halichoerus grypus) in the Baltic Sea: Population response to environmental stress. Environment International, 145, 106145.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35894, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Singh, R. K., Sardar, M., & Das, D. (2020). Assembling Multi-Robots Along a Boundary of a Region with Obstacles\u2014A Performance Upgradation. In Advances in Computational Intelligence (pp. 201-212). Springer, Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computation, Economics, Physics, Chemistry, Urban Studies, Miscellaneous" + }, + { + "id": 35895, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Singley, A., & Callender Highlander, H. (2020). A Mathematical Model for the Effect of Social Distancing on the Spread of COVID-19. Spora: A Journal of Biomathematics, 6(1), 40-51.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Mathematics, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35896, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Sistrunk, A., Cedeno, V., & Biswas, S. (2020). On synthetic data generation for anomaly detection in complex social networks. arXiv preprint arXiv:2010.13026.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Social Science, Education" + }, + { + "id": 35897, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Smaldino, P. (2020). How to translate a verbal theory into a formal model.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35898, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Smaldino, P., & O'Connor, C. (2020). Interdisciplinarity Can Aid the Spread of Better Methods Between Scientific Communities.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35899, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Sneider, T. (2020). UNETHICAL BEHAVIOR IN ORGANIZATIONS\u2013AN AGENT-BASED APPROACH. In Economic and Social Development (Book of Proceedings), 58th International Scientific Conference on Economic and Social (p. 250).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Economics, Social Science, Miscellaneous" + }, + { + "id": 35900, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Song, W., & Jablonski, P. G. (2020). Evolution of switchable aposematism: insights from individual-based simulations. PeerJ, 8, e8915.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 35901, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Sopamena, P., Andriansyah, R., & Sopamena, K. (2020). Analysis of Understanding of Student Concepts in Solving Absolute Value Problems. Matematika dan Pembelajaran, 7(2), 42-50.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Education" + }, + { + "id": 35902, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Sopha, B. M., Sakti, S., Prasetia, A. C. G., Dwiansarinopa, M. W., & Cullinane, K. (2020). Simulating long-term performance of regional distribution centers in archipelagic logistics systems. Maritime Economics & Logistics, 1-29.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35903, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Souza, J. K. G. D. (2020). Modelagem baseada em agentes: possibilidades na Educa\u00e7\u00e3o Matem\u00e1tica e pesquisa ambiental. [a href=http://200.129.179.47/handle/11612/1773]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35904, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Squazzoni, F., Polhill, J. G., Edmonds, B., Ahrweiler, P., Antosz, P., Scholz, G., ... & Gilbert, N. (2020). Computational models that matter during a global pandemic outbreak: A call to action. Journal of Artificial Societies and Social Simulation, 23(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35905, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Stevanovic, A., & Mitrovic, N. (2020). Impact of conflict resolution parameters on combined alternate-directions lane assignment and reservation-based intersection control. European Transport Research Review, 12(1), 1-10.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35906, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Stiner, S., & Chellamuthu, V. (2020). An Agent-Based Model of West Nile Virus: Predicting the Impact of Public Health Agents and Vaccinations on Horses. Curiosity: Interdisciplinary Journal of Research and Innovation, 44-66.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 35907, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Stork, C. (2020). Exploring self-organisation for car-sharing systems: An agent-based approach.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35908, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Stroup, W. M., Ares, N., Hurford, A. C., & Lesh, R. (2020). Diversity-by-Design. Foundations for the Future in Mathematics Education, 367.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35909, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Student, J., Kramer, M. R., & Steinmann, P. (2020). Coasting: model description, global sensitivity analysis, and scenario discovery. MethodsX, 101145.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35910, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Student, J., Kramer, M. R., & Steinmann, P. (2020). Simulating emerging coastal tourism vulnerabilities: an agent-based modelling approach. Annals of Tourism Research, 85, 103034.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35911, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Su, T. Y. M. (2020). Internal Migration of Foreign-Born in US: Impacts of Population Concentration and Risk Aversion.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35912, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Suliman, T. (2020). Understanding the dynamics of even-aged stands of Brutia pine (Pinus brutia Ten.) in the coastal region of Syria based on a distance-independent individual-tree growth model.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 35913, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Sulis, E., Terna, P., Di Leva, A., Boella, G., & Boccuzzi, A. (2020). Agent-oriented Decision Support System for Business Processes Management with Genetic Algorithm Optimization: an Application in Healthcare. Journal of Medical Systems, 44(9), 1-7.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Decision Support, Optimization, Healthcare" + }, + { + "id": 35914, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Sulis, E., & Tambuscio, M. (2020, October). Simulation of misinformation spreading processes in social networks: an application with netlogo. In 2020 IEEE 7th International Conference on Data Science and Advanced Analytics (DSAA) (pp. 614-618). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Data Science, Analytics, Network Science" + }, + { + "id": 35915, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Sullivan, G. B. (2020). Understanding Listeria Dynamics in Produce Operations Using Three Approaches: Sampling, Sequencing, and in silico Modeling (Doctoral dissertation, Cornell University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35916, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Sun, T., Bu, F., Liu, X., & Fu, Y. (2020, December). Modeling and Simulation of Group Drug-related Incident Evolution. In 2020 5th International Conference on Mechanical, Control and Computer Engineering (ICMCCE) (pp. 1247-1252). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Simulation, Mechanical, Control, Computer Engineering" + }, + { + "id": 35917, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Sundar, S., Battistoni, C., McNulty, R., Morales, F., Gorky, J., Foley, H., & Dhurjati, P. (2020). An agent-based model to investigate microbial initiation of Alzheimer\u2019s via the olfactory system. Theoretical Biology and Medical Modelling, 17(1), 1-15.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Microbial science, Computer Science, Modeling" + }, + { + "id": 35918, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Suneetha, C., Rao, S. S., & Ramesh, K. S. (2020). Ideal frequency rendezvousing for multiuser communication (IFRMC) over cognitive radio network. International Journal of Speech Technology, 1-11.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35919, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Surro, C. J. (2020). Computational Methods and Models in Macroeconomics (Doctoral dissertation, UCLA).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Macroeconomics, Computer Science, Physics, Chemistry, Economics" + }, + { + "id": 35920, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Susaki, K., & Kaneda, T. (2020). The Potential of Vision-Driven Agent Simulation: The VD-Walker. In Downtown Dynamics (pp. 187-205). Springer, Tokyo.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35921, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Swain, A., Devereux, M., & Fagan, W. F. (2020). Deciphering trophic interactions in a mid-Cambrian assemblage. bioRxiv.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 35922, + "sort": null, + "year": 2020, + "is_ccl": true, + "reference": "Swanson, Martin, Sherin & Wilensky (2020). Characterizing Student Theory Building in the Context of Block-Based Computational Modeling. ICLS, Nashville, TN.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 35923, + "sort": null, + "year": 2020, + "is_ccl": true, + "reference": "Swanson, H., Martin, K. (*), Jones, B. (*), Hedayati, M. (*), Wu, S. (*), Sherin, B., Wilensky, U. (2020, April).Characterizing the nature of student theory building in the context of computational modeling activities. Paper accepted for presentation at the annual meeting of the American Education Research Association.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computational Modeling, Education" + }, + { + "id": 35924, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Szczepanska, T., Priebe, M., & Schr\u00f6der, T. (2020). Teaching the Complexity of Urban Systems with Participatory Social Simulation. In Advances in Social Simulation (pp. 427-439). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35925, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Tabasi, M., Alesheikh, A. A., Sofizadeh, A., Saeidian, B., Pradhan, B., & AlAmri, A. (2020). A spatio-temporal agent-based approach for modeling the spread of zoonotic cutaneous leishmaniasis in northeast Iran. Parasites & Vectors, 13(1), 1-17.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35926, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Tabrett, A., & Way, A. M. (2020). A new Monte Carlo simulation tool for designing an archaeological landscape sampling strategy. MethodsX, 101124.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35927, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Tan, M., Hatef, E., Taghipour, D., Vyas, K., Kharrazi, H., Gottlieb, L., & Weiner, J. (2020). Including Social and Behavioral Determinants in Predictive Models: Trends, Challenges, and Opportunities. JMIR Medical Informatics, 8(9), e18084.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Social Science, Biology, Miscellaneous" + }, + { + "id": 35928, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Tang, W., Grimm, V., Tesfatsion, L., Shook, E., Bennett, D., An, L., ... & Ye, X. (2020). Code Reusability and Transparency of Agent-Based Modeling: A Review from a Cyberinfrastructure Perspective. In High Performance Computing for Geospatial Applications (pp. 115-134). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35929, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Tang, Y., Liu, M., & Sun, Z. (2020). Indirect Effects of Grazing on Wind-Dispersed Elm Seeds in Sparse Woodlands of Northern China. Land, 9(12), 490.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Grazing" + }, + { + "id": 35930, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Tang, Z., & Zhu, H. (2020). Nonlinear Dynamic Analysis of New Product Diffusion considering Consumer Heterogeneity. Complexity, 2020.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35931, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Tatar, D., Roschelle, J., & Hegedus, S. (2020). Democratizing Access to Advanced Mathematics (1992\u2013Present). Historical Instructional Design Cases: ID Knowledge in Context and Practice, 283.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35932, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Tekdo\u011fan, \u00d6. F., & Sara\u00e7, M. (2020). The problems with fractional reserve banking and proposing a shariah-compliant full reserve banking model. Islamic Monetary Economics: Finance and Banking in Contemporary Muslim Economies, 133.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Economics, Islamic Monetary Economics" + }, + { + "id": 35933, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Tether, V., Malleson, N., Steenbeek, W., & Birks, D. (2020). Using agent-based models to investigate the presence of edge effects around crime generators and attractors. Agent-Based Modelling for Criminological Theory Testing and Development, 45.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35934, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Tews, A. C. (2020). Predictive Ecological Modeling of Grey Wolf (Canis lupus) Movement using Agent-Based Modeling and GIS (Doctoral dissertation, University of Colorado Colorado Springs).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Archaeology, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35935, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Thiel, D. (2020). A pricing-based location model for deploying a hydrogen fueling station network. International Journal of Hydrogen Energy.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35936, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Thiriot, S. (2020). Impact of the Interaction Network on the Dynamics of Word-of-Mouth with Information Seeking. arXiv preprint arXiv:2002.02728.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, arXiv" + }, + { + "id": 35937, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Thomas, Y., Razafimahefa, N. R., M\u00e9nesguen, A., & Bacher, C. (2020). Multi-scale interaction processes modulate the population response of a benthic species to global warming. Ecological Modelling, 436, 109295.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Global Warming" + }, + { + "id": 35938, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Thongsukdee, P., & Weerawat, W. (2020). Physician workforce planning and allocation model using agent\u2010based modeling: A case study in Thailand. The International Journal of Health Planning and Management.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35939, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Tolk, A., Dinh, K., Comer, K., & Scott, S. (2020, May). Exploratory analysis to address deep uncertainty: using calibratable system models for exploratory simulation of complex missions. In Proceedings of the 2020 Spring Simulation Conference (pp. 1-11).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35940, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Tolk, A., Harper, A., & Mustafee, N. (2020). Hybrid Models as Transdisciplinary Research Enablers. European Journal of Operational Research.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35941, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Tomasiello, D. B., Giannotti, M., & Feitosa, F. F. (2020). ACCESS: An agent-based model to explore job accessibility inequalities. Computers, Environment and Urban Systems, 81, 101462.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35942, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Tosselli, L., Bogado, V., & Mart\u00ednez, E. (2020). A repeated-negotiation game approach to distributed (re) scheduling of multiple projects using decoupled learning. Simulation Modelling Practice and Theory, 98, 101980.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35943, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Tran, M., Ngo, M., Pham-Hi, D., & Bui, M. (2020, October). Bayesian Calibration of Hyperparameters in Agent-Based Stock Market. In 2020 RIVF International Conference on Computing and Communication Technologies (RIVF) (pp. 1-6). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35944, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Trinh, L. T., Sano, K., & Hatoyama, A. K. (2020). Modelling and Simulating Head-On Conflict-Solving Behaviour of Motorcycles under Heterogeneous Traffic Condition in Developing Countries. Transportmetrica A: Transport Science, 1-48.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35945, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Tsai, M. H., & Huang, S. R. (2020). Team Efficiency Estimation for Construction Process Considering the Collaborative Behaviors. Journal of Applied Science and Engineering, 23(1), 79\u043392.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35946, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Tseng, S. H., & Son Nguyen, T. (2020). Agent-Based Modeling of Rumor Propagation Using Expected Integrated Mean Squared Error Optimal Design. Applied System Innovation, 3(4), 48.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35947, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Tuesta, E. F., Bola\u00f1os-Pizarro, M., Neves, D. P., Fern\u00e1ndez, G., & Axel-Berg, J. (2020). Complex networks for benchmarking in global universities rankings. Scientometrics, 1-21.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35948, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Tyszberowicz, S., & Faitelson, D. (2020). Emergence in cyber-physical systems: potential and risk. Frontiers of Information Technology & Electronic Engineering, 21(11), 1554-1566.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Cyber-Physical Systems, Computer Science, Economics, Physics, Chemistry, Electronics, Information Technology, Engineering" + }, + { + "id": 35949, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Uyar, T., & \u00d6zel, M. E. (2020). Agent-based modelling of interstellar contacts using rumour spread models. International Journal of Astrobiology, 1-7.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Astrophysics" + }, + { + "id": 35950, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "van Doormaal, N., Ruiter, S., & Lemieux, A. M. (2020). Corruption and the shadow of the future. Agent-Based Modelling for Criminological Theory Testing and Development, 167.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35951, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "van Doren, D. (2020). Enabling Innovation Within Public Research Institutes: A Modelling Approach. In Advances in Social Simulation (pp. 441-449). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35952, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "van Tol, M. C. M., Moncada, J. A., Lukszo, Z., & Weijnen, M. (2020). Modelling the interaction between policies and international trade flows for liquid biofuels: an agent-based modelling approach. Energy Policy, 112021.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Economics, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35953, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Van Voorn, G., Hengeveld, G., & Verhagen, J. (2020). An agent based model representation to assess resilience and efficiency of food supply chains. Plos one, 15(11), e0242323.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35954, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "van Weerden, J. F., Verbrugge, R., & Hemelrijk, C. K. (2020). Modelling non-attentional visual information transmission in groups under predation. Ecological Modelling, 431, 109073.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 35955, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Veldt, N., Benson, A. R., & Kleinberg, J. (2020, August). Minimizing Localized Ratio Cut Objectives in Hypergraphs. In Proceedings of the 26th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining (pp. 1708-1718).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35956, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Veloso, P., & Krishnamurti, R. (2020, September). An academy of spatial agents: Generating spatial configurations with deep reinforcement learning. Cognizant Architecture - What if Buildings Could Think?, 2, 191-200.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35957, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Vendome, C., Rao, D. M., & Giabbanelli, P. J. (2020, May). How do modelers code artificial societies? investigating practices and quality of netlogo codes from large repositories. In Proceedings of the 2020 Spring Simulation Conference (pp. 1-12).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35958, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Verhagen, P. (2020). NetLogo palaeodemography scripts.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 35959, + "sort": null, + "year": 2020, + "is_ccl": true, + "reference": "Vermeer, W., Hjorth, A., Jenness, S. M., Brown, C. H., & Wilensky, U. (2020). Leveraging modularity during replication of high-fidelity models: Lessons from replicating an agent-based model for HIV prevention. Journal of Artificial Societies and Social Simulation, 23(4), 7. doi.org/10.18564/jasss.4352", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35960, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Vernon-Bido, D., & Collins, A. J. (2020). Finding Core Members of Cooperative Games using Agent-Based Modeling. arXiv preprint arXiv:2009.00519.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35961, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Vidal-Cordasco, M., & Nuevo-L\u00f3pez, A. Resilience and vulnerability to climate change in the Greek Dark Ages. Journal of Anthropological Archaeology, 61, 101239.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35962, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Vieira, A. A., Dias, L. M., Santos, M. Y., Pereira, G. A., & Oliveira, J. A. (2020). Supply Chain Data Integration: A Literature Review. Journal of Industrial Information Integration, 100161.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35963, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Vigoda-Gadot, E., & Vashdi, D. R. (2020). Towards a new age of research methods in public administration, public management and public policy. Handbook of Research Methods in Public Administration, Management and Policy, 1.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35964, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Villanuevaa, S. K. D., & Buhata, C. A. H. Determining the Effectiveness of Practicing Non-Pharmaceutical Interventions in Improving Virus Control in a Pandemic using Agent-Based Modelling.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35965, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Viloria, A., Arias, Y. A. O., Balaguera, M. I., Lis-Guti\u00e9rrez, J. P., Angulo, M. G., & Lis-Gutierrez, M. (2020). Modeling and Simulating Human Occupation: A NetLogo-Agent-Based Toy Model. In Advances in Electrical and Computer Technologies (pp. 135-145). Springer, Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35966, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Vlug, J. H. (2020). Impact of Migration and Urbanization on Cities: an Agent-Based Model on the effects of Migration on the city of The Hague.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35967, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Vodovotz, Y., & An, G. (2020). Agent-Based Modeling of Wound Healing: Examples for Basic and Translational Research. In Complex Systems and Computational Biology Approaches to Acute Inflammation (pp. 223-243). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Chemistry" + }, + { + "id": 35968, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Voinov, A., Perez, P., Castilla-Rho, J. C., & Kenny, D. C. (2020). Integrated ecological economic modeling: what is it good for?. In Sustainable Wellbeing Futures. Edward Elgar Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Economics, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35969, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "von Briesen, E. M. (2020). Modeling Identity-Based Conflict and Genocide-An Approach Informed by Complexity Theory and Computational Social Science (Doctoral dissertation, The University of North Carolina at Charlotte).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35970, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Vu, T., Probst, C., Nielsen, A., Bai, H., Buckley, C., Meier, P., ... & Purshouse, R. (2020). A software architecture for mechanism-based social systems modelling in agent-based simulation models. Journal of Artificial Societies and Social Simulation.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, Social Science, Education" + }, + { + "id": 35971, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Walker, N. D., Boyd, R., Watson, J., Kotz, M., Radford, Z., Readdy, L., ... & Hyder, K. (2020). A spatially explicit individual-based model to support management of commercial and recreational fisheries for European sea bass Dicentrarchus labrax. Ecological Modelling, 431, 109179.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Modeling, Fisheries" + }, + { + "id": 35972, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Waltemath, D., Golebiewski, M., Blinov, M. L., Gleeson, P., Hermjakob, H., Hucka, M., ... & Malik-Sheriff, R. S. (2020). The first 10 years of the international coordination network for standards in systems and synthetic biology (COMBINE). Journal of Integrative Bioinformatics, 1(ahead-of-print).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Standards, Bioinformatics, Systems Biology" + }, + { + "id": 35973, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Wang, A., & Chan, E. H. (2020). The impact of power-geometry in participatory planning on urban greening. Urban Forestry & Urban Greening, 48, 126571.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Urban Studies, Computer Science, Economics" + }, + { + "id": 35974, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Wang, A., Wang, H., & Chan, E. (2020). The incompatibility in urban green space provision: An agent-based comparative study. Journal of Cleaner Production, 120007.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35975, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Wang, M., Tsanas, A., Blin, G., & Robertson, D. (2020). Predicting pattern formation in embryonic stem cells using a minimalist, agent-based probabilistic model. Scientific Reports, 10(1), 1-13.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics" + }, + { + "id": 35976, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Wang, Q., & Mao, X. (2020). Dynamic Task Allocation Method of Swarm Robots Based on Optimal Mass Transport Theory. Symmetry, 12(10), 1682.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Archaeology, Social Science, Education, Epidemiology" + }, + { + "id": 35977, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Wang, Y., Li, X., Zhang, F., Wang, W., & Xiao, R. (2020). Effects of rapid urbanization on ecological functional vulnerability of the land system in Wuhan, China: A flow and stock perspective. Journal of Cleaner Production, 248, 119284.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Urban Studies, Miscellaneous" + }, + { + "id": 35978, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Wang, Z., & Jia, G. (2020). A novel agent-based model for tsunami evacuation simulation and risk assessment. Natural Hazards, 1-27.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35979, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Waziri, N. (2020). Education for All? Complex solutions to complex problems in the Nigerian education sector (Doctoral dissertation, University of Cambridge).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35980, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Webster, K. (2020, June). Negotiating an Inefficient Market: An Agent-Based Model Approach to Property Insurance Claim Negotiations. In Advances in Simulation and Digital Human Modeling: Proceedings of the AHFE 2020 Virtual Conferences on Human Factors and Simulation, and Digital Human Modeling and Applied Optimization, July 16-20, 2020, USA (Vol. 1206, p. 65). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Agent-based Model \n\nProperty Insurance Claim Negotiations" + }, + { + "id": 35981, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Wheatley, R., Pavlic, T. P., Levy, O., & Wilson, R. S. (2020). Habitat features and performance interact to determine the outcomes of terrestrial predator\u2010prey pursuits. Journal of Animal Ecology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 35982, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Widyastuti, K., Imron, M. A., Pradopo, S. T., Suryatmojo, H., Sopha, B. M., Spessa, A., & Berger, U. (2020). PeatFire: an agent-based model to simulate fire ignition and spreading in a tropical peatland ecosystem. International Journal of Wildland Fire.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, Modeling" + }, + { + "id": 35983, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Wijermans, N., Boonstra, W. J., Orach, K., Hentati\u2010Sundberg, J., & Schl\u00fcter, M. (2020). Behavioural diversity in fishing\u2014Towards a next generation of fishery models. Fish and Fisheries.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35984, + "sort": null, + "year": 2020, + "is_ccl": true, + "reference": "Wilensky, U. J. (2020) New Developments in Restructuration Theory and Understanding Complex Systems Through Agent-Based Restructurations. AERA Annual Meeting San Francisco, CA http://tinyurl.com/rvb86xr (Conference Canceled)", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35985, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Wilkerson, M. H. & Gravel, B. Storytelling as a Support for Collective Constructionist Activity. In Holbert, N., Berland, M., & Kafai, Y. B. (eds.), Designing Constructionist Futures: The Art, Theory, and Practice of Learning Designs, 213.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Storytelling" + }, + { + "id": 35986, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Williams, R. A. (2020). User Experiences using FLAME: A Case Study Modelling Conflict in Large Enterprise System Implementations. Simulation Modelling Practice and Theory, 102196.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation Modelling, Practice, Theory" + }, + { + "id": 35987, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Williams, T. G., Guikema, S. D., Brown, D. G., & Agrawal, A. (2020). Assessing model equifinality for robust policy analysis in complex socio-environmental systems. Environmental Modelling & Software, 104831.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35988, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Wilson, K. M., & Hill, M. G. (2020). Synthesis and assessment of the flat-headed peccary record in North America. Quaternary Science Reviews, 248, 106601.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 35989, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Winterrose, M. L., Carter, K. M., Wagner, N., & Streilein, W. W. (2020). Adaptive attacker strategy development against moving target cyber defenses. In Advances in Cyber Security Analytics and Decision Systems (pp. 1-14). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 35990, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Wolf, S., Burrows, A. C., Borowczak, M., Johnson, M., Cooley, R., & Mogenson, K. (2020). Integrated Outreach: Increasing Engagement in Computer Science and Cybersecurity. Education Sciences, 10(12), 353.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science, Biology, Ecology, Economics" + }, + { + "id": 35991, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Wong, S. M., & Montalto, F. A. (2020). Exploring the Long\u2010Term Economic and Social Impact of Green Infrastructure in New York City. Water Resources Research, e2019WR027008.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35992, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Wozniak, M. (2020). Virtualising Space\u2013New Directions for Applications of Agent-Based Modelling in Spatial Economics. Acta Universitatis Lodziensis. Folia Oeconomica, 1(346), 7-26.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35993, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Wu, B. (2020). Investor Behavior and Risk Contagion in an Information-Based Artificial Stock Market. IEEE Access, 8, 126725-126732.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Risk Contagion, Artificial Stock Market, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35994, + "sort": null, + "year": 2020, + "is_ccl": true, + "reference": "Wu, S. P. W., Peel, A. M., Bain, C., Anton, G., Horn, M. S. & Wilensky, U. (2020). Workshops and co-design can help teachers integrate computational thinking into their K-12 STEM classes. Proceedings of CTE2020. Hong Kong, China.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35995, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Wu, X., Lin, Y., & Zhao, L. (2020). Simulation Modeling of Tourists\u2019 Travel Behaviors at the Intra-City Scale. In CICTP 2020 (pp. 4599-4608).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35996, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Xia, H., Li, L., Cheng, X., Liu, C., & Qiu, T. (2020). A dynamic virus propagation model based on social attributes in city IoTs. IEEE Internet of Things Journal.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35997, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Xiang, L., Shen, G., & Tan, Y. (2020, December). A Multi-agent Platform to Inform Strategies for Briefing Age-Friendly Communities in Urban China. In International Conference on Resource Sustainability-Sustainable Urbanisation in the BRI Era (pp. 181-193). Springer, Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 35998, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Yang, Q., Sun, Y., Liu, X., & Wang, J. (2020). MAS-Based Evacuation Simulation of an Urban Community during an Urban Rainstorm Disaster in China. Sustainability, 12(2), 546.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 35999, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Yang, Q., Wang, J., Liu, X., & Xia, J. (2020). MAS-Based Interaction Simulation within Asymmetric Information on Emergency Management of Urban Rainstorm Disaster. Complexity, 2020.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36000, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Yao, X., Sun, H., & Fan, B. (2020). A novel simulation framework for crowd co-decisions. International Journal of Crowd Science.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36001, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Yasrebi-Soppa, P., Bartels, J. J., Viefhaus, S., Reuss, P., & Althoff, K. D. (2020). Visualizing the behavior of CBR agents in an FPS Scenario.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36002, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Ye, T., Ning, Z., Zhang, J., & Xu, M. (2020). Trusted measurement of behaviors for the Internet of Things. Alexandria Engineering Journal.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology" + }, + { + "id": 36003, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Y\u0131ld\u0131z, B., & \u00c7a\u011fda\u015f, G. (2020). Fuzzy logic in agent-based modeling of user movement in urban space: Definition and application to a case study of a square. Building and Environment, 169, 106597.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Fuzzy logic, Agent-based modeling, Urban space, User movement" + }, + { + "id": 36004, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Youl, E., Malo, S., & Ouaro, S. (2020, November). An Agent-Based Study of the Impact of Sensitization on the Spread of Covid 19 in Burkina Faso. In Proceedings of the Future Technologies Conference (pp. 64-77). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36005, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Young, E., & Aguirre, B. (2020). PrioritEvac: an Agent-Based Model (ABM) for Examining Social Factors of Building Fire Evacuation. Information Systems Frontiers, 1-14.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36006, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Yousefi, M., Yousefi, M., & Fogliatto, F. S. (2020). Simulation-based optimization methods applied in hospital emergency departments: A systematic review. Simulation, 0037549720944483.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation, Optimization, Hospital Emergency Departments" + }, + { + "id": 36007, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Yue, T., Long, R., Chen, H., Liu, J., Liu, H., & Gu, Y. (2020). Energy-saving behavior of urban residents in China: A multi-agent simulation. Journal of Cleaner Production, 252, 119623.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36008, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Yust, A. E., & Smyth, D. S. (2020). Simulating Bacterial Growth, Competition, and Resistance with Agent-Based Models and Laboratory Experiments. In An Introduction to Undergraduate Research in Computational and Mathematical Biology (pp. 217-271). Birkh\u00e4user, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36009, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Zahmani, M. H., & Atmani, B. (2020). Multiple dispatching rules allocation in real time using data mining, genetic algorithms, and simulation. Journal of Scheduling, 1-22.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Data Mining\nGenetic Algorithms\nSimulation" + }, + { + "id": 36010, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Zakharova, L., Meyer, K. M., & Seifan, M. (2020). Combining trait-and individual-based modelling to understand desert plant community dynamics. Ecological Modelling, 434, 109260.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Modeling" + }, + { + "id": 36011, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Zamora-Maldonado, H. C., Avila-Foucat, V. S., S\u00e1nchez-Sotomayor, V. G., & Lee, R. Social-ecological Resilience Modeling: Water Stress Effects in the Bighorn Sheep Management System in Baja California Sur, Mexico. Ecological Complexity, 45, 100884.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Social Science" + }, + { + "id": 36012, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Zapata-Roldan, F., & Sheikh, N. J. (2020). A Design Management Agent-Based Model for New Product Development. IEEE Transactions on Engineering Management.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Engineering Management" + }, + { + "id": 36013, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Zarrabi, A. H., Azarbayjani, M., & Tavakoli, M. (2020) Generative Design Tool: Integrated Approach toward Development of Piezoelectric Fa\u00e7ade System. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36014, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Zhang, B. H., & Ahmed, S. A. (2020). Systems Thinking\u2014Ludwig Von Bertalanffy, Peter Senge, and Donella Meadows. In Science Education in Theory and Practice (pp. 419-436). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36015, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Zhang, D. (2020). Teaching Geometry to Students With Learning Disabilities: Introduction to the Special Series. Learning Disability Quarterly, 0731948720959769.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36016, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Zhang, G., Li, H., & Yan, S. (2020). The Vital Few: Exploring the Role of Expertise in the Process of Team Creativity. The Journal of Creative Behavior.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36017, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Zhang, H., & Zhang, B. (2020). The unintended impact of carbon trading of China's power sector. Energy Policy, 147, 111876.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36018, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Zhang, M., Chen, H., Li, X., & Luo, A. (2020). Describing coevolution of business and IS alignment via agent-based modeling.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36019, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Zhang, M., Chen, H., & Lyytinen, K. (2020). Validating the coevolutionary principles of business and IS alignment via agent-based modeling. European Journal of Information Systems, 1-16.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36020, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Zhang, R., & Chan, W. K. V. (2020, July). Evaluation of Energy Consumption in Block-Chains with Proof of Work and Proof of Stake. In Journal of Physics: Conference Series (Vol. 1584, No. 1, p. 012023). IOP Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Physics, Chemistry" + }, + { + "id": 36021, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Zhang, R., & Tielb\u00f6rger, K. (2020). Density-dependence tips the change of plant\u2013plant interactions under environmental stress. Nature Communications, 11(1), 1-9.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology" + }, + { + "id": 36022, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Zhang, X., Xu, L., & Gao, M. (2020, September). An Efficient Influence Maximization Algorithm Based on Social Relationship Priority in Mobile Social Networks. In International Symposium on Security and Privacy in Social Networks and Big Data (pp. 164-177). Springer, Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36023, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Zhang, Y., Gao, J., Cole, S., & Ricci, P. (2020). How the Spread of User-Generated Contents (UGC) Shapes International Tourism Distribution: Using Agent-Based Modeling to Inform Strategic UGC Marketing. Journal of Travel Research, 0047287520951639.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Tourism, Modeling, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36024, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Zhao, J., Bai, A., Xi, X., Huang, Y., & Wang, S. (2020). Impacts of malicious attacks on robustness of knowledge networks: a multi-agent-based simulation. Journal of Knowledge Management.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36025, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Zhao, X., Rivera-Monroy, V. H., Wang, H., Xue, Z. G., Tsai, C. F., Willson, C. S., ... & Twilley, R. R. (2020). Modeling soil porewater salinity in mangrove forests (Everglades, Florida, USA) impacted by hydrological restoration and a warming climate. Ecological Modelling, 436, 109292.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36026, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Zheng, J., Ma, G., Wei, J., Wei, W., He, Y., Jiao, Y., & Han, X. (2020). Evolutionary process of household waste separation behavior based on social networks. Resources, Conservation and Recycling, 161, 105009.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Social Science, Computer Science, Economics" + }, + { + "id": 36027, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Zheng, Y. (2020, June). The Theme Cooperation Mechanism of Science and Technology Enterprise Incubation Alliance Based on Multi-agent System under Computer Control. In Journal of Physics: Conference Series (Vol. 1574, No. 1, p. 012071). IOP Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics" + }, + { + "id": 36028, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Zhou, H., Shen, S., & Liu, J. (2020). Malware propagation model in wireless sensor networks under attack\u2013defense confrontation. Computer Communications.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Malware" + }, + { + "id": 36029, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Zhuo, L., & Han, D. (2020). Agent-based modelling and flood risk management: a compendious literature review. Journal of Hydrology, 125600.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Flood risk management, Modeling, Literature review" + }, + { + "id": 36030, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Ziv, G., Beckmann, M., Bullock, J., Cord, A., Delzeit, R., Domingo, C., ... & Neteler, M. (2020). BESTMAP: behavioural, Ecological and Socio-economic Tools for Modelling Agricultural Policy. Research Ideas and Outcomes, 6, e52052.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Socio-economic" + }, + { + "id": 36031, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Zori\u010dak, M., Horv\u00e1th, D., Gazda, V., & Hudec, O. (2020). Spatial evolution of industries modelled by cellular automata. Journal of Business Research.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36032, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Zou, J., Wang, K., & Sun, H. (2020). An implementation architecture for crowd network simulations. International Journal of Crowd Science.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36033, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Zukri, N. H. A., Rashid, N. A. M., Awang, N., & Zulkifli, Z. A. (2020). Agent-Based Encryption for Password Management Application. In Charting the Sustainable Future of ASEAN in Science and Technology (pp. 529-541). Springer, Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36034, + "sort": null, + "year": 2020, + "is_ccl": false, + "reference": "Zvereva, O. M. (2020). Investigation of Money Turnover in the Computer Agent-Based Model. In Advances in Information Technologies, Telecommunication, and Radioelectronics (pp. 95-105). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 36035, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Abdulkareem, S. A., Mustafa, Y. T., Augustijn, E. W., & Filatova, T. (2019). Bayesian networks for spatial learning: a workflow on using limited survey data for intelligent learning in spatial agent-based models. Geoinformatica, 23(2), 243-268.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36036, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Abdullah, L. (2019). Model Interaksi Pelaku Hutan Rakyat dalam Perdagangan Kayu: Pendekatan Simulasi Model Berbasis Agen (The Interaction Model of Community Forest Behavior in Wood Trade: Agent Based Modelling Approach). Jurnal Penelitian Hutan Tanaman, 16(1), 21-34.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36037, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Abrahamson, D. (2019). A new world: Educational research on the sensorimotor roots of mathematical reasoning. In A. Shvarts (Ed.), Proceedings of the annual meeting of the Russian chapter of the International Group for the Psychology of Mathematics Education (PME) & Yandex (pp. 48\u201368). Moscow: Yandex", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Psychology of Mathematics Education" + }, + { + "id": 36038, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Abrahamson, D., Flood, V. J., Miele, J. A., & Siu, Y.-T. (2019). Enactivism and ethnomethodological conversation analysis as tools for expanding Universal Design for Learning: The case of visually impaired mathematics students. ZDM Mathematics Education, 51(2), 291-303. doi:10.1007/s11858-018-0998-1 ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36039, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Abrahamson, D., & Shulman, A. (2019). Co-constructing movement in mathematics and dance: An interdisciplinary pedagogical dialogue on subjectivity and awareness. Feldenkrais Research Journal, 6, 1-24. Retrieved from ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36040, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Adeel, M., Khalid, M., Asif, M., & Faisal, M. N. (2019). Simulation Models for Comparison of Toxicities of Anticancer Drugs. Annals of Punjab Medical College (APMC), 13(3), 216-222.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation Models, Anticancer Drugs" + }, + { + "id": 36041, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Aghaie, A., & Hajian Heidary, M. (2019). Simulation-based optimization of a stochastic supply chain considering supplier disruption: Agent-based modeling and reinforcement learning. Scientia Iranica, 26(6), 3780-3795.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36042, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Ahmed, S. H., Bashir, A. K., & Guibene, W. (2019). Introduction to the special section on emerging technologies for connected vehicles and ITS networks. Computers & Electrical Engineering, 75, 309-311.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36043, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Aji, W. S. (2019). Simulation with Multi Agent Flood Prediction Based on Rain Intensity Using Particle Swarm Otimization. Jurnal Teknologi Informasi, 5(2), 93-98.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation, Rain Intensity, Particle Swarm Optimization" + }, + { + "id": 36044, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Al-Najjar, A. A. M., & Chasib, H. S. (2019). Design and implementation weights equation for optimization DSR protocol in MANETs environment. Int. J. Adv. Sci. Technol, 28(8), 457-470.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Optimization, Computer Science, Engineering, Economics" + }, + { + "id": 36045, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Alves, F., Varela, M. L. R., Rocha, A. M. A., Pereira, A. I., & Leit\u00e3o, P. (2019). A human centred hybrid MAS and meta-heuristics based system for simultaneously supporting scheduling and plant layout adjustment.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36046, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Amelia, P., & Lathifah, A. (2019). Dynamics analysis of container needs and availability in surabaya container terminal with agent-based modeling and simulation. Procedia Computer Science, 161, 910-918.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36047, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Anderson, Sven, and Siv Disa Anderson. \"Coding and Music Creation in a Multi-Agent Environment.\" Proceedings of the 2020 ACM Conference on Innovation and Technology in Computer Science Education. 2020.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 36048, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Antelmi, A., Cordasco, G., D\u2019Auria, M., De Vinco, D., Negro, A., & Spagnuolo, C. (2019, October). On Evaluating Rust as a Programming Language for the Future of Massive Agent-Based Simulations. In Asian Simulation Conference (pp. 15-28). Springer, Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36049, + "sort": null, + "year": 2019, + "is_ccl": true, + "reference": "Anton, G. & Wilensky, U. (2019). One size fits all: Designing for socialization in physical computing. In Proceedings of the 50th ACM technical symposium on computer science education (pp. 825 - 831). ACM", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36050, + "sort": null, + "year": 2019, + "is_ccl": true, + "reference": "Arastoopour Irgens, G., Chandra, S., Dabholkar, S., Horn, M., & Wilensky, U. (2019). Classifying Emergent Student Learning in a High School Computational Chemistry Unit. Paper presented at the American Education Research Association (AERA) Conference. Toronto, CA", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Chemistry" + }, + { + "id": 36051, + "sort": null, + "year": 2019, + "is_ccl": true, + "reference": "Arastoopour Irgens, G., Dabholkar, S., Bain, C., Woods, P., Hall, K., Swanson, H., Horn, M., & Wilensky, U. (2019). Modeling and Measuring Students' Computational Thinking Practices in Science. Journal of Science Education and Technology. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Ecology, Physics, Chemistry, Economics, History, Social Science, Education, Epidemiology" + }, + { + "id": 36052, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Ashley, D. R., Chockalingam, V., Kuzma, B., & Bulitko, V. (2019, July). Learning to select mates in artificial life. In Proceedings of the Genetic and Evolutionary Computation Conference Companion (pp. 103-104).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36053, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Ashraf, R., Zafar, B., Jabbar, S., Ahmad, M., & Ahmed, S. H. (2019). Modeling and Simulation of Resource-Constrained Vaccination Strategies and Epidemic Outbreaks. In Applications of Intelligent Technologies in Healthcare (pp. 131-141). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36054, + "sort": null, + "year": 2019, + "is_ccl": true, + "reference": "Aslan, U., Anton, G., & Wilensky, U. (2019). Bringing Powerful Ideas to Middle School Students' Lives Through Agent-Based Modeling.a Paper presented at the Annual Meeting of the American Educational Research Association (AERA) 2019. Toronto, CA ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36055, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Azarov, I., Peskov, K., Helmlinger, G., & Kosinsky, Y. (2019). Role of T cell-to-dendritic cell chemoattraction in T cell priming initiation in the lymph node: An agent-based modeling study. Frontiers in immunology, 10, 1289.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Cell biology, Chemotherapy, Modeling, Agent-based modeling" + }, + { + "id": 36056, + "sort": null, + "year": 2019, + "is_ccl": true, + "reference": "Bain, C. & Wilensky U. (2019). Sorting Out Algorithms: Learning about Complexity through Participatory Simulations. In E. K. Hawthorne, M. A. P\u00e9rez-Qui\u00f1ones, S. Heckman, & J. Zhang (Eds.). Proceedings of the 50th ACM Technical Symposium on Computer Science Education (SIGCSE '19), February 27-March 2, 2019, Minneapolis, MN, USA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Complexity, Simulation, Computer Science, Education" + }, + { + "id": 36057, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Bain, C., & Anton, G. (2019, February). Integrating Agent-based Modeling in STEM Classes: From Blocks to Text and Back?. In Proceedings of the 50th ACM Technical Symposium on Computer Science Education (pp. 1238-1238).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Chemistry" + }, + { + "id": 36058, + "sort": null, + "year": 2019, + "is_ccl": true, + "reference": "Bain, C., Anton, G., Horn, M., & Wilensky, U. (2019, October). Position: Building Blocks for Agent-based Modeling Can Scaffold Computational Thinking Engagement in STEM Classrooms. In 2019 IEEE Blocks and Beyond Workshop (B&B) (pp. 1-4).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Chemistry" + }, + { + "id": 36059, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Basu, D. (2019). Examining Students\u2019 Covariational Reasoning Through Mathematical Modeling Activities Embedded in the Context of the Greenhouse Effect.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Economics" + }, + { + "id": 36060, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Basu, D., & Panorkou, N. (2019). Integrating Covariational Reasoning and Technology into the Teaching and Learning of the Greenhouse Effect. Journal of Mathematics Education, 12(1), 6-23.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Computer Science, Education" + }, + { + "id": 36061, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Barbuto, A., Lopolito, A., Santeramo, F.G. (2019) Improving diffusion in agriculture: an agent-based model to find the predictors for efficient early adopters Agricultural and Food Economics. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Agriculture, Modeling" + }, + { + "id": 36062, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Bauduin, S., McIntire, E. J., & Chubaty, A. M. (2019). NetLogoR: a package to build and run spatially explicit agent\u2010based models in R. Ecography, 42(11), 1841-1849.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36063, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Bayo, M. (2019). Agend-Based-Modelling. Pond eutrophication in agroecosystems and the influence of combinations of pesticides and fertilizers on aquatic productivity. GRIN Verlag.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Agrochemicals, Ecology" + }, + { + "id": 36064, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Benhadi-Mar\u00edn, J., Pereira, J. A., Sousa, J. P., & Santos, S. A. (2019). EcoPred: an educational individual based model to explain biological control, a case study within an arable land. Journal of Biological Education, 1-16.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology" + }, + { + "id": 36065, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Bipasha, T., Azucena, J., Alkhaleel, B., Liao, H., & Nachtmann, H. (2019, December). Hybrid simulation to support interdependence modeling of a multimodal transportation network. In 2019 Winter Simulation Conference (WSC) (pp. 1390-1401). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Physics, Economics, Ecology, Archaeology, History, Social Science, Education, Epidemiology" + }, + { + "id": 36066, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Bithell, M. Creating a Model of the Earth System (MOTES): Some Experiences with Parallel ABM. In\u00a0Advances in Social Simulation: Proceedings of the 15th Social Simulation Conference: 23\u201327 September 2019\u00a0(p. 459). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Social Science, Miscellaneous" + }, + { + "id": 36067, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Blikstein, P., & Moghadam, S. H. (2019). 3 Computing Education. The Cambridge handbook of computing education research, 56.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 36068, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Bo, Y. (2019). The data clustering based dynamic risk identification of biological immune system: mechanism, method and simulation. Cluster Computing, 22(3), 6253-6266.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Data Clustering, Risk Identification" + }, + { + "id": 36069, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Borong, N., & Galdo, M. (2019). NET LINGO Initialism: An Agent-Based Model on Language. Journal of Educational and Human Resource Development, 7, 150-155.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36070, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Borowczak, M., & Burrows, A. C. (2019). Ants Go Marching\u2014Integrating Computer Science into Teacher Professional Development with NetLogo. Education Sciences, 9(1), 66.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 36071, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Bortz, W. W., Gautam, A., Lipscomb, K., & Tatar, D. (2019). Integration Computational Thinking into Middle School Science: A search for Synergistic Pedagogy. In ASEE Southeastern Section Conference.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 36072, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Boukehila, A., & Taleb, N. (2019, November). Case-Based Approach to Detect Emergence. In Proceedings of the 2019 3rd International Conference on Big Data Research (pp. 98-102).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 36073, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Brennan, R. W., Hermanson, G., Nelson, N., Paul, R., & Sullivan, M. (2019). Using agent-based modelling for preliminary EER experimental design. Proceedings of the Canadian Engineering Education Association (CEEA).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Computer Science, Economics, Physics, Chemistry, Ecology" + }, + { + "id": 36074, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Browning, F., Moore K., Campos, J. (2019) Exploring Negative Absolute Temperature Using NetLogo. The Physics Journal, 57(26), 26-27. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Physics" + }, + { + "id": 36075, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Bulitko, V., Doucet, K., Evans, D., Docking, H., Walters, M., Oliver, M., ... & Kendal-Freedman, N. (2019, July). A-life Evolution with Human Proxies. In Artificial Life Conference Proceedings (pp. 465-466). One Rogers Street, Cambridge, MA 02142-1209 USA journals-info@ mit. edu: MIT Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Archaeology, Computer Science, Miscellaneous" + }, + { + "id": 36076, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Burbach, L., Belavadi, P., Halbach, P., Plettenberg, N., Nakayama, J., Ziefle, M., & Valdez, A. C. Towards An Understanding of Opinion Formation on the Internet. In\u00a0Advances in Social Simulation: Proceedings of the 15th Social Simulation Conference: 23\u201327 September 2019\u00a0(p. 133). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Social Science, Miscellaneous" + }, + { + "id": 36077, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Buss, A., Shepherd, C. E., & Smith, S. M. (2019). Learning from Failure: Growing Roses of Success.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36078, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Butler, G., Rudge, J., & Dash, P. R. (2019). Mathematical modelling of cell migration. Essays in biochemistry, 63(5), 631-637.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Mathematics\nBiology" + }, + { + "id": 36079, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Calabr\u00f2, G., Torrisi, V., Inturri, G., & Ignaccolo, M. (2020). Improving inbound logistic planning for large-scale real-world routing problems: a novel ant-colony simulation-based optimization. European Transport Research Review, 12(1), 1-11.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36080, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Cardinot, M., O\u2019Riordan, C., Griffith, J., & Perc, M. (2019). Evoplex: A platform for agent-based modeling on networks. SoftwareX, 9, 199-204.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36081, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Cascalho, J., Trigo, P., Cruz, M. J., Mendes, A., Giacomello, E., Ressurrei\u00e7ao, A., ... & Morato, T. (2019). SIMSEA: A Multiagent Architecture for Fishing Activity in a Simulated Environment.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36082, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Casta\u00f1eda-Mart\u00ednez R.A., Flores DL., Castro C., Ben\u00edtez B.(2019). Agent-Based Model of Resistant Bacterial Evolution in an Heterogeneous Medium. In: Sanchez M., Aguilar L., Casta\u00f1\u00f3n-Puga M., Rodr\u00edguez A. (eds) Applied Decision-Making. Studies in Systems, Decision and Control, vol 209. Springer, Cham", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Agent-Based Model" + }, + { + "id": 36083, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Castro, C., Flores, D. L., Cervantes-V\u00e1squez, D., Vargas-Viveros, E., Guti\u00e9rrez-L\u00f3pez, E., & Mu\u00f1oz-Mu\u00f1oz, F. (2019). An agent-based model of the fission yeast cell cycle. Current genetics, 65(1), 193-200.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Mathematics, Miscellaneous" + }, + { + "id": 36084, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Castro, C., Flores, D. L., Vargas, E., Cervantes, D., & Delgado, E. (2019). Agent-Based Model of the Budding Yeast Cell Cycle Regulatory Network. In World Congress on Medical Physics and Biomedical Engineering 2018 (pp. 531-534). Springer, Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36085, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Ceja, A. Y., & Kane, S. (2019, August). An Astroecological Model for Characterizing Exoplanet Habitability. In AAS/Division for Extreme Solar Systems Abstracts (Vol. 4).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Astronomy" + }, + { + "id": 36086, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Chao, D., Hashimoto, H., & Kondo, N. (2019). Social influence of e-cigarette smoking prevalence on smoking behaviours among high-school teenagers: Microsimulation experiments. PloS one, 14(8), e0221557.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36087, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Chappin, E., Bouwmans, I., & Deijkers, E. EMLab-Consumer\u2014Simulating Energy Efficiency Adoption Decisions of European Households. In\u00a0Advances in Social Simulation: Proceedings of the 15th Social Simulation Conference: 23\u201327 September 2019\u00a0(p. 485). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Social Science, Computer Science" + }, + { + "id": 36088, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Chaudhari, K. S. (2019).Agent-based modelling of electric vehicle charging for optimized charging station operation. Doctoral thesis, Nanyang Technological University, Singapore", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36089, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Chen, P., Wu, X., & Miao, D. (2019, June). Agent-Based Modeling in a Simple Circular Economy. In International Conference on Applications and Techniques in Cyber Security and Intelligence (pp. 487-497). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36090, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Chen, Z. (2019). An agent-based model for information diffusion over online social networks. Papers in Applied Geography, 5(1-2), 77-97.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36091, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Chen, Z., Spana, S., Yin, Y., & Du, Y. (2019). An advanced parking navigation system for downtown parking. Networks and Spatial Economics, 19(3), 953-968.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36092, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Chennoufi, M., & Bendella, F. (2019, April). Decision Making in Complex System. In 2019 5th International Conference on Optimization and Applications (ICOA) (pp. 1-7). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Decision Making" + }, + { + "id": 36093, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Chiew, L. S., & Amerudin, S. (2019, June). ANALYSIS OF BURGLARY CRIME PATTERNS THROUGH THE INTEGRATION OF SPATIAL STATISTICS AND AGENT-BASED MODELLING.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36094, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Chliaoutakis, A., & Chalkiadakis, G. (2019, June). AncientS-ABM: A Novel Tool for Simulating Ancient Societies. In International Conference on Practical Applications of Agents and Multi-Agent Systems (pp. 237-241). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Archaeology, Computer Science, Miscellaneous" + }, + { + "id": 36095, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Chu, H., Yu, J., Wen, J., Yi, M., & Chen, Y. (2019). Emergency evacuation simulation and management optimization in urban residential communities. Sustainability, 11(3), 795.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Urban Studies, Computer Science, Economics" + }, + { + "id": 36096, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Chumachenko, D., Meniailov, I., Bazilevych, K., & Chumachenko, T. (2019, September). On Intelligent Decision Making in Multiagent Systems in Conditions of Uncertainty. In 2019 XIth International Scientific and Practical Conference on Electronics and Information Technologies (ELIT) (pp. 150-153). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Electronics, Information Technology, Mathematics" + }, + { + "id": 36097, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Chumachenko, D., & Yakovlev, S. (2019, February). On intelligent agent-based simulation of network worms propagation. In\u00a02019 IEEE 15th International Conference on the Experience of Designing and Application of CAD Systems (CADSM)\u00a0(pp. 11-14). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Social Science, Education, Epidemiology" + }, + { + "id": 36098, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Cimino, M. G., Lega, M., Monaco, M., & Vaglini, G. (2019, February). Adaptive Exploration of a UAVs Swarm for Distributed Targets Detection and Tracking. In ICPRAM (pp. 837-844).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36099, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Cockrell, C., Teague, J., & Axelrod, D. E. (2020). Prevention of Colon Cancer Recurrence From Minimal Residual Disease: Computer Optimized Dose Schedules of Intermittent Apoptotic Adjuvant Therapy. JCO Clinical Cancer Informatics, 4, 514-520.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Archaeology" + }, + { + "id": 36100, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Coronel, A. R., & Alatriste, F. R. (2019, March). Turning caregivers into informed agents as a strategy to disseminate scientific information about cancer. In International Conference on Advanced Machine Learning Technologies and Applications (pp. 938-944). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36101, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Cortier, O., Boutouil, M., & Maquaire, O. (2019). Quantifying Benefits of Permeable Pavement on Surface Runoff, An Agent-Based-Model with NetLogo. In\u00a0New Trends in Urban Drainage Modelling: UDM 2018 11\u00a0(pp. 729-733). Springer International Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Urban Studies, Computer Science, Economics, Physics, Chemistry, Surface Runoff" + }, + { + "id": 36102, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Cotfas, L. A., Delcea, C., Milne, R. J., Salari, M., Cr\u0103ciun, L., & Mol\u0103nescu, A. G. (2019). Testing new methods for boarding a partially occupied airplane using apron buses. Symmetry, 11(8), 1044.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36103, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": " Crabtree, S., Harris, K., Davies, B., & Romanowska, I. (2019, July 6). Outreach in Archaeology with Agent-Based Modeling: Part 3 of 3. https://doi.org/10.1017/aap.2019.4 ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Archaeology, Biology, Computer Science, Miscellaneous" + }, + { + "id": 36104, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": " Cruz, A., Carneiro, E., Fontes, X., Kokkinogenis, Z., & Rossetti, R. J. (2019, October). Hermes: a tool for mesoscopic simulation of advanced traveller information systems. In 2019 IEEE International Smart Cities Conference (ISC2) (pp. 638-643). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Archaeology, Miscellaneous" + }, + { + "id": 36105, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Cruz, E. G. A. (2019). Modeling Social Learning: An Agent-Based Approach (Doctoral dissertation, Old Dominion University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36106, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Da Costa, L., & Rajotte, J. F. (2019, May). Crowd Prediction Under Uncertainty. In Canadian Conference on Artificial Intelligence (pp. 308-319). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36107, + "sort": null, + "year": 2019, + "is_ccl": true, + "reference": "Dabholkar, S. & Wilensky, U. (2019). Designing ESM-mediated collaborative activity systems for science learning. Poster to be presented at International Conference of Computer Supported Collaborative Learning 2019, Lyon, France.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Education" + }, + { + "id": 36108, + "sort": null, + "year": 2019, + "is_ccl": true, + "reference": "Dabholkar, S., Wilensky, U., & Horn, M. (2019) Supporting a teacher\u2019s integration of Computational Thinking (CT) in a biology class by co-designing an ESM- (Emergent Systems Microworlds) based curricular unit, Poster presented at Inaugural symposium on Computer Science and Learning Science, Evanston, USA", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 36109, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Dabholkar, S. (2019) Designing Emergent Systems Microworlds to learn computational thinking in the context of synthetic biology. Poster presented at Learn.Design.Compute with Bio 2019, Philadelphia, USA", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36110, + "sort": null, + "year": 2019, + "is_ccl": true, + "reference": "Dabholkar, S., Swanson, H., & Wilensky, U. (2019). Epistemic considerations for modeling: Understanding the usefulness and limitations of models with Emergent Systems Microworlds. In a Related Paper Set, Using Technology to Promote Students\u2019 Modeling Practice and Complex Systems Thinking. The Annual Meeting of the National Association of Research in Science Teaching (NARST), Baltimore, MD, USA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Technology, Science Teaching" + }, + { + "id": 36111, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Dalle Nogare, D., & Chitnis, A. B. (2019, December). NetLogo agent-based models as tools for understanding the self-organization of cell fate, morphogenesis and collective migration of the zebrafish posterior Lateral Line primordium. In Seminars in Cell & Developmental Biology. Academic Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36112, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Davies, B., Romanowska, I., Harris, K., & Crabtree, S. A. (2019). Combining Geographic Information Systems and Agent-Based Models in Archaeology: Part 2 of 3. Advances in Archaeological Practice, 7(2), 185-193.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36113, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Davis, P., O'Mahony, A. & Pfautz, J. (2019).Social-Behavioral Modeling for Complex Systems. John Wiley & Sons.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36114, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Davydenko, I. Y., & Fransen, R. W. (2019). Conceptual agent based model simulation for the Port Nautical Services. IFAC-PapersOnLine, 52(3), 19-24.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry" + }, + { + "id": 36115, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "DeMarco, K., Squires, E., Day, M., & Pippin, C. (2019). Simulating collaborative robots in a massive multi-agent game environment (scrimmage). In Distributed Autonomous Robotic Systems (pp. 283-297). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36116, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Delcea, C., & Cotfas, L. A. (2019). Increasing awareness in classroom evacuation situations using agent-based modeling. Physica A: Statistical Mechanics and its Applications, 523, 1400-1418.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies" + }, + { + "id": 36117, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Delcea, C., Milne, R. J., Cotfas, L. A., Cr\u0103ciun, L., & Mol\u0103nescu, A. G. (2019). Methods for Accelerating the Airplane Boarding Process in the Presence of Apron Buses. IEEE Access, 7, 134372-134387.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36118, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "DeLuca, C. (2019). Keyword Response: Out of Step. In Key Concepts in Curriculum Studies (pp. 47-49). Routledge.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Keyword Response \n\nBiology" + }, + { + "id": 36119, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Dhou, K. (2019). An innovative design of a hybrid chain coding algorithm for bi-level image compression using an agent-based modeling approach. Applied Soft Computing, 79, 94-110.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Archaeology" + }, + { + "id": 36120, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Dhou, K., & Cruzen, C. (2019). An innovative chain coding technique for compression based on the concept of biological reproduction: an agent-based modeling approach. IEEE Internet of Things Journal, 6(6), 9308-9315.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36121, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Dickes, A.C., Kamarainen, A., Metcalf, S.J., G\u00fcn\u2010Yildiz, S., Brennan, K., Grotzer, T., & Dede, C. (2019). Scaffolding ecosystems science practice by blending immersive environments and computational modeling. British Journal of Educational Technology, 50(5), 2181-2202. https://doi.org/10.1111/bjet.12806", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36122, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Ding, F., & Pan, W. (2019). Simulation Research on Large Passenger Flow Guidance of Urban Rail Transit Based on Multi-Agent. Academic Journal of Computing & Information Science, 2(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computing, Urban Studies" + }, + { + "id": 36123, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Ding, Feng, and Wenjie Pan. \"Simulation Research on Large Passenger Flow Guidance of Urban Rail Transit Based on Multi-Agent.\" Academic Journal of Computing & Information Science 2.1 (2019).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36124, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Dobaria, R., & Chilka, A. (2019). IoT Smart Waste Monitoring and Collection Framework. International Journal of Distributed Computing and Technology, 5(1), 27-32.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36125, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Dragoni, A. F. (2019). An Agent-Swarm Simulator for Dynamic Vehicle Routing Problem Empirical Analysis. In Advances in Practical Applications of Survivable Agents and Multi-Agent Systems: The PAAMS Collection: 17th International Conference, PAAMS 2019, \u00c1vila, Spain, June 26-28, 2019, Proceedings (Vol. 11523, p. 246). Springer.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Agent-Swarm Simulator, Survivable Agents, Multi-Agent Systems, Practical Applications, Conference Proceedings" + }, + { + "id": 36126, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Dragot\u0103, V., & Delcea, C. (2019). How long does it last to systematically make bad decisions? An agent-based application for dividend policy. Journal of Risk and Financial Management, 12(4), 167.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36127, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "D\u2019Souza, M., & Kashi, R. N. (2019, January). Avionics Self-adaptive Software: Towards Formal Verification and Validation. In International Conference on Distributed Computing and Internet Technology (pp. 3-23). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36128, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Egbert, M. (2019, July). Real-Time Visualization and Interaction with Computational Artefacts. In MethAL workshop with The Conference on Artificial Life 2019.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36129, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Elfakir, A., Tkiouat, M., & Allam, K. (2019). Entrepreneurial financing under uncertainty: Performance comparison between ROMCA and conventional microloans using agent based simulation.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36130, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Elfakir, A., & Tkiouat, M. (2019). Profit and loss Sharing Negotiations involving a VC and an entrepreneur: A Game Theoretic Approach with Agent Based Simulation.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Computer Science, Game Theory, Simulation, Agent Based Simulation" + }, + { + "id": 36131, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "El-dosuky, M. (2019). Taming the Sharing Economy Flood: Modelling the Imposing of Sharing Economy Regulation. Available at SSRN 3372792.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36132, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Esmaeili Bidhendi, M. (2019). The Study of CO Symptoms' Impacts on Individuals, Using GIS and Agent-based Modeling (ABM). Pollution, 5(3), 463-471.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, GIS, Agent-based Modeling, Ecology" + }, + { + "id": 36133, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Falcionelli, N., et al. (2019).\"An Agent-Swarm Simulator for Dynamic Vehicle Routing Problem Empirical Analysis.\" Advances in Practical Applications of Survivable Agents and Multi-Agent Systems: The PAAMS Collection Lecture Notes in Computer Science, 26 June 2019, pp. 246\u2013250., doi:10.1007/978-3-030-24209-1_23.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Agent-Swarm Simulator" + }, + { + "id": 36134, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Falletta, J., & Mukheibir, P. (2019). Demand Forecasting: Review of processes and methodologies [prepared for the Water Corporation].a", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Miscellaneous" + }, + { + "id": 36135, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Farris, A. V. (2019, June). The Sensing Bridge Between Perceptuomotor Experience and Scientific Investigation. In Proceedings of the 18th ACM International Conference on Interaction Design and Children (pp. 648-651).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36136, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Febriandini, I. F., Sutopo, W., & Hisjam, M. (2019, May). Analysis daily newspaper distribution in Solo by Agent Based Simulation. In IOP Conference Series: Materials Science and Engineering (Vol. 528, No. 1, p. 012033). IOP Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36137, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Fran\u00e7a da Silva, T., Alves Leite, J. L., Campos Ferro Junior, R. J., Ferreira da Costa, L., Pinheiro de Souza, R., Bernardino Andrade, J. P., & Lima de Campos, G. A. (2019, May). Smart targets to avoid observation in cto problem. In Proceedings of the 18th International Conference on Autonomous Agents and MultiAgent Systems (pp. 1958-1960).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36138, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Frahm, E., Kandel, A.W. & Gasparyan, B. (2019). Upper Palaeolithic Settlement and Mobility in the Armenian Highlands: Agent-Based Modeling, Obsidian Sourcing, and Lithic Analysis at Aghitu-3 Cave. Journal of Paleolithic Archaeology 2, 418\u2013465. https://doi.org/10.1007/s41982-019-00025-5", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36139, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Freelan, D., Spagnuolo, C., Scarano, V., Cordasco, G., & Cioffi-Revilla, C. (2019, June). The MASON Simulation Toolkit: Past, Present, and Future. In Multi-Agent-Based Simulation XIX: 19th International Workshop, MABS 2018, Stockholm, Sweden, July 14, 2018, Revised Selected Papers (Vol. 11463, p. 75). Springer.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 36140, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Fuchs, M., & Neumayr, R. (2019, September). Agent-Based Semiology for Simulation and Prediction of Contemporary Spatial Occupation Patterns. In Design Modelling Symposium Berlin (pp. 648-661). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36141, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Fulop, S. A., & Scott, H. (2019). Vowel System Sandbox: Complex System Modelling of Language Change. Journal of Open Research Software, 7(1).", + "doesnt_really_use_netlogo": true, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36142, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Gama, C. A. F., & Vivacqua, A. S. (2019, October). The cooperative dynamics of Brazilian Oil and Gas Innovations Systems a Research Proposal. In Anais do XV Simp\u00f3sio Brasileiro de Sistemas Colaborativos (pp. 24-29). SBC.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36143, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Gao, S., Song, X., & Ding, R. (2019). Dynamic Agent-Based Simulation of Information Transfer in Collaborative Project Network. In Computing in Civil Engineering 2019: Visualization, Information Modeling, and Simulation (pp. 602-610). Reston, VA: American Society of Civil Engineers.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36144, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Garc\u00eda-Pe\u00f1a, C., Guti\u00e9rrez-Robledo, L. M., Cabrera-Becerril, A., & Fajardo-Ortiz, D. (2019). Team Assembly Mechanisms and the Knowledge Produced in the Mexico\u2019s National Institute of Geriatrics: A Network Analysis and Agent-Based Modeling Approach. Scientifica, 2019.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36145, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Garz\u00f3n, M., & Rojas-Galeano, S. (2019, November). An Agent-Based Model of Urban Pigeon Swarm Optimisation. In 2019 IEEE Latin American Conference on Computational Intelligence (LA-CCI) (pp. 1-6). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 36146, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Georgescu, A., Gheorghe, A. V., Piso, M. I., & Katina, P. F. (2019). Governance by Emerging Technologies\u2014The Case for Sand and Blockchain Technology. In Critical Space Infrastructures (pp. 237-247). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36147, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Giabbanelli, P., Fattoruso, M., & Norman, M. L. (2019, May). Cofluences: simulating the spread of social influences via a hybrid agent-based/fuzzy cognitive maps architecture. In Proceedings of the 2019 ACM SIGSIM conference on principles of advanced discrete simulation (pp. 71-82).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, Social Science, Education, Epidemiology" + }, + { + "id": 36148, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Gibson, J. B., Page, J., & Mukhlish, F. (2019, September). Simulation of an Unmanned Aerial Vehicle Search and Rescue Swarm for Observation of Emergent Behaviour. In Australasian Simulation Congress (pp. 95-105). Springer, Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation" + }, + { + "id": 36149, + "sort": null, + "year": 2019, + "is_ccl": true, + "reference": "Giner Sanz, J. J., Garc\u00eda Gabald\u00f3n, M., Ortega Navarro, E. M., Shao Horn, Y., & P\u00e9rez Herranz, V. (2019, September). A NetLogo\u00ae model for introducing students to genetic algorithms. In IN-RED 2019. V Congreso de Innovaci\u00f3n Educativa y Docencia en Red (pp. 88-101). Editorial Universitat Polit\u00e8cnica de Val\u00e8ncia.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Genetics, Computer Science, Education, Miscellaneous" + }, + { + "id": 36150, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Ginovart Gisbert, M., & Font Marques, M. (2019). Flaix de ci\u00e8ncia. Massa petits per poder ser modelitzats? Models basats en l\u2019individu per representar i investigar poblacions microbianes amb creixement no planct\u00f2nic. Treballs de la Societat Catalana de Biologia, 68, 50-53.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 36151, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Ginovart Gisbert, M., & Font Marques, M. (2019). Flaix de ci\u00e8ncia. Massa petits per poder ser modelitzats? Models basats en l\u2019individu per representar i investigar poblacions microbianes amb creixement no planct\u00f2nic. Treballs de la Societat Catalana de Biologia, 68, 50-53.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 36152, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Golovnev, G. (2019, May). Modeling of Multi-agent Voltage Control in Distribution Electric Networks of Railways. In International Scientific Conference Energy Management of Municipal Facilities and Sustainable Energy Technologies EMMFT 2018: Volume 1 (Vol. 982, p. 300). Springer.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Modeling" + }, + { + "id": 36153, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Gooding, T. (2019). Agent-based model history and development. In Economics for a Fairer Society (pp. 25-36). Palgrave Pivot, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Economics" + }, + { + "id": 36154, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Gooding, T. (2019). Evolutionary Price Robustness. In Economics for a Fairer Society (pp. 105-114). Palgrave Pivot, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Evolutionary" + }, + { + "id": 36155, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Gooding, T., & Gooding, T. (2019). Evolution in Netlogo.\u00a0Economics for a Fairer Society: Going Back to Basics using Agent-Based Models, 45-51.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 36156, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Graham, S., Gupta, N., Smith, J., Angourakis, A., Reinhard, A., Ellenberger, K., ... & Nobles, G. (2019). The Open Digital Archaeology Textbook.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36157, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Greasley, A. (2019). Case Study: Agent-Based Modeling in Discrete-Event Simulation. In Simulating Business Processes for Descriptive, Predictive, and Prescriptive Analytics (pp. 325-335). De Gruyter.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Simulation, Analytics" + }, + { + "id": 36158, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Greco, A., Cannizzaro, F., & Pluchino, A. (2019). Automatic evaluation of plastic collapse conditions for planar frames with vertical irregularities. Engineering with Computers, 35(1), 57-73.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Engineering" + }, + { + "id": 36159, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Gru\u017eauskas, V., Gim\u017eauskien\u0117, E., & Navickas, V. (2019). Forecasting accuracy influence on logistics clusters activities: The case of the food industry. Journal of Cleaner Production, 240, 118225.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Logistics, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36160, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Gullichsen, F. (2019). Simulation of social media networks with agent-based modeling: The research and evaluation of using Netlogo, an agent-based modeling software.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 36161, + "sort": null, + "year": 2019, + "is_ccl": true, + "reference": "Guo, Y. & Wilensky, U. (2019). Changing High School Students\u2019 Perceptions of Wealth Inequality in the U.S. through Agent-based Participatory Simulations. Poster presented at the annual meeting of the American Educational Research Association (Special Interest Group: Learning Sciences), Toronto, Canada, April 5-9.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36162, + "sort": null, + "year": 2019, + "is_ccl": true, + "reference": "Gurkan, C., Rasmussen, L. & Wilensky, U. (2019). Effects of Visual Sensory Range on the Emergence of Cognition in Early Terrestrial Vertebrates: An Agent-Based Modeling Approach. The 2019 Conference on Artificial Life, Newcastle upon Tyne, UK. No. 31, 475-476.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Cognition, Modeling" + }, + { + "id": 36163, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Haire, M., Xu, X., Alboul, L., Penders, J., & Zhang, H. (2019, September). Ship hull repair using a swarm of autonomous underwater robots: A self-assembly algorithm. In 2019 European Conference on Mobile Robots (ECMR) (pp. 1-6). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Electronics" + }, + { + "id": 36164, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Hameed, B., Othman, W. A. F. W., Noor, N. M., Bakar, E. A., & Hawary, A. F. (2019). DECENTRALIZED PATH FORMATION TECHNIQUE FOR SWARM ROBOTS USING BATMAN APPROACH. ROBOTIKA, 1(1), 9-15.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36165, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Hammouda, M., Kaya, C. S., & Y\u00fccesoy, C. A. (2019, October). Development of an Agent-Based Model to Study the Mechanism of Effects of Botulinum Toxin on Muscle Tissue Adaptation. In 2019 Medical Technologies Congress (TIPTEKNO) (pp. 1-3). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36166, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Hannum, C. (2019). Market concentration in real estate brokerage in economic downturns: evidence from spatial agent-based models. Applied Economics Letters, 26(19), 1567-1571.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Computer Science, Physics, Chemistry, Ecology, Archaeology" + }, + { + "id": 36167, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Harmsma, W H. (2019). \"The Effects of Stocking Configurations in Industrial Symbiotic Networks : an Agent-Based Simulation Study.\u201d The Effects of Stocking Configurations in Industrial Symbiotic Networks : an Agent-Based Simulation Study[HTML].", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 36168, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Haryadi, F. N., Imron, M. A., Indrawan, H., & Triani, M. (2019, October). Predicting Rooftop Photovoltaic Adoption In The Residential Consumers of PLN Using Agent-Based Modeling. In 2019 International Conference on Technologies and Policies in Electric Power & Energy (pp. 1-5). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36169, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Hasani, M. F., & Utama, N. P. (2019, September). Analysis of the Effect of the Number of Human Populations on the Spread of Dengue Fever. In 2019 International Conference of Advanced Informatics: Concepts, Theory and Applications (ICAICTA) (pp. 1-5). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36170, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "He, Z., Yuan, H., Li, Z., Gao, L., Zhang, E., Yao, Y., & Zhang, X. (2019, December). Automatic Route Guidance Method based on VANETs. In 2019 6th International Conference on Information Science and Control Engineering (ICISCE) (pp. 1009-1012). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36171, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Hernandez-Betancur, J. E., Montoya-Restrepo, L. A., & Montoya-Restrepo, I. (2019). Deliberate Strategy Deconstructing Event for the Arising of the Emergent Strategy. Journal of Engineering and Applied Sciences, 14(22), 8452-8463.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Engineering, Sciences" + }, + { + "id": 36172, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Hilbert, M., Barnett, G., Blumenstock, J., Contractor, N., Diesner, J., Frey, S., ... & Zhu, J. J. (2019). Computational communication science: A methodological catalyzer for a maturing discipline.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36173, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Hilljegerdes, M., & Augustijn-Beckers, E. W. (2019, May). Evaluating the effects of consecutive hurricane hits on evacuation patterns in Dominica. In ISCRAM.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36174, + "sort": null, + "year": 2019, + "is_ccl": true, + "reference": "Hjorth, A. & Wilensky, U. (2019). Urban Planning-in-Pieces: A Computational Approach to Understanding Conceptual Change and Causal Reasoning about Urban Planning \"Constructivist Foundations\"", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36175, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Hoffmann, B., Chalmers, K., Urquhart, N., & Guckert, M. (2019, February). Athos-A Model Driven Approach to Describe and Solve Optimisation Problems: An Application to the Vehicle Routing Problem with Time Windows. In Proceedings of the 4th ACM International Workshop on Real World Domain Specific Languages (pp. 1-10).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36176, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Hofstede, G. J., & Chappin, E. Archetypical Patterns in Agent-Based Models. In\u00a0Advances in Social Simulation: Proceedings of the 15th Social Simulation Conference: 23\u201327 September 2019\u00a0(p. 313). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Agent-Based Models" + }, + { + "id": 36177, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Hofstede, G. J., & Chappin, E. (2019, September). Archetypical Patterns in Agent-Based Models. In Conference of the European Social Simulation Association (pp. 313-332). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Agent-Based Models" + }, + { + "id": 36178, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Hofstede, G. J., Franco, E., Damen, F., & Fogliano, V. Healthy Snacks from Mom? An Agent-Based Model of Snackification in Three Countries. In\u00a0Advances in Social Simulation: Proceedings of the 15th Social Simulation Conference: 23\u201327 September 2019\u00a0(p. 429). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Social Science, Economics" + }, + { + "id": 36179, + "sort": null, + "year": 2019, + "is_ccl": true, + "reference": "Holbert, N., & Wilensky, U. (2019). Designing Educational Video Games to Be Objects-to-Think-With. Journal of the Learning Sciences, 28(1), 32\u201372. https://doi.org/10.1080/10508406.2018.1487302 .", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Education, Computer Science" + }, + { + "id": 36180, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Hoyles, C. (2019). Micromundos, Construccionismo y Matem\u00e1ticas1. Richard Noss y Celia Hoyles, Inglaterra\u2751 Significados, representaciones y lenguaje: las fracciones en tres generaciones de libros de texto para primaria Alicia Avila, M\u00e9xico\u2751 C\u00f3mo trabajar la orientaci\u00f3n espacial de modo significativo en Educaci\u00f3n, 31(2), 7.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Education, Miscellaneous" + }, + { + "id": 36181, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Huang, W., Cui, Y., & Xiao, X. (2019). Two-Way Mutual-Structure-Based Public Opinion Communication System: An Analysis with Simulation. Tehni\u010dki vjesnik, 26(1), 201-207.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36182, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Huang, W. D., & Cui, Y. (2019). Effect of Individual Cognitive Behavior Model on Public Opinion Communication Mechanism based on Social Ecosystem. Ekoloji Dergisi, (107).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36183, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Hutchins, N. M., Biswas, G., Mar\u00f3ti, M., L\u00e9deczi, \u00c1., Grover, S., Wolf, R., ... & McElhaney, K. (2019). C2STEM: a System for Synergistic Learning of Physics and Computational Thinking. Journal of Science Education and Technology, 1-18.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Physics, Computer Science, Chemistry, Ecology" + }, + { + "id": 36184, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Hwang, Y. S., Lin, H. H., Pai, S. H., & Tu, C. H. (2019). Gpublocks: Gui programming tool for cuda and opencl. Journal of Signal Processing Systems, 91(3), 235-245.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36185, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Iap\u0103scurt\u0103, V. (2019). Detection of movement toward randomness by applying theblock decomposition method to a simple model of the circulatory system. Complex Systems, 28(1), 59-76.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Complex Systems" + }, + { + "id": 36186, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Ilyinsky, A., & Goroshnikova, T. (2019, October). Navigation in NSR as Large-Scale System: Ship Path Analysis in Non-Severe Ice Condition. In 2019 Twelfth International Conference\" Management of large-scale system development\"(MLSD) (pp. 1-4). IEEE.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Navigation" + }, + { + "id": 36187, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Innocenti, E., Detotto, C., Idda, C., & Prunetti, D. (2019, April). Urban, agricultural and touristic land use patterns: combining spatial econometrics and ABM/LUCC. In 2019 4th World Conference on Complex Systems (WCCS) (pp. 1-6). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36188, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Izquierdo, L. R., Izquierdo, S. S., & Sandholm, W. H. (2019). 0.4. The fundamentals of NetLogo. Agent-Based Evolutionary Game Dynamics.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36189, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Izquierdo, L. R., Izquierdo, S. S., & Sandholm, W. H. (2019). 2.1. Robustness and fragility. Agent-Based Evolutionary Game Dynamics.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36190, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Jacildo, A. J., Rabajante, J. F., & Alcantara, E. P. (2019). Agent-based Modeling of Asian Corn Borer Resistance to BT Corn. bioRxiv, 795724.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling" + }, + { + "id": 36191, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Jalali, S. H., Vafaeinejad, A. R., Aghamohammadi, H., & Esmaeili Bidhendi, M. (2019). The Study of CO Symptoms' Impacts on Individuals, Using GIS and Agent-based Modeling (ABM). Pollution, 5(3), 463-471.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, GIS, Agent-based Modeling, Ecology" + }, + { + "id": 36192, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Javed, A. (2019). Understanding Malware Behaviour in Online Social Networks and Predicting Cyber Attacks (Doctoral dissertation, Cardiff University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36193, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Jaxa-Rozen, M., Kwakkel.H.J, Bloemendal, M. (2019) A coupled simulation architecture for agent-based/geohydrological modelling with NetLogo and MODFLOW. Environmental Modelling and Software 115 (2019)19-37 [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Geology, Modeling" + }, + { + "id": 36195, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Kabeer, M., Riaz, F., Jabbar, S., Aloqaily, M., & Abid, S. (2019, June). Real World Modeling and Design of Novel Simulator for Affective Computing Inspired Autonomous Vehicle. In 2019 15th International Wireless Communications & Mobile Computing Conference (IWCMC) (pp. 1923-1928). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Modeling, Wireless Communications, Mobile Computing, Computer Science, Design" + }, + { + "id": 36196, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Kamarainen, A., Metcalf, S., Dickes, A., Gun-Yildiz, S., Brennan, K., Grotzer, T., & Dede, C. (2019, April). Impact of blended immersive virtual world and programming curriculum on student perspectives about scientific modeling. In Annual meeting program American Educational Research Association.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Chemistry" + }, + { + "id": 36197, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Kamimura, K., Gardiner, B., Dupont, S., Finnigan, J. (2019) Agent-based modelling of wind damage proceses and patterns in forests. Agricultural and Forest Meteorology 268 (2019) 279-288. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36198, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Kaminski, Y., & Malinouski, I. (2019). MODELING OF TRAFFIC FLOW USING THE NETLOGO ENVIRONMENT. In Progress through Innovations (pp. 38-39).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Modeling" + }, + { + "id": 36199, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Kapat, S. K., & Tripathy, S. N. (2019). Malware Architectural View with Performance Analysis in Network at Its Activation State. In Cognitive Informatics and Soft Computing (pp. 207-216). Springer, Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Malware, Performance Analysis, Network, Cognitive Informatics, Soft Computing" + }, + { + "id": 36200, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Kardas-sloma, L., Perozziello, A., Zahar, J. R., Lescure, X., Yazdanpanah, Y., & Lucet, J. (2019). Transmission d\u2019Escherichia coli r\u00e9sistant aux \u03b2-lactamines (E. coli BLSE) dans la communaut\u00e9: mod\u00e9lisation et \u00e9valuation de l\u2019impact des interventions. M\u00e9decine et Maladies Infectieuses, 49(4), S30-S31.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Medicine, Infectious Diseases, Modeling, Evaluation" + }, + { + "id": 36201, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Kaur, H., & Sharma, A. (2019). Sanction Enforcement for Norm Violation in Multi-agent Systems: A Cafe Case Study. In Proceedings of the 2nd International Conference on Data Engineering and Communication Technology (pp. 325-335). Springer, Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36202, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Khan, M. Y. A., Nasir, G., Ahmed, S., Tahir, M., & Ahmad, M. (2019, January). MLA based protocol for monitoring electrical parameters in Smart Gird using WSN. In 2019 2nd International Conference on Computing, Mathematics and Engineering Technologies (iCoMET) (pp. 1-7). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Electrical Engineering, Computer Science, Physics, Chemistry, Ecology" + }, + { + "id": 36203, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Khan, O., Din, A., Khalid, A., Khan, A., Ahmed, A., & Zia, K. (2019, December). Online Adversarial Coverage for Multi-Agent Systems. In 2019 15th International Conference on Emerging Technologies (ICET) (pp. 1-6). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Ecology, Archaeology" + }, + { + "id": 36204, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Kim, C., Jin, Y. G., Park, J., & Kang, D. (2019). A case study of a last-mile solution in a high-density residential neighborhood. Procedia Computer Science, 151, 132-138.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36205, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Kim, C., Jin, Y. G., Park, J., & Kang, D. (2019). The influence of an autonomous driving car operation on commuters\u2019 departure times. Procedia Computer Science, 151, 85-91.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36206, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Kim, Y., Son, J., Lee, Y. S., Lee, M., Hong, J., & Cho, K. (2019). Integration of an individual-oriented model into a system dynamics model: an application to a multi-species system. Environmental Modelling & Software, 112, 23-35.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36207, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Kleiner, G., Rybachuk, M., & Ushakov, D. (2019, September). An investigation of social-behavioral phenomena in the peer-review processes of scientific foundations. In International Conference on Modelling and Simulation of Social-Behavioural Phenomena in Creative Societies (pp. 68-81). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36208, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Kocheril, G., Krebs, F., Nacken, L., & Holzhauer, S. Open and Integrative Modelling in Energy System Transitions\u2014Conceptual Discussion About Model Reusability, Framework Requirements and Features. In\u00a0Advances in Social Simulation: Proceedings of the 15th Social Simulation Conference: 23\u201327 September 2019\u00a0(p. 499). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Social Science, Simulation" + }, + { + "id": 36209, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Komendant-Brodowska, A., Jager, W., Abramczuk, K., Baczko-Dombi, A., Fecher, B., Sokolovska, N., & Spits, T. Peek Over the Fence\u2014How to Introduce Students to Computational Social Sciences. In\u00a0Advances in Social Simulation: Proceedings of the 15th Social Simulation Conference: 23\u201327 September 2019\u00a0(p. 279). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36210, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Kope\u010dek, I., & Da\u0148a, J. (2019). Modeling and Simulating Communication, Stress, and Productivity in Socio-Economic Structures. Slavonic Natural Language Processing in the 21st Century, 151.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36211, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Koralewski, T. E., Westbrook, J. K., Grant, W. E., & Wang, H. H. (2019). Coupling general physical environmental process models with specific question-driven ecological simulation models. Ecological modelling, 405, 102-105.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Physics, Chemistry" + }, + { + "id": 36212, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Kostylenko, O., Rodrigues, H., Torres, D. (2019) The spread of a financial virus through Europe and beyond. AIMS Mathematics, 86-98. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36213, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Kponyo, J. J., Coker, K., Agyemang, J. O., & Der, J. (2019). An Algorithm to Determine the Extent of an Epidemic Spread: A NetLogo Modeling Approach.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36214, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Lahav, O., Hagab, N., Levy, S. T., & Talis, V. (2019). Computer-model-based audio and its influence on science learning by people who are blind. Interactive Learning Environments, 27(5-6), 856-868.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36215, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Lahav, O., Kittany, J., Levy, S. T., & Furst, M. (2019). Perception of sonified representations of complex systems by people who are blind. Assistive Technology, 1-9.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36216, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Lee, J. S., & Wolf-Branigin, M. (2019) Innovations in Modeling Social Good: A Demonstration With Juvenile Justice Intervention Research on Social Work Practice. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36217, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Legaspi, J., Canfield, C. I., Gill, K. S., Wyglinski, A. M., & Bhadai, S. V. (2020, May). Integrated Agent-Based Model for Broadband Resource Allocation Analysis. In 2020 IEEE 91st Vehicular Technology Conference (VTC2020-Spring) (pp. 1-5). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36218, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Li, L., Xia, H., Zhang, R., & Li, Y. (2019, June). DDSEIR: A dynamic rumor spreading model in online social networks. In International Conference on Wireless Algorithms, Systems, and Applications (pp. 596-604). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36219, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Li, J. (2019, October). Simulation Research on Marketing Effect of Enterprise in Social Network Based on SIR Model. In 4th International Conference on Modern Management, Education Technology and Social Science (MMETSS 2019). Atlantis Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Marketing, Computer Science, Management, Social Science, Economics, Physics, Ecology" + }, + { + "id": 36220, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Linares, S. (2019). Modelos del crecimiento urbano.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36221, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Line Have Musaeus, P. M. (2019).Computational Thinking in the Danish High School: Learning Coding, Modeling, and Content Knowledge with NetLogo. Proceedings of the SIGCSE '19 Proceedings of the 50th ACM Technical Symposium on Computer Science Education (pp. 913-919). Minneapolis, MN, USA [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computational Thinking" + }, + { + "id": 36222, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Lines, T., & Basiri, A. (2019, November). Simulating and modeling the signal attenuation of wireless local area network for indoor positioning. In Proceedings of the 2nd ACM SIGSPATIAL International Workshop on GeoSpatial Simulation (pp. 9-15).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Signaling, Simulation, GeoSpatial Simulation, Wireless" + }, + { + "id": 36223, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Lippe, M., Bithell, M., Gotts, N. Natalie, D., Barbrook, P., Giupponi, C., Hallier, M., Hofsted, G., Le Page, C., Matthews, R., Schluter, M., Smith, P., Teglio, A. & Thellman, K (2019). Using agent-based modelling to simulate social-ecological systems across scales. GeoInformatica 23.2, 269-298.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36224, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Liu, G., Casazza, M., & Lega, M. (2019). Simulation of coupled impact-management response scenarios for distributed wastewater environmental discharges at basin scale through urban environmental risk network transmission mechanism. Journal of environmental management, 236, 182-194.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36225, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Liu, G., Ye, J., & Argyres, C. (2019). Modeling and simulation of the knowledge growth process among new energy technology firms in the distributed innovation network. DYNA-Ingenier\u00eda e Industria, 95(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36226, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Liu, Y., Li, F. & Su, Y.(2019) Critical Factors Influencing the Evolution of Companies\u2019 Environmental Behavior: An Agent-Based Computational Economic Approach SAGE Open. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Economics, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36227, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Lorenz, W., & Wurzer, G. (2019). Visual Representation of Adjacencies-A NetLogo application to turn functional matrices into bubble diagrams.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36228, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Lorenz, W., & Wurzer, G. (2019). Visual Representation of Adjacencies. In\u00a0Architecture in the Age of the 4th Industrial Revolution Proceedings of the 37th eCAADe and 23rd SIGraDi Conference Volume\u00a0(Vol. 2, pp. 11-20).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Architecture, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36229, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Lorig, F. (2019). Hypothesis-Driven Simulation Studies. In Hypothesis-Driven Simulation Studies (pp. 137-170). Springer Vieweg, Wiesbaden.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Physics, Computer Science, Hypothesis, Economics" + }, + { + "id": 36230, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Lovellette, E., Hexmoor, H., & Rodriguez, K. (2019). Automated argumentation for collaboration among cyber-physical system actors at the edge of the Internet of Things. Internet of Things, 5, 84-96.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36231, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Lu, P. (2019). Heterogeneity, judgment, and social trust of agents in rumor spreading. Applied Mathematics and Computation, 350, 447-461.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36232, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Lu, P., Deng, L., & Liao, H. (2019). Conditional effects of individual judgment heterogeneity in information dissemination. Physica A: Statistical Mechanics and its Applications, 523, 335-344.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, Statistics, Economics, History, Social Science, Education, Epidemiology" + }, + { + "id": 36233, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Luanda, A. (2019, June). A Gift-Exchange Model for the Maintenance of Group Cohesion in a Telecommunications Scenario. In Distributed Computing and Artificial Intelligence, 16th International Conference (Vol. 1003, p. 189). Springer.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36234, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Lumbreras Sancho, S., Wogrin, S., Navarro Llevat, G., Bertazzi, I., & Pereda Garc\u00eda, M. (2019). A decentralized solution for transmission expansion planning: getting inspiration from nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36235, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "MA Mahmoud, R., M Abdel Karim, N., & MA Youssef, A. (2019). Comparative analyses of computational implementations for healthcare building design. JES. Journal of Engineering Sciences, 47(5), 627-643.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computing, Archaeology, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36236, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "MacCarthy, E. A. (2019). Modeling the Effect of Contact Rates on Infectious Diseases in Contact Networks. Journal of Multidisciplinary Engineering Science and Technology (JMEST), 6(8), 10556-10560.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Infectious Diseases, Contact Networks" + }, + { + "id": 36237, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Mahdizadeh Gharakhanlou, N., & Mesgari, M. S. (2019). DEVELOPING A CELLULAR AUTOMATA MODEL FOR SIMULATING RAINFALL-RUNOFF PROCESS (CASE STUDY: BABOL CATCHMENT). International Archives of the Photogrammetry, Remote Sensing & Spatial Information Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36238, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Mailleret, L., Davtian, D., & Grognard, F. (2018, July). An individual based model to optimize natural enemies deployment in augmentative biological control. In 11th European Conference on Mathematical and Theoretical Biology (ECMTB).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics" + }, + { + "id": 36239, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Malaina, A.(2019) The Paradigm of Complexity in Sociology: Epistemological and Methodological Implications, Complexity Applications.Language and Communication Sciences, 31-42. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Sociology, Language, Methodology" + }, + { + "id": 36240, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Malinowski, A., & Czarnul, P. (2019). Multi-agent large-scale parallel crowd simulation with nvram-based distributed cache. Journal of Computational Science, 33, 83-94.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics" + }, + { + "id": 36241, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Marcum-Dietrich, N., Bruozas, M., & Staudt, S. (2019). Precipitating Change: Integrating Meteorology, Mathematics, and Computational Thinking: Research on Students' Learning and Use of Data, Modeling, and Prediction Practices for Weather Forecasting. In International Society for Technology in Education (ISTE) Conference, Philadelphia, PA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Meteorology, Mathematics, Computational Thinking, Data, Modeling, Prediction, Education" + }, + { + "id": 36242, + "sort": null, + "year": 2019, + "is_ccl": true, + "reference": "Martin, K., Horn, M., & Wilensky, U. (2019). Emergent Schema Learning in Short Museum Interactions. Paper Accepted to the Journal of Education Informatics, Vilnius, Lithuania.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36243, + "sort": null, + "year": 2019, + "is_ccl": true, + "reference": "Martin, K., Horn, M., & Wilensky, U. (2019). Constructivist Dialogue Mapping of learning in Museums and Informal Spaces. Paper Accepted to the Journal of Education Informatics, Vilnius, Lithuania", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36244, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "MARTIN, K., HORN, M., & WILENSKY, U. (2019). Prevalence of Direct and Emergent Schema and Change after Play. Informatics in Education, 18(1), 183-212.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36245, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Martin (2019) Future Visions for the study of Group Learning with Complex Systems Models: The role of multimodal data in group learning analysis. Computer Supported Collaborative Learning, Lyon, France.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36246, + "sort": null, + "year": 2019, + "is_ccl": true, + "reference": "Martin, K., Horn, M., & Wilensky, U. (2019). Learning Complexity through Open-Ended Agent Based Modeling. Paper Submitted to IDC 2019 Annual International conference, Boise, Idaho.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36247, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Martin, K., Wang, E. Q., Bain, C., & Worsley, M. (2019, October). Computationally augmented ethnography: Emotion tracking and learning in museum games. In International Conference on Quantitative Ethnography (pp. 141-153). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ethnography, Computer Science, Statistics" + }, + { + "id": 36248, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Mayes, R. (2019). Quantitative reasoning and its r\u00f4le in interdisciplinarity. In Interdisciplinary Mathematics Education (pp. 113-133). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Quantitative reasoning, interdisciplinarity" + }, + { + "id": 36249, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Mayfield, J., & Mayfield, M. (2019). The diffusion process of strategic motivating language: An examination of the internal organizational environment and emergent properties. International Journal of Business Communication, 56(3), 368-392.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36250, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "McGowan, L., & Westgren, R. A Study of Group Formation Using Agent-Based Modeling. In\u00a0Advances in Social Simulation: Proceedings of the 15th Social Simulation Conference: 23\u201327 September 2019\u00a0(p. 115). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36251, + "sort": null, + "year": 2019, + "is_ccl": true, + "reference": "McNulty, M., Smith, J.D., Villamar, J., Burnett-Zeigler, I., Vermeer, W., Benbow, N., Gallo, C., Wilensky, U., Hjorth, A., Mustanski, B., Schneider, C. & Brown, H. (2019). Implementation Research Methodologies for Achieving Scientific Equity and Health Equity. Ethnicity & Disease, 29(1), 83-92", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36252, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Mertens, A., Feliciani, T., Heidari, S., Siebers, P. O., & Dignum, F. Are We Done Yet? or When is Our Model Perfect (Enough)?. In\u00a0Advances in Social Simulation: Proceedings of the 15th Social Simulation Conference: 23\u201327 September 2019\u00a0(p. 285). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Social Science, Miscellaneous" + }, + { + "id": 36253, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Meskini, F. Z., & Aboulaich, R. (2019, October). Multi-agent based simulation of a smart insurance using blockchain technology. In 2019 Third International Conference on Intelligent Computing in Data Sciences (ICDS) (pp. 1-6). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Ecology, Archaeology, Miscellaneous" + }, + { + "id": 36254, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Milne, R. J., Cotfas, L. A., Delcea, C., Salari, M., Craciun, L., & Molanescu, A. G. (2019). Greedy method for boarding a partially occupied airplane using apron buses. Symmetry, 11(10), 1221.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36255, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Milne, R. J., Delcea, C., Cotfas, L. A., & Salari, M. (2019). New methods for two-door airplane boarding using apron buses. Journal of Air Transport Management, 80, 101705.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36256, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Mittal, A., Gibson, N. O., & Krejci, C. C. (2019, December). An agent-based model of surplus food rescue using crowd-shipping. In 2019 Winter Simulation Conference (WSC) (pp. 854-865). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36257, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Mohammed, R., Kennedy-Clark, S., & Reimann, P. (2019). Using immersive and modelling environments to build scientific capacity in primary preservice teacher education. Journal of Computers in Education, 6(4), 451-481.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36258, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Montes, D. O., Suppi, R., De Giusti, L. C., Leporace, M., Micieli, M. V., Santini, M. S., & Naiouf, M. (2019). Simulaci\u00f3n de altas prestaciones (GPU) para la reproducci\u00f3n del mosquito Aedes aegypti en el cementerio de Santo Tom\u00e9, Corrientes. In XXV Congreso Argentino de Ciencias de la Computaci\u00f3n (CACIC)(Universidad Nacional de R\u00edo Cuarto, C\u00f3rdoba, 14 al 18 de octubre de 2019).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics" + }, + { + "id": 36259, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Morelle, K., Buchecker, M., Kienast, F., & Tobias, S. (2019). Nearby outdoor recreation modelling: An agent-based approach. Urban Forestry & Urban Greening, 40, 286-298.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36260, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Mostafizi, A., Wang, H., & Dong, S. (2019). Understanding the multimodal evacuation behavior for a near-field tsunami. Transportation research record, 2673(11), 480-492.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies" + }, + { + "id": 36261, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Mozahem, N. A. (2019). Always negotiate, sometimes cooperate: an agent-based model. International Journal of Organization Theory & Behavior.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36262, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Muraru, A., Lile, R., Bo\u0219coianu, E. C., Bo\u0219coianu, M., Vladareanu, L. (2019). The UAV control approach by using multi agent systems. Periodicals of Engineering and Natural Science, vol. 7, no. 1.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36263, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Musaeus, L. H., & Musaeus, P. (2019, February). Computational Thinking in the Danish High School: Learning Coding, Modeling, and Content Knowledge with NetLogo. In Proceedings of the 50th ACM Technical Symposium on Computer Science Education (pp. 913-919).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computational Thinking" + }, + { + "id": 36264, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Naili, M., Bourahla, M., & Naili, M. (2019). Stability-based model for evacuation system using agent-based social simulation and Monte Carlo method. International Journal of Simulation and Process Modelling, 14(1), 1-16.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36265, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Ng, H., Othman, W., Bakar, E., Mat Noor, N., & Hawary, A. (2019).[HTML] MEERKATS BEHAVIOR MODELLING USING NETLOGO. ROBOTIKA, 1(1), 16-21.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Networking, Modeling" + }, + { + "id": 36266, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Nie, X. X., Bai, C., & Zhang, J. (2019). Simulation research on the effectiveness of a multiagent mine safety supervision system and its verification. Mathematical Problems in Engineering, 2019.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Computer Science, Engineering" + }, + { + "id": 36267, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Norouziasl, S., Jafari, A., & Wang, C. (2019). Analysis of lighting occupancy sensor installation in building renovation using agent-based modeling of occupant behavior. In Computing in Civil Engineering 2019: Visualization, Information Modeling, and Simulation (pp. 593-601). Reston, VA: American Society of Civil Engineers.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computing, Civil Engineering, Modeling" + }, + { + "id": 36268, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Noss, R., & Hoyles, C. (2019). Microworlds, Constructionism and Maths. Educaci\u00f3n matem\u00e1tica, 31(2), 7-21.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Constructionism, Maths" + }, + { + "id": 36269, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "O\u2019Connor, J. An Analysis of the Various Factors Involved in the Evolution of Mimicry Using an Agent Based Programming Language and of the Body Massesand Reproduction Rates of Existing Mimetic Species.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36270, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Oliveira, A., Feyzi Behnagh, R., Ni, L., Mohsinah, A. A., Burgess, K. J., & Guo, L. (2019). Emerging technologies as pedagogical tools for teaching and learning science: A literature review. Human Behavior and Emerging Technologies, 1(2), 149-160.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Technology, Literature, Education" + }, + { + "id": 36271, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Opiyo, N. N. (2019). Impacts of neighbourhood influence on social acceptance of small solar home systems in rural western Kenya. Energy Research & Social Science, 52, 91-98.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36272, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Opiyo, N. (2019, October). Neighbourhood influence and social acceptance of PV systems in rural developing communities. In 36th European Photovoltaic Solar Energy Conference (pp. 2006-2012). International Solar Energy Society.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36273, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Owusu, P. A., Leonenko, V. N., Mamchik, N. A., & Skorb, E. V. (2019). Modeling the growth of dendritic electroless silver colonies using hexagonal cellular automata. Procedia Computer Science, 156, 43-48.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling" + }, + { + "id": 36274, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Ozawa, S., Haynie, D., Bessias, S., Laing, S., Ladi, E. (2019) Modeling the Economic Impact of Substandard and F\u0192alsified Antimalarials in the Democratic Republic of the Congo. The American Journal of Tropical Medicine and Hygiene. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36275, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Palau, A. S., Dhada, M. H., & Parlikad, A. K. (2019). Multi-agent system architectures for collaborative prognostics. Journal of Intelligent Manufacturing, 30(8), 2999-3013.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36276, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Park, J., Redwine, J., Hill, T. D., & Kotun, K. (2019). Water resource and ecotone transformation in coastal ecosystems. Ecological Modelling, 405, 69-85.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36277, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Park, J. W., & Arteaga, C. (2019). Human Responses of Emergency Evacuation Using Agent-Based Modeling. In International Conference on Smart Cities, Seoul, Korea (pp. 1-6).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36278, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "P\u00e1rraga-\u00c1lava, J., Garz\u00f3n, G. M., & Valarezo, R. V. (2019). Multi-Objective Genetic Algorithms: are they useful for tuning parameters in Agent-Based Simulation?. Revista Ib\u00e9rica de Sistemas e Tecnologias de Informa\u00e7\u00e3o, (E19), 172-184.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Genetic Algorithms, Agent-Based Simulation, Computer Science, Economics, Archaeology, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36279, + "sort": null, + "year": 2019, + "is_ccl": true, + "reference": "Peel, A., Dabholkar, S., Anton, G., Horn, M., & Wilensky, U. (2019) Teachers\u2019 professional growth through co-design and implementation of computational thinking (CT) integrated biology units. Annual Meeting of the Association of Science Teacher Education (ASTE) 2019. San Antonio, TX.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 36280, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Peel, A., Dabholkar, S., Granito, T. (2019) Teaching Experimental Design with Computational Thinking. Poster presented at the National Association of Biology Teachers (NABT). 2019 November 14-17; Chicago, IL.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science" + }, + { + "id": 36281, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Pereira, A. I., Barbosa, J., & Leitao, P. (2019). Hybrid System for Simultaneous Job Shop Scheduling and Layout Optimization Based on Multi-agents and Genetic Algorithm. In Hybrid Intelligent Systems: 18th International Conference on Hybrid Intelligent Systems (HIS 2018) Held in Porto, Portugal, December 13-15, 2018 (Vol. 923, p. 387). Springer.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36282, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Perez, L., Dragicevic, S., & Gaudreau, J. (2019). A geospatial agent-based model of the spatial urban dynamics of immigrant population: A study of the island of Montreal, Canada. PloS one, 14(7).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Urban Studies" + }, + { + "id": 36283, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Petrosino, T., Sherard, M., & Brady, C. (2019). Using Collaborative Agent-based Modeling to Explore Complex Phenomena with Elementary Preservice Science Teachers. Poster session presented at Computer Supported Collaborative Learning, Lyon, France.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Miscellaneous" + }, + { + "id": 36284, + "sort": null, + "year": 2019, + "is_ccl": true, + "reference": "Petrosino, A. J., Sherard, M. K., Harron, J. R., Brady, C. E., Stroup, W. M., & Wilensky, U. J. (April, 2019). Developing preservice teachers\u2019 conceptualization of models and simulations through group-based cloud computing. Poster presented at the American Education Research Association Annual Meeting, Toronto, Canada", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36285, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Phetheet, J., Heger, W., & Hill, M. C. (2019, December). Evaluating Use of Water and Renewable Energy in Agricultural Areas: A Coupled Simulation of DSSAT and Agent-Based Modeling. In AGU Fall Meeting 2019. AGU.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Agriculture, Modeling" + }, + { + "id": 36286, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Piccione, A., et al. (2019). An Agent-Based Simulation API for Speculative PDES Runtime Environments. 2019 ACM SIGSIM Conference on Principles of Advanced Discrete Simulation, Chicago, Il, USA, June 03-05. New York, NY, USA: ACM.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Discrete Simulation, Computer Science, Analysis" + }, + { + "id": 36287, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Plikynas, D., Lau\u017eikas, R., Sakalauskas, L., Miliauskas, A., & Dulskis, V. (2019, September). Agent-based simulation of cultural events impact on social capital dynamics. In Proceedings of SAI Intelligent Systems Conference (pp. 1138-1154). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36288, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Plikynas, D., Miliauskas, A., & Lau\u017eikas, R. (2019, December). Simulation of Social Capital Dynamics: Impact of Cultural Events. In Proceedings of the 2019 2nd International Conference on Algorithms, Computing and Artificial Intelligence (pp. 315-319).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36289, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Ponsiglione, C., Primario, S., & Zollo, G. (2019). Does natural language perform better than formal systems? Results from a fuzzy agent-based model. International Journal of Technology, Policy and Management, 19(2), 171-195.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36290, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Portocarrero Sarmento, R. (2019). Inventory Management-A Case Study with NetLogo. arXiv preprint arXiv:1905.08041.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Inventory Management, NetLogo" + }, + { + "id": 36291, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Putra, H. C., Andrews, C. J., & Senick, J. A. Modeling building occupant behavior during load shedding. Management, 23(15), 3267-95.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36292, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Quan, J., & Liu, Y. (2019, January). Construction and Simulation Analysis of Cooperative Game Model of Hospital Group in Medical Waste Stream System. In 2018 International Conference on Mathematics, Modeling, Simulation and Statistics Application (MMSSA 2018). Atlantis Press", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Construction, Simulation, Mathematics, Statistics, Medical Waste, Game Modeling, Mathematics, Modeling, Simulation, Statistics, Healthcare" + }, + { + "id": 36293, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Rai, S., Carter, T., & Sharma, B. (2019). Using NetLogo to simulate building occupancy of a university building. ASEE 2019 Annual Conference.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36294, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Railsback, S. F., & Grimm, V. (2019). Agent-based and individual-based modeling: a practical introduction. Princeton university press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Economics, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36295, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Raimbault, J., & Pumain, D. (2019). Methods for exploring simulation models. Geographical Modeling: Cities and Territories, 2, 125-150.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Geography, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36296, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Raglin, A., & Metu, S. (2019, May). Agent based simulation of decision making with uncertainty. In Artificial Intelligence and Machine Learning for Multi-Domain Operations Applications (Vol. 11006, p. 110060M). International Society for Optics and Photonics.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Miscellaneous" + }, + { + "id": 36297, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Ramazanov, R. (2019). Agent-based modeling the distribution of authorities between the levels of the state. Artificial societies, 14(3).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36298, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Ramazanov, R. (2019). Simulation analysis of China fiscal models. Artificial Societies, 14(4).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation" + }, + { + "id": 36299, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Ramos, A., Calado, M., & Antunes, L. (2019, June). A Gift-Exchange Model for the Maintenance of Group Cohesion in a Telecommunications Scenario. In International Symposium on Distributed Computing and Artificial Intelligence (pp. 189-196). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36300, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Rao, V. A. (2019). Distributed data-gathering protocols in AD-HOC wireless networks (Doctoral dissertation, IIT Delhi).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36301, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Rengifo, M. G. H., & D\u00edaz-Ambrona, C. G. H. (2019). Comportamiento demogr\u00e1fico: Din\u00e1mico\u2013Probabil\u00edstico de los pueblos ind\u00edgenas en aislamiento de la amazon\u00eda ecuatoriana. Revista Cient\u00edfica Axioma, (20), 25-34.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Miscellaneous" + }, + { + "id": 36302, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Reuillon, R., Leclaire, M., Raimbault, J., Arduin, H., Chapron, P., Ch\u00e9rel, G., ... & Perret, J. (2019, September). Fostering the use of methods for geosimulation models sensitivity analysis and validation", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36303, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Rey-Coyrehourcq, S., Banos, A., & Raimbault, J. (2019, October). Le calcul intensif en g\u00e9ographie: une tradition bien ancr\u00e9e. In JCAD Journ\u00e9es Calcul et Donn\u00e9es 2019.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Geography" + }, + { + "id": 36304, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Reynolds, E. R., Himmelwright, R., Sanginiti, C., & Pfaffmann, J. O. (2019). An agent-based model of the Notch signaling pathway elucidates three levels of complexity in the determination of developmental patterning. BMC systems biology, 13(1), 1-16.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Complexity, Development, Signaling Pathway" + }, + { + "id": 36305, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "R Izquierdo, L., S Izquierdo, S., & H Sandholm, W. (2019).\u00a0Agent-Based Evolutionary Game Dynamics. Independent.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36306, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Roach, A. R., Dennison, E. M., Hyrich, K. L., & MacGregor, A. J. (2019). O23 Using big data in the design and validation of a simulation of the healthcare system for patients with inflammatory rheumatic disease: results from the SiMSK study. Rheumatology, 58(Supplement_3), kez105-022.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Healthcare, Data, Research" + }, + { + "id": 36307, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Roach, A. R., Dennison, E. M., Hyrich, K. L., & MacGregor, A. J. (2019). O24 The impact of early referral and lowering clinical thresholds of biologic access on the disease course and costs in RA: results from the SiMSK study. Rheumatology, 58(Supplement_3), kez105-023.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Clinical Trials, Economics, Research, Statistics" + }, + { + "id": 36308, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Rodemann, T., Eckhardt, T., Unger, R., & Schwan, T. (2019). Using Agent-Based Customer Modeling for the Evaluation of EV Charging Systems. Energies, 12(15), 2858.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36309, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Romanowska, I., Crabtree, S., Harris, K., & Davies, B. (2019). Agent-Based Modeling for Archaeologists: Part 1 of 3. Advances in Archaeological Practice, 7(2), 178-184. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36310, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Rozo, K. R., Arellana, J., Santander-Mercado, A., & Jubiz-Diaz, M. (2019). Modelling building emergency evacuation plans considering the dynamic behaviour of pedestrians using agent-based simulation. Safety science, 113, 276-284.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 36311, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Sahnoun, M. H., Baudry, D., Mustafee, N., Louis, A., Smart, P. A., Godsiff, P., & Mazari, B. (2019). Modelling and simulation of operation and maintenance strategy for offshore wind farms based on multi-agent system. Journal of Intelligent Manufacturing, 30(8), 2981-2997.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Simulation, Manufacturing, Management" + }, + { + "id": 36312, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Salecker, J., Sciaini, M., Meyer, K. M., & Wiegand, K. (2019). The nlrx R package: A next\u2010generation framework for reproducible NetLogo model analyses. Methods in Ecology and Evolution.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, Mathematics" + }, + { + "id": 36313, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Salt, D., & Polhill, G. A NetLogo Extension to Secure Data Using GNUs Pretty Good Privacy Software Suite. In\u00a0Advances in Social Simulation: Proceedings of the 15th Social Simulation Conference: 23\u201327 September 2019\u00a0(p. 299). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36314, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Sanginiti, C., Pfaffmann, J. O., Reynolds, E. R., & Himmelwright, R. An agent-based model of the Notch signaling pathway elucidates three levels of complexity in the determination of developmental patterning.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry" + }, + { + "id": 36315, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Santos, F., Nunes, I., & Bazzan, A. L. (2020). Quantitatively assessing the benefits of model-driven development in agent-based modeling and simulation. Simulation Modelling Practice and Theory, 104, 102126.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36316, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Sapienza, A., & Falcone, R. (2019, June). Social Recommendations: Have We Done Something Wrong?. In International Conference on Practical Applications of Agents and Multi-Agent Systems (pp. 281-284). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Social Science" + }, + { + "id": 36317, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Saputro, N. (2019, December). Game-Theoretic and Genetic-Based Approach for Cooperative Mission-Oriented Swarms of Drones. In 2019 International Conference on Mechatronics, Robotics and Systems Engineering (MoRSE) (pp. 163-168). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Game-Theoretic and Genetic-Based Approach" + }, + { + "id": 36318, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Sarmento, R. P. (2019). Inventory Management-A Case Study with NetLogo. arXiv preprint arXiv:1905.08041", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36319, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Saxena, N. (2019). A Designer\u2019s Reflections on Designing for \u2018Productive Failure\u2019.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36320, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Saxena, N. (2019). Pallas Advanced Learning Systems\u2013A research-informed virtual learning kit. Journal of Applied Learning and Teaching, 2(1), 65-68.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Research, Teaching" + }, + { + "id": 36321, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Scheller, S. (2019). Steven F. Railsback and volker grimm, agent-based and individual-based modeling. a practical introduction. \u0152conomia. History, Methodology, Philosophy, (9-2), 407-413.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "History" + }, + { + "id": 36322, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Scherjon, F., Romanowska, I., & Lambers, K. (2019). Digitally Teaching Digital Skills: Lessons Drawn from a Small Private Online Course (SPOC) on \u2018Modelling and Simulation in Archaeology\u2019 at Leiden University. Journal of Computer Applications in Archaeology, 2(1), 79\u201388. doi: 10.5334/jcaa.26", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Digitally Teaching Digital Skills" + }, + { + "id": 36323, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Scheller, S. (2019). Steven F. Railsback and Volker Grimm, Agent-Based and Individual-Based Modeling. A Practical Introduction. \u0152conomia. History, Methodology, Philosophy, (9-2), 407-413.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "History, Methodology, Philosophy" + }, + { + "id": 36324, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Sciullo, A., Vallino, E., Iori, M., & Fontana, M. (2019). Paths and processes in complex electricity markets: The agent-based perspective. In Routledge Handbook of Energy Economics (pp. 522-533). Routledge.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36325, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Schmidt, A. H., & Zhang, K. (2019). Agent-Based Modelling: A New Tool for Legal Requirements Engineering: Introduction and Use Case (KEI). European Quarterly of Political Attitudes and Mentalities, 8(1), 1-21.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36326, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Schneider, R., & Kouros, J. (2019). Effiziente Programmierung sozialwissenschaftlicher Modelle. In Simulieren und Entscheiden (pp. 231-256). Springer VS, Wiesbaden.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36327, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Schwan, T., Unger, R., & Eckhardt, T. FMI-Based Co-Simulation of Multi-Agent Occupants Models, with Modelica Building and HVAC System Models.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology" + }, + { + "id": 36328, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Sengupta, P., Kim, B., & Shanahan, M. C. (2019). Playfully coding science: Views from preservice science teacher education. In Critical, Transdisciplinary and Embodied Approaches in STEM Education (pp. 177-195). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36329, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Serrano, E., & Satoh, K. (2019, November). An agent-based model for exploring pension law and social security policies. In JSAI International Symposium on Artificial Intelligence (pp. 50-63). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36330, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Sharma, A. K., & Asirwatham, L. (2019). Learning by Computing: A First Year Honors Chemistry Curriculum. In Using Computational Methods To Teach Chemical Principles (pp. 127-138). American Chemical Society.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Chemistry" + }, + { + "id": 36331, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Shen, Y., Guo, Y., & Chen, W. (2019). Safety analysis of China\u2019s marine energy channel based on Multi-Agent simulation. Energy Procedia, 158, 3259-3264.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Archaeology, Miscellaneous" + }, + { + "id": 36332, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Sherin, B. (2019). Machine Learning and the Perils of Prolific Pattern Finding. Constructivist Foundations, 14(3), 285-287.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Machine Learning, Pattern Finding" + }, + { + "id": 36333, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Shirazi, E. & Jadid, S.(2019) A multiagent design of self-healing in eletric power distribution systems. Electric Power Systems Research. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36334, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Shirkhodaie, G., & Rahman, A. (2019). Investigating the Effects of the Spread of Contagious Disease and Immunization of Population on Social Welfare Using Agent Based Modeling. Social Welfare Quarterly, 18(70), 181-208.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Social Science, Computer Science, Economics" + }, + { + "id": 36335, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Shvarts, A., & Abrahamson, D. (2019). Dual-eye-tracking Vygotsky: A microgenetic account of a teaching/learning collaboration in an embodied-interaction technological tutorial for mathematics. Learning, Culture, and Social Interaction, 22, 100316. https://doi.org/10.1016/j.lcsi.2019.05.003", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36336, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Silva, J., Varela, N., & Lezama, O. B. P. (2019, September). Optimizing Street Mobility Through a NetLogo Simulation Environment. In International Conference On Computational Vision and Bio Inspired Computing (pp. 48-55). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Ecology" + }, + { + "id": 36337, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Slate, J. E., Adler, R. F., & Hibdon, J. E. (2019). Scott T. Mayle, Hanna Kim, and Sudha Srinivas Northeastern Illinois University. Integrating Digital Technology in Education: School-University-Community Collaboration, 55.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Education, Computer Science" + }, + { + "id": 36338, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Smart, H. (2019). Operationalizing a conceptual model of colorism in local policing. Social justice research, 32(1), 72-115.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36339, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Smarzhevskiy, I. (2019). Behaviour in Hierarchy NetLogo Model. Description, ODD Documentation, Result. Description, ODD Documentation, Result (September 9, 2019).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36340, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Smarzhevskiy, I. A. (2019, November). The Distribution Model of Social and Psychological Properties on a Dynamic Set of Agents. In The International Scientific and Practical Forum \u201cIndustry. Science. Competence. Integration\u201d (pp. 376-382). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Psychology, Sociology" + }, + { + "id": 36341, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Spitznagel, B., Weigal, J., & Rodriguez, J. (2019). Visualizing Viscous Flow and Diffusion in the Circulatory System. The Physics Teacher, 57(8), 529-532.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Physics, Biology" + }, + { + "id": 36342, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Sukarno, S. A. (2019). M\u00e9thodes d'approximation au probl\u00e8me de routage de v\u00e9hicule pour une gestion de flotte de drones (Doctoral dissertation, Valenciennes, Universit\u00e9 Polytechnique Hauts-de-France).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36343, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Sulis, E., Amantea, I. A., & Fornero, G. (2019, December). Risk-aware business process modeling: a comparison of discrete event and agent-based approaches. In 2019 Winter Simulation Conference (WSC) (pp. 3152-3159). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Computer Science, Physics, Chemistry, Urban Studies" + }, + { + "id": 36344, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Sultanov, M., & Crape, B. L. (2019). PIN135 MODELING HUMAN PAPILLOMAVIRUS TRANSMISSION FOR VACCINE EVALUATIONS: A PRELIMINARY AGENT-BASED MODEL. Value in Health, 22, S661.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Computer Science, Economics, Miscellaneous" + }, + { + "id": 36345, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Sun, B. (2019). Technology Innovation Diffusion Mechanisms of Agricultural Machinery in an Innovation Ecosystem. Revista de la Facultad de Agronomia de la Universidad del Zulia, 36(5).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Technology, Agricultural Machinery, Innovation Ecosystem" + }, + { + "id": 36346, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Sun, J., Zheng, M., Skitmore, M., Xia, B., & Wang, X. (2019). Industry effect of job hopping: an agent-based simulation of Chinese construction workers. Frontiers of Engineering Management, 6(2), 249-261.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36347, + "sort": null, + "year": 2019, + "is_ccl": true, + "reference": "Swanson H., Anton G., Bain C., Horn M., Wilensky U. (2019) Introducing and Assessing Computational Thinking in the Secondary Science Classroom. In: Kong SC., Abelson H. (eds) Computational Thinking Education. Springer, Singapore", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 36348, + "sort": null, + "year": 2019, + "is_ccl": true, + "reference": "Swanson, H., & Wilensky, U. (2019, August). Engaging students in theory building in the science classroom. Poster to be presented at the biennial conference of the European Association for Research on Learning and Instruction, Aachen, Germany.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Theory Building" + }, + { + "id": 36349, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Taillandier, P., Gaudou, B., Grignard, A., Huynh, Q. N., Marilleau, N., Caillou, P., ... & Drogoul, A. (2019). Building, composing and experimenting complex spatial models with the GAMA platform. GeoInformatica, 23(2), 299-322.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Spatial Modeling, Computer Science, Geology, Physics, Architecture, Engineering, Data Science" + }, + { + "id": 36350, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Taillandier, P., Grignard, A., Marilleau, N., Philippon, D., Huynh, Q. N., Gaudou, B., & Drogoul, A. (2019). Participatory modeling and simulation with the gama platform. Journal of Artificial Societies and Social Simulation, 22(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36351, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Tan, Z., Othman, W. A. F. W., Wahab, A. A. A., & Alhady, S. S. N. (2019). CROWD DYNAMICS ANALISYS: SIMULATING HETEREOGENEOUS CROWDS WITH PANIC EFFECT STOCHASTICS BEHAVIOUR. Journal of Fundamental and Applied Sciences, 11(2), 838-856.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Economics" + }, + { + "id": 36352, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Tashakor, G., & Suppi, R. (2019). Agent-based model for tumour-analysis using Python+ Mesa. arXiv preprint arXiv:1909.01885.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science" + }, + { + "id": 36353, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Tashakor, G., & Suppi, R. (2019, July). Simulation and computational analysis of multiscale graph agent-based tumor model. In 2019 International Conference on High Performance Computing & Simulation (HPCS) (pp. 298-304). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Chemistry" + }, + { + "id": 36354, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Taves, A. (2019). Modeling Theories and Modeling Phenomena: A Humanist\u2019s Initiation. In Human Simulation: Perspectives, Insights, and Applications (pp. 83-94). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36355, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Thiel, S. (2019). An Agent-Based Ecological Model of West Nile Virus for Classroom Use.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology" + }, + { + "id": 36356, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Todorova, V. (2019). Playing with Information Source. In\u00a0At the Intersection of Language, Logic, and Information: ESSLLI 2018 Student Session, Sofia, Bulgaria, August 6\u201317, 2018, Selected Papers 30\u00a0(pp. 171-184). Springer Berlin Heidelberg.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Information Source" + }, + { + "id": 36357, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Tofah, D. K. W. (2019). Production and Logistics Systems Improvements-Biim Ultrasound AS (Master's thesis, UiT Norges arktiske universitet).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36358, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Triastanto, A. N. D., & Utama, N. P. (2019, September). Model Study of Traffic Congestion Impacted by Incidents. In 2019 International Conference of Advanced Informatics: Concepts, Theory and Applications (ICAICTA) (pp. 1-6). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Traffic Congestion" + }, + { + "id": 36359, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Tubadji, A., Angelis, V., & Nijkamp, P. (2019). Micro-cultural preferences and macro-percolation of new ideas: A NetLogo simulation. Journal of the Knowledge Economy, 10(1), 168-185", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36360, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Urbanov\u00e1, P. (2019). Agent based modeling of fish shoal behaviour.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36361, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Vahdati, A. R. (2019). Agents. jl: agent-based modeling framework in Julia. Journal of Open Source Software, 4(42), 1611.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling" + }, + { + "id": 36362, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Valdez, A. C., & Ziefle, M. (2019). Predicting acceptance of novel technology from social network data-an agent-based simulation-approach. In International Conference on Competitive Manufacturing (COMA), CIRP. Stellenbosch, South Africa.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36363, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Valente, J. A. (2019). The Role of Debugging in Knowledge Construction. Constructivist Foundations, 14(3).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Debugging" + }, + { + "id": 36364, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Varughese, J. C., Moser, D., Thenius, R., Wotawa, F., & Schmickl, T. (2019). swarmfstaxis: Borrowing a swarm communication mechanism from fireflies and slime mold. In Complex Adaptive Systems (pp. 213-222). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 36365, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Verwaart, T., van Wassenaer, L., & Hofstede, G. J. Agent-Based Simulation of Policies to Reconnect a City and the Countryside. In Advances in Social Simulation: Proceedings of the 15th Social Simulation Conference: 23\u201327 September 2019 (p. 101). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Social Science, Computer Science" + }, + { + "id": 36366, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Vogelstein, L., & Brady, C. (2019). Taking the Patch Perspective: A Comparative Analysis of a Patch Based Participatory Simulation.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 36367, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Wagner, M., & de Vries, W. T. (2019). Comparative review of methods supporting decision-making in urban development and land management. Land, 8(8), 123.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36368, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Waldherr, A., & Wettstein, M. (2019). Bridging the gaps: using agent-based modeling to reconcile data and theory in computational communication science. International Journal of Communication, 13, 3976-3999.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36369, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Walker, B., & Johnson, T.V.(2019) NetLogo and GIS: A Powerful Combination EPiC Series in Computing, vol 58, 257-264. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Ecology" + }, + { + "id": 36370, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Wang, H. H., Grant, W. E., Elliott, N. C., Brewer, M. J., Koralewski, T. E., Westbrook, J. K., ... & Sword, G. A. (2019). Integrated modelling of the life cycle and aeroecology of wind-borne pests in temporally-variable spatially-heterogeneous environment. Ecological modelling, 399, 23-38.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Aerosecology, Modeling" + }, + { + "id": 36371, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Warnke, T., & Uhrmacher, A. M. (2019, October). Reproducible parallel simulation experiments via pure functional programming. In 2019 IEEE/ACM 23rd International Symposium on Distributed Simulation and Real Time Applications (DS-RT) (pp. 1-8). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Programming" + }, + { + "id": 36372, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Warren, A., & Sattenspiel, L. (2020). Artificial Long House Valley v1. 0.0. CoMSES Computational Model Library.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36373, + "sort": null, + "year": 2019, + "is_ccl": true, + "reference": "Weintrop, D., Bau, D., & Wilensky U. (2019). The Cloud is the Limit: A case study of programming on the web, with the web. International Jounal of Child-Computer Interaction. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36374, + "sort": null, + "year": 2019, + "is_ccl": true, + "reference": "Weintrop, D., & Wilensky, U. (2019). Transitioning from introductory block-based and text-based environments to professional programming languages in high school computer science classrooms. Computers & Education, 142.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36375, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Wijermans, N., Verhagen, H., & Lytter, A. An Online Implementation of a Virtual Agent-Based Experiment Tool\u2014An Exploration. In\u00a0Advances in Social Simulation: Proceedings of the 15th Social Simulation Conference: 23\u201327 September 2019\u00a0(p. 291). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Social Science, Miscellaneous" + }, + { + "id": 36376, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Wells, L., Bednarz, T., & Au, A. (2019). Applying reinforcement learning techniques to operations-level wargaming scenarios. In 23rd International Congress on Modelling and Simulation-Supporting evidence-based decision making: the role of modelling and simulation (pp. 74-74).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Reinforcement Learning, Modelling and Simulation" + }, + { + "id": 36377, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Wen, G., Huang, N., & Zhu, J. (2019, November). A node-centric network congestion estimation method considering average spatio-temporal scale. In Journal of Physics: Conference Series (Vol. 1345, No. 4, p. 042062). IOP Publishing.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Network Science, Physics" + }, + { + "id": 36378, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Witwytzkyj, J., Valle Filho, A., & Santana, A. L. M. (2019, November). Modelagem Bifocal Aplicada \u00e0 Engenharia Mec\u00e2nica: Desenvolvimento de um modelo computacional de condu\u00e7\u00e3o t\u00e9rmica para uso educacional no ensino superior. In Anais dos Workshops do Congresso Brasileiro de Inform\u00e1tica na Educa\u00e7\u00e3o (Vol. 8, No. 1, p. 1084).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36379, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Wozniak, M. Conceptual Framework for Modeling Complex Urban Systems\u2014From Theoretical Assumptions to Empirical Basis. In\u00a0Advances in Social Simulation: Proceedings of the 15th Social Simulation Conference: 23\u201327 September 2019\u00a0(p. 509). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36380, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Wyeld, T., Shen, H., & Bednarz, T. (2019, November). Containerisation as a method for supporting multiple VR visualisation platforms from a single data source. In The 17th International Conference on Virtual-Reality Continuum and its Applications in Industry (pp. 1-3).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36381, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Xanthopoulou, T. D., Prinz, A., & Shults, F. L. (2019, September). Generating Executable Code from High-Level Social or Socio-Ecological Model Descriptions. In International Conference on System Analysis and Modeling (pp. 150-162). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, System Analysis and Modeling, Computer Science" + }, + { + "id": 36382, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Xi, J. Y. S., & Chan, W. K. V. (2019, December). Simulation of knife attack and gun attack on university campus using agent-based model and GIS. In 2019 Winter Simulation Conference (WSC) (pp. 263-272). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, GIS, Agent-based model, Computer Science" + }, + { + "id": 36383, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Xia, H., Zhang, S., Li, Y., Pan, Z., Peng, X., & Cheng, X. (2019) \"An Attack-Resistant Trust Inference Model for Securing Routing in Vehicular Ad Hoc Networks,\" in IEEE Transactions on Vehicular Technology, vol. 68, no. 7, pp. 7108-7120, July 2019. doi: 10.1109/TVT.2019.2919681", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Chemistry, Mathematics, Electrical Engineering" + }, + { + "id": 36384, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Xiang, L., & Mitchell, A. (2019). Investigating bark beetle outbreaks. Science Scope, 42(6), 65-76.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology" + }, + { + "id": 36385, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Yang, B. (2019). Machine learning-based evolution model and the simulation of a profit model of agricultural products logistics financing. Neural Computing and Applications, 31(9), 4733-4759.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36386, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Yang, B., & Chen, Y. A. (2019). Evolution model and simulation of logistics outsourcing for manufacturing enterprises based on multi-agent modeling. Cluster Computing, 22(3), 6807-6815.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Logistics, Modeling, Simulation, Computer Science, Economics" + }, + { + "id": 36387, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Yang, T., Gao, W., & Zhang, F. (2019, September). Summary of Research on Power Boosting Technology of Distributed Mobile Energy Storage Charging Piles. In 2019 IEEE 3rd International Electrical and Energy Conference (CIEEC) (pp. 1770-1776). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36388, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Ye, X., Chen, B., Li, P., Jing, L., & Zeng, G. (2019). A simulation-based multi-agent particle swarm optimization approach for supporting dynamic decision making in marine oil spill responses. Ocean & Coastal Management, 172, 128-136.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36389, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Yee, G. Q. M. (2019). Self-assembly for supply chains.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 36390, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Yongchen, G., & Yang, S. (2019). Multi-Agent Modeling and Simulation on China's Marine Energy Channel Security. Journal of System Simulation, 31(4), 655.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36391, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Young, E. (2019). Prioritevac, An Adaptive Model for Evacuation: Agent Based Simulation of the Station Nightclub Fire (Doctoral dissertation, University of Delaware).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36392, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Yousefi, M., & Yousefi, M. (2019). Human resource allocation in an emergency department: A metamodel-based simulation optimization. Kybernetes.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 36393, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Yu, B., Guo, Z., Peng, Z., Wang, H., Ma, X., & Wang, Y. (2019). Agent-based simulation optimization model for road surface maintenance scheme. Journal of Transportation Engineering, Part B: Pavements, 145(1), 04018065.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36394, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Yue, T., Long, R., Chen, H., Liu, J., Liu, H., & Gu, Y. (2019). Energy-Saving Behavior of Urban Residents in China: A Multi-Agent Simulation. Journal of Cleaner Production, 119623.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36395, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Yuhong, Z. H. A. O., & Jie, C. H. E. N. (2019, October). A P2P trust model based on trust factor and feedback aggregation. In 2019 3rd International Conference on Electronic Information Technology and Computer Engineering (EITCE) (pp. 214-219). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Trust factor, Feedback aggregation, Electronic Information Technology, Computer Engineering, Economics, Archaeology, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36396, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Zhang, E. Z., & Zhang, X. (2019, July). Road traffic congestion detecting by VANETs. In Proceedings of the 2nd International Conference on Electrical and Electronic Engineering (EEE 2019).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies" + }, + { + "id": 36397, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Zhang, N., & Zheng, X. (2019). Agent-based simulation of consumer purchase behaviour based on quality, price and promotion. Enterprise Information Systems, 13(10), 1427-1441.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36398, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Zhao, G., Zhao, R., & Yang, X. (2019). Fostering Fifth-Grade Students\u2019 Ability to Design Comparative Experiments Using an Online Model. Journal of Education and Development, 3(1), 1.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Education, Computer Science" + }, + { + "id": 36399, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Zhou, Y., & Wu, H. (2019). Dynamic analysis and simulation study of knowledge flow under the perspective of industrial transfer. Expert Systems, 36(5), e12345.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36400, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Zhu, H. (2019, May). A Platoon-based Rolling Optimization Algorithm at Isolated Intersections in A Connected and Autonomous Vehicle Environment. In Proceedings of the 2019 5th International Conference on Computing and Data Engineering (pp. 41-46).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 36401, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Zia, K., Saini, D. K., & Muhammad, A. (2019). Efficient evacuation in a multi-exit environment: an agent-based decision support model. International Journal of Information and Decision Sciences, 11(4), 355-375.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36402, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Zoto, E., Kianpour, M., Kowalski, S. J., & Lopez-Rojas, E. A. (2019). A socio-technical systems approach to design and support systems thinking in cybersecurity and risk management education. Complex Systems Informatics and Modeling Quarterly, (18), 65-75.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36403, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Zou, J., Sun, H., Fan, B., & Zhao, Y. (2019, October). A General Simulation Framework for Crowd Network Simulations. In Proceedings of the 4th International Conference on Crowd Science and Engineering (pp. 12-19).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Simulation, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 36404, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Zu, C., Zeng, H. & Zhou, X.(2019) Computational Simulation of Team Creativity: The Benefit of Member Flow. Frontiers in Psychology. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Psychology" + }, + { + "id": 36405, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Zulkarnay, I. (2019). Simulation modeling in the study of the optimal placement of systemically important universities across the country.\u00a0Artificial Societies,\u00a014(4).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36406, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Adelt, F., Weyer, J., Hoffmann, S., & Ihrig, A. (2018). Simulations of the governance of complex systems (SimCo): Basic concepts and experiments on urban transportation. Journal of Artificial Societies and Social Simulation, 21(2). doi.org/10.18564/jasss.3654", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Urban Studies, Simulation" + }, + { + "id": 36407, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Agarwal, A., Hartman, T., & Goel, A. K. (2018). From Middle School to Graduate School: Combining Conceptual and Simulation Modeling for Making Science Learning Easier. In CogSci.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 36408, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Almagor, J., Benenson, I., & Czamanski, D. (2018). The Evolution of the Land Development Industry: An Agent-Based Simulation Model. In Trends in Spatial Analysis and Modelling (pp. 93-120). Springer, Cham.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36409, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Alvarado, A., Mata, A., Segovia, M., & Vargas, E. (2018). Emergencia De Ideas Matem\u00e1ticas En Secundaria Con Simulaciones Participativas En Netlogo. REVISTA ELECTR\u00d3NICA AMIUTEM, 2(1), 88-94.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Mathematics" + }, + { + "id": 36410, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Alves, F., Pereira, A. I., Barbosa, J., & Leit\u00e3o, P. (2018, June). Scheduling of home health care services based on multi-agent systems. In International conference on practical applications of agents and multi-agent systems (pp. 12-23). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36411, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Alves, F., Varela, M. L. R., Rocha, A. M. A., Pereira, A. I., Barbosa, J., & Leit\u00e3o, P. (2018, December). Hybrid system for simultaneous job shop scheduling and layout optimization based on multi-agents and genetic algorithm. In International Conference on Hybrid Intelligent Systems (pp. 387-397). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 36412, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Amin, E., Abouelela, M., & Soliman, A. (2018). The role of heterogeneity and the dynamics of voluntary contributions to public goods: An experimental and agent-based simulation analysis. Journal of Artificial Societies and Social Simulation, 21(1). doi.org/10.18564/jasss.3585", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Simulation, Computer Science, Economics, Archaeology, Social Science, Mathematics, Physics, Chemistry" + }, + { + "id": 36413, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Anderson, A. (2018). Costs and Benefits of Copulatory Silk Wrapping in the Nursery Web Spider, Pisaurina mira Walckenaer, 1837 (Araneae, Pisauridae). The University of Nebraska - Lincoln, ProQuest Dissertations Publishing. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 36414, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Anderson, T., & Dragi\u0107evi\u0107, S. (2018). Deconstructing Geospatial Agent-Based Model: Sensitivity Analysis of Forest Insect Infestation Model. In Agent-Based Models and Complexity Science in the Age of Geospatial Big Data (pp. 31-44). Springer, Cham.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36415, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Anderson, W., Kobold, K., & Yakimenko, O. (2018). Employing Systems Engineering Tools to Analyze Green Microgrids for Remote Islands.World Academy of Science, Engineering and Technology, International Journal of Energy and Power Engineering, 5(6).[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36416, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Andre, R. (2018). Simulating the Emergence of Social Complexity Using Agent-Based Modelling. In MEi: CogSci Conference 2018 (p. 64).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36417, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Antoniou, V., & Schlieder, C. (2018). Addressing Uneven Participation Patterns in VGI Through Gamification Mechanisms. In Geogames and Geoplay (pp. 91-110). Springer, Cham.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36418, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Aurambout, J. P., & Endress, A. G. (2018). A model to simulate the spread and management cost of kudzu (Pueraria montana var. lobata) at landscape scale. Ecological Informatics, 43, 146-156.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Modeling" + }, + { + "id": 36419, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Avvenuti, M., Cimino, M. G. C., Cola, G., & Vaglini, G. (2018, December). Detection and mapping of a toxic cloud using uavs and emergent techniques. In International Conference on Mining Intelligence and Knowledge Exploration (pp. 215-224). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Detection, Mapping, uavs, Emerging techniques" + }, + { + "id": 36420, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Baeza, A., & Janssen, M. A. (2018). Modeling the decline of labor-sharing in the semi-desert region of Chile. Regional Environmental Change, 18(4), 1161-1172.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 36421, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Bassett, K. (2018). Agent-Based Modeling of Pollen Competition.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Pollen Competition" + }, + { + "id": 36422, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Beauchemin, C. A., Liao, L. E., & Blahut, K. (2018). Tutorial on agent-based models in NetLogo applied to immunology and virology. arXiv preprint arXiv:1808.09499.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, NetLogo, Immunology, Virology, Computer Science, Economics, Archaeology, Physics, Chemistry" + }, + { + "id": 36423, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Berea, A. (2018). Emergence of Communication in Socio-Biological Networks. Springer International Publishing.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36424, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Berea, A. (2018). Constructed Language Versus Bio-chemical Communication: An Agent-Based Model and Applications. In Emergence of Communication in Socio-Biological Networks (pp. 31-49). Springer, Cham.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36425, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Bourgais, M., Taillandier, P., Vercouter, L., & Adam, C. (2018). Emotion modeling in social simulation: A survey. Journal of Artificial Societies and Social Simulation, 21(2). doi.org/10.18564/jasss.3681", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Social Science, Computer Science" + }, + { + "id": 36426, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Boyd, R., Roy, S., Sibly, R., Thorpe, R., & Hyder, K. (2018). A general approach to incorporating spatial and temporal variation in individual-based models of fish populations with application to Atlantic mackerel. Ecological Modelling, 382, 9-17.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36427, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Bozuyla, M., Tola, A. T., & Murat, Y. S. (2018). A Novel Safe Merging Algorithm for Connected Vehicles Using NetLogo. Elektronika ir Elektrotechnika, 24(3), 3-7.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36428, + "sort": null, + "year": 2018, + "is_ccl": true, + "reference": "Brady, C., Petrosino, A., Stroup, W., & Wilensky, U. (2018). Group-based cloud computing: Technological supports for social constructionism. In Dagiene, V. & Jasute, E. (Eds.) Proceedings of the Constructionism 2018 conference. Vilnius, Lithuania.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36429, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Brilliantova, A., Pletenev, A., Doronina, L., & Hosseini, H.(2018). An agent-based model of an endangered population of the Arctic fox from Mednyi\nIsland. Moscow University, University of Munster, Rochester Institute of Technology [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36430, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Broniatowski, D. A., & Moses, J. (2018). The Flexibility of Generic Architectures: Lessons from the Human Nervous System. In Disciplinary Convergence in Systems Engineering Research (pp. 585-598). Springer, Cham.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36431, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Burrows, A., French, D. (2018). Evidence of Science and Engineering Practices in Preservice Secondary Science Teachers\u2019 Instructional Planning Journal of Science Education and Technology, (p. 1-14). [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology" + }, + { + "id": 36432, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Castillo, E. A., & Trinh, M. P. (2018). In search of missing time: A review of the study of time in leadership research. The Leadership Quarterly, 29(1), 165-178.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Leadership, Research" + }, + { + "id": 36433, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Carbo, J., Sanchez-Pi, N., & Molina, J. M. (2018). Agent-based simulation with NetLogo to evaluate ambient intelligence scenarios. Journal of Simulation, 12(1), 42-52.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, NetLogo, Computer Science, Economics" + }, + { + "id": 36434, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Carillo, M., Cordasco, G., Serrapica, F., Scarano, V., Spagnuolo, C., & Szufel, P. (2018). Distributed simulation optimization and parameter exploration framework for the cloud. Simulation Modelling Practice and Theory, 83, 108-123.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36435, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Chaudhari, K. S., Kandasamy, N. K., Krishnan, A., Ukil, A., & Gooi, H. B. (2018). Agent Based Aggregated Behavior Modelling For Electric Vehicle Charging Load. IEEE Transactions on Industrial Informatics.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36436, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Chen, W., Liu, H., & Xu, D. (2018). Dynamic pricing strategies for perishable product in a competitive multi-agent retailers market. Journal of Artificial Societies and Social Simulation, 21(2). doi.org/10.18564/jasss.3710", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Computer Science, Miscellaneous" + }, + { + "id": 36437, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Chennoufi, M., Bendella, F., & Bouzid, M. (2018). Multi-agent simulation collision avoidance of complex system: application to evacuation crowd behavior. International Journal of Ambient Computing and Intelligence (IJACI), 9(1), 43-59.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36438, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Chi, Y. (2018). Self-Organized Bike Redistribution in Urban City. American Journal of Operations Research, 8(5), 386-394.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36439, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Chumachenko, D., Dobriak, V., Mazorchuk, M., Meniailov, I., & Bazilevych, K. (2018, February). On agent-based approach to influenza and acute respiratory virus infection simulation. In Advanced Trends in Radioelecrtronics, Telecommunications and Computer Engineering (TCSET), 2018 14th International Conference on (pp. 192-195). IEEE.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Radioelecrtronics, Telecommunications, Economics, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36440, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Clapp, J. (2018). The Promise of Systems Science in Health Behavior Research: The Example of Studying Drinking Events. Health Behavior Research 1(2) [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36441, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Optimization of Dose Schedules for Chemotherapy of Early Colon Cancer Determined by High Performance Computer Simulations", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 36442, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Condro A., Pawitan H., Risdyanto I. (2018). Predicting drought propagation within peat layers using a three dimensionally explicit voxel based model (pp. 149). IOP Conference: earth Envionmental Science.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36443, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Cortier, O., Boutouil, M., & Maquaire, O. (2018, September). Quantifying Benefits of Permeable Pavement on Surface Runoff, An Agent-Based-Model with NetLogo. In International Conference on Urban Drainage Modelling (pp. 729-733). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36444, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Crittenden, J., Fujimoto, R., Lu, Z., Pecher, P. (2018). Granular Cloning: Intra-Object Parallelism in Ensemble Studies Proceedings of the 2018 ACM SIGSIM Conference on Principles of Advanced Discrete Simulation, Pages 165-176.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36445, + "sort": null, + "year": 2018, + "is_ccl": true, + "reference": "Dabholkar, S., Anton, G., & Wilensky, U. (2018). Developing mathetic content knowledge using an emergent systems microworld. Proceedings of Constructionism.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36446, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Daeichian, A., & Haghani, A. (2018). Fuzzy Q-Learning-Based Multi-agent System for Intelligent Traffic Control by a Game Theory Approach. Arabian Journal for Science and Engineering, 1-7.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Fuzzy Q-Learning" + }, + { + "id": 36447, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Da\u0148a, J., & R\u00e1\u010dek, J. (2018). Modeling and Simulating Cooperation in Organizations. IT for Practice 2018, 79.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Modeling and Simulating Cooperation" + }, + { + "id": 36448, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Davis, B. (2018). Complexity as a Discourse on School Mathematics Reform. In Transdisciplinarity in Mathematics Education (pp. 75-88). Springer, Cham.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36449, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Delcea, C., Cotfas, L. A., Chiri\u021b\u0103, N., & Nica, I. (2018). A two-door airplane boarding approach when using apron buses. Sustainability, 10(10), 3619.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36450, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Delcea, C., Cotfas, L. A., & Paun, R. (2018). Agent-based evaluation of the airplane boarding strategies\u2019 efficiency and sustainability. Sustainability, 10(6), 1879.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36451, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Delcea, C., Cotfas, L. A., & Paun, R. (2018, September). Agent-based optimization of the emergency exits and desks placement in classrooms. In International Conference on Computational Collective Intelligence (pp. 340-348). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36452, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Delcea, C., Cotfas, L. A., & Paun, R. (2018, September). Airplane boarding strategies using agent-based modeling and grey analysis. In International Conference on Computational Collective Intelligence (pp. 329-339). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36453, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Deshmukh, V. (2018). Modeling Human Migration Dynamics in Netlogo.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 36454, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "de Aguiar, P. V., de S\u00e1, C. C., de Lima, H. G. G., Amaral, A. R., & Parpinelli, R. S. (2018, October). Application of the NetLogo Tool in Ischemic Stroke Simulation. In Anais do XV Encontro Nacional de Intelig\u00eancia Artificial e Computacional (pp. 596-607). SBC.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 36455, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "DeSoto, K. A. (2018). Modeling Evacuation of Population Centers Using NetLogo", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Modeling" + }, + { + "id": 36456, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Djerroud, H., & Cherif, A. A. (2018, November). Visualization tool for jade platform (jex). In Proceedings of the Future Technologies Conference (pp. 481-489). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Visualization" + }, + { + "id": 36457, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Dobbie, S., Schreckenberg, K., Dyke, J. G., Schaafsma, M., & Balbi, S. (2018). Agent-based modelling to assess community food security and sustainable livelihoods. Journal of Artificial Societies and Social Simulation, 21(1). doi.org/10.18564/jasss.3639", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36458, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Dos Santos, H. D. R., Galafassi, C., de Souza, D. C., & Russini, A. (2018). MICROSSIMULA\u00c7\u00c3O DO TRAJETO DE UMA M\u00c1QUINA AGR\u00cdCOLA UTILIZANDO O SOFTWARE NETLOGO. Anais do Sal\u00e3o Internacional de Ensino, Pesquisa e Extens\u00e3o, 9(3).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36459, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Dubovi, I., Dagan, E., Mazbar, O. S., Nassar, L., & Levy, S. T. (2018). Nursing students learning the pharmacology of diabetes mellitus with complexity-based computerized models: A quasi-experimental study. Nurse education today, 61, 175-181.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Nursing, Pharmacology, Computer Science, Studies" + }, + { + "id": 36460, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Du, x., Chen, Y., Bouferguene, A., Al-Hussein, M.(2018). Multi-Agent based simulation of elderly egress process and fall accident in senior partment buildings. 2018 Winter Simulation Conference [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36461, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Chareunsy, A. K. (2018). Diffusion of development initiatives in a southern Lao community: An agent based evaluation. Journal of Asian Economics, 54, 53-68.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Agent-Based Modeling" + }, + { + "id": 36462, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Cucart-Mora, C., Lozano, S., & de Pablo, J. F. L. (2018). Bio-cultural interactions and demography during the Middle to Upper Palaeolithic transition in Iberia: An agent-based modelling approach. Journal of Archaeological Science, 89, 14-24.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36463, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Di Pietrantonio, J. (2018). A Computational Model of Team-Based Dynamics in the Workplace: Assessing the Impact of Incentive-Based Motivation on Productivity (Doctoral dissertation, Duquesne University).[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36464, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Dorsey, J. W., & Hardy, L. C. (2018). Sustainability factors in dynamical systems modeling: Simulating the non-linear aspects of multiple equilibria. Ecological Modelling, 368, 69-77.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36465, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Drezewski, R. (2018). The Agent-Based Model and Simulation of Sexual Selection and Pair Formation Mechanisms. Entropy 20(5), p. 342. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Social Science, Education" + }, + { + "id": 36466, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Easter, C. (2018). An agent-based simulation for studying the effect of various parameters on the evolution of teaching.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36467, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Edali, M. & Y\u00fccel, G. (2018). Automated analysis of regularities between model parameters and output using support vector regression in conjunction with decision trees. Journal of Artificial Societies and Social Simulation, 21(4). doi.org/10.18564/jasss.3876", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Support Vector Regression, Decision Trees" + }, + { + "id": 36468, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "El Hachami, K., & Tkiouat, M. (2018, April). An approach for modeling the economy as a complex system using agent-based theory. In Intelligent Systems and Computer Vision (ISCV), 2018 International Conference on (pp. 1-6). IEEE.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36469, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Ene, N., Fernandez, M., Pinaud, B. (2018). A Graph Transformation Approach to the Modelling of Capital Markets. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36470, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Enokela, J. A. (2018). An Analysis of the Consequences of the Herdsmen-Farmers Crisis in North Central Nigeria using Agent\u2013Based Modelling. The Pacific Journal of Science and Technology, 19(2), 326-336.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 36471, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Flores-Parra, J. M., Casta\u00f1\u00f3n-Puga, M., Gaxiola-Pacheco, C., Palafox-Maestre, L. E., Rosales, R., & Tirado-Ramos, A. (2018). A Fuzzy Inference System and Data Mining Toolkit for Agent-Based Simulation in NetLogo. In Computer Science and Engineering\u2014Theory and Applications (pp. 127-149). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Fuzzy Inference System, Data Mining, Computer Science, NetLogo, Simulation, Theory and Applications" + }, + { + "id": 36472, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Furtado, B. (2018). Policy space: agent based modeling. Rio de Janerio: Ipea.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36473, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Feldman, T. (2018). Unwinding ZIRP: A simulation analysis. Finance Research Letters, 24, 278-288.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Finance, Simulation" + }, + { + "id": 36474, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Gal\u00e1n, S. F., & Mengshoel, O. J. (2018). Neighborhood beautification: Graph layout through message passing. Journal of Visual Languages & Computing, 44, 72-88.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36475, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Gao, X., Li, K., & Chen, B. (2018). Invulnerability Measure of a Military Heterogeneous Network Based on Network Structure Entropy. IEEE Access, 6, 6700-6708.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Network Science, Computer Science" + }, + { + "id": 36476, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Garc\u00eda-Magari\u00f1o, I., Gray, G., Lacuesta, R., & Lloret, J. (2018). Survivability strategies for emerging wireless networks with data mining techniques: a case study with NetLogo and RapidMiner.IEEE Access.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36477, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Gilbert, N., Ahrweiler, P., Barbrook-Johnson, P., Narasimhan, K. P., & Wilkinson, H. (2018). Computational modelling of public policy: Reflections on practice. Journal of Artificial Societies and Social Simulation, 21(1). doi.org/10.18564/jasss.3669", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36478, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Ginovart, M. (2018). How a multi-agent programmable modelling environment like NetLogo can help to deal with communities or assemblages of bacteria on surfaces?. Exploring Microorganisms: Recent Advances in Applied Microbiology, 256.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science" + }, + { + "id": 36479, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "G\u00f3mez-Cruz, N. A., Loaiza Saa, I., & Ortega Hurtado, F. F. (2018). Agent-based simulation in management and organizational studies: a survey. European Journal of Management and Business Economics, 26(3), 313-328.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Management, Organizational Studies, Simulation, Economics" + }, + { + "id": 36480, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Gonzales, G. V., dos Santos, E. D., Adamatti, D. F., & Neto, A. J. S. (2018). A Netlogo and Matlab Hybrid Approach for Constructal Design of the Double-T Shaped Cavity by Means of Simulated Annealing. Proceeding Series of the Brazilian Society of Computational and Applied Mathematics, 6(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36481, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "GOROSHNIKOVA, T., & SMAKHTIN, E. (2018). EMOTIONS IN DECISION-MAKING WITHIN SIMULATION MODELING. In System analysis in economics-2018 (pp. 135-138).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36482, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Greco, A., & Pluchino, A. (2018). On the use of immune algorithms to determine seismic collapse conditions for frame structures. Computer Software and Media Applications.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Seismic Collapse, Computer Science, Archaeology, Physics, Chemistry, Urban Studies" + }, + { + "id": 36483, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Gunaratne, C., & Garibay, I. (2018). NL4Py: Agent-Based Modeling in Python with Parallelizable NetLogo Workspaces. arXiv preprint arXiv:1808.03292.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Agent-Based Modeling, Python, NetLogo, Parallelizable, Computer Science" + }, + { + "id": 36484, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "G\u00fcndel, M., Hoyt, C. T., & Hofmann-Apitius, M. (2018). BEL2ABM: agent-based simulation of static models in Biological Expression Language. Bioinformatics, 34(13), 2316-2318.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation" + }, + { + "id": 36485, + "sort": null, + "year": 2018, + "is_ccl": true, + "reference": "Guo, Y. and Wilensky (2018a). NetLogo MTG 1 Equal Opportunities HubNet Model. Center for Connected Learning and Computer-Based Modeling, Northwestern University, Evanston, IL.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36486, + "sort": null, + "year": 2018, + "is_ccl": true, + "reference": "Guo, Y. and Wilensky (2018b). NetLogo MTG 2 Random Assignment HubNet Model. Center for Connected Learning and Computer-Based Modeling, Northwestern University, Evanston, IL.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 36487, + "sort": null, + "year": 2018, + "is_ccl": true, + "reference": "Guo, Y. and Wilensky (2018c). NetLogo MTG 3 Feedback Loop HubNet Model. Center for Connected Learning and Computer-Based Modeling, Northwestern University, Evanston, IL.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 36488, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Haddad, T. A. (2018). An IoT-Based Adaptive Traffic Light Control Algorithm for Isolated Intersection. In Advances in Computing Systems and Applications: Proceedings of the 4th Conference on Computing Systems and Applications (p. 107). Springer Nature.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computing Science, Miscellaneous" + }, + { + "id": 36489, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Haeme, J., McCaw, K., Nguyen, T., & May, T. (2018). Project Whirligig: Modeling the Swarming Behavior of Whirligig Beetles.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36490, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Han, S., Huang, H., Luo, Z., & Foropon, C. (2018). Harnessing the power of crowdsourcing and Internet of Things in disaster response. Annals of Operations Research, 1-16.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36491, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Haydari, S. (2018). Copyright Law and Knowledge Creation: A Study of Copyright Term Length Impact on Knowledge Creation and Learning. Northeastern University, ProQuest Dissertations Publishing[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Copyright Law, Knowledge Creation, Learning" + }, + { + "id": 36492, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Heath, K. N., Ryder, E. F., & Gegear, R. J. (2018). Investigating the effect of memory loss on pollinator-plant interactions through agent-based modeling. Gordon Research Conference: Unifying Ecology Across Scales, Biddeford, ME, United States.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry" + }, + { + "id": 36493, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "H\u00e9bert, G. A., Perez, L., & Harati, S. (2018). An Agent-Based Model to Identify Migration Pathways of Refugees: The Case of Syria. In Agent-Based Models and Complexity Science in the Age of Geospatial Big Data (pp. 45-58). Springer, Cham.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36494, + "sort": null, + "year": 2018, + "is_ccl": true, + "reference": "Head, B., & Wilensky, U. (2018). Agent cognition through micro-simulations: Adaptive and tunable intelligence with NetLogo LevelSpace. In: Morales A., Gershenson C., Braha D., Minai A., Bar-Yam Y. (eds) Unifying Themes in Complex Systems IX. ICCS 2018. Springer Proceedings in Complexity. Springer, Cham.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Agent cognition, Micro-simulations, NetLogo LevelSpace" + }, + { + "id": 36495, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Hokamp, S., Gulyas, L., Koehler, M., & Wijesinghe, S. (2018). Agent-Based Modeling of Tax Evasion. Wiley.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36496, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Hollar, D. W. (2018). Simulations, Applications, and the Challenge for Public Health. In Trajectory Analysis in Health Care (pp. 231-246). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Applications, Health Care" + }, + { + "id": 36497, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Huang, W. (2018). Exploring households\u2019 weatherization adoptions: an agent-based approach (Doctoral dissertation, Iowa State University).[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36498, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Huber, L., Bahro, N., Leitinger, G., Tappeiner, U., & Strasser, U. (2018, April). Aqua. MORE: Socio-hydrological Modelling of Water Resources in an Alpine Catchment. In EGU General Assembly Conference Abstracts (p. 6426).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36499, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Humann, J., Jin, Y., & Madni, A. M. (2018). Scalability in Self-Organizing Systems: An Experimental Case Study on Foraging Systems. In Disciplinary Convergence in Systems Engineering Research (pp. 543-557). Springer, Cham.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36500, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Hunter, E., Mac Namee, B., & Kelleher, J. D. (2018). Using a socioeconomic segregation burn-in model to initialise an agent-based model for infectious diseases. Journal of Artificial Societies and Social Simulation, 21(4). doi.org/10.18564/jasss.3870", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36501, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Izquierdo, S. S. & Izquierdo, L. R. (2018). Mamdani fuzzy systems for modelling and simulation: A critical assessment. Journal of Artificial Societies and Social Simulation, 21(3). doi.org/10.18564/jasss.3660", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Fuzzy Systems, Simulation, Modeling, Social Science" + }, + { + "id": 36502, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Jaxa-Rozen, M., & Kwakkel, J. H. (2018). PyNetLogo: Linking NetLogo with Python. Journal of Artificial Societies and Social Simulation, 21(2). doi.org/10.18564/jasss.3668", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, NetLogo, Python" + }, + { + "id": 36503, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Jianyu, Z., Baizhou, L., Xi, X., Guangdong, W., & Tienan, W. (2018). Research on the characteristics of evolution in knowledge flow networks of strategic alliance under different resource allocation. Expert Systems with Applications, 98, 242-256.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Evolution, Knowledge Flow Networks, Strategic Alliances, Resource Allocation" + }, + { + "id": 36504, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "JIN, Z., & ZOU, H. (2018). Research on joint distribution based on Web semantics and Agent technology. Modern Electronics Technique, 2018, 14.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36505, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Jing, L., Chen, B., Zhang, B., & Ye, X. (2018). Modeling marine oily wastewater treatment by a probabilistic agent-based approach. Marine pollution bulletin, 127, 217-224.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36506, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Karanci, A., Vel\u00e1squez-Montoya, L., Paniagua-Arroyave, J. F., Adams, P. N., & Overton, M. F. (2018). Beach Management Practices and Occupation Dynamics: An Agent-Based Modeling Study for the Coastal Town of Nags Head, NC, USA. In Beach Management Tools-Concepts, Methodologies and Case Studies (pp. 373-395). Springer, Cham.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36507, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Kaziyeva, D., Wallentin, G., Loidl, M., Mohr, S., & Neuwirth, C. (2018). Reviewing software for agent-based bicycle flow models. GI_Forum, 6, 291-296.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36508, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Klein, I., Levy, N., & Ben-Elia, E. (2018). An agent-based model of the emergence of cooperation and a fair and stable system optimum using ATIS on a simple road network. Transportation research part C: emerging technologies, 86, 183-201.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36509, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Koch, A. (2018). Dynamic Relationships Between Human Decision Making and Socio-natural Systems. In Trends in Spatial Analysis and Modelling (pp. 121-141). Springer, Cham.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36510, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "K\u00f6hler, J., de Haan, F., Holtz, G., Kubeczko, K., Moallemi, E., Papachristos, G., & Chappin, E. (2018). Modelling sustainability transitions: An assessment of approaches and challenges. Journal of Artificial Societies and Social Simulation, 21(1). doi.org/10.18564/jasss.3629", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36511, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Koli, V.N., Mirza, F., Baig, M.M., & Ullah, E.(2018). An Agent-Based Modelling Approach for Scheduling and Management of Elective Surgeries. SM Journal of Health and Medical Informatics[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36512, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Kotnik, K. (2018). Exploring Marine Population Dynamics with Agent Based Models.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 36513, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Kurahashi, S. (2018, June). Agent-Based Gaming Approach for Electricity Markets. In KES International Symposium on Agent and Multi-Agent Systems: Technologies and Applications (pp. 311-320). Springer, Cham.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Electricity Markets" + }, + { + "id": 36514, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Laatabi, A., Marilleau, N., Nguyen-Huu, T., Hbid, H., & Ait Babram, M. (2018). ODD+2D: An ODD based protocol for mapping data to empirical ABMs. Journal of Artificial Societies and Social Simulation, 21(2). doi.org/10.18564/jasss.3646", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36515, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Lawall, M. L., & Graham, S. (2018). NETLOGO SIMULATIONS AND THE USE OF TRANSPORT AMPHORAS IN ANTIQUITY. Maritime Networks in the Ancient Mediterranean World, 163.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36516, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Lawlor, F., Collier, R., Nallur, V. (2018).Towards a Programmable Framework for Agent Game Playing. Adaptive Learning Agents Workshop.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36517, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Lawson, T., Rogerson, R., & Barnacle, M. (2018). A comparison between the cost effectiveness of CCTV and improved street lighting as a means of crime reduction. Computers, Environment and Urban Systems, 68, 17-25.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36518, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Lee, T. E. (2018). The thin blue line between protesters and their counter-protesters. Journal of Artificial Societies and Social Simulation, 21(2). doi.org/10.18564/jasss.3676", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36519, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Lemos, C. M. (2018). Model Exploration and Computer Experiments. In Agent-Based Modeling of Social Conflict (pp. 65-111). Springer, Cham.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 36520, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Lemos, C. M. (2018). ABM of Civil Violence: ODD Description. In Agent-Based Modeling of Social Conflict (pp. 51-63). Springer, Cham.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36521, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Liew, C. W., Phuong, T., Jones, C. B., Evans, S., Hoot, J., Weedling, K., ... & Kurt, R. A. (2018). A computational approach to unraveling TLR signaling in murine mammary carcinoma. Computers in biology and medicine, 93, 56-65.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36522, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Liukkonen, L., Ayll\u00f3n, D., Kunnasranta, M., Niemi, M., Nabe-Nielsen, J., Grimm, V., & Nyman, A. M. (2018). Modelling movements of Saimaa ringed seals using an individual-based approach. Ecological Modelling, 368, 321-335.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36523, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Lopez-Parez, A., Ruiz-Martin, C., Wainer, G. (2018). Formal Abstract Modeling of Dynamic Multiplex Networks. Proceedings of the 2018 ACM SIGSIM Conference on Principles of Advanced Discrete Simulation, pp.61-72. Rome, Italy.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36524, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Luna-Ramirez, W. A., & Fasli, M. (2018). Bridging the gap between abm and mas: A disaster-rescue simulation using jason and netlogo. Computers, 7(2), 24.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 36525, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Maciel, M.V. (2018). Emerg\u00eancia de distribui\u00e7\u00f5es de posicionamentos ideol\u00f3gicos: uma abordagem computacional. Diss. Universidade de S\u00e3o Paulo.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36526, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Mailleret, L., Davtian, D., & Grognard, F. (2018). An individual based model to optimize natural enemies deployment in augmentative biological control.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science" + }, + { + "id": 36527, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Makarov, S., & Belianov, A. (2018). Reasons to create a Python framework for agent-based simulation models development. Herald of CEMI, (1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36528, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Malishev, M., Bull, C. M., & Kearney, M. R. (2018). An individual\u2010based model of ectotherm movement integrating metabolic and microclimatic constraints. Methods in Ecology and Evolution, 9(3), 472-489.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36529, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Mao, W., Wu, H., Pan, L., & Zhou, J. (2018, September). Multi-layer Simulation Methods of Temperature Controlled Loads. In 2018 China International Conference on Electricity Distribution (CICED) (pp. 2002-2006). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Temperature Controlled Loads" + }, + { + "id": 36530, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Martin, K. (2018, October). Multitouch NetLogo for museum interactive game. In Companion of the 2018 ACM Conference on Computer Supported Cooperative Work and Social Computing (pp. 5-8).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Archaeology, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36531, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Mayangsari, L., & Pasaribu, N. (2018). Understanding Unlawful Behavior in Music Industry Using Agent-Based Modelling and Simulation: A Complementary of Misconception in Value Co-Creation. World Academy of Science, Engineering and Technology, International Journal of Industrial and Manufacturing Engineering, 5(4).[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36532, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Men\u00e1rguez, F. J. M., Hortal, J. C., Salazar, S. S., & Alarc\u00f3n, A. A. (2018). Anatomizing NetLogo. Some advices on how to consider a programmable environment for designing inhabited landscapes. In EURAU18 Alicante: Retroactive Research: Congress Proceedings (pp. 423-428). Universitat d\u00b4 Alacant/Universidad de Alicante.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Anatomy, Ecology, Computer Science, Archaeology, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36533, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Modu, B., Polovina, N., Lan, Y., & Konur, S. (2018). Machine learning analysis and agent-based modelling of malaria transmission. In Fuzzy Systems and Data Mining IV (pp. 465-472). IOS Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Machine Learning, Agent-based modelling" + }, + { + "id": 36534, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Moglia, M., Podkalicka, A., & McGregor, J. (2018). An agent-based model of residential energy efficiency adoption. Journal of Artificial Societies and Social Simulation, 21(3). doi.org/10.18564/jasss.3729", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36535, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Muelder, H. & Filatova, T. (2018). One theory - many formalizations: Testing different code implementations of the theory of planned behavior in energy agent-based models. Journal of Artificial Societies and Social Simulation, 21(4). doi.org/10.18564/jasss.3855", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36536, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Mueller, C., Klein, U., & Hof, A. (2018). An easy-to-use spatial simulation for urban planning in smaller municipalities. Computers, Environment and Urban Systems.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36537, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Muhammad, A., Kashif, Z., & Saini, D. (2018). Agent-based Simulation of Socially-inspired Model of Resistance against Unpopular Norms Proceedings of the 10th International Conference on Agents and Artificial Intelligence (ICAART 2018) - Volume 1, pages 133-139.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36538, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Nabe-Nielsen, J., van Beest, FM., Grimm, V., Sibly, PM.(2018). TRACE document: Disturbances and marine populations.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Trace, Marine populations" + }, + { + "id": 36539, + "sort": null, + "year": 2018, + "is_ccl": true, + "reference": "Pei, C., Weintrop, D., & Wilensky, W. (in press). Cultivating computational thinking practices and mathematical habits of mind in Lattice Land. Mathematical Thinking and Learning.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Mathematics" + }, + { + "id": 36540, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Nie, J., Hu, H., Wang, X., & Xu, C. (2018). Simulation Study on Network Stability of Short Cycle Product Supply Chain Based on Netlogo. In CICTP 2018: Intelligence, Connectivity, and Mobility (pp. 409-418). Reston, VA: American Society of Civil Engineers.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation" + }, + { + "id": 36541, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Olugboji, O., Camorlinga, S. G., de Faria, R. L., & Kaushal, A. (2018). Understanding the Emergency Department Ecosystem Using Agent-Based Modeling: A Study of the Seven Oaks General Hospital Emergency Department. In Putting Systems and Complexity Sciences Into Practice (pp. 199-214). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Agent-Based Modeling, System Dynamics" + }, + { + "id": 36542, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Opiyo, N. (2018). Impacts of socio-economic policies on temporal diffusion of PV-based communal grids in a rural developing community. In Proceedings of the 35th EU PVSEC 2018 (pp. 2182-2187).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Socio-economic policies, Rural developing community, PV-based communal grids, EU PVSEC" + }, + { + "id": 36543, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Opiyo, N. (2018). Modelling different PV-based communal grids architectures for rural developing communities. In Proceedings of the 35th EU PVSEC 2018 (pp. 1859-1864).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modelling, PV-based communal grids, Rural developing communities" + }, + { + "id": 36544, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Opiyo, N. (2018, September). How Subsidies Impact on Temporal Diffusion of PV-Based Minigrids. In 35th European Photovoltaic Solar Energy Conference.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Physics, Chemistry, Economics" + }, + { + "id": 36545, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Opiyo, N. (2018, September). Modelling Different PV-Based Minigrids Architectures. In 35th European Photovoltaic Solar Energy Conference.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Physics, Computer Science" + }, + { + "id": 36546, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Ornelas, N. O. An Ecosystem: Computational Thinking, Project-Based Learning [PDF]Logo", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36547, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Paris, T., Ciarletta, L., & Chevrier, V. (2018, October). Co-simulation \u00e0 base d'outils multi-agents: un cas d'\u00e9tude avec NetLogo.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 36548, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Pele, M., Deneubourg, J. L., & Sueur, C. (2018). Decision-making processes underlying pedestrian behaviours at signalised crossings: Part 2. Do pedestrians show cultural herding behaviour?. arXiv preprint arXiv:1805.11834.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36549, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Peng, Y., Li, Q. X., & Bao, H. J. (2018). Conflict Analysis of Concentrated Rural Settlement Development During Post-disaster Reconstruction in China: A Multi-agent Simulation. In Proceedings of the 21st International Symposium on Advancement of Construction Management and Real Estate (pp. 491-502). Springer, Singapore.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Conflict Analysis" + }, + { + "id": 36550, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Petrosino, A. J., Sherard, M. K., Harron, J. R., & Stroup, W. (2018). Using Collaborative Agent-Based Computer Modeling to Explore Tri-Trophic Cascades with Elementary School Science Students. Creative Education, 09(04), 615\u2013624. https://doi.org/10.4236/ce.2018.94043", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36551, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Petrosino, A., Sherard, M., Harron, J., & Kohl, M. (2018, March). Using Collaborative Agent-based Modeling to Explore Complex Phenomena in Pre-and In-service Teacher Education. In Society for Information Technology & Teacher Education International Conference (pp. 1669-1671). Association for the Advancement of Computing in Education (AACE).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36552, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Polater, A. (2018). Managing airports in non-aviation related disasters: A systematic literature review. International Journal of Disaster Risk Reduction.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36553, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "PONZIANI, F., TINABURRI, A., & RICCI, V. (2018). A Multi Agent Approach To Analyse Shift In People Behaviour Under Critical Conditions. International Journal of Safety and Security Engineering, 8(1), 1-9.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36554, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Ponziani, F. A., Tinaburri, A., & Ricci, V. (2018). A multi agent approach to analyse shift in people behavior under critical conditions. International Journal of Safety and Security Engineering, 8(1), 1-9.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36555, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Pour, F. S. A., Tatar, U., & Gheorghe, A. (2018, April). Agent-based model of sand supply governance employing blockchain technology. In Proceedings of the Annual Simulation Symposium (p. 14). Society for Computer Simulation International.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Simulation" + }, + { + "id": 36556, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Proctor, C., Blikstein, P.(2018). Unfold.studio: Supporting critical literacies of text and code Stanford Graduate School of Education, (p. 1-35).[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36557, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Proietti, C. & Franco, A. Social norms and the dominance of low-doers. Journal of Artificial Societies and Social Simulation, 21(1). doi.org/10.18564/jasss.3524", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Social norms" + }, + { + "id": 36558, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Quan-en, M. A., & Juan, Z. H. A. N. G. (2018). Research on Propagation Principle of Wechat Official Account in Complex Network by Modeling Based on SIR and Simulation. Information Science.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Simulation, Network Science" + }, + { + "id": 36559, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Raglin, A., Metu, S., & Howard, C. (2018, April). Understanding theoretical human information interaction, the development of a standard model using an agent based modeling framework. In Next-Generation Analyst VI (Vol. 10653, p. 1065302). International Society for Optics and Photonics.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36560, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Raimbault, J. An Urban Morphogenesis Model Capturing Interactions between Networks and Territories.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Urban Studies" + }, + { + "id": 36561, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Rajib, Md. Design Considerations for Intermittently Connected Energy Harvesting Wireless Sensor Networks. ProQuest.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36562, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Ram\u00edrez-\u00c1vila, G. M., Kurths, J., & Deneubourg, J. L. (2018). Fireflies: a paradigm in synchronization. In Chaotic, Fractional, and Complex Dynamics: New Insights and Perspectives (pp. 35-64). Springer, Cham.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 36563, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Rashid, K. I., Nan, D., Tahir, M., & Ahmed, A. An Adaptive Cruise Control Model based on PDLCA for Efficient Lane Selection and Collision Avoidance. International Journal of Advanced Computer Science and Applications (9).[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36564, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Raya, K., Gaxiola, C. G., & Castanon, M. (2018). Agent-based model for self management of network flows using negotiation. IEEE Latin America Transactions, 16(1), 210-215.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36565, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Reinhardt, O., Hilton, J., Warnke, T., Bijak, J., & Uhrmacher, A. M. (2018). Streamlining simulation experiments with agent-based models in demography. Journal of Artificial Societies and Social Simulation, 21(3). doi.org/10.18564/jasss.3784", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36566, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Rosales, C., Whipple, J. M., & Blackhurst, J. (2018). The Impact of Out-of-Stocks and Supain Design on Manufacturers: Insights from an Agent-Based Model. Transportation Journal, 57(2), 137-162.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics" + }, + { + "id": 36567, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Rossetti, G., Milli, L., Rinzivillo, S., S\u00eerbu, A., Pedreschi, D., & Giannotti, F. (2018). NDlib: a python library to model and analyze diffusion processes over complex networks. International Journal of Data Science and Analytics, 5(1), 61-79.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Diffusion Processes, Network Analysis, Data Science" + }, + { + "id": 36568, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Salman, M. A., & Al Essa, H. A. (2018). A Distributed Approach for Disk Defragmentation. Journal of University of Babylon for Pure and Applied Sciences, 26(3), 1-5.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Disk Defragmentation" + }, + { + "id": 36569, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Santos, F., Nunes, I., & Bazzan, A. L. (2018). Model-driven agent-based simulation development: A modeling language and empirical evaluation in the adaptive traffic signal control domain. Simulation Modelling Practice and Theory, 83, 162-187.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36570, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Saputra, G. W., Irawan, B., & Kusuma, P. D. (2018). Pemodelan Dan Simulasi Penyebaran Penyakit Tuberkulosis Berbasis Sistem Agen. eProceedings of Engineering, 5(3).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science" + }, + { + "id": 36571, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Schools, S. (2018). A Genetic Algorithm for Sorting Lists Implemented in the Programming Language Net Logo (Doctoral dissertation, Morgan State University)", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36572, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Secchi, D. & Cowley, S. J. (2018). Modeling organizational cognition: The case of impact factor. Journal of Artificial Societies and Social Simulation, 21(1). doi.org/10.18564/jasss.3628", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36573, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "SHEN, Y. W., & LU, Z. J. (2018). Research on the Evolution of Entrepreneurial Ecosystem Based on Innovation Network. In Economic Forum.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Miscellaneous" + }, + { + "id": 36574, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Simpkins, C. E., Dennis, T. E., Etherington, T. R., & Perry, G. L. (2018). Assessing the performance of common landscape connectivity metrics using a virtual ecologist approach. Ecological Modelling, 367, 13-23.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36575, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Snitker, G. (2018). Identifying natural and anthropogenic drivers of prehistoric fire regimes through simulated charcoal records. Journal of Archaeological Science, 95, 1-15.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 36576, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Soheilypour, M., & Mofrad, M. R. (2018). Agent\u2010based modeling in molecular systems biology. BioEssays, 40(7), 1800020.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Molecular Systems Biology" + }, + { + "id": 36577, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Stamatovic, B. (2018, February). Implementation of CA algorithm for labeling of 26-connected components in 3D binary lattices. In 2018 23rd International Scientific-Professional Conference on Information Technology (IT) (pp. 1-3). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Chemistry, Economics, History, Ecology, Miscellaneous" + }, + { + "id": 36578, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Sturley, C., Newing, A., & Heppenstall, A. (2018). Evaluating the potential of agent-based modelling to capture consumer grocery retail store choice behaviours. The Ionternatinal Review of Retail, Distribution and Consumer Research, 28(1), 27-46.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36579, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Sukarno, S. A., Atitallah, R. B., & Djemai, M. (2018, October). Approximation Algorithm for 3-Dimensional Vehicle Routing Problem for Fleet of Multi-Agents. In 2018 6th International Conference on Control Engineering & Information Technology (CEIT) (pp. 1-6). IEEE", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36580, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Sullivan, A., An, L., & York, A. (2018). Which perspective of institutional change best fits empirical data? An agent-based model comparison of rational choice and cultural diffusion in invasive plant management. Journal of Artificial Societies and Social Simulation, 21(1). doi.org/10.18564/jasss.3611", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36581, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Suyamto, D., Prasetyo, L., & Setiawan, Y. (2018, August). A voxel-based model of LiDAR point cloud for estimating forest canopy closure. In Sixth International Conference on Remote Sensing and Geoinformation of the Environment (RSCy2018) (Vol. 10773, p. 107730Q). International Society for Optics and Photonics.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, LiDAR, Remote Sensing, Computer Science" + }, + { + "id": 36582, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Syuhada, K. E. Pengaruh Formasi Penyimpanan Metode Volume Based Terhadap Unjuk Kerja Strategi Routing Order Picking Menggunakan Strategi Midpoint dan Largesgap. Jurnal TIN Universitas Tanjungpura, 2(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36583, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Taherian, M., Mousavi, S. M., & Chamani, H. (2018). An agent-based simulation with NetLogo platform to evaluate forward osmosis process (PRO Mode). Chinese journal of chemical engineering, 26(12), 2487-2494.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Agent-based simulation" + }, + { + "id": 36584, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Thakur, S., Bhautik, P., Sangore, V., Singh, K. (2018).A Review on Treatment of Sewage Water & Biogas Purification by Algae. Internatinal Journal of Creative Research Thoughts (IJCRT), ISSN:2320-2882, Volume.6, Issue 1, Page No pp.639-642, January 2018, [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Algae" + }, + { + "id": 36585, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Thiriot, S. (2018). Word-of-mouth dynamics with information seeking: Information is not (only) epidemics. Physica A: Statistical Mechanics and its Applications, 492, 418-430.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Miscellaneous" + }, + { + "id": 36586, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Trivedi, A., & Pandey, M. (2018). Agent-based modelling and simulation of religious crowd gatherings in India. In Advanced Computational and Communication Paradigms (pp. 465-472). Springer, Singapore.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36587, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Tuff\u00e9ry, C., Fernandes, P., Delvigne, V., & Morala, A. (2018). Combinaison d\u2019un SMA et d\u2019un SIG pour aider \u00e0 la prospection p\u00e9troarch\u00e9ologique. Exploration d\u2019une approche multi-agents dans la mod\u00e9lisation des parcours naturels du silex. Arch\u00e9ologies num\u00e9riques, 2(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36588, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Tyson, M. (2018). Managing Distributed Information: Implications for Energy Infrastructure Co-production (Doctoral dissertation, Arizona State University).[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36589, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Vanh\u00e9e, L. & Dignum, F. (2018). Explaining the emerging influence of culture, from individual influences to collective phenomena. Journal of Artificial Societies and Social Simulation, 21(4). doi.org/10.18564/jasss.3881", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Culture, Sociology" + }, + { + "id": 36590, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Vidakovi\u0107, M., Ivanovi\u0107, M., Stanti\u0107, D., & Vidakovi\u0107, J. (2018, June). How Research Achievements Can Influence Delivering of a Course-Siebog Agent Middleware. In KES International Symposium on Agent and Multi-Agent Systems: Technologies and Applications (pp. 110-120). Springer, Cham.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 36591, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Voinov, A., Jenni, K., Gray, S., Kolagani, N., Glynn, P. D., Bommel, P., ... & Smajgl, A. (2018). Tools and methods in participatory modeling: Selecting the right tool for the job. Environmental Modelling & Software, 109, 232-255.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36592, + "sort": null, + "year": 2018, + "is_ccl": true, + "reference": "Wagh, A., & Wilensky, U. (2018). EvoBuild: A quickstart toolkit for programming agent-based models of evolutionary processes. Journal of Science Education and Technology, 27(2), 131-146.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science" + }, + { + "id": 36593, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Waight, N., & Abd-El-Khalick, F. (2018). Technology, Culture, and Values: Implications for Enactment of Technological Tools in Precollege Science Classrooms. In Cognition, Metacognition, and Culture in STEM Education (pp. 139-165). Springer, Cham.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Culture, Technology, STEM Education" + }, + { + "id": 36594, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Walbert, H. J., Caton, J. L., & Norgaard, J. R. (2018). Countries as agents in a global-scale computational model. Journal of Artificial Societies and Social Simulation, 21(3). doi.org/10.18564/jasss.3717", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36595, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Wang, X. M., He, C. C., & Li, X. K. (2018). Interaction Optimization Among Multi-agent of Green Dwelling Market. Journal of Civil Engineering and Management, 35(2), 1-7.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36596, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Wang, Y., Wen, S., Farnon Ellwood, M. D., Miller, A. D., & Chu, C. (2018). Temporal effects of disturbance on community composition in simulated stage\u2010structured plant communities. Ecology and evolution, 8(1), 120-127.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36597, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Wang, Z., Zhang, H., Hu, M., Qiu, Q., & Liu, H. (2018). Analysis of safety characteristics of flight situation in complex low-altitude airspace. Advances in Mechanical Engineering, 10(5), 1687814018774656.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mechanical Engineering, Advanced Mathematics, Physics, Computer Science, Economics, Aviation, Urban Studies" + }, + { + "id": 36598, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Wilkerson, M. H., Shareff, R., Laina, V., & Gravel, B. (2018). Epistemic gameplay and discovery in computational model-based inquiry activities. Instructional Science, 1-26.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36599, + "sort": null, + "year": 2018, + "is_ccl": true, + "reference": "Weintrop, D., & Wilensky, U. (2018). How block-based, text-based, and hybrid block/text modalities shape novice programming practices. International Journal of Child-Computer Interaction.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36600, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Weisbuch, G. (2018). Lattice dynamics of inequality. Journal of Artificial Societies and Social Simulation, 21(1). doi.org/10.18564/jasss.3635", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Lattice dynamics" + }, + { + "id": 36601, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "West, T. A., Grogan, K. A., Swisher, M. E., Caviglia-Harris, J. L., Sills, E., Harris, D., ... & Putz, F. E. (2018). A hybrid optimization-agent-based model of REDD+ payments to households on an old deforestation frontier in the Brazilian Amazon. Environmental Modelling & Software, 100, 159-174.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36602, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Yarbrough, B., & Wagner, N. (2018, April). Assessing security risk for wireless sensor networks under cyber attack. In Proceedings of the Annual Simulation Symposium (p. 1). Society for Computer Simulation International.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36603, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Xu, X., Sahnoun, M., Abdelaziz, F., Baudry, D., Louis, A.(2018). Multi-objective Flexible Job Shop Scheduling Problem: Simulation Approach [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36604, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "YACHOU, N., & ABOULAICH, R. (2018). Agent Based Modeling and Simulation for Home Financing. Application in Netlogo Platform. Journal of Applied Economic Sciences, 13(3).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36605, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Yahyaoui, F., & Tkiouat, M. (2018). Agent-based co-modeling of information society and wealth distribution. International Journal of Advanced Computer Science and Applications, 9(11), 201-206.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36606, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Yan, J., Liu, R., & Zhang, G. (2018). Task structure, individual bounded rationality and crowdsourcing performance: An agent-based simulation approach. Journal of Artificial Societies and Social Simulation, 21(4). doi.org/10.18564/jasss.3854", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36607, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Ya\u015far, O. (2018). A new perspective on computational thinking. Communications of the ACM, 61(7), 33-39.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computational thinking" + }, + { + "id": 36608, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "YIN, G., LI, G., ZHU, T., & CHEN, J. (2018). Study on Multi-Agent System of Energy Managements for 4WD Electric Vehicles. China Mechanical Engineering, 29(15), 1765.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36609, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Yousefi, M., Yousefi, M., Ferreira, R. P. M., Kim, J. H., & Fogliatto, F. S. (2018). Chaotic genetic algorithm and Adaboost ensemble metamodeling approach for optimum resource planning in emergency departments. Artificial intelligence in medicine.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Genetics, Computer Science, Artificial Intelligence, Medicine" + }, + { + "id": 36610, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Yoo, E. (2018). Dynamics of Information Distribution on Social Media Platforms during Disasters (Doctoral dissertation, Arizona State University).[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36611, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Yoon, S. A., Goh, S. E., & Park, M. (2018). Teaching and Learning About Complex Systems in K\u201312 Science Education: A Review of Empirical Studies 1995\u20132015. Review of Educational Research, 88(2), 285-325.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36612, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Yunming, W., Si, C., Chengsheng, P., & Bo, C. (2018). Measure of invulnerability for command and control network based on mission link. Information Sciences, 426, 148-159.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36613, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Zeppini, P. & Frenken, K. (2018). Networks, percolation, and consumer demand. Journal of Artificial Societies and Social Simulation, 21(3). doi.org/10.18564/jasss.3658", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36614, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Zhang, X., He, Junhui.(2018). Nature-Inspired Computational Model of Population Desegregation Under Group Leaders Influence. Proceedings of the Fifth International Forum on Decision Sciences.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 36615, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Zhao, C., Li, S., Wang, W., Li, X., & Du, Y. (2018). Advanced parking space management strategy design: an agent-based simulation optimization approach. Transportation Research Record, 2672(8), 901-910.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36616, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "ZHENG, Y., ZHANG, G., MA, R., & SHU, H. (2018). Research on Influence of Mobile Social Network on College Students' Campus Life: from Perspective of Multi-Agent Evolution Simulation. China Educational Technology & Equipment, 04.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36617, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "ZHOU, X. N., WANG, J. S., & Yin, Z. H. U. (2018). Simulation Research of Vehicle Lane-changing Behavior Evolutionary Game Model Based on NetLogo. DEStech Transactions on Engineering and Technology Research, (ecar).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation, Vehicle, Lane-changing, Behavior, Game, NetLogo" + }, + { + "id": 36618, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Zhu, M., Panorkou, N., Lal, P., Etikyala, S., Germia, E., Iranah, P., ... & Basu, D. (2018, March). Integrating interactive computer simulations into K-12 earth and environmental science. In 2018 IEEE Integrated STEM Education Conference (ISEC) (pp. 220-223). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Chemistry, Economics, History, Ecology" + }, + { + "id": 36619, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Zia, K., Saini, D. K., Muhammad, A., & Ferscha, A. (2018). Customer Participation in the Internet of Things: A Bayesian Game Model. IEEE Transactions on Computational Social Systems.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36620, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Zinelli Jr, M. (2018, October). Multi-agent Simulation of a Real Evacuation Scenario: Kiss Nightclub and the Panic Factor. In Multi-Agent Systems and Agreement Technologies: 15th European Conference, EUMAS 2017, and 5th International Conference, AT 2017, Evry, France, December 14-15, 2017, Revised Selected Papers (Vol. 10767, p. 268). Springer.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36621, + "sort": null, + "year": 2018, + "is_ccl": false, + "reference": "Zoto, E., Kowalski, S., Lopez-Rojas, E. A., & Kianpour, M. Using a socio-technical systems approach to design and support systems thinking in cyber security education.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36622, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Abbott, R., & Had\u017eikadi\u0107, M. (2017).Complex Adaptive Systems, Systems Thinking, and Agent-Based Modeling. In Advanced Technologies, Systems, and Applications (pp. 1-8). Springer International Publishing. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Complex Adaptive Systems, Systems Thinking, Agent-Based Modeling" + }, + { + "id": 36623, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "ACOSTA, C., BORGESIUS, F., & VAN HATTUM, J. E. S. S. I. E. Facilitating Collective Action for an Integrated Community Energy System.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36624, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Alzaeemi, S. A. S., Sathasivam, S., & Adebayo, S. A. (2017). Analysis of Performance of Various Activation Functions for doing the logic programming in Hopfield Network. International Journal of Computational Bioinformatics and In Silico Modeling, 6(2), 911-921. [ PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Logic Programming, Hopfield Network" + }, + { + "id": 36625, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Alzahrani, E., Richmond, P., & Simons, A. J. (2017, August). A formula-driven scalable benchmark model for ABM, applied to FLAME GPU. In European Conference on Parallel Processing (pp. 703-714). Springer, Cham.[ PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics" + }, + { + "id": 36626, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Ampatzidis, G., & Ergazaki, M. (2017). Toward an \u201cAnti-Balance of Nature\u201d Learning Environment for Non-Biology Major Students: Learning Objectives and Design Criteria. Natural Sciences Education, 46(1).[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology" + }, + { + "id": 36627, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Anderson, J. H., Downs, J. A., Loraamm, R., & Reader, S. (2017). Agent-based simulation of Muscovy duck movements using observed habitat transition and distance frequencies. Computers, Environment and Urban Systems, 61, 49-55. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Chemistry" + }, + { + "id": 36628, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Aydin, M. E., & Fellows, R. (2017). A reinforcement learning algorithm for building collaboration in multi-agent systems. arXiv preprint arXiv:1711.10574.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Social Science, Education, Epidemiology" + }, + { + "id": 36629, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Auerbach, S., & Dix, R. (2017). Competition and spatial efficiency.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 36630, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Badham, J., Jansen, C., Shardlow, N., & French, T. (2017). Calibrating with multiple criteria: A demonstration of dominance. Journal of Artificial Societies and Social Simulation, 20(2). doi.org/10.18564/jasss.3212", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36631, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Balev, S., Dutot, A., & Olivier, D. (2017). Networking, Networks and Dynamic Graphs. In Agent-based Spatial Simulation with NetLogo, Volume 2 (pp. 85-116).[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Networking, Networks, Dynamic Graphs" + }, + { + "id": 36632, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Ballet, P., Rivi\u00e8re, J., Pothet, A., Theron, M., Pichavant, K., Abautret, F., ... & Rodin, V. (2017).Modelling and Simulating Complex Systems in Biology: Introducing NetBioDyn\u2013A Pedagogical and Intuitive Agent-Based Software. In Multi-Agent-Based Simulations Applied to Biological and Environmental Systems (pp. 128-158). IGI Global. [ HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36633, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Banos, A., Corson, N., Daud\u00e9, \u00c9., Gaudou, B., & Coyrehourcq, S. R. (2017). Macro Models, Micro Models and Network-based Coupling. In Agent-based Spatial Simulation with NetLogo, Volume 2 (pp. 63-84).[ HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Network-based Coupling" + }, + { + "id": 36634, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Banati, H., Bhattacharyya, S., Mani, A., & K\u00f6ppen, M. (Eds.). (2017). Hybrid Intelligence for Social Networks. Springer International Publishing.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36635, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Barker, A. K., Alagoz, O., & Safdar, N. (2017). Interventions to reduce the incidence of hospital-onset Clostridium difficile infection: An agent-based modeling approach to evaluate clinical effectiveness in adult acute care hospitals. Clinical Infectious Diseases.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Hospital-Onset Infection, Clinical Effectiveness, Agent-Based Modeling, Modeling" + }, + { + "id": 36636, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Barrientos, A. H. (2017). The Evolutionary Dynamics of the Mixe Language. In Sociolinguistics-Interdisciplinary Perspectives. InTech.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Sociology, Linguistics" + }, + { + "id": 36637, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Barrientos, A. H., & Andrade, Y. D. (2017). Modelling and Simulation of Complex Adaptive System: The Diffusion of Socio-Environmental Innovation in the RENDRUS Network. In Cvetkovic, D (Ed.)Computer Simulation. InTech. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36638, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Bastien-Olvera, B., Bautista-Gonzalez, E., & Gay-Garcia, C. An agent-based model of food-borne diseases under climate change scenarios in Mexico City.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36639, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Belete, G.F., Voinov, A., Morales, J. (2017). Environmental Modelling & Software. Volume 94, (pp 112\u2013126). [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36640, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Bent, J. (2017). Autonomous UAV Path Planning for Wildfire Data Collection. Computer Science Thesis. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 36641, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Beutler, J. D. Online Waiting Time Information.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology" + }, + { + "id": 36642, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Bezzout, H., Hsaini, S., Azzouzi, S., & El Faylali, H. (2017). Simulation of electromagnetic waves propagation in free space using Netlogo multi-agent approach. In Proceedings of the 2nd international Conference on Big Data, Cloud and Applications (p. 112). ACM.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Ecology, Physics, Miscellaneous" + }, + { + "id": 36643, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Binmad, R., & Li, M. (2017). Improving the Efficiency of an Online Marketplace by Incorporating Forgiveness Mechanism. ACM Transactions on Internet Technology (TOIT), 17(1), 9. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 36644, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Birks, D., & Davies, T. (2017). STREET NETWORK STRUCTURE AND CRIME RISK: AN AGENT\u2010BASED INVESTIGATION OF THE ENCOUNTER AND ENCLOSURE HYPOTHESES. Criminology, 55(4), 900-937.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Criminology, Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science" + }, + { + "id": 36645, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Bogatzky, N. (2017). A \"gung-ho\" Approach Towards Sophic Economy. Economic Alternatives, (1), 160-186. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Miscellaneous" + }, + { + "id": 36646, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Brown, A. J. (2017). DEVELOPMENT OF A SUPPLIER SEGMENTATION METHOD FOR INCREASED RESILIENCE AND ROBUSTNESS: A STUDY USING AGENT BASED MODELING AND SIMULATION. Theses and Dissertations--Mechanical Engineering. 100.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36647, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Brown, A., & Badurdeen, F. (2017). Supplier Segmentation Method for Selection of Resilience-Enabling Procurement Strategies. In IIE Annual Conference. Proceedings (pp. 656-661). Institute of Industrial and Systems Engineers (IISE).[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36648, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Bruya, B. (2017). Ethnocentrism and Multiculturalism in Contemporary Philosophy. Philosophy East and West, 67(4), 991-1018.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Anthropology, Philosophy" + }, + { + "id": 36649, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Bui, H., Pence, J., Mohaghegh, Z., Reihani, S., & Kee, E. (2017). Spatio-temporal socio-technical risk analysis methodology: an application in emergency response. In American nuclear society (ANS) international topical meeting on probabilistic safety assessment and analysis (PSA). American Nuclear Society Pittsburgh, PA.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Socio-technical Risk Analysis" + }, + { + "id": 36650, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Burrows, A. C. (2017). Teaching Teachers to Think Like Engineers Using NetLogo. Paper presented at 2017 ASEE Annual Conference & Exposition, Columbus, Ohio.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36651, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Buurma, J., Hennen, W., & Verwaart, T. (2017). How social unrest started innovations in a food supply chain. Journal of Artificial Societies and Social Simulation, 20(1). doi.org/10.18564/jasss.3350", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Social Science, Miscellaneous" + }, + { + "id": 36652, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Calvaresi, D., Marinoni, M., Lustrissimini, L., Appoggetti, K., Sernani, P., Dragoni, A. F., ... & Buttazzo, G. Local Scheduling in Multi-Agent Systems: getting ready for safety-critical scenarios. In Proceedings of 15th European Conference on Multi-Agent Systems. Springer (Dec 2017).[ PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 36653, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Caillou, P., Coyrehourq, S. R., Marilleau, N., & Banos, A. (2017). Exploring Complex Models in NetLogo. In Agent-based Spatial Simulation with NetLogo, Volume 2 (pp. 173-208).[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36654, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Carver, S., & Quincey, D. (2017). A Conceptual Design of Spatio-Temporal Agent-Based Model for Volcanic Evacuation. Systems, 5(4), 53.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36655, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "\u00e0 Campo, S. Agent-Based Modelling for Online Community Designers. Paper presented at the Conference on Humana Factors in Computing Systems.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36656, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Carely, K., Dobson, G. (2017). Cyber-FIT: An Agent-Based Modelling Approach to Simulating Cyber Warfare. Lecture Notes in Computer Science book series, 10354. Springer, Cham[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Sociology, Mathematics" + }, + { + "id": 36657, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Cervantes, D., Flores, D. L., Guti\u00e9rrez, E., & Chac\u00f3n, M. A. (2017). Ce, Tb-Doped Y2SiO5 Phosphor Luminescence Emissions Modeling and Simulation. In Properties and Characterization of Modern Materials (pp. 145-156). Springer Singapore. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Physics, Miscellaneous" + }, + { + "id": 36658, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Chavira, M. A. L., & Marcel\u00edn-Jim\u00e9nez, R. (2017). Distributed rewiring model for complex networking: The effect of local rewiring rules on final structural properties. PloS one, 12(11), e0187538.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, Miscellaneous" + }, + { + "id": 36659, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Colosimo, A. (2018). Multi-agent Simulations of Population Behavior: A Promising Tool for Systems Biology. In Systems Biology (pp. 307-326). Humana Press, New York, NY.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Systems Biology" + }, + { + "id": 36660, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Darr, Y. R., & Niazi, M. A. (2017). Towards Self-organized Large-Scale Shape Formation: A Cognitive Agent-Based Computing Approach. arXiv preprint arXiv:1711.06426.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Cognitive Agent-Based Computing, arXiv" + }, + { + "id": 36661, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "David, N., Fachada, N., & Rosa, A. C. (2017). Verifying and validating simulations. In Simulating Social Complexity (pp. 173-204). Springer, Cham.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Economics, Physics, Chemistry, Urban Studies" + }, + { + "id": 36662, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Davidsson, P., & Verhagen, H. (2017). Types of simulation. In Simulating Social Complexity (pp. 23-37). Springer, Cham.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation, Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36663, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "de la Fuente, D., G\u00f3mez, A., Ponte, B., & Costas, J.Agent-Based Prototyping for Business Management: An Example Based on the Newsvendor Problem.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36664, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "de Lima Corr\u00eaa, L., Inostroza-Ponta, M., & Dorn, M. (2017, June). An evolutionary multi-agent algorithm to explore the high degree of selectivity in three-dimensional protein structures. In Evolutionary Computation (CEC), 2017 IEEE Congress on (pp. 1111-1118). IEEE. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Evolutionary Computation, Protein Structure" + }, + { + "id": 36665, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Deividi Moreira, Fernando Santos, Matheus Barbieri, Ingrid Nunes, Ana L. C BazzanABStractme: Modularized Environment Modeling in Agent-based Simulations[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36666, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "dos Santos, T. R. E., & Nakane, M. I. (2017). Dynamic Bank Runs: an agent-based approach (No. 465).[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36667, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Dubovi, I., Dagan, E., Nasar, L., Mazbar, O. S., & Levy, S. T. (2017). Follow the Glucose Molecule: Learning Pharmacology by Exploring Multi-Scale Agent-Based Computer Models of Cellular Biochemical Processes and their Interactions Between Organs. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Pharmacology" + }, + { + "id": 36668, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Fagiolo, G. & Roventini, A. (2017). Macroeconomic policy in DSGE and agent-based models redux: New developments and challenges ahead. Journal of Artificial Societies and Social Simulation, 20(1). doi.org/10.18564/jasss.3280", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Macroeconomic policy" + }, + { + "id": 36669, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Falcone, R., & Sapienza, A. (2017, November). Using Sources Trustworthiness in Weather Scenarios: The Special Role of the Authority. In Conference of the Italian Association for Artificial Intelligence (pp. 3-16). Springer, Cham.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36670, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Fan, S., Chen, X., & Sun, Q. (2017). Emergent Research of Employee Safety Awareness Based on Multi-agent Model. International Conference on Applied Human Factors and Ergonomics, 17(5), 320-327). [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36671, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Feliciani, T., Flache, A., & Tolsma, J. (2017). How, when and where can spatial segregation induce opinion polarization? Two competing models. Journal of Artificial Societies and Social Simulation, 20(2). doi.org/10.18564/jasss.3419", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36672, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Fernando, T., & Rupasinghe, T. D. Simulation of Data Plans for Operate Revenues In Telco Industry.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36673, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Frank, K., Xu, R., & Penuel, W. R. (2017). The Micro-Dynamics of Network Leverage: Implications for Change Agents External to an Organization.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36674, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Garc\u00eda-Magari\u00f1o, I., Lombas, A. S., Plaza, I., & Medrano, C. (2017). ABS-SOCI: An Agent-Based Simulator of Student Sociograms. Applied Sciences, 7(11), 1126.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36675, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Gaudou, B., Lang, C., Marilleau, N., Savin, G., Coyrehourcq, S. R., & Nicod, J. M. (2017). NetLogo, an Open Simulation Environment. In Agent-based Spatial Simulation with NetLogo, Volume 2 (pp. 1-36).[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36676, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Galland, S., Rodriguez, S., & Gaud, N. (2017). Run-time environment for the SARL agent-programming language: the example of the Janus platform. Future Generation Computer Systems.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36677, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Gotts, N. M. & Polhill, J. G. (2017). Experiments with a model of domestic energy demand. Journal of Artificial Societies and Social Simulation, 20(3). doi.org/10.18564/jasss.3467", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36678, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Grgurina, N., Barendsen, E., Suhre, C., van Veen, K., & Zwaneveld, B. (2017, November). Investigating Informatics Teachers\u2019 Initial Pedagogical Content Knowledge on Modeling and Simulation. In International Conference on Informatics in Schools: Situation, Evolution, and Perspectives (pp. 65-76). Springer, Cham.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Informatics, Pedagogy, Modeling, Simulation" + }, + { + "id": 36679, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Guijun, L., Yongsheng, W., Daohan, H., & Hongtao, Y. (2017, July). A Multi-Agent Model for Urban Water-Energy-Food Sustainable Development Simulation. In Proceedings of the 2nd International Conference on Crowd Science and Engineering (pp. 105-110). ACM.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36680, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Gwiazda, A., S\u0119kala, A., & Bana\u015b, W. (2017). Modeling of a production system using the multi-agent approach. IOP Conference Series: Materials Science and Engineering, 227(1). [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36681, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Han, B., Zhang, P., Kuang, H., & Wan, M. Screening of Port Enterprise Value Chain Routines Based on Evolution Equilibrium. Wireless Personal Communications, 1-18.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36682, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Hartbauer, Manfred (2017). Simplified bionic solutions:a simple bio-inspired vehicle collision detection system. Bioinspiration & Biominietics, 12(2). [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36683, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Hauke, J., Lorscheid, I., & Meyer, M. (2017). Recent development of social simulation as reflected in JASSS between 2008 and 2014: A citation and co-citation analysis. Journal of Artificial Societies and Social Simulation, 20(1). doi.org/10.18564/jasss.3238", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Citation, Social Simulation, Computer Science, Economics, Archaeology, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36684, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Hausmann, S. L., Tietjen, B., & Rillig, M. C. (2017). Solving the puzzle of yeast survival in ephemeral nectar systems: exponential growth is not enough. FEMS microbiology ecology, 93(12), fix150.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 36685, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Heredia, M., de Decker, M., Villalta, V., & Vargas, M. (2017). Stochastic model on the mobility of petroleum in the soils of the Ecuadorian Amazon. In MOL2NET 2017, International Conference on Multidisciplinary Sciences, 3rd edition. Multidisciplinary Digital Publishing Institute [ HTML ]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Stochastic model \n\nPetroleum \n\nSoil \n\nEcology \n\nComputer Science\n\nPhysics \n\nChemistry \n\nBiology \n\nArchaeology \n\nHistory" + }, + { + "id": 36686, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Herzog C., Pierson JM., Lef\u00e8vre L. (2017). Modelling Technology Transfer in Green IT with Multi-agent System. In: Benlamri R., Sparer M. (eds) Leadership, Innovation and Entrepreneurship as Driving Forces of the Global Economy. Springer Proceedings in Business and Economics. Springer, Cham. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36687, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Hickmott, D., Prieto-Rodriguez, E., & Holmes, K. (2017). A Scoping Review of Studies on Computational Thinking in K\u201312 Mathematics Classrooms. Digital Experiences in Mathematics Education, 1-22.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36688, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Hoekstra, A., Steinbuch, M., & Verbong, G. (2017). Creating agent-based energy transition management models that can uncover profitable pathways to climate change mitigation. Complexity, 2017.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36689, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Huang, W., Krejci, C. C., Dorneich, M. C., & Passe, U. (2017, October). Weatherization adoption in a multilayer social network: An agent-based approach. In Proceedings of the 2017 International Conference of The Computational Social Science Society of the Americas (p. 19). ACM.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36690, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Hussain, I., Khan, M. A., Baqueri, S. F. A., Shah, S. A. R., Bashir, M. K., Khan, M. M., & Khan, I. A. (2017). An Organizational-Based Model and Agent-Based Simulation for Co-Traveling at an Aggregate Level. Applied Sciences, 7(12), 1221.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36691, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Imkeller, M., Sonnleitner, M., Gassner, J., Nies, Y., Bauer, L., Baumann, S., et al. Participatory Simulation for Games with a Purpose\u2013A Case Study. GI_Forum 2017, 1, 397-404.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36692, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Ivanova, Y. (2017). Modelling the impact of cyber attacks on the traffic control centre of an urban automobile transport system by means of enhanced cybersecurity. In MATEC Web of Conferences (Vol. 133, p. 07001). EDP Sciences.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Cyber Security, Computer Science, Ecology, Economics, Archaeology, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36693, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Janssen, M. A. (2017). The practice of archiving model code of agent-based models. Journal of Artificial Societies and Social Simulation, 20(1). doi.org/10.18564/jasss.3317", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36694, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Jimenez-Romero, C., & Johnson, J. (2017). SpikingLab: modelling agents controlled by Spiking Neural Networks in Netlogo. Neural Computing and Applications, 28(1), 755-764.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Neural Networks" + }, + { + "id": 36695, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Johnson, N. F., Manrique, P., Zheng, M., Cao, Z., Botero, J., Huang, S., ... & Restrepo, E. M. (2017). Population polarization dynamics and next-generation social media algorithms. arXiv preprint arXiv:1712.06009.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36696, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Kahn, K. (2017). A half-century perspective on Computational Thinking. Tecnologias, Sociedade e Conhecimento, 4(1), 23-42.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computational Thinking" + }, + { + "id": 36697, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Khalil, K. M., Abdel-Aziz, M., Nazmy, T. T., & Salem, A. B. M. Multi-Agent Model for Job Scheduling in Cloud Computing.International Journal of Computers 11, p. 11-17.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36698, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Khasawneh, M. T., Shearer, N., Rabadi, G., & Bowling, S. (2017).The information age combat model: A vision for a discrete event simulation approach. International Journal of Simulation and Process Modelling, 12(5), 429. doi:10.1504/ijspm.2017.087604", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Simulation, Modeling, Computer Science, Economics" + }, + { + "id": 36699, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Kittany, J. (2017). Perception of multi-varied sound patterns of sonified representations of complex systems by people who are blind. Journal of Alternative Medicine Research, 9(2), 201.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Perception" + }, + { + "id": 36700, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Kowalska-Pyzalska, A. (2017, June). Willingess to pay for green energy: An agent-based model in NetLogo platform. In 2017 14th International Conference on the European Energy Market (EEM) (pp. 1-6). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36701, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Krobath, I., R\u00f6mer, H., & Hartbauer, M. (2017). Plasticity of signaling and mate choice in a trilling species of the Mecopoda complex (Orthoptera: Tettigoniidae). Behavioral ecology and sociobiology, 71(11), 164.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 36702, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Lamarque, R. (2017). From variation to the emergence of linguistic regularities. Current Trends in Linguistics, Hamburg, Germany. [ HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Linguistics" + }, + { + "id": 36703, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Langbeheim, E., & Levy, S. T. \"You Evaporated?\" vs. \"It Escaped\": A Comparison of Students' Reasoning about Vaporization when Using Participatory and Non-Participatory Simulations. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36704, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Lapates, J. M., & Espina, M. (2017).Social Network Behaviours to Explain the Spread of Online Game. e-Proceedings of the 5th Global Summit on Education 2017. [ PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36705, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Lawson, T., Rogerson, R., & Barnacle, M. (2017). A comparison between the cost effectiveness of CCTV and improved street lighting as a means of crime reduction. Computers, Environment and Urban Systems. [ PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36706, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Le Page, C., Abrami, G., Becu, N., Bommel, P., Bonte, B., Bousquet, F., & Taillandier, P. (2017). Lessons from implementing in parallel with 3 platforms the same didactic agent-based model. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36707, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Li, H. B., Miura, R., & Kojima, F. (2017). A study on Quick Device Discovery for Fully Distributed D2D Networks. IEICE Transactions on Communications, 2017NRP0010. [ HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36708, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Li, J., & He, J. (2017).Evolutionary Game and Simulation on the Internet of Things in Supply Chain. In Proceedings of the Fourth International Forum on Decision Sciences (pp. 271-279). Springer, Singapore. [ HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Evolutionary Game and Simulation" + }, + { + "id": 36709, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Likotiko, E., Nyambo, D., Mwangoka, J.(2017)\"Multi-Agent based IOT Smat Waste Monitoring and Collection Architecture. International Journal of Computer Science, Engineering and Information Technology 7(5). [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36710, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Litterio, A. M., Nantes, E. A., Larrosa, J. M., & G\u00f3mez, L. J. (2017). Marketing and social networks: a criterion for detecting opinion leaders. European Journal of Management and Business Economics, 26(3), 347-366. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Marketing, Social networks" + }, + { + "id": 36711, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Lippert, K. (2017). Towards the Evolution of Information in Digital Ecosystems. University of South Alabama, ProQuest Dissertations Publishing. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36712, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Liu, D., Zheng, X., Zhang, C., & Wang, H. (2017). A new temporal\u2013spatial dynamics method of simulating land-use change. Ecological Modelling, 350, 1-10. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36713, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Liu, H., Ludu, A., Klein, J., Spector, M., & Ikle, M. (2017) Innovative Model, Tools, and Learning Environments to Promote Active Learning for Undergraduates in Computational Science & Engineering. Journal of Computational Science Education, 8(3). [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Chemistry, Economics, Education" + }, + { + "id": 36714, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Liu, X. (2017). Evolution and simulation analysis of co-opetition behavior of E-business internet platform based on evolutionary game theory. Cluster Computing, 1-10. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Evolutionary game theory, Computer Science, Biology" + }, + { + "id": 36715, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Liu, Z., Rexachs, D., Epelde, F., & Luque, E. (2017).A simulation and optimization based method for calibrating agent-based emergency department models under data scarcity. Computers & Industrial Engineering, 103, 300-309. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 36716, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Lopez-Cruz, O., & Garnica, N. J. (2017, October). Engineering Organizational Absorptive Capacity for Effective Knowledge Transfer. In International Conference on Software Process Improvement (pp. 186-197). Springer, Cham. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Engineering, Organizational Absorptive Capacity, Knowledge Transfer" + }, + { + "id": 36717, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Lotzmann, U. & Neumann, M. (2017). Simulation for interpretation: A methodology for growing virtual cultures. Journal of Artificial Societies and Social Simulation, 20(3). doi.org/10.18564/jasss.3451", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation" + }, + { + "id": 36718, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Ma, S., Jiang, Z., & Liu, W. (2017).Multi-variation propagation prediction based on multi-agent system for complex mechanical product design. Concurrent Engineering: Research and Applications, 1-15. [ PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Archaeology, Miscellaneous" + }, + { + "id": 36719, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Malanson, G. P., Resler, L. M., & Tomback, D. F. (2017).Ecotone response to climatic variability depends on stress gradient interactions. Climate Change Responses, 4(1), 1. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Climate Change, Ecology" + }, + { + "id": 36720, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Malik, A., & Abdalla, R. (2017).Agent-based modelling for urban sprawl in the region of Waterloo, Ontario, Canada. Modeling Earth Systems and Environment, 3(1), 7. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36721, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Markauskaite, L., Kelly, N., & Jacobson, M. J. (2017). Model-based knowing: How do students ground their understanding about climate systems in agent-based computer models? Research in Science Education, 1-25.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36722, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Martin, P., Newton, A. C., Cantarello, E., & Evans, P. M. (2017).Analysis of ecological thresholds in a temperate forest undergoing dieback. PloS one, 12(12), e0189578.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology" + }, + { + "id": 36723, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Mantese, G. C., & Amaral, D. C. (2017).Comparison of industrial symbiosis indicators through agent-based modeling. Journal of Cleaner Production, 140, 1652-1671. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36724, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "McConnell, B. J., Smout, S. C., & Wu, M. (2017). Modelling harbour seal movements. Scottish Marine and Freshwater Science (8), 20. PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36725, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "McEntire, K. (2017) Getting off the ground: climbing salamanders and Individual-Based Models.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36726, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Mills, D. A. (2017). Agent Based Modeling: Fine-Scale Spatio-Temporal Analysis of Pertussis. ISPRS Annals of the Photogrammetry, Remote Sensing and Spatial Information Sciences, 4, 37.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Miscellaneous" + }, + { + "id": 36727, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Minjing, P., Xinglin, L., Ximing, L., Mingliang, Z., Xianyong, Z., Xiangming, D., & Mingfen, W. Recognizing intentions of E-commerce consumers based on ant colony optimization simulation. Journal of Intelligent & Fuzzy Systems, (Preprint), 1-11. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36728, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Mittal, A., Huang, W., & Krejci, C. C. (2017, October). Consumer-adoption modeling of distributed solar using an agent-based approach. In Proceedings of the 2017 International Conference of The Computational Social Science Society of the Americas (p. 22). ACM.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Ecology" + }, + { + "id": 36729, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Mittal, A. & Krejci, C. (2017). Integrating Consumer Preferences in Renewable Energy Expansion Planning Using Agent-based Modeling.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36730, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Moreira, D., Santos, F., Barbieri, M., Nunes, I., & Bazzan, A. L. (2017).ABStractme: Modularized Environment Modeling in Agent-based Simulations. In Proceedings of the 16th Conference on Autonomous Agents and MultiAgent Systems (pp. 1802-1804). Sao Paul, Brazil. [ PDF] ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36731, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Munjal, P., Kumar, S., Kumar, L., & Banati, A. (2017). Opinion Dynamics Through Natural Phenomenon of Grain Growth and Population Migration. In Hybrid Intelligence for Social Networks (pp. 161-175). Springer, Cham.[ PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36732, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Muqaddas, A., & Niazi, M. A. (2017). Modeling the Multiple Sclerosis Brain Disease Using Agents: What Works and What Doesn't?. arXiv preprint arXiv:1712.00190.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, arXiv" + }, + { + "id": 36733, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Muscalagiu, C.G., Muscalagiu, I., Muscalagiu,D.M. (2017).The curving calculation of a mechanical device attached to a multi-storey car park. IOP Conf. Series: Materials Science and Enginneering (163). [ HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Miscellaneous" + }, + { + "id": 36734, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Nabinejad, Shima, Schuttrumpf, HolgerAn Agent Based Model for Land Use Policies In Coastal Areas[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 36735, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Nam Bui, K. H. & Jung, J. J. (2017). Cooperative game-theoretic approach to traffic flow optimization for multiple intersections. Computers and Electrical Engineering. https://doi.org/10.1016/j.compeleceng. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36736, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Naqvi, A. (2017). Deep impact: Geo-simulations as a policy toolkit for natural disasters. World Development, 99, 395-418.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36737, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Nguyen Dang, An.(2017) Migrating Behavior Search\u2019s User Interface from Swing to JavaFX. Poster presented at Celebration of Learning. Augustana College, Illinois.[ PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36738, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Obaidat, M. S., \u00d6ren, T., & Merkuryev, Y. (Eds.). (2017). Simulation and Modeling Methodologies, Technologies and Applications: International Conference, SIMULTECH 2016 Lisbon, Portugal, July 29-31, 2016, Revised Selected Papers (Vol. 676). Springer.[ PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation and Modeling" + }, + { + "id": 36739, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Oldham, M. (2017) Introducing a multi-asset stock market to test the power of investor networks. Journal of Artificial Societies and Social Simulation, 20(4). doi.org/10.18564/jasss.3497", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36740, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Ozaeta, L., & Gra\u00f1a, M. (2017). Finding Communities in Recommendation Systems by Multi-agent Spatial Dynamics. In International Conference on Hybrid Artificial Intelligence Systems (pp. 577-587). Springer, Cham.[ HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36741, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Park, M., Liu, X., & Waight, N. (2017).Development of the Connected Chemistry as Formative Assessment Pedagogy for High School Chemistry Teaching. Journal of Chemical Education. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Chemistry, Education" + }, + { + "id": 36742, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Patrzyk, P. M. & Tak\u00e1\u010d, M. (2017). Cooperation via intimidation: An emergent system of mutual threats can maintain social order. Journal of Artificial Societies and Social Simulation, 20(4). doi.org/10.18564/jasss.3336", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Cooperation, Intimidation, Social Order" + }, + { + "id": 36743, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Perry, G. L., & O\u2019Sullivan, D. (2017). Identifying Narrative Descriptions in Agent-Based Models Representing Past Human-Environment Interactions. Journal of Archaeological Method and Theory, 1-23.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36744, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Petit, F. M. (2017). Scientific Modelling and Emergence (Bachelor's thesis).[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36745, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Plewe, D. A., & Lee, H. (2017).Simulating the Outcomes of Contracts: A Visual Interface Supporting Start-Up Financing. In Advances in Human Factors, Business Management, Training and Education (pp. 823-831). Springer International Publishing. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Computer Science, Miscellaneous" + }, + { + "id": 36746, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Polhill, G., & Salt, D. (2017). The Importance of Ontological Structure: Why Validation by \u2018Fit-to-Data\u2019Is Insufficient. In Simulating Social Complexity (pp. 141-172). Springer, Cham.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, Social Science, Education" + }, + { + "id": 36747, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Primiero, G., Raimondi, F., Bottone, M., & Tagliabue, J. (2017).Trust and distrust in contradictory information transmission. Applied Network Science, 2(1). [ HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36748, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Proch\u00e1zka J., \u0160tekerov\u00e1 K. (2017) OpenCL for Large-Scale Agent-Based Simulations. In: Nguyen N., Papadopoulos G., J\u0119drzejowicz P., Trawi\u0144ski B., Vossen G. (eds) Computational Collective Intelligence. ICCCI 2017. Lecture Notes in Computer Science, vol 10448. Springer, Cham[ HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computation, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36749, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Puga-Gonzalez, I. & Sueur, C. (2017). Friendships and social networks in an individual-based model of primate social behavior. Journal of Artificial Societies and Social Simulation, 20(3). doi.org/10.18564/jasss.3450", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Friendships, social networks" + }, + { + "id": 36750, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Puig Camps, B. (2017). Analysis and enhancement of an individual based model strategy to study tuberculosis at a city level. (Bachelor's thesis, Universitat Polit\u00e8cnica de Catalunya).[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36751, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Pumain, D., & Reuillon, R. (2017). An Innovative and Open Toolbox. In Urban Dynamics and Simulation Models. Springer International Publishing.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36752, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Putra, H. C., Andrews, C. J., & Senick, J. A. (2017). An agent-based model of building occupant behavior during load shedding. In Building Simulation (pp. 1-15). Tsinghua University Press.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36753, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Qiu, R., Xu, W., Zhang, J., & Staenz, K. (2017). Modelling and Simulating Urban Residential Land Development in Jiading New City, Shanghai. Applied Spatial Analysis and Policy, 1-25.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36754, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Qi, Y., Wang, X., & Chen, C. (2017, December). Research on Arrival Integration Method for Point Merge System in Tactical Operation. In International Conference on Combinatorial Optimization and Applications (pp. 417-425). Springer, Cham.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36755, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Rani, G. A., Krishna, V. R., & Murthy, G. V. (2017). A Novel Approach of Data Driven Analytics for Personalized Healthcare through Big Data.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36756, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Railsback, S., Ayll\u00f3n, D., Berger, U., Grimm, V., Lytinen, S., Sheppard, C., & Thiele, J. (2017). Improving Execution Speed of Models Implemented in NetLogo. Journal of Artificial Societies and Social Simulation, 20(1), 1-3. [ HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36757, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Ram\u00edrez, S. Q., Casta\u00f1eda, W. L. R., & Vel\u00e1squez, J. R. (2017). Representation of unlearning in the innovation systems: A proposal from agent-based modeling. Estudios gerenciales, 33(145), 366-376.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36758, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Rangoni, R. & Jager, W. (2017). Social dynamics of littering and adaptive cleaning strategies explored using agent-based modelling. Journal of Artificial Societies and Social Simulation, 20(2). doi.org/10.18564/jasss.3269", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36759, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Raviraj, P. (2017). IoT Based Intelligent Traffic Information System with the integration of SCOOT Control and Secured Automotive Communication System: A brief Analysis.International Journal of Computer and Mathematical Sciences 6(9), p. 326-332.[ PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36760, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Riou, J., Bo\u00eblle, P. Y., Christie, J. D., & Thabut, G. (2017). High emergency organ allocation rule in lung transplantation: a simulation study. ERJ open research, 3(4), 00020-2017.[ PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Medicine" + }, + { + "id": 36761, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Robinson, Luke D. (2017) Unsupervised Machine Learning in Agent-Based Modeling. Poster presented at Celebration of Learning. Augustana College, Illinois.[ PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36762, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Rovbo, M. A., & Ovsyannikova, E. E. (2017). Simulating robot groups with elements of a social structure using KVORUM. Procedia computer science, 119, 147-156.[ PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36763, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Ryder, E. F., Boyd, J. R., La, S., Sullender, M. E., Marsden, T. B., Jennings, R., Reider, D., & White, B. T. (2017). Teaching students to build biological simulations using agent-based modeling. AAAS Annual Meeting, Boston, MA, United States.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Chemistry" + }, + { + "id": 36764, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Saft, D., & Nissen, V. (2017). A Toolbox to Analyze Emergence in Multiagent Simulations. In Multi-agent Systems. InTech. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36765, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Samson, B. P. V., Marcaida, C. N. P., Gervasio, E. A. B., Militar, R. D., & Ibanez, J. (2017). Analyzing Congestion Dynamics in Mass Rapid Transit using Agent-Based Modeling. PCSC\u201917, Cebu City, Philippines.[ PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies" + }, + { + "id": 36766, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Scalco, K. C., Talanquer, V., Kiill, K. B., & Cordeiro, M. R. (2017). Making Sense of Phenomena from Sequential Images versus Illustrated Text. Journal of Chemical Education, 95(3), 347-354.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36767, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Schuchard, K., Sicking, U., & Donaldson, S. (2017). Modeling Nitrate Uptake in Freshwater Phytoplankton. Proceedings of 2017 NCUR. Chicago.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36768, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Schulze, J., M\u00fcller, B., Groeneveld, J., & Grimm, V. (2017). Agent-based modelling of social-ecological systems: Achievements, challenges, and a way forward. Journal of Artificial Societies and Social Simulation, 20(2). doi.org/10.18564/jasss.3423", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Social Science, Computer Science, Economics" + }, + { + "id": 36769, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Shevchuk, G. K., Zvereva, O. M., & Medvedev, M. A. (2017, November). Imbalance detection in a manufacturing system: An agent-based model usage. In AIP Conference Proceedings (Vol. 1906, No. 1, p. 070013). AIP Publishing.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling" + }, + { + "id": 36770, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Shim, J., & Bliemel, M. (2017). Ignition of new product diffusion in entrepreneurship: An agent-based approach. Entrepreneurship Research Journal.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36771, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Scotti, M., Hartvig, M., Winemiller, K. O., Li, Y., Jauker, F., Jord\u00e1n, F., & Dormann, C. F. (2017). 15 Trait-Based and Process-Oriented Modeling in Ecological Network Dynamics. Adaptive Food Webs: Stability and Transitions of Real and Model Ecosystems, 228.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Modeling" + }, + { + "id": 36772, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Seri, R., & Secchi, D. (2017). How Many Times Should One Run a Computational Simulation? In Simulating Social Complexity (pp. 229-251). Springer, Cham.[ PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Social Science, Education, Epidemiology" + }, + { + "id": 36773, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Singleton, A. D., Spielman, S., & Folch, D. (2017). Urban analytics. Sage.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36774, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "SJOBERG, C., KARDUNI, A., BEORKREM, C., & ELLINGER, J. Animal: An Agent-Based Model of Circulation logic for Dynamo.[ PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36775, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Sobkowicz, P. (2017). Utility, impact, fashion and lobbying: An agent-based model of the funding and epistemic landscape of research. Journal of Artificial Societies and Social Simulation, 20(2). doi.org/10.18564/jasss.3399", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Modeling" + }, + { + "id": 36776, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Stefanelli, A. & Seidl, R. (2017). Opinion communication on contested topics: How empirics and arguments can improve social simulation. Journal of Artificial Societies and Social Simulation, 20(4). doi.org/10.18564/jasss.3492", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Opinion Communication, Social Simulation" + }, + { + "id": 36777, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "St\u00f6ckelhuber, K.W., Wie\u00dfner, S., Das, A., & Heinrich, G. (2017).Filler flocculation in polymers - a simplified model derived from thermodynamics and game theory. Soft Matters, 12(20). [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Thermodynamics, Game Theory, Polymers" + }, + { + "id": 36778, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Suesc\u00fan, C. G. P., Arag\u00f3n, C. J. E., G\u00f3mez, M. A. J., & Moreno, R. J. (2017, September). Obstacle Evasion Algorithm for Clustering Tasks with Mobile Robot. In Workshop on Engineering Applications (pp. 84-95). Springer, Cham.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36779, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Sun, X., Zhao, X., & Robaldo, L. (2017). Ali Baba and the thief, convention emergence in games. Journal of Artificial Societies and Social Simulation, 20(3). doi.org/10.18564/jasss.3421", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36780, + "sort": null, + "year": 2017, + "is_ccl": true, + "reference": "Swanson, H., Anton, G., Bain, C., Horn, M., Wilensky, U.(2017).Computational Thinking in the Science Classroom. Proceedings of the 1st International Conference on Computational Thinking Education.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computational Thinking" + }, + { + "id": 36781, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Taherian, M., & Mousavi, S. M. (2017).Modeling and simulation of forward osmosis process using agent-based model system. Computers & Chemical Engineering, 100, 104-118. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Modeling, Simulation, Physics, Chemistry" + }, + { + "id": 36782, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Thomas, D., Lin, S. (2017).Inquiry-Based Science and Mathematics Using Dynamic Modeling. SCIREA Journal of Mathematics, 2(2). [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Science" + }, + { + "id": 36783, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Sanchez-Cartas, J. M., & Leon, G. (2017). A Game-Theory-Based Price-Optimization Algorithm for the Simulation of Markets Using Agent-Based Modelling. World Academy of Science, Engineering and Technology, International Journal of Economics and Management Engineering, 4(6).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36784, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Troitzsch, K. G. (2017). Axiomatic Theory and Simulation: A Philosophy of Science Perspective on Schelling's Segregation Model. Journal of Artificial Societies and Social Simulation, 20(1). [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Philosophy, Sociology" + }, + { + "id": 36785, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Tubadji, A., Angelis, V., Nijkamp, P. (2017).Micro-Cultural Preferences and Macro-Percolaton of New Ideas: Netlogo Simulation. Journal of Knowledge Economy, 1-18. [ HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36786, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "van der Veen, R. A. C., Kisjes, K. H., & Nikolic, I. (2017). Exploring policy impacts for servicising in product-based markets: A generic agent-based model. [PDF] Journal of Cleaner Production.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36787, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "van der Wal, C. N., Formolo, D., Robinson, M. A., Minkov, M., & Bosse, T. (2017). Simulating crowd evacuation with socio-cultural, cognitive, and emotional elements. In Transactions on Computational Collective Intelligence XXVII (pp. 139-177). Springer, Cham.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36788, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Varughese, J. C., Thenius, R., Schmickl, T., & Wotawa, F. (2017). Quantification and analysis of the resilience of two swarm intelligent algorithms. C. Benzmuller, C. Lisetti, M. Theobald (eds.) GCAI, 148-161.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36789, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Varughese, J. C., Thenius, R., Wotawa, F., & Schmickl, T. (2017). swarmfstaxis: Borrowing a swarm communication mechanism from fireflies and slime mold. In Proceedings of the Twenty First Annual Meeting on Agent Based Modeling and Simulation. Springer.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36790, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Vasiljevska, J., Douw, J., Mengolini, A., & Nikolic, I. (2017). An agent-based model of electricity consumer: Smart metering policy implications in Europe. Journal of Artificial Societies and Social Simulation, 20(1). doi.org/10.18564/jasss.3150", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36791, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Vila Guilera, J. (2017). Analysis and individual-based modelling of the tuberculosis epidemiology in Barcelona. The role of age, gender and origin (Bachelor's thesis, Universitat Polit\u00e8cnica de Catalunya).[PDF] ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36792, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Velazquez, J. J., Su, E., Cahan, P., & Ebrahimkhani, M. R. (2017). Programming Morphogenesis through Systems and Synthetic Biology. Trends in biotechnology.[PDF] ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Systems Biology, Synthetic Biology" + }, + { + "id": 36793, + "sort": null, + "year": 2017, + "is_ccl": true, + "reference": "Vermeer, W., Head, B., & Wilensky, U. (2017). \u201cThe Effects of Local Network Structure on Disease Spread in Coupled Networks.\u201d In Complex Networks & Their Applications V, 487\u201398. Studies in Computational Intelligence. Springer, Cham. https://doi.org/10.1007/978-3-319-50901-3_39.\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Network Science, Computer Science, Disease Spread, Complex Networks" + }, + { + "id": 36794, + "sort": null, + "year": 2017, + "is_ccl": true, + "reference": "Wagh, A., Cook\u2010Whitt, K., & Wilensky, U. (2017). Bridging inquiry\u2010based science and constructionism: Exploring the alignment between students tinkering with code of computational models and goals of inquiry. Journal of Research in Science Teaching. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Chemistry" + }, + { + "id": 36795, + "sort": null, + "year": 2017, + "is_ccl": true, + "reference": "Wagh, A., & Wilensky, U. (2017). EvoBuild: A Quickstart Toolkit for Programming Agent-Based Models of Evolutionary Processes. Journal of Science Education and Technology, 1-16.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36796, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Wallentin, G., & Neuwirth, C. (2017).Dynamic hybrid modelling: Switching between AB and SD designs of a predator-prey model. Ecological Modelling, 345, 165-175. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Modeling" + }, + { + "id": 36797, + "sort": null, + "year": 2017, + "is_ccl": true, + "reference": "Weintrop, D., & Wilensky, U. (2017). Comparing block-based and text-based programming in high school computer science classrooms. ACM Transactions on Computing Education (TOCE), 18(1), 3.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Programming, Computer Science, Education" + }, + { + "id": 36798, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Weiss, M. B., Krishnamurthy, P., & Gomez, M. M. (2017, March). How can polycentric governance of spectrum work? In Dynamic Spectrum Access Networks (DySPAN), 2017 IEEE International Symposium on (pp. 1-10). IEEE.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36799, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Winkler, R. P., & Metu, S. (2017). An Extensible NetLogo Model for Visualizing Message Routing Protocols (No. ARL-SR-0380). US Army Research Laboratory Aberdeen Proving Ground United States.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36800, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Yahyaoui, F., Tkiouat, M. 2017. A multi-level agent-based model of reinsurance. Journal of Applied Economic Sciences, Volume XII, Summer 3(49): 746\u2013 752.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36801, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Yasar, O., Maliekal, J., Veronesi, P., & Little, L. (2017). The essence of scientific and engineering thinking and tools to promote it. In Proceedings of the American Society of Engineering Education Annual Conference.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Engineering Education" + }, + { + "id": 36802, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Ye, P., & Wang, F. Y. (2017). Hybrid calibration of agent-based travel model using traffic counts and AVI data. In Intelligent Transportation Systems (ITSC), 2017 IEEE 20th International Conference on (pp. 457-462). IEEE.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Traffic Counts, AVI data, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36803, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Yeager, M. E. (2017). Structural Complexity, Seascape Patchiness, and Body Size Interactively Mediate Seagrass Habitat Value for a Fish Mesopredator (Doctoral dissertation, San Diego State University).[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 36804, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Yu, S., Hong, L., & Tian, W. (2017). An Integrated Spatial Analysis Computer Environment for Building Energy Efficiency at City Scale. UIA 2017 Seoul World Architects Congress.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36805, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Yu, B., Ren, S., Wu, E., Zhou, Y., & Wang, Y. (2017). Optimization of urban bus operation frequency under common route condition with rail transit. Frontiers of Engineering Management, 4(4), 451-462.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Optimization, Engineering Management" + }, + { + "id": 36806, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Zamzami, N., & Schiffauerova, A. (2017).The impact of individual collaborative activities on knowledge creation and transmission. Scientometrics, 111(3), 1385-1413. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36807, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Zandi, M. (2017).Simulation of Ascorbic Acid Release from Alginate-Whey Protein Concentrates Microspheres at the Simulated Gastrointestinal Condition Using Netlogo Platform. Journal of Food Process Engineering, 40. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Netlogo, Food Process Engineering" + }, + { + "id": 36808, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Zschache, J. (2017). The explanations of social conventions by melioration learning. Journal of Artificial Societies and Social Simulation, 20(3). doi.org/10.18564/jasss.3428", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 36809, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Zeng, Y., Li, S., & Deng, L. (2017, October). The measurement, mathematical and logical modeling, and agent-based simulation of carbon intangible assets with embedded strategies. In Knowledge Engineering and Applications (ICKEA), 2017 2nd International Conference on (pp. 76-80). IEEE.[ PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Mathematics, Miscellaneous" + }, + { + "id": 36810, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Zhang, L., & Zeng, Z. (2017).Cascading Failure in the Maximum Entropy Based Dense Weighted Directed Network: An Agent-based Computational Experiment. [ PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36811, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Zhao, H., & Sun, Y. (2017). Communication effect of passengers on information diffusion in metro emergency. Wuhan University Journal of Natural Sciences, 22(6), 503-509.[ PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Communication" + }, + { + "id": 36812, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Zhao, Y., Ortt, R. J., & Katzy, B. R. Agent Based Simulation of Technological Innovation using Hypercycle Model.Center for Technology Innovation and Management, the Netherlands.[ PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 36813, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Zia, K., Din, A., Shahzad, K., & Ferscha, A. (2017).A Cognitive Agent-based Model for Multi-Robot Coverage at a City Scale. Complex Adaptive Systems Modeling, 5(1), 1. [ HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry" + }, + { + "id": 36814, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "Zinterhof, P. (2017). Vectorization of Cellular Automaton-Based Labeling of 3-D Binary Lattices. In Sustained Simulation Performance 2017 (pp. 89-109). Springer, Cham.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Chemistry" + }, + { + "id": 36815, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Abrahamson, D. (Chair), D. Clements (Discussant), & K. Chase (Organizer) (2016). Discovery-based STEM learning 2.0: Are we there yet? Symposium presented at the annual meeting of the American Educational Research Association (Special Interest Group: Learning Sciences), Washington, DC, April 8 \u2013 12.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, STEM learning, Education" + }, + { + "id": 36816, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Amarasinghe, U. G. L. S., & Rajapakse, C. (2016). Urban traffic simulation using agent-based modelling: A study in the Sri Lankan context. In Proceedings of the International Research Symposium on Pure and Applied Sciences. Sri Lanka. [ PDF ]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36817, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Ameerbakhsh, O., Maharaj, S., Hussain, A., Paine, T., & Taiksi, S. (2016, September). An exploratory case study of interactive simulation for teaching Ecology. In 2016 15th International Conference on Information Technology Based Higher Education and Training (ITHET) (pp. 1-7). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Ecology" + }, + { + "id": 36818, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Araujo Granda, P., Gras, A., Ginovart, M. (2016). MbT-Tool: An open-access tool based on Thermodynamic Electron Equivalents Model to obtain microbial-metabolic reactions to be used in biotechnological process. Computational and Structural Biotechnology Journal, 14: 325-332. [ HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Thermodynamic Electron Equivalents Model, Biotechnology" + }, + { + "id": 36819, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Araujo Granda, P., Gras, A., Ginovart, M., Moulton, V. (2016). INDISIM-Paracoccus, an individual-based and thermodynamic model for a denitrifying bacterium.Journal of Theoretical Biology, 403: 45-58. [ HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Thermodynamics" + }, + { + "id": 36820, + "sort": null, + "year": 2016, + "is_ccl": true, + "reference": "Aslan, U., & Wilensky, U. (2016). Old Tricks Revisited: Studying Probabilistic Reasoning through Incorporating Computer Modeling into Piagetian Research. In Jean Piaget Society 46th annual meeting (pp. 9-11).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 36821, + "sort": null, + "year": 2016, + "is_ccl": true, + "reference": "Aslan, U., & Wilensky, U. (2016). Restructuration in Practice: Challenging a Pop-Culture Evolutionary Theory through Agent Based Modeling. Proceedings of the Constructionism 2016 Conference. Bangkok, Thailand.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36822, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Bahle G., Poxrucker A., Kampis G., Lukowicz P. (2016). An Adaptive and Dynamic Simulation Framework for Incremental, Collaborative Classifier Fusion. Communications in Computer and Information Science (CCIS, volume 674). [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Ecology" + }, + { + "id": 36823, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Barroso, C. J. V., & Babanto, R. R. P. (2016). Unwanted Teenage Pregnancies: Sociological Model Based on Agents. Asia Pacific Journal of Social and Behavioral Sciences, 13.[ PDF ]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Sociology, Psychology" + }, + { + "id": 36824, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Barrientos, A. H., & de la Mota, I. F. (2016). Modeling Sustainable Supply Chain Management as a Complex Adaptive System: The Emergence of Cooperation. In Krmac, E. (Ed.) In Sustainable Supply Chain Management. InTech. [ HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36825, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Beriro, D, Cave, M., Wragg, J., Hughes, A. (2016). Agent based modelling : initial assessment for use on soil bioaccessibility. British Geological Survey (pp 29). [ PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 36826, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Bezirgiannis, N., Prasetya, I. S. W. B., & Sakellariou, I. (2016). HLogo: A Parallel Haskell Variant of NetLogo. In proceedings of the 6th International Conference on Simulation and Modeling Methodologies, Technologies and Applications. Lisbon, Portugal. (pp. 119-128). [ PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "HLogo, Simulation and Modeling Methodologies, NetLogo, Haskell" + }, + { + "id": 36827, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Bollinger, L. A., van Blijswijk, M. J., Dijkema, G. P., & Nikolic, I. (2016). An Energy Systems Modelling Tool for the Social Simulation Community. Journal of Artificial Societies and Social Simulation, 19(1). [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36828, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Boumans, I.J.J.M., Hofstede, G.J., Bolhuis, E.J., de Boer, I.J.M., Bokkers, E.A.M. (2016). Agent-based modelling in applied ethology: An exploratory case study of behavioural dynamics in tail biting in pigs. Applied Animal Behaviour Science, Volume 183, (pp 10-18). [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36829, + "sort": null, + "year": 2016, + "is_ccl": true, + "reference": "Brady, C., Weintrop, D., Anton, G., & Wilensky, U. (2016). Constructionist Learning at the Group Level with Programmable Badges. Proceedings of the Constructionism 2016 Conference. Bangkok, Thailand.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Constructionist Learning" + }, + { + "id": 36830, + "sort": null, + "year": 2016, + "is_ccl": true, + "reference": "Brady, C., Orton, K., Weintrop, D., Anton, G., Rodriguez, S. & Wilensky, U. (2016). All Roads Lead to Computing: Making, Participatory Simulations, and Social Computing as pathways to Computer Science. IEEE Transactions on Education, 60(99), 1-8.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 36831, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Brewer, K., & Bareiss, C. (2016). Introduction to Computational Science. In Concise Guide to Computing Foundations (pp. 1-8). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 36832, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Brewer, K., Bareiss, C. (2016). Procedures: Algorithms and Abstraction. Concise Guide to Computing Foundations (pp 45-57).[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computing, Algorithms, Abstraction" + }, + { + "id": 36833, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Brughmans, T. & Poblome, J. (2016). MERCURY: An agent-based model of tableware trade in the Roman east. Journal of Artificial Science and Social Simulation, 19(1). doi.org/10.18564/jasss.2953", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36834, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Calik, S. K., Kugu, E., Birtane, S., & Sahingoz, O. K. (2016). A Multi Agent Solution for UAV Path Planning Problem with NetLogo. International Journal of Applied Engineering Research, 11(15), 8397-8401. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36835, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Canavesio, M.M., Quaglia, C., Mart\u00ednez, E. Agent-based simulation of a project fractal company XXII Congreso Argentino de Ciencias de la Computaci\u00f3n (CACIC 2016). [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 36836, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Carbo, J., Sanchez-Pi, N., & Molina, J. M. (2016). Agent-based simulation with NetLogo to evaluate ambient intelligence scenarios. Journal of Simulation. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, NetLogo, Computer Science" + }, + { + "id": 36837, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Cartel, J. E., & Clutario, W. A. (2016). Socio-Environmental Agent-Based Simulation on the Livability of Two Cities. Journal of Science, Engineering and Technology, 4, 42-48. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Socio-Environmental Agent-Based Simulation" + }, + { + "id": 36838, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Cervantes, D. Flores, D.L., Guti\u00e9rrez, E., Chac\u00f3n, M.A.(2016). Ce,Tb-Doped Y2SiO5 Phosphor Luminescence Emissions Modeling and Simulation. Properties and Characterization of Modern Materials. Volume 33 of the series Advanced Structured Materials (pp 145-156).[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Materials Science, Modeling, Simulation, Characterization" + }, + { + "id": 36839, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Chandrasekaran, S., & Hougen, D. F. (2016). Trade-Offs in Cooperative Goal Seek using Nano-Devices. June, 13, 15.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36840, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Chen, F., Meng, Q., & Li, F. (2016). Simulation of technology sourcing overseas post-merger behaviors in a global game model. Journal of Artificial Science and Social Simulation, 19(4). doi.org/10.18564/jasss.3122", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation, Game Modeling, Digital Modeling" + }, + { + "id": 36841, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Chen, Z. (2016). An Agent-Based Model for Information Diffusion Over Online Social Networks Kent State University.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36842, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Christos, K., Dimitrios, B., & Dimitrios, A. (2016). Agent-based simulation for modeling supply chains: A comparative case study. International Journal of New Technology and Research, 2(10).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36843, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Cegielski, Wendy H., Rogers, Daniel J. Rethinking the role of Agent-Based Modeling in archaeology, Journal of Anthropological Archaeology, Volume 41, 2016, Pages 283-298,ISSN 0278-4165,https://doi.org/10.1016/j.jaa.2016.01.009", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Archaeology, Computer Science" + }, + { + "id": 36844, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Cogliano, J. F., & Jiang, X. (2016). Agent-based computational economics: simulation tools for heterodox research. In F. S. Lee & B. Cronin (Eds.), Handbook of research methods and applications in heterodox economics (pp. 253-271). Edward Elgar Publishing Inc. 10.4337/9781782548461", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Agent-based computational economics, Heterodox research, Simulation tools, Economic modeling" + }, + { + "id": 36845, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Conales, C. P., Janamjam, C. T., & Polinar, J. U. (2016). A Path to Equality on Wealth Distribution: Basis for PhilippinesPolicy Reforms. Asia Pacific Journal of Social and Behavioral Sciences, 13.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Economics, History, Physics, Chemistry, Urban Studies, Social Science" + }, + { + "id": 36846, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Egar, M. M., Arbutante, D. C. C., & Cauilan, J. J. (2016). An Agent-Based Model on the Potential of a Dipterocarp Forest Fire. Asia Pacific Journal of Social and Behavioral Sciences, 13.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology" + }, + { + "id": 36847, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Ergazaki, M., & Ampatzidis, G. (2016). Can the idea of'Balance of Nature'be effectively challenged within a model-based learning environment? Insights from the second cycle of developmental research. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36848, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Espina, M. O., & Lapates, J. M. (2016). Social Network Behaviours to Explain the Spread of Online Game. Asia Pacific Journal of Social and Behavioral Sciences, 13.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Social Science, Miscellaneous" + }, + { + "id": 36849, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Everton, R. R., de Castro, P.A.L., Sichman, J.S. (2016). Enhancing Classification Accuracy Through Feature Selection Methods. XIII Encontro Nacional de Intelig\u02c6encia Artificial e Computacional. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Classification, Artificial Intelligence, Computer Science" + }, + { + "id": 36850, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Farrenkopf, T., Guckert, M., Urquhart, N., & Wells, S. (2016). Ontology based business simulations. Journal of Artificial Science and Social Simulation, 19(4). doi.org/10.18564/jasss.3266", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ontology, Business, Simulation, Social Science" + }, + { + "id": 36851, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Feliciani, C., & Nishinari, K. (2016). An improved Cellular Automata model to simulate the behavior of high density crowd and validation by experimental data. Physica A: Statistical Mechanics and its Applications. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Physics, Miscellaneous" + }, + { + "id": 36852, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Friege, J., Holtz, G., & Chappin, \u00c9. J. L. (2016). Exploring homeowners' insulation activity. Journal of Artificial Science and Social Simulation, 19(1). doi.org/10.18564/jasss.2941", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36853, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Garc\u00eda-Valdecasas, Jos\u00e9 Ignacio (2016). Simulaci\u00f3n Basada en Agentes. Introducci\u00f3n a NetLogo. Cuadernos Metodol\u00f3gicos del Centro de Investigaciones Sociol\u00f3gicas, Madrid, Spain", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36854, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Ge, J. & Polhill, G. (2016). Exploring the combined effect of factors influencing commuting patterns and CO2 emissions in Aberdeen using an agent-based model. Journal of Artificial Science and Social Simulation, 19(3). doi.org/10.18564/jasss.3078", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Geography, Computer Science, Social Science" + }, + { + "id": 36855, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Greco, A., Cannizzaro, F., Pluchino, A. (2016). Seismic collapse prediction of frame structures by means of genetic algorithms. Engineering Structures Volume 143, Pages 152\u2013168. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36856, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Greeven, S., Kraan, O., Chappin, \u00c9. J. L., & Kwakkel, J. H. (2016). The emergence of climate change mitigation action by society: An agent-based scenario discovery study. Journal of Artificial Science and Social Simulation, 19(3). doi.org/10.18564/jasss.3134", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36857, + "sort": null, + "year": 2016, + "is_ccl": true, + "reference": "Guo, Y., & Wilensky, U. Small Bugs, Big Ideas: Teaching Complex Systems Principles Through Agent-Based Models of Social Insects. Proceedings of Artificial Life Conference 2016 (p. 664).Chicago.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Agent-Based Models, Social Insects" + }, + { + "id": 36858, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Hamhalter, A., & \u0160varn\u00fd, P. (2016). Simulation of Self-reconfigurable Material Systems. In Applied Mechanics and Materials (Vol. 825, pp. 119-122). Trans Tech Publications Ltd.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation" + }, + { + "id": 36859, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Hasson, S. T., & Hasan, Z. Y. (2016). Simulating Road Modeling Approach\u2019s in Vanet Environment Using Net Logo. Research Journal of Applied Sciences, 11(10), 1130-1136. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36860, + "sort": null, + "year": 2016, + "is_ccl": true, + "reference": "Hjorth, A., Brady, C., Head, B. & Wilensky, U. (2016). Turtles All the Way Down: Presenting LevelSpace, a NetLogo Extension for Reasoning About Complex Connectedness. Constructionism 2016, Bangkok, Thailand.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36861, + "sort": null, + "year": 2016, + "is_ccl": true, + "reference": "Hjorth, A., Weintrop., D., Brady C. & Wilensky., U. (2016). LevelSpace: Constructing Models and Explanations Across Levels. Constructionism 2016, Bangkok, Thailand. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36862, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Hodzic, M., Selman, S., Hadzikadic, M. (2016). Complex Ecological System Modeling. Periodicals of Engineering and Natural Sciences Vol 4, No 1. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology" + }, + { + "id": 36863, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Inovejas, C. J., Mirasol, J. M., Recente, J. M., & Frias, M. (2016). Modeling Civil Unrest in the Philippines. Asia Pacific Journal of Social and Behavioral Sciences, 13.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36864, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "JIANG, L., & Yueliang, S. U. (2016). Analysis of the Influence of the Penalty on the Cooperative Behavior Based on Netlogo Computer Simulation. Management Science and Engineering, 10(3), 1-6. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Management Science and Engineering" + }, + { + "id": 36865, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Jimenez-Romero, C., & Johnson, J. (2016). SpikingLab: modelling agents controlled by Spiking Neural Networks in Netlogo. Neural Computing and Applications, 1-10. [ HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Neural Networks" + }, + { + "id": 36866, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Jing, W., & Ling, C. (2016). Study on the relationship between the team commitment, knowledge sharing and performance. In Logistics, Informatics and Service Sciences (LISS), 2016 International Conference on (pp. 1-4). IEEE. [ pDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Logistics, Informatics, Service Sciences, Physics, Chemistry, Economics" + }, + { + "id": 36867, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Kowalska-Stycze\u0144, A. & Sznajd-Weron, K. (2016). From consumer decision to market share - unanimity of majority? Journal of Artificial Science and Social Simulation, 19(4). doi.org/10.18564/jasss.3156", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Miscellaneous" + }, + { + "id": 36868, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Kponyo, J. J., K. S. Nwizege, K. A. Opare, A. R. Ahmed, H. Hamdoun, L. O. Akazua, S. Alshehri, and H. Frank. (2016). A Distributed Intelligent Traffic System Using Ant Colony Optimization: A NetLogo Modeling Approach. In Systems Informatics, Modelling and Simulation (SIMS), International Conference on (pp. 11-17). IEEE. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 36869, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Krishnan, R. (2016). Biomass residues for power generation: A simulation study of their usage at Liberia\u2019s plantations. Diss. University of Michigan, 2016.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36870, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Kurahashi-Nakamura, T., M\u00e4s, M., & Lorenz, J. (2016). Robust clustering in generalized bounded confidence models. Journal of Artificial Societies and Social Simulation, 19(4). doi.org/10.18564/jasss.3220", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Clustering, Computer Science, Economics, Ecology, Archaeology, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36871, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Lai, Polly & Jacobson, Michael & Markauskaite, Lina. (2016). Agent-Based Models Versus Video-Based Visualizations to Learn Nanoscience Concepts: An Embodied Cognition Perspective. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36872, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Lamy, F., Quinn, B., Dwyer, R., Thomson, N., Moore, D., & Dietze, P. (2016). TreatMethHarm: An agent-based simulation of how people who use methamphetamine access treatment. Journal of Artificial Science and Social Simulation, 19(2). doi.org/10.18564/jasss.3069", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "TreatMethHarm, Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36873, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Levin, J. A., & Ching, C. C. (2016). A multi-mediator framework for understanding teaching and learning in higher education classrooms.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36874, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Ma, Y., Shen, Z., & Nguyen, D. T. (2016). Agent-based simulation to inform planning strategies for welfare facilities for the elderly: Day care center development in a Japanese city. Journal of Artificial Science and Social Simulation, 19(4). doi.org/10.18564/jasss.3090", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Planning, Welfare, Elderly, Japanese city" + }, + { + "id": 36875, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Maroulis, S. (2016). Interpreting school choice treatment effects: Results and implications from computational experiments. Journal of Artificial Science and Social Simulation, 19(1). doi.org/10.18564/jasss.3002", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computational Science, Social Science" + }, + { + "id": 36876, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Mart\u00ednez, D. L., & Halme, A. (2016). MarSim, a Simulation of the MarsuBots Fleet Using NetLogo. In Distributed Autonomous Robotic Systems (pp. 79-87). Springer Japan.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36877, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Mehic, S., Tadano, K., Vicario, E. (2016). Combining Simulation and Mean Field Analysis in Quantitative Evaluation of Crowd Evacuation Scenarios EPEW 2016: Computer Performance Engineering (pp 174-186). [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation, Computer Performance Engineering" + }, + { + "id": 36878, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Monett, D., Navarro-Barrientos, J. E. (2016). Simulating the fractional reserve banking using agent-based modelling with NetLogo Federated Conference on Computer Science and Information Systems (FedCSIS). [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Agent-based modelling, Computer Science, Information Systems, NetLogo, Economics" + }, + { + "id": 36879, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Opiyo, N.N. (2016). Modelling temporal diffusion of PV mircogeneration systems in a rural developing community Energy and Resources Research Institute (University of Leeds). [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36880, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Orly, L., Nuha, C., Vadim, T. (2016). Use of a sonification system for science learning by people who are blind. Journal of Assistive Technologies, Vol. 10 Issue: 4, pp.187-198. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Technology, Assistive Technology, Education" + }, + { + "id": 36881, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Othmane, A.B., Tettamanzi, A., Villata, S. & Nhan, L.T. (2016). A Multi-context BDI Recommender System: From Theory to Simulation Institute of Electrical and Electronics Engineers Conference (13-16 Oct. 2016). Omaha, NE, USA.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36882, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Ozaeta, L., Gra\u00f1a, M. (2016). Agent-Based Spatial Dynamic Modeling of Opinion Propagation Exploring Delaying Conditions to Achieve Homogeneity.International Joint Conference SOCO\u201916-CISIS\u201916-ICEUTE\u201916. ICEUTE 2016, SOCO 2016, CISIS 2016. Advances in Intelligent Systems and Computing, vol 527. Springer, Cham[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Spatial Modeling, Computer Science, Economics, Ecology, Archaeology, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36883, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Pardo, M., Wilfredo, F.C. (2016). Agent-based Modeling and Simulation to Adoption Process of Information Technologies in Health Systems Institute of Electrical and Electronics Engineers Latin American Transactions.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36884, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Pashakalaei, A. G. (2016). Optimal Energy Managment System for a Net Zero Building Using Multi-Agent Systems Approach The University of Texas at El Paso. Ann Arbor.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36885, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Plewe, D.A., Lee, H. (2016). Simulating the Outcomes of Contracts: A Visual Interface Supporting Start-Up Financing Advances in Human Factors, Business Management, Training and Education. Advances in Intelligent Systems and Computing, vol 498.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Computer Science, Miscellaneous" + }, + { + "id": 36886, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Prats Soler, C., Monta\u00f1ola-Sales, C., Gilabert-Navarro, J. F., Valls, J., Casanovas, J. C. G., Vilaplana i Massaguer, C., ... & L\u00f3pez, D. (2016). Individual-based modeling of tuberculosis in a user-friendly interface. Frontiers in Microbiology, 6(1654).[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Microbiology, Modeling, Computer Science, Economics, Archaeology, Epidemiology" + }, + { + "id": 36887, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Qi, H., Zhang, M., Chen, H., & Liu, F. (2016). Simulation of Chinese Coal Mine Safety Supervision System Performance Based on Netlogo Platform. Journal of Computational and Theoretical Nanoscience, 13(8), 5072-5080.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Netlogo" + }, + { + "id": 36888, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Qiuyun, M., Yang, S. (2016). Design and Simulation Analysis of Multi-Agent Online Dissemination Model on the Basis of \"The Spiral of Silence\" Theory Journal of Computer and Information Science, 1913-8989.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36889, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Rajanikanth, K.N., Meenakshi, D., Kumar, S.B., Nitin, K. (2016). Incorporating adaptivity using learning in avionics self adaptive software: A case study. Institute of Electrical and Electronics Engineers Conference (21-24 Sept. 2016).[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Learning, Avionics, Software, Computer Science" + }, + { + "id": 36890, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Razzaq, S., Riaz, F., Mehmood, T., & Ratyal, N. I. (2016, April). Multi-factors based road accident prevention system. In 2016 International Conference on Computing, Electronic and Electrical Engineering (ICE Cube) (pp. 190-195). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36891, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Rouchier, J. & Tanimura, E. (2016). Learning with communication barriers due to overconfidence: What a \"model-to-model analysis\" can add to the understanding of a problem. Journal of Artificial Science and Social Simulation, 19(2). doi.org/10.18564/jasss.3039", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Communication, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36892, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Rubio, M. T., & Tulang, A. B. (2016). Socio-Environmental Learning Model. Asia Pacific Journal of Social and Behavioral Sciences, 13. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Socio-Environmental Learning Model" + }, + { + "id": 36893, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Sanchez-Segura, M.I., Dugarte-Pe\u00f1a, G.L., Medina-Dominguez, F., Ruiz-Robles, A. (2016). A model of biomimetic process assets to simulate their impact on strategic goals. Information Systems Frontiers (pp 1-18).[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36894, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Santos, J.L., Sampaio, R.R. (2016). Informal social networks and knowledge diffusion: a modeling proposal applied to a software development environment. Perspectivas em Ci\u00eancia da Informa\u00e7\u00e3o, 1981-5344.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36895, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Scott, N., Livingston, M., Hart, A., Wilson, J., Moore, D., & Dietze, P. (2016). SimDrink: An Agent-Based NetLogo Model of Young, Heavy Drinkers for Conducting Alcohol Policy Experiments. Journal of Artificial Societies and Social Simulation, 19(1).[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36896, + "sort": null, + "year": 2016, + "is_ccl": true, + "reference": "Sengupta, P., & Wilensky, U. (2016). Understanding Electric Current Using Agent-Based Models: Connecting the Micro-level with Flow Rate. In: Proceedings of the 8th International Conference on Computer Supported Education (CSEDU 2016).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 36897, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Shamsuddin, A Z M, Ahsan, T. and Momen, S. (2016). Trophallaxis and energy optimization in swarms of robots. 19th International Conference on Computer and Information Technology (ICCIT 2016, IEEE). [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36898, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Sheppard, C. J. R., A. Harris, and A. R. Gopal. (2016a). Cost-effective siting of electric vehicle charging infrastructure with agent-based modeling. IEEE Transactions on Transportation Electrification, 2(2), 174-189.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36899, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Sheppard, C. J., Gopal, A. R., Harris, A., & Jacobson, A. (2016b). Cost-effective electric vehicle charging infrastructure siting for Delhi. Environmental Research Letters, 11(6), 64010-64021.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies" + }, + { + "id": 36900, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Song, S. X., Liang, X. Y., Mei, Y. J., Wen, X., Wang, Y. N., & Mao, N. Z. (2016). Modeling and simulating land abandonment behavior of farmer households based on the CBDI. J. Nat. Resour, 31, 1926-1937.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36901, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Song, Y. M., & Kim, S. A. (2016). A Study on the Application of the Complex Systems Theory to Understand Urban Phenomena-Focusing on Citizen's Awareness Change through Information Transmission. Journal of the Architectural Institute of Korea Planning & Design, 32(1), 51-58.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36902, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "\u0160tekerov\u00e1, K., Danielisov\u00e1, A. (2016). Economic Sustainability in Relation to Demographic Decline of Celtic Agglomerations in Central Europe: Multiple-Scenario Approach. Computational Social Sciences (pp 335-357). [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36903, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Suwarno, A., van Noordwijk, M., Weikard, H-P, & Suyamto, D. (2016). Indonesia\u2019s forest conversion moratorium assessed with an agent-based model of Land-Use Change and Ecosystem Services (LUCES). Mitigation and Adaptation Strategies for Global Change. doi:10.1007/s11027-016-9721-0. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36904, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "ten Broeke, G., van Voorn, G., & Ligtenberg, A. (2016). Which sensitivity analysis method should I use for my agent-based model? Journal of Artificial Science and Social Simulation, 19(1). doi.org/10.18564/jasss.2857", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36905, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Thomas, S. A., Lloyd, D. J., & Skeldon, A. C. (2016). Equation-free analysis of agent-based models and systematic parameter determination: A NetLogo Implementation. [ HTML", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36906, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Thuy An Vo, T., van der Waerden, P. J. H. J., & Wets, G. (2016). Micro-simulation of car drivers\u2019 movements at parking lots. Procedia Engineering, 142, 100-107. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36907, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Troitzsch, K. G. (2016). Extortion Rackets: An Event-Oriented Model of Interventions. In Social Dimensions of Organised Crime (pp. 117-131). Springer International Publishing.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Extortion Rackets" + }, + { + "id": 36908, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "\u00dcbler, H. & Hartmann, S. (2016). Simulating trends in artificial influence networks. Journal of Artificial Science and Social Simulation, 19(1). doi.org/10.18564/jasss.2978", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Social Science" + }, + { + "id": 36909, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Vanloo, G., Ng, C., Osborne, K., Wong, K., Ramsey, B., Wang, D., Bao, Z. (2016). Using High Performance Computing to Model Cellular Embryogenesis. Proceedings of the XSEDE16 Conference on Diversity, Big Data, and Science at Scale Article No. 12 [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computing, Conference" + }, + { + "id": 36910, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Vo, T. T. A., van der Waerden, P., & Wets, G. (2016). Micro-simulation of car drivers\u2019 movements at parking lots. Procedia Engineering, 142, 100-107.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry" + }, + { + "id": 36911, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Wagner N., Sahin C., Hanson D., Pena J., Vuksani E., and Tello B. (2016). Quantitative Analysis of the Mission Impact for Host-Level Cyber Defensive Mitigations. to appear in Proceedings of the 2016 ACM Spring Simulation Multi-Conference - Annual Simulation Symposium, April, 2016.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36912, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "WaiShiang, C., YeeWai, S. Nizam, S. (2016). Agent Oriented Requirement Engineering for Lake. Mathematical Modelling: Preliminary Study. Journal of Telecommunication Electronic and Computer Engineering, 8(2), (pp 5-10). [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Mathematics" + }, + { + "id": 36913, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Wang, S., & Hu, K. (2016, July). Towards dynamic epistemic learning of actions in autonomic multi-agent systems. In 2016 IEEE International Conference on Autonomic Computing (ICAC) (pp. 237-238). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, History, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36914, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Wang, Y., Chen, H., Song, S., MEI, Y., Wen, X. (2016). Simulation of households' planting behavior based on a CR-BDI model: Case study of Jiangxingzhuang Village of Mizhi County in Shaanxi Province. Department of Urban and Resource Sciences, Northwest University, Xi'an 710127, China. [ PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Simulation, Urban Studies, Miscellaneous" + }, + { + "id": 36915, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Warnke, T., Reinhardt, O., & Uhrmacher, A.M. (2016). Population-Based CTMCS and Agent-Based Models. In Proceedings of the 2016 Winter Simulation Conference. Washington, D.C. [ PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36916, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "White, D. G., & Levin, J. A. (2016). Navigating the turbulent waters of school reform guided by complexity theory. Complicity: An International Journal of Complexity and Education, 13(1). [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36917, + "sort": null, + "year": 2016, + "is_ccl": true, + "reference": "Weintrop, D., Hjorth, A., & Wilensky, U. (2016). NetLogo Web: Bringing Turtles to the Cloud. Workshop at Constructionism 2016. Bangkok, Thailand.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36918, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Will, T. E. (2016) Flock Leadership: Building Collective Capacity by Managing Group Norms. Presented at the International Leadership Association\u2019s Annual Global Conference, Atlanta, GA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36919, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Will, T. E. (2016). Flock Leadership: Understanding and Influencing Emergent Collective Behavior. The Leadership Quarterly, 27: 261-279.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Flock Leadership" + }, + { + "id": 36920, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Will, T. E. (2016) A Flocking Model of Human Organizing: Leadership Implications. Presented at the Annual Meeting of the Academy of Management, Anaheim, CA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36921, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Wirth, E., Szab\u00f3, Gy., and Czink\u00f3czky, A. (2016). MEASURE OF LANDSCAPE HETEROGENEITY BY AGENT-BASED METHODOLOGY. ISPRS Ann. Photogramm. Remote Sens. Spatial Inf. Sci., III-8, 145-151, doi:10.5194/isprs-annals-III-8-145-2016, 2016. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Agent-based methodology" + }, + { + "id": 36922, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Wurzer, G., Pont, U., Lorenz, W.E., Mahdavi, A. (2016). COUPLING BUILDING MORPHOLOGY OPTIMIZATION AND ENERGY EFFICIENCY \u2013 A PROOF OF CONCEPT. Department of Building Physics and Building Ecology, TU Wien, Wien, Austria [ PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Physics, Chemistry" + }, + { + "id": 36923, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Xiaohong, S. H. A. N., Panpan, J. I. A., & Xiaoyan, L. I. U. (2016). WeChat Information Dissemination Mechanism and Simulation Research Based on Field Theory. Journal of System Simulation, 28(11), 2867.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36924, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Zhang, R., & Yang, C. (2016). The Simulation Research of Potential Loop in Redistribution of Multipoint Two-way Routing Protocol Based on the Butterfly Effect. Proceedings of the 3rd International Conference on Engineering Technology and Application. Thailand. [ PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry" + }, + { + "id": 36925, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "ZHANG, Z. (2016). A Simulation Study on Cooperation Behavior Using NetLogo Software Considering Resource Re-Allocation. Canadian Social Science, 12(4), 20-26. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, NetLogo Software" + }, + { + "id": 36926, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Zhu, C., & Yangzhou, C., Guiping, D. (2016). Controller-Based Management of Connected Vehicles in the Urban Expressway Merging Zone Information Technology and Intelligent Transportation Systems (pp 65-75).[ HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36927, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Abayneh Abebe, Y., Vojinovic, Z., Nikolic, I., Hammond, M., Sanchez, A., & Pelling, M. (2015, April). Holistic flood risk assessment using agent-based modelling: the case of Sint Maarten Island. In\u00a0EGU General Assembly Conference Abstracts\u00a0(p. 11584).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36928, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Agolli, E., & Hakrama, I. (2015). The effective usage of Durres Seaport Container Terminal capacity using an Agent-based modeling approach.\u00a0Information Systems and Technology Innovations: inducting Modern Business Solution.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36929, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Alharbi, H., & Hussain, A. (2015, March). An Agent-Based Approach for Modelling Peer to Peer Networks. In\u00a02015 17th UKSim-AMSS International Conference on Modelling and Simulation (UKSim)\u00a0(pp. 532-537). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36930, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Almagooshi, S. (2015). Simulation modelling in healthcare: Challenges and trends.\u00a0Procedia Manufacturing,\u00a03, 301-307.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation modelling" + }, + { + "id": 36931, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Al-Sakran, H. O. (2015). Intelligent traffic information system based on integration of Internet of Things and Agent technology.\u00a0International Journal of Advanced Computer Science and Applications (IJACSA),\u00a06(2), 37-43.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Intelligence, Traffic, Internet of Things, Agent technology, Computer Science, Applications" + }, + { + "id": 36932, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Almarza D\u00edaz, David.\u00a0(2015).\u00a0Evaluaci\u00f3n del programa de simulaci\u00f3n NetLogo como herramienta motivadora y eficaz para trabajar destrezas cient\u00edficas.\u00a0[Trabajo Fin de M\u00e1ster].", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36933, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Altawee, M. (2015). Book Review: Agent-based computational economics Using NetLogo.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Economics" + }, + { + "id": 36934, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Amblard, F., Daud\u00e9, E., Gaudou, B., Grignard, A., Hutzler, G., Lang, C., ... & Taillandier, P. (2015). Introduction \u00e0 NetLogo. Simulation spatiale \u00e0 base d'agents avec NetLogo, partie 1, 73-112. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Miscellaneous" + }, + { + "id": 36935, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Angus, S. D. & Hassani-Mahmooei, B. (2015). \"Anarchy\" reigns: A quantitative analysis of agent-based modelling publication practices in JASSS, 2001-2012. Journal of Artificial Societies and Social Simulation, 18(4). doi.org/10.18564/jasss.2952", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Agent-based modelling" + }, + { + "id": 36936, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Ayaragarnchanakul, E. (2015).\u00a0An agent-based model of polycentric city formation: application to the Bangkok Metropolitan Region\u00a0(Doctoral dissertation, Faculty of Economics, Thammasat University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36937, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Badham, J. (2015). Review of An Introduction to Agent-Based Modeling: Modeling Natural, Social, and Engineered Complex Systems with NETLogo.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Computer Science, Ecology" + }, + { + "id": 36938, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Balaraman, V., Athle, D., & Singh, M. (2015).Do Daily Routines Affect Convenience Store Footfalls? - Some Experiments with Agent Based Simulation. To appear in SummerSim 15. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36939, + "sort": null, + "year": 2015, + "is_ccl": true, + "reference": "Balestrini-Robinson, S., Horne, G., Ng, K., Huopio, S., & Schubert, J. Team 1: Cyber Defence in Support of NATO.\u00a0Scythe, 2.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Cyber Science" + }, + { + "id": 36940, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Banitz, T., Gras, A., & Ginovart, M. (2015).Individual-based modeling of soil organic matter in NetLogo: Transparent, user-friendly, and open. Environmental Modeling & Software 71, 39-45. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36941, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Banos, A., Lang, C., & Marilleau, N. (2015). Agent-Based Spatial Simulation with NetLogo (Vol. 1). Elsevier. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Spatial Modeling, Computer Science, NetLogo, Simulation" + }, + { + "id": 36942, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Barnett, R. (2015). A conversation with: Rod Barnett.\u00a0Kerb: Journal of Landscape Architecture, (23), 30-33.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 36943, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Basu, S., Sengupta, P., & Biswas, G. (2015).A scaffolding framework to support learning of emergent phenomena using multi-agent based simulation environments. Research in Science Education, 45(2), 293-324.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36944, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Baudry, D., Mustafee, N., Louis, A., Smart, P. A., Godsiff, P., & Mazari, B. (2015). Modelling and simulation of operation and maintenance strategy for offshore wind farms based on multi-agent system. Journal of Intelligent Manufacturing, 1-17. [ PDF] ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36945, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Bennet, N. (2015). NetLogo Tutorial Series: Set Theory Concepts and Applications. licensed under a Creative Commons Atribution NonCommercial-ShareAlike 4.0 International License.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36946, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Bergant, D., Bergant, M. D., RNetLogo, I., & LazyData, T. R. U. E. (2015). Package \u2018nlexperiment\u2019. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 36947, + "sort": null, + "year": 2015, + "is_ccl": true, + "reference": "Berland, M., & Wilensky, U. (2015).Comparing Virtual and Physical Robotics Environments for Teaching Complex Systems and Computational Literacies. Journal of Science Education and Technology. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Robotics, Computer Science, Education" + }, + { + "id": 36948, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Bhatia, A., Sharma, C., & Goyal, R. (2015).\u00a0Development of an agent based model illustrating the usage of deferred acceptance algorithm in the admission process\u00a0(No. e825v1). PeerJ PrePrints.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36949, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Bhatia, A., Singh, A., & Goyal, R. (2015).A Hybrid Autonomic Computing-Based Approach to Distributed Constraint Satisfaction Problems Computers 4, 2-23. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computing, Economics, Computer Science, Physics, Chemistry, Ecology" + }, + { + "id": 36950, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Bianchi, F., & Squazzoni, F. (2015). Agent-based models in sociology. Wiley Interdisciplinary Reviews: Computational Statistics, 7(4), 284\u2013306. https://doi.org/10.1002/wics.1356", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Sociology" + }, + { + "id": 36951, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Blondin, J., Halpern, C., & Malkus, T. (2015). Predator-prey game to maintain stable fish population for Ecotoxicological studies.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 36952, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Blum, C., Lozano, J. A., Davidson, P.P. (2015).An Artificial Bioindicator System for Network Intrusion Detection. Artificial Life 21(2), 93-118. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Network Intrusion Detection" + }, + { + "id": 36953, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Boero, R. (2015). Behavioral Computational Social Science. WileyBlackwell.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Behavioral Computational Social Science" + }, + { + "id": 36954, + "sort": null, + "year": 2015, + "is_ccl": true, + "reference": "Brady, C., Holbert, N., Soylu, F., Novak, M., & Wilensky, U. (2015).Sandboxes for Model-Based Inquiry. Journal of Science Education and Technology, 24(2). 265-286. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Model-Based Inquiry" + }, + { + "id": 36955, + "sort": null, + "year": 2015, + "is_ccl": true, + "reference": "Brady, C., Weintrop, D., Gracey, K., Anton, G., & Wilensky, U. (2015).The CCL-Parallax Programmable Badge: Learning with Low-Cost, Communicative Wearable Computers. In Proceedings of the 16th Annual Conference on Information Technology Education (pp. 139\u2013144). New York, NY, USA: ACM.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Archaeology, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36956, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Buda, A., & Jarynowski, A. (2015). Agent-based modeling, complex networks and system dynamics\u2013practical aproaches. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Complex Networks, System Dynamics" + }, + { + "id": 36957, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Camus, B., Bourjot, C., & Chevrier, V. (2015). Considering a multi-level model as a society of interacting models: Application to a collective motion example. Journal of Artificial Societies and Social Simulation, 18(3). doi.org/10.18564/jasss.2645", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 36958, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Cascalho, J., & Mabunda, P. (2015). Agent-Based Modelling for a Resource Management Problem in a Role-Playing Game. In Progress in Artificial Intelligence (pp. 696-701). Springer International Publishing. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Artificial Intelligence, Computer Science, Economics, Physics, Miscellaneous" + }, + { + "id": 36959, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Challenge, N. M. S., Djidjev, C., Djidjev, H., & Djidjev, S. (2015). Spread of Viruses on a Computer Network.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36960, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Chandra Putra, H., Zhang, H., & Andrews, C. (2015). Modeling real estate market responses to climate change in the coastal zone. Journal of Artificial Societies and Social Simulation, 18(2). doi.org/10.18564/jasss.2577", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Climate Change, Modeling, Simulation, Social Science" + }, + { + "id": 36961, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Chen, S. H., Chie, B. T., & Zhang, T. (2015). Network-based trust games: An agent-based model. Journal of Artificial Societies and Social Simulation, 18(3). doi.org/10.18564/jasss.2767", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Network" + }, + { + "id": 36962, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Chhatwal, J., & He, T. (2015). Economic evaluations with agent-based modelling: an introduction.\u00a0Pharmacoeconomics,\u00a033(5), 423-433.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Computer Science, Miscellaneous" + }, + { + "id": 36963, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Chunying, Y. A. N. G. (2015). Generating Mechanism Model of and Simulation Analysis on the Group Event on Internet.\u00a0Sci-Tech Information Development & Economy,\u00a02015, 20.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Economics" + }, + { + "id": 36964, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Ciutacu, I., & Micu, L. A. (2015). THE FIRM, PART OF THE ECONOMIC SYSTEM: REASONS FOR EXITING A MARKET-AN AGENT-BASED MODELING APPROACH.\u00a0Revista Economica,\u00a067.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics" + }, + { + "id": 36965, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Collins, A. J., Frydenlund, E., Elzie, T., & Robinson, R. M. (2015, April). Agent-based pedestrian evacuation modeling: a one-size fits all approach?. In Proceedings of the Symposium on Agent-Directed Simulation (pp. 9-17). Society for Computer Simulation International. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Agent-directed simulation" + }, + { + "id": 36966, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Collins, A., Petty, M., Vernon-Bido, D., & Sherfey, S. (2015). A call to arms: Standards for agent-based modeling and simulation. Journal of Artificial Societies and Social Simulation, 18(3). doi.org/10.18564/jasss.2838", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Simulation, Computer Science, Economics, Archaeology, Social Science, Education" + }, + { + "id": 36967, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Constantine, M. (2015). A Model of Speciation on a Newly Formed Insular Environment Using a Netlogo Model.\u00a0\ub300\ud55c\uc9c0\ub9ac\ud559\ud68c \ud559\uc220\ub300\ud68c\ub17c\ubb38\uc9d1, 227-227.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 36968, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Corson, N., & Olivier, D. (2015). Dynamical Systems with NetLogo. In\u00a0Agent-Based Spatial Simulation with NetLogo\u00a0(pp. 183-221). Elsevier.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36969, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Cowie, G., Hurd, M., Sevostianov, V., Cundiff, M. E., & Guerin, M. S. (2015). PAVL: Personal Assistance for the Visually Limited. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36970, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Das, U., Dzikowski, J., & Hood, C. S. (2015, September). Evaluating Cognitive Radio Networks an agent based modeling approach. In\u00a02015 IEEE International Symposium on Dynamic Spectrum Access Networks (DySPAN)\u00a0(pp. 305-308). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Cognitive Radio Networks, Agent-Based Modeling, Dynamic Spectrum Access Networks" + }, + { + "id": 36971, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Dickerson, M. (2015). Agent-based modeling and NetLogo in the introductory computer science curriculum: tutorial presentation. Journal of Computing Sciences in Colleges, 30(5), 174-177. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 36972, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "D\u2019Alessandro, S., Johnson, L., Gray, D., & Carter, L. (2015). Consumer satisfaction versus churn in the case of upgrades of 3G to 4G cell networks. Marketing Letters, 26(4), 489-500.HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36973, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "del Sol, M., Hill, M., James, K., Ward, R., & Prescott, P. (2015). Using a Concentrated Heat System to Shock the P53 Protein to Direct Cancer Cells into Apoptosis. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Cancer" + }, + { + "id": 36974, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Dubrow, A. (2015).Back to school with new cyberlearning tools. National Science Foundation (NSF). [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 36975, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Dykstra, P., Jager, W., Elsenbroich, C., Verbrugge, R., & de Lavaletter, G. R. (2015). An agent-based dialogical model with fuzzy attitudes. Journal of Artificial Societies and Social Simulation, 18(3). doi.org/10.18564/jasss.2813", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Dialogue, Social Science, Computer Science, Economics" + }, + { + "id": 36976, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Dzikowski, J., & Hood, C. (2015). Modeling cognitive radio networks in NetLogo. In Proceedings of the Conference on Summer Computer Simulation (pp. 1-11). Society for Computer Simulation International. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Modeling" + }, + { + "id": 36977, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Fachada, N., Lopes, V.V., Martins, R.C., & Rosa, A.C. (2015).Towards a standard model for research in agent-based modeling and simulation. Warburg's lens: A mathematical oncology pre-print discussion forum. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36978, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Faroqi, H., & Mesgari, M. S. (2015). Agent-based crowd simulation considering emotion contagion for emergency evacuation problem.\u00a0The International Archives of Photogrammetry, Remote Sensing and Spatial Information Sciences,\u00a040(1), 193.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Social Science, Education" + }, + { + "id": 36979, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Ferrando, P., & Fortiana, J. 33. FINANCIAL TIME SERIES OBTAINED BY AGENT-BASED SIMULATION. In\u00a0Current Topics on Risk Analysis: ICRA6 and RISK 2015 Conference\u00a0(p. 281).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Financial Time Series" + }, + { + "id": 36980, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Fitzpatrick, B., Martinez, J., Polidan, E., & Angelis, E. (2015). The big impact of small groups on college drinking. Journal of Artificial Societies and Social Simulation, 18(3). doi.org/10.18564/jasss.2760", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 36981, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Flores, D. L., & G\u00f3mez, C. M. (2015). Computational modeling of the MAPK pathway using NetLogo. LATIN AMERICAN JOURNAL OF APPLIED ENGINEERING, 1(1).[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science" + }, + { + "id": 36982, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Fonseca, F., Ramos, R. A. R., & da Silva, A. N. R. (2015). An agent-based model to assess the attractiveness of industrial estates. Journal of Artificial Societies and Social Simulation, 18(4). doi.org/10.18564/jasss.2893", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36983, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Furtado, B. A., Sakowski, P. A. M., & Tovolli, M. H. (2015). Modeling Complex Systems for Public Policies. Institute for Applied Economic Research.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Economics" + }, + { + "id": 36984, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Gammack, D. (2015). Using NetLogo as a tool to encourage scientific thinking across disciplines. Journal of Teaching and Learning with Technology, 4(1), 22-39.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Teaching and Learning" + }, + { + "id": 36985, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Gkiolmas, A., Chalkidis, A., Papaconstantinou, M., Iqbal, Z., & Skordoulis, C. (2015). An alternative use of the NetLogo modeling environment, where the student thinks and acts like an Agent, in order to teach concepts of Ecology. arXiv preprint arXiv:1501.05779.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, History, Social Science, Education, Epidemiology" + }, + { + "id": 36986, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Goel, A. K., & Joyner, D. A. (2015). Impact of a Creativity Support Tool on Student Learning about Scientific Discovery Processes. In Proceedings of the Sixth International Conference on Computational Creativity June (p. 284).[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36987, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Golling, M., Koch, R., Hillmann, P., Eiseler, V., Stiemert, L., & Rekker, A. (2015, November). On the evaluation of military simulations: towards a taxonomy of assessment criteria. In\u00a02015 Military Communications and Information Systems Conference (MilCIS)\u00a0(pp. 1-7). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Military Communications and Information Systems, Assessment Criteria" + }, + { + "id": 36988, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Gong, T., Pei, L., Gao, S., Han, F., Zhao, S., & Cai, Z. (2015, July). Visual netlogo-based simulation of anti-SARS immune system and low-to-high resolution reconstruction of sequence medical ct images anti-sars CT. In\u00a02015 International Workshop on Artificial Immune Systems (AIS)\u00a0(pp. 1-8). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Chemistry" + }, + { + "id": 36989, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Gordo, E., Khalaf, N., Strangeowl, T., Dolino, R., & Bennett, N. (2015). FACTORS AFFECTING SOLAR POWER PRODUCTION EFFICIENCY. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36990, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Greasley, A., & Owen, C. (2015, July). Implementing an Agent-based Model with a Spatial Visual Display in Discrete-event Simulation Software. In\u00a0SIMULTECH\u00a0(pp. 125-129).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Simulation, Visualization" + }, + { + "id": 36991, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Grgurina, N., Barendsen, E., van Veen, K., Suhre, C., & Zwaneveld, B. (2015, November). Exploring Students' Computational Thinking Skills in Modeling and Simulation Projects: a Pilot Study. In Proceedings of the Workshop in Primary and Secondary Computing Education on ZZZ (pp. 65-68). ACM. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36992, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Grow, A., Flache, A., & Wittek, R. (2015). An agent-based model of status construction in task focused groups. Journal of Artificial Societies and Social Simulation, 18(2). doi.org/10.18564/jasss.2740", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36993, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Gu, X., Blackmore, K., Cornforth, D., & Nesbitt, K. (2015). Modelling academics as agents: An implementation of an agent-based strategic publication model. Journal of Artificial Societies and Social Simulation, 18(2). doi.org/10.18564/jasss.2725", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36994, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Han, Z., Zhang, K., Yin, H., & Zhu, Y. (2015, May). An urban traffic simulation system based on multi-agent modeling. In Control and Decision Conference (CCDC), 2015 27th Chinese (pp. 6378-6383). IEEE.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Miscellaneous" + }, + { + "id": 36995, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Haydari, S. & Smead, R. (2015). Does longer copyright protection help or hurt scientific knowledge creation? Journal of Artificial Societies and Social Simulation, 18(2). doi.org/10.18564/jasss.2720", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 36996, + "sort": null, + "year": 2015, + "is_ccl": true, + "reference": "Head, B., Hjorth, A., Brady, C., & Wilensky, U. (2015, December). Evolving agent cognition with netlogo levelspace. In L.Yilmaz, W.K.V. Chan, I. Moon, T.M.K. Roeder, C. Macal, & M.D. Rossetti (Eds.). Proceedings of the 2015 Winter Simulation Conference (pp. 3122-3123). IEEE Press.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36997, + "sort": null, + "year": 2015, + "is_ccl": true, + "reference": "Hjorth, A., Brady, C., Head, B. and Wilensky, U. (2015).LevelSpaceGUI - Scaffolding Novice Modelers\u2019 Inter-Model Explorations. In proceedings for Interaction Design & Children 2015. Boston, MA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Interaction Design, Children" + }, + { + "id": 36998, + "sort": null, + "year": 2015, + "is_ccl": true, + "reference": "Hjorth, A., Brady, C., Head, B., Wilensky, U. (2015).Thinking Within and Between Levels: Exploring Reasoning with Multi-Level Linked Models. In T. Koschmann, P. H\u00e4kkinen, & P. Tchounikine (Eds.), \"Exploring the material conditions of learning: opportunities and challenges for CSCL,\" the Proceedings of the Computer Supported Collaborative Learning (CSCL) Conference Gothenburg, Sweden: ISLS.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 36999, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Hmelo\u2010Silver, C. E., Liu, L., Gray, S., & Jordan, R. (2015). Using representational tools to learn about complex systems: A tale of two classrooms. Journal of Research in Science Teaching, 52(1), 6-35.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37000, + "sort": null, + "year": 2015, + "is_ccl": true, + "reference": "Holbert, N., Brady, C., Soylu, F., Novak, M., & Wilensky, U. (2015).The Model Gallery: Supporting Idea Diffusion in Computational Modeling Activities. Poster presented at the AERA Annual Meeting, Chicago, IL: April, 2015.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Chemistry, Miscellaneous" + }, + { + "id": 37001, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Huang, L., Wang, S., Hsu, C. H., Zhang, J., & Yang, F. (2015). Using reputation measurement to defend mobile social networks against malicious feedback ratings.\u00a0The Journal of Supercomputing,\u00a071(6), 2190-2203.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37002, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Izquierdo, L. R., Olaru, D., Izquierdo, S. S., Purchase, S., & Soutar, G. N. (2015). Fuzzy Logic for Social Simulation Using NetLogo. Journal of Artificial Societies and Social Simulation, 18 (4) 1. [ HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Fuzzy Logic, Social Simulation, NetLogo" + }, + { + "id": 37003, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Jacobson, M. J., Kim, B., Pathak, S., & Zhang, B. (2015). To guide or not to guide: issues in the sequencing of pedagogical structure in computational model-based learning.\u00a0Interactive Learning Environments,\u00a023(6), 715-730.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 37004, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Jeewan, A., & Hussain, R. (2015). Minimal Energy Consumption by WSN Nodes during Communication using LEACH and NetLogo in Intelligent Greenhouse. International Journal of Advanced Research in Computer Science 6.6 [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology" + }, + { + "id": 37005, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Jerry, K., Yujun, K., Kwasi, O., Enzhan, Z., & Parfait, T. (2015). NetLogo implementation of an ant colony optimisation solution to the traffic problem. Intelligent Transport Systems, IET, 9(9), 862-869. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37006, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Jiang, G., Liu, X., & Wang, Y. (2015). An Agent-based Simulation System for Evolution of Interplay between E-Commerce Vendor and Consumers. International Journal of Hybrid Information Technology, 8(4), 81-88. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37007, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Jiang, G., Wang, Y., & Zhang, N. (2015). Evolution of the Interplay Between E-Commerce Vendor and Consumers. In LISS 2014 (pp. 1243-1247). Springer Berlin Heidelberg.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37008, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Jimenez-Romero, C., Sousa-Rodrigues, D., & Johnson, J.H. (2015). A Model for Foraging Ants, Controlled by Spiking Neural Networks and Double Pheromones. Proceedings of the UK Workshop on Computational Intelligence (UKCI 2015) Conference, at Exeter. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Spiking Neural Networks, Computer Science, Ecology, Miscellaneous" + }, + { + "id": 37009, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Jimenez-Romero, C., Sousa-Rodrigues, D., & Johnson, J. H. (2015). Designing behaviour in bio-inspired robots using associative topologies of spiking-neural-networks.\u00a0arXiv preprint arXiv:1509.07035.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics" + }, + { + "id": 37010, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "JIN, Z., WU, Y., & YUE, D. (2015). Simulation for distributed load control based on Netlogo and Matlab.\u00a0Journal of Nanjing University of Posts and Telecommunications (Natural Science Edition), 06.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37011, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Jun, Y. C. (2015). A qualitative case study of computer programming and unfolding creative processes: focusing on NetLogo-based computational thinking.\u00a0The Journal of Korean Association of Computer Education,\u00a018(3), 1-14.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 37012, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Just, W., Callender, H. L., & Lamar, D. M. (2015, October). Exploring transmission of infectious diseases on networks with NetLogo. In\u00a0International Symposium on Biomathematics.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Networks, Infectious diseases, Computer Science, Economics, Archaeology" + }, + { + "id": 37013, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Kahl, C. H. & Hansen, H. (2015). Simulating creativity from a systems perspective: CRESY. Journal of Artificial Societies and Social Simulation, 18(1). doi.org/10.18564/jasss.2640", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Systems Thinking, Simulation" + }, + { + "id": 37014, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Kahn, K. (2015). An Introduction to Agent-Based Modeling: Modeling Natural, Social, and Engineered Complex Systems with NetLogo. Physics today, 68(8), 55.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Physics" + }, + { + "id": 37015, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Kim, J. (2015). An Agent Based Modeling Approach to Exploring Technology Adoption Using MATLAB.\u00a0Center for Complexity Education, 10.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37017, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Knoth, L., Arif, A., & Schmitt, J. (2015). Salzburg Residential Mobility Model.\u00a0GI_Forum,,\u00a02015, 126-135.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37018, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Kout, A., Labed, S., & Chikhi, S. (2015). Netlogo, agent-based tool for modeling and simulation of routing problem in ad-hoc networks. Proceedings of the Second International Conference on Advances in Information Processing and Communication Technology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Ecology" + }, + { + "id": 37019, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Koutiva, I., & Makropoulos, C. (2015, April). Integrating the simulation of domestic water demand behaviour to an urban water model using agent based modelling. In\u00a0EGU General Assembly Conference Abstracts\u00a0(p. 6937).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Urban Studies" + }, + { + "id": 37020, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Kravari, K. & Bassiliades, N. (2015). A survey of agent platforms. Journal of Artificial Societies and Social Simulation, 18(1). doi.org/10.18564/jasss.2661", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Agent Platforms" + }, + { + "id": 37021, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Krejci, C. & Beamon, B. (2015). Impacts of farmer coordination decisions on food supply chain structure. Journal of Artificial Societies and Social Simulation, 18(2). doi.org/10.18564/jasss.2727", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Farmer coordination decisions" + }, + { + "id": 37022, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Landriscina, F. (2015). Simulation and Learning. Springer-Verlag.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation\nLearning" + }, + { + "id": 37023, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Lee, J. S., Filatova, T., Ligmann-Zielinska, A., Hassani-Mahmooei, B., Stonedahl, F., Lorscheid, I., Voinov, A., Polhill, G., Sun, Z., & Parker, D. C. (2015). The complexities of agent-based modeling output analysis. Journal of Artificial Societies and Social Simulation, 18(4). doi.org/10.18564/jasss.2897", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37024, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Lemos, C., Lopes, R. J., & Coelho, H. (2015, November). Analysis of the decision rule in Epstein's Agent-Based model of civil violence. In\u00a02015 Third World Conference on Complex Systems (WCCS)\u00a0(pp. 1-6). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37025, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Le Page, C., Abrami, G., Becu, N., Bommel, P., Bont\u00e9, B., Bousquet, F., Gaudou, B., M\u00fcller, J.P. and Taillandier, P., 2015, September. Multi-platform training sessions to teach agent-based simulation. In\u00a0Conference on Complex Systems, Tempe, Etats-Unis\u00a0(Vol. 28).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, History, Social Science, Education, Epidemiology" + }, + { + "id": 37026, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Le, Q. B. (2015). Manual for Computer Lab Practice on Multi-Agent System (MAS) for Simulating Coupled Community-Landscape System Dynamics.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 37027, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "LI, R., GAO, H. W., SONG, L., SUN, L. P., & WANG, L. (2015). Coordination Game with Non-exclusive Convention on the Ring Network and the Study. Journal of Qingdao University (Natural Science Edition), 1, 004. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 37028, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Liu, H., Silva, E. A., & Wang, Q. (2015). Simulating the Dynamics of Creative Industries\u2019 Interactions with Urban Land Use by Agent-Based Modelling. In\u00a0Creative Industries and Urban Spatial Structure\u00a0(pp. 101-133). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37029, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Liu, Z., Cabrera, E., Taboada, M., Epelde, F., Rexachs, D., & Luque, E. (2015). Quantitative evaluation of decision effects in the management of emergency department problems.\u00a0Procedia Computer Science,\u00a051, 433-442.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 37030, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Lovelace, R., Birkin, M., Ballas, D., & van Leeuwen, E. (2015). Evaluating the performance of iterative proportional fitting for spatial microsimulation: New tests for an established technique. Journal of Artificial Societies and Social Simulation, 18(2). doi.org/10.18564/jasss.2768", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Spatial Simulation, Iterative Fitting, Microsimulation" + }, + { + "id": 37031, + "sort": null, + "year": 2015, + "is_ccl": true, + "reference": "Lungeanu, A., Sullivan, S., Wilensky, U., & Contractor, N.S. (2015). A computational model of team assembly in emerging scientific fields. In L. Yilmaz, W.K.V. Chan, I. Moon, T.M.K. Roeder, C. Macal, & M.D. Rossetti (Eds.). Proceedings of the 2015 Winter Simulation Conference.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, History, Urban Studies, Social Science, Education" + }, + { + "id": 37032, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "MA, Y., & LI, Y. (2015). Conceptual Research on Decision Making Meetings for Urban Water Management. International Review for Spatial Planning and Sustainable Development, 3(3), 16-24.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37033, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Malchow, M., van Schaik, L., & Tietjen, B. (2015, April). Modelling the influence of plants on the spatial heterogeneity of soil water. In\u00a0EGU General Assembly Conference Abstracts\u00a0(p. 13583).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Soil Water" + }, + { + "id": 37034, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Malik, A., Crooks, A., Root, H., & Swartz, M. (2015). Exploring creativity and urban development with agent-based modeling. Journal of Artificial Societies and Social Simulation, 18(2). doi.org/10.18564/jasss.2722", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Urban Studies, Computer Science" + }, + { + "id": 37035, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Malone, K., Schuchardt, A., & Schunn, C. (2015). Scalable approaches to modeling and engineering in high school biology. In\u00a0National Association of Research in Science Teaching.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 37036, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Manzanarez-Ozuna, E., Flores, D., G\u00f3mez-Guti\u00e9rrez, C. M., Abaroa, A., Castro, C., & Casta\u00f1eda-Mart\u00ednez, R. (2015). Computational modeling of the MAPK pathway using NetLogo.\u00a0Lat. Am. J. Appl. Eng,\u00a01, 11-17.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Computer Science, NetLogo" + }, + { + "id": 37037, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Manzo, G., & Baldassarri, D. (2015).Heuristics, Interactions, and Status Hierarchies An Agent-based Model of Deference Exchange. Sociological Methods Research 44(2), 329-387. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37038, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Marsden, T., Blakely, R. I., Gegear, R. J., & Ryder, E. F. (2015). From individuals to populations: Using an agent-based modelling approach to understand mechanisms of pollinator decline. Swarmfest 2015: Agent-based Simulation and the Study of Complexity, University of South Carolina, Columbia, SC, United States.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Simulation, Ecology" + }, + { + "id": 37039, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Mayfield, J., & Mayfield, M. (2015). The diffusion process of strategic motivating language. In\u00a0Academy of Management Proceedings\u00a0(Vol. 2015, No. 1, p. 13723). Briarcliff Manor, NY 10510: Academy of Management.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37040, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Mayrhofer, C. (2015). Performance, Scale & Time in Agent-based Traffic Modelling with NetLogo. GI_Forum, 2015, 567-570.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37041, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "McPhee-Knowles, S. (2015). Growing food safety from the bottom up: An agent-based model of food safety inspections. Journal of Artificial Societies and Social Simulation, 18(2). doi.org/10.18564/jasss.2717", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Food Safety, Agent-Based Modeling" + }, + { + "id": 37042, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Mezencev, K. N. (2015). Multi-agent simulation in netlogo software.\u00a0Autom. Control Tech. Syst,\u00a01, 10-20.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation" + }, + { + "id": 37043, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Micu, L. A., & Ciutacu, I. (2015). EU Vs. China: Is Agriculture the Way towards Sustainability? Case Study Using Agent-based Models. Procedia Economics and Finance, 27, 607-611. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Agriculture" + }, + { + "id": 37044, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Mitchell, D., Keller, J. M., & Castillo, V. M. (2015, June). Saving Rivertown: Using Computer Simulations in an Earth Science Engineering Design Project for Pre-service Teachers. In\u00a02015 ASEE Annual Conference & Exposition\u00a0(pp. 26-1355).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 37045, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Miyoshi, K., Jibiki, M., & Murase, T. (2015, July). Self-Organization of Shortest Spanning Tree and Optimal Sink Node Position for Various Shapes of Large-Scale Wireless Sensor Networks. In\u00a02015 IEEE 39th Annual Computer Software and Applications Conference\u00a0(Vol. 2, pp. 647-652). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, History, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37046, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Momen, S. and Tabassum, K.T. (2015). Group Performance in a Swarm of Simulated Mobile Robots, ULAB Journal of Science and Engineering, vol 6, no. 1, pp: 25 - 31, ISSN: 2079-4398 (print), ISSN: 2414-102X (online)[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Engineering, Science" + }, + { + "id": 37047, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Moon, S., & Han, Y. (2015). An Agent Based Model for the Study on Undergraduate\u2019s Choice of Seat and Seat Distribution.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37048, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Munteanu, A. C. (2015). Knowledge Spillovers of FDI. Procedia Economics and Finance, 32, 1093-1099. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37049, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Mustafee, N., Sahnoun, M. H., Smart, A., & Godsiff, P. (2015, June). An application of distributed simulation for hybrid modeling of offshore wind farms. In\u00a0Proceedings of the 3rd ACM SIGSIM Conference on Principles of Advanced Discrete Simulation\u00a0(pp. 171-172).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Musteev, S., Sahnoun, M. H., Smart, A., & Godsiff, P." + }, + { + "id": 37050, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Nolting, B.C., Hinkelman, T.M., Brassil, C.E., & Tenhumberg, B. (2015).Composite random search strategies based on non-directional sensory cues. Ecological Complexity 22, 126-138. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 37051, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Olsen, J., & J\u00f8rgensen, T. R. (2015). Revisiting the cost-effectiveness of universal HPV-vaccination in Denmark accounting for all potentially vaccine preventable HPV-related diseases in males and females.\u00a0Cost Effectiveness and Resource Allocation,\u00a013(1), 1-10.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37052, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Ol\u0161vi\u010dov\u00e1, K., Proch\u00e1zka, J., & Danielisov\u00e1, A. (2015). Reconstruction of Prehistoric Settlement Network Using Agent-Based Model in NetLogo. In Highlights of Practical Applications of Agents, Multi-Agent Systems, and Sustainability-The PAAMS Collection (pp. 165-175). Springer International Publishing.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37053, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Patarakin, E., Burov, V., & Parfenov, R. (2015, November). Identifying sets of key players and cliques in socio-educational co-creative projects. In\u00a0Proceedings of the 2015 2nd International Conference on Electronic Governance and Open Society: Challenges in Eurasia\u00a0(pp. 232-236).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37054, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Pereda, M., Poza, D., Santos, J. I., & Gal\u00e1n, J. M. (2015). Quality Uncertainty and Market Failure: An Interactive Model to Conduct Classroom Experiments. In International Joint Conference (pp. 549-557). Springer International Publishing.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Market Failure, Model, Classroom Experiments" + }, + { + "id": 37055, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Pope, A. J., & Gimblett, R. (2015). Linking Bayesian and agent-based models to simulate complex social-ecological systems in semi-arid regions. Frontiers in Environmental Science, 3, 55.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 37056, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Priest B., Vuksani E., Wagner N., Tello B., Carter K., and Streilein W.(2015). Agent-Based Simulation in Support of Moving Target Cyber Defense Technology Development and Evaluation. in Proceedings of the 2015 ACM Spring Simulation Multi-Conference - Communications and Networking Simulation Symposium, Alexandria, VA, April, 2015. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Networking, Ecology" + }, + { + "id": 37057, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Polhill, G. (2015). Extracting OWL Ontologies from Agent-Based Models: A NetLogo Extension. Journal of Artificial Societies and Social Simulation, 18(2), 15. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, OWL, NetLogo, Simulation" + }, + { + "id": 37058, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Proch\u00e1zka, J., Cimler, R., & Ol\u0161evi\u010dov\u00e1, K. (2015). Pedestrian Modelling in NetLogo. In Emergent Trends in Robotics and Intelligent Systems (pp. 303-312). Springer International Publishing. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37059, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Proch\u00e1zka, J., & Ol\u0161evi\u010dov\u00e1, K. (2015). Monitoring Lane Formation of Pedestrians: Emergence and Entropy. In Intelligent Information and Database Systems (pp. 221-228). Springer International Publishing. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37060, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Ramli, N. R., Razali, S., & Osman, M. (2015, August). An overview of simulation software for non-experts to perform multi-robot experiments. In Agents, Multi-Agent Systems and Robotics (ISAMSR), 2015 International Symposium on (pp. 77-82). IEEE. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Robotics, Physics, Miscellaneous" + }, + { + "id": 37061, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Ronquillo, A. O., Doloriel, D. M., & Doloriel, N. S. (2015). RATE OF NEWCASTLE DISEASE SPREAD AMONG CHICKENS: COMPARATIVE SIMULATION EXPERIMENT. SDSSU MULTIDISCIPLINARY RESEARCH JOURNAL, 3, 110-113.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37062, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Rorabaugh, A. (2015). Modeling pre-European contact Coast Salish seasonal social networks and their impacts on unbiased cultural transmission. Journal of Artificial Societies and Social Simulation, 18(4). doi.org/10.18564/jasss.2911", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37063, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Rossiter, S. (2015). Simulation design: Trans-paradigm best-practice from software engineering. Journal of Artificial Societies and Social Simulation, 18(3). doi.org/10.18564/jasss.2842", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation design, Software engineering" + }, + { + "id": 37064, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Rotenberry, J.T., Swanger, E., & Zuk, M. (2015).Alternative reproductive tactics arising from a continuous behavioral trait: callers versus satellites in field crickets. American Naturalist 185:469-490. DOI: 10.1086/680219. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Behavioral Ecology, Field Ecology" + }, + { + "id": 37065, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Ryder, E. F., Boyd, J. R., Marsden, T. B., La, S., Sullender, M. E., Reider, D., & White, B. T. (2015). Modeling from molecules to moose: Teaching students to develop agent-based simulations in biology. Swarmfest 2015: Agent-based Simulation and the Study of Complexity, University of South Carolina, Columbia, SC, United States.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Modeling" + }, + { + "id": 37066, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Scherer, S., Wimmer, M., Lotzmann, U., Moss, S., & Pinotti, D. (2015). Evidence based and conceptual model driven approach for agent-based policy modelling. Journal of Artificial Societies and Social Simulation, 18(3). doi.org/10.18564/jasss.2834", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37067, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Sengupta, P., Dickes, A., Farris, A. V., Karan, A., Martin, D., & Wright, M. (2015). Programming in K-12 science classrooms. Communications of the ACM, 58(11), 33-35. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Programming" + }, + { + "id": 37068, + "sort": null, + "year": 2015, + "is_ccl": true, + "reference": "Sirer, M. I., Maroulis, S., Guimera, R., Wilensky, U., & Amaral, L. A. N. (2015). The currents beneath the \u201crising tide\u201d of school choice: An analysis of student enrollment flows in the Chicago public schools. Journal of Policy Analysis and Management, 34(2), 358-377.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37069, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Shook, E., Wren, C., Marean, C. W., Potts, A. J., Franklin, J., Engelbrecht, F., ... & Esler, K. J. (2015, July). Paleoscape model of coastal South Africa during modern human origins: progress in scaling and coupling climate, vegetation, and agent-based models on XSEDE. In Proceedings of the 2015 XSEDE Conference: Scientific Advancements Enabled by Enhanced Cyberinfrastructure (p. 2). ACM. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Paleoscape, Climate, Vegetation, Agent-based models" + }, + { + "id": 37070, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Shutters, S. T. & Hales, D. (2015). Altruism displays a harmonic signature in structured societies. Journal of Artificial Societies and Social Simulation, 18(3). doi.org/10.18564/jasss.2780", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 37071, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Siddique, O. (2015). Steven F. Railsback and Volker Grimm. Agent-Based and Individual-Based Modelling: A Practical Introduction. Pakistan Development Review, 54(1), 76-77. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology" + }, + { + "id": 37072, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Singh, M., & Balaraman, V. (2015).Exploring Norm Establishment and Spread in Different Organizational Structures Using an Extended Axelrod Model. Spring Sim 15, Proceedings of the 2015 Spring Sim Simulation Multiconference", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37073, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Simpson, O., & Camorlinga, S. (2015, April). A methodology to create Complex Adaptive System models that support Cardiovascular Diseases simulation. In\u00a02015 Annual IEEE Systems Conference (SysCon) Proceedings\u00a0(pp. 224-229). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37074, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Tak\u00e1cs, K. & Squazzoni, F. (2015). High standards enhance inequality in idealized labor markets. Journal of Artificial Societies and Social Simulation, 18(4). doi.org/10.18564/jasss.2940", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37075, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "TANG, H., XIONG, S., & JIN, Z. (2015). Research for Simulation of Rescue Behaviors of Industrial Accidents Based on Communication of Virtual Human.\u00a0Industrial Safety and Environmental Protection, 01.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Communication" + }, + { + "id": 37076, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Terna, P. (2015). Agent-based Models for Exploring Social Complexity, with an Application of Network Analysis to Agents. In\u00a0SIMULTECH\u00a0(pp. IS-11).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Network Analysis, Computer Science, Economics, Sociology, Social Science, Education" + }, + { + "id": 37077, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Tovar, R. J. C., Fern\u00e1ndez, O., & Medina, L. J. C. (2015). Dial\u00e9ctica entre teor\u00edas y ciencias de la complejidad. Un Acercamiento a Trav\u00e9s del An\u00e1lisis Cr\u00edtico.\u00a0Entelequia: revista interdisciplinar, (18), 137-142.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37078, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Trab, S., Bajic, E., Zouinkhi, A., Abdelkrim, M. N., Chekir, H., & Ltaief, R. H. (2015). Product Allocation Planning with Safety Compatibility Constraints in IoT-based Warehouse. Procedia Computer Science, 73, 290-297. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 37079, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Troitzsch, K. G. (2015). What One Can Learn from Extracting OWL Ontologies from a NetLogo Model That Was Not Designed for Such an Exercise. Journal of Artificial Societies and Social Simulation, 18(2), 14. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37080, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Uemura, M., Matsushita, H., & Kraetzschmar, G. K. (2015, November). Path Planning with Slime Molds: A Biology-Inspired Approach. In Neural Information Processing (pp. 308-315). Springer International Publishing.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 37081, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Varela, C. A. R., Velandia, F. B., Rey, M. A. M., Romero, N. G., & Neira, N. O. (2015). Foraging Multi-Agent System Simulation Based on Attachment Theory. In ISCS 2014: Interdisciplinary Symposium on Complex Systems (pp. 359-364). Springer International Publishing. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Foraging" + }, + { + "id": 37082, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Wang, H., Mostafizi, A., Cramer, L. A., Cox, D., & Park, H. (2015). An agent-based model of a multimodal near-field tsunami evacuation: Decision-making and life safety. Transportation Research Part C: Emerging Technologies.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37083, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Wang, Y. N., & Chen, H. (2015). Scenario Simulation of Land Use Based on Net Logo Model\u2014A Case Study for Matiwa Village of Mizhi County of Shaanxi Province. Journal of Anhui Agricultural Sciences, 25, 111. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Agriculture" + }, + { + "id": 37084, + "sort": null, + "year": 2015, + "is_ccl": true, + "reference": "Weintrop, D., Beheshti, E., Horn, M., Orton, K., Jona, K., Trouille, L., & Wilensky, U. (2015).Defining Computational Thinking for Mathematics and Science Classrooms. Journal of Science Education and Technology, 25(1), 127\u2013147.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computational Thinking" + }, + { + "id": 37085, + "sort": null, + "year": 2015, + "is_ccl": true, + "reference": "Weintrop, D., Head, B., & Wilensky, U. (2015).Plotting Programming Trajectories with the NetLogo Data Explorer. In Proceedings of Information Visualization, 2015. Chicago, IL. IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Programming, Data Explorer, Information Visualization" + }, + { + "id": 37086, + "sort": null, + "year": 2015, + "is_ccl": true, + "reference": "Wilensky, U. & Rand, W. (2015). An introduction to agent-based modeling: Modeling natural, social and engineered complex systems with NetLogo. Cambridge, MA: MIT Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Computer Science, Ecology, Social Science, NetLogo" + }, + { + "id": 37087, + "sort": null, + "year": 2015, + "is_ccl": true, + "reference": "Wilkerson-Jerde, M. H., Wagh, A. & Wilensky, U. (2015).Balancing curricular and pedagogical needs in computational construction kits: Lessons from the DeltaTick project. Science Education, 99(3), 465-499. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37088, + "sort": null, + "year": 2015, + "is_ccl": true, + "reference": "Wilkerson-Jerde, M. H. & Wilensky, U. (2015).Patterns, probabilities, and people: Making sense of quantitative change in complex systems. Journal of the Learning Sciences, 24(2), 204-251. doi: 10.1080/10508406.2014.976647", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37089, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Weiss, J., & Steel, J. (2015). Continuing with agent based models to aid decision making in weed management. A case study of buffel grass; a weed dispersed by vehicular wind turbulence.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37090, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Wirth, E. (2015). Pi from agent border crossings by NetLogo package.\u00a0Wolfram Library Archive.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37091, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Wrasse, K., Hayka, H., & Stark, R. (2015). Simulation of product-service-systems piloting with agent-based models (outlined revision).\u00a0Procedia CIRP,\u00a030, 108-113.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Agent-based models" + }, + { + "id": 37092, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Wright, M. & Sengupta, P. (2015). Modeling oligarchs' campaign donations and ideological preferences with simulated agent-based spatial elections. Journal of Artificial Societies and Social Simulation, 18(2). doi.org/10.18564/jasss.2736", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37093, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": " Wurzer, G., Kowarik, K., & Reschreiter, H. (Eds.). (2015). Agent-based modeling and simulation in archaeology. New York: Springer International Publishing. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37094, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": " Yongchen, G., Yang, S., & Jing, M. (2015). A Study on the Multi-Agent Simulation of BBS Public Opinion Evolution Based on the Theory of Opinion Leaders. Journal of Intelligence, 2, 003.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37095, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Zandi, M., & Mohebbi, M. (2015). An agent\u2010based simulation of a release process for encapsulated flavour using the NetLogo platform. Flavour and Fragrance Journal, 30(3), 224-229. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Agent\u2010based simulation, NetLogo, Flavour" + }, + { + "id": 37096, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Zandi, M. (2015). Simulation of Ascorbic Acid Release from Alginate\u2010Whey Protein Concentrates Microspheres at the Simulated Gastrointestinal Condition Using Netlogo Platform. Journal of Food Process Engineering. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37097, + "sort": null, + "year": 2014, + "is_ccl": false, + "reference": "Alden, K., Timmis, J., & Coles, M. (2014). Easing Parameter Sensitivity Analysis of Netlogo Simulations using SPARTAN. ALIFE 14: Proceedings of the Fourteenth International Conference on the Synthesis and Simulation of Living Systems. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry" + }, + { + "id": 37098, + "sort": null, + "year": 2014, + "is_ccl": false, + "reference": "Ampatzidis, G., & Ergazaki, M. (2014). Towards a learning environment for challenging the idea of the balanced nature: Insights from the first cycle of research. In C. P. Constantinou, N. Papadouris & A. Hadjigeorgiou (Eds.), E-Book. Proceedings of the ESERA 2013 Conference: Science Education Research For Evidence-based Teaching and Coherence in Learning. Part 3 (pp. 44-54). Nicosia, Cyprus: European Science Education Research Association. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37099, + "sort": null, + "year": 2014, + "is_ccl": false, + "reference": "Balaraman, V., & Singh, M. (2014). Exploring Norm Establishment in Organizations Using an Extended Axelrod Model with Two New Metanorms. SummerSim '14, Proceedings of the 2014 Summer Simulation Multiconference, Article No. 39.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Organization, Metanorm, Simulation" + }, + { + "id": 37100, + "sort": null, + "year": 2014, + "is_ccl": true, + "reference": "Becher, M. A., Grimm, V., Thorbek, P., Horn, J., Kennedy, P. J., & Osborne, J. L. (2014). BEEHAVE: a systems model of honeybee colony dynamics and foraging to explore multifactorial causes of colony failure. Journal of applied ecology, 51(2), 470-482.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37101, + "sort": null, + "year": 2014, + "is_ccl": false, + "reference": "Biotechnology and Biological Sciences Research Council. (2014). Virtual bees help to unravel complex causes of colony decline. ScienceDaily. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, ScienceDaily" + }, + { + "id": 37102, + "sort": null, + "year": 2014, + "is_ccl": true, + "reference": "Brady, C., Holbert, N. Soylu, F., Novak, M., Wilensky, U. (2014). Sandboxes for model-based inquiry. Science Teaching and Learning with Models,\u201d Journal of Science Education and Technology (JOST) [Special Issue]. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Model-based inquiry" + }, + { + "id": 37103, + "sort": null, + "year": 2014, + "is_ccl": false, + "reference": "Butt\u00f2, M., Pereira, C., & Taylor, M. (2014). Sunshine or shield? Secret voting procedures and legislative accountability. Journal of Artificial Science and Social Simulation, 17(4). doi.org/10.18564/jasss.2620", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37104, + "sort": null, + "year": 2014, + "is_ccl": false, + "reference": "Dickerson, M. (2014). Multi-agent simulation, netlogo, and the recruitment of computer science majors. Journal of Computing Sciences in Colleges, 30(1), 131-139. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Ecology" + }, + { + "id": 37105, + "sort": null, + "year": 2014, + "is_ccl": false, + "reference": "Epstein, J.M. (2014). Agent_Zero: Toward Neurocognitive Foundations for Generative Social Science. New Jersey: Princeton University Press. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37106, + "sort": null, + "year": 2014, + "is_ccl": false, + "reference": "Galic, N., R. Ashauer, H. Baveco, A.-M. Nyman, A. Barsi, P. Thorbek, E. Bruns, & P. J. Van den Brink. (2014). Modeling the contribution of toxicokinetic and toxicodynamic processes to the recovery of Gammarus pulex populations after exposure to pesticides. Environmental Toxicology and Chemistry 33:1476-1488.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Toxicokinetics, Toxicodynamics, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 37107, + "sort": null, + "year": 2014, + "is_ccl": false, + "reference": "Gkiolmas A., Papaconstantinou M., Chalkidis A., & Skordoulis C. (2014). \"Learning about Populations in Ecosystems by \u201cBuilding Them From Inside\u201d with NetLogo: A Constructionist Approach for Teaching Population Ecology\u2019s Principles. Proceedings of the Constructionism. Vienna, Austria [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37108, + "sort": null, + "year": 2014, + "is_ccl": false, + "reference": "Gooding, T. (2014). Modelling society's evolutionary forces. Journal of Artificial Science and Social Simulation, 17(3). doi.org/10.18564/jasss.2497", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37109, + "sort": null, + "year": 2014, + "is_ccl": true, + "reference": "Guo, Y., & Wilensky, U. (2014). Beesmart: a microworld for swarming behavior and for learning complex systems concepts. Proceedings of the Constructionism 2014 Conference. Vienna, Austria. August 2014. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Beesmart" + }, + { + "id": 37110, + "sort": null, + "year": 2014, + "is_ccl": true, + "reference": "Head, B., Liang, C., & Wilensky, U. (2014). Flying like a School of Fish: Discovering Flocking Formations in an Agent-Based Model with Analogical Reasoning. In Proceedings of the Michigan Complexity Mini-Conference. University of Michigan, Ann Arbor, Michigan.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37111, + "sort": null, + "year": 2014, + "is_ccl": true, + "reference": "Head, B., Orton, K., & Wilensky, U. (2014). An Agent-Based Approach to Modeling Membrane Formation. In Proceedings of the Michigan Complexity Mini-Conference. University of Michigan, Ann Arbor, Michigan.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Membrane Formation" + }, + { + "id": 37112, + "sort": null, + "year": 2014, + "is_ccl": false, + "reference": "Heijnen, P., Chappin, \u00c9. J. L., & Nikolic, I. (2014). Infrastructure network design with a multi-model approach: Comparing geometric graph theory with an agent-based implementation of an ant colony optimization. Journal of Artificial Science and Social Simulation, 17(4). doi.org/10.18564/jasss.2533", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Infrastructure network design" + }, + { + "id": 37113, + "sort": null, + "year": 2014, + "is_ccl": true, + "reference": "Hjorth, A., & Wilensky, U. (2014). Redesigning Your City - A Constructionist Environment for Urban Planning Education. Proceedings of Constructionism 2014, Vienna, Aug 19-23.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37114, + "sort": null, + "year": 2014, + "is_ccl": true, + "reference": "Hjorth, A., & Wilensky, U. (2014). Redesigning Your City \u2013 A Constructionist Environment for Urban Planning Education. Informatics in Education-An International Journal, (Vol13_2), 197-208. Chicago ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37115, + "sort": null, + "year": 2014, + "is_ccl": true, + "reference": "Hjorth, A. & Wilensky, U. (2014). Re-grow Your City \u2013 a NetLogo curriculum unit on Regional Development. In J. L. Polman, E. A. Kyza, D. K. O'Neill, I. Tabak, W. R. Penuel, A. S. Jurow, K. O'Connor, T. Lee & L. D'Amico (Eds.), Proceedings of \"Learning and Becoming in Practice,\" the 11th International Conference of the Learning Sciences (ICLS) 2014 (Vol. 3, pp. 1553-1555). Boulder, CO: International Society of the Learning Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Regional Development" + }, + { + "id": 37116, + "sort": null, + "year": 2014, + "is_ccl": true, + "reference": "Hjorth, A., Wilensky, U., Villamar, J., Brown, H. (2014). Using Agent-Based Modeling to Explore and Visualize the Effects of Prevention Implementation Strategies for Policy. In Computational and Technical Approaches to Improve the Implementation of Prevention Programs. Panel chaired by Dr. Hendricks Brown at 7th Annual Conference on the Science of Dissemination and Implementation. Bethesda, MD.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37117, + "sort": null, + "year": 2014, + "is_ccl": true, + "reference": "Horn, M., Brady, C., Hjorth, A., Wagh, A., & Wilensky, U. (2014). Frog Pond: A code first learning environment on natural selection and evolution. Proceedings of IDC 2014. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry" + }, + { + "id": 37118, + "sort": null, + "year": 2014, + "is_ccl": true, + "reference": "Horn, M.S., Weintrop, D., & Routman, E. (2014). Programming in the Pond: A Tabletop Computer Programming Exhibit. In Proceedings of the Extended Abstracts of the 32nd Annual ACM Conference on Human Factors in Computing Systems (pp. 1417-1422). New York, NY, USA: ACM. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Programming" + }, + { + "id": 37119, + "sort": null, + "year": 2014, + "is_ccl": false, + "reference": "Iwamura, T., Lambin, F.E., Silvius, M.K., Luzar, B.J & Fragoso, MV.J. (2014). Agent-based modeling of hunting and subsistence agriculture on indigenous lands: Understanding interactions between social and ecological systems. Environmental Modelling and Software 58(2014)109-127 [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37120, + "sort": null, + "year": 2014, + "is_ccl": false, + "reference": "Izquierdo, L.R., Izquierdo, S.S. & Vega-Redondo, F. (2014). Leave and let leave: A sufficient condition to explain the evolutionary emergence of cooperation. Journal of Economic Dynamics & Control 46, pp. 91\u2013113. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37121, + "sort": null, + "year": 2014, + "is_ccl": true, + "reference": "Jona, K., Wilensky, U., Trouille, L., Horn, M. S., Orton, K., Weintrop, D., & Beheshti, E. (2014). Embedding Computational Thinking in Science, Technology, Engineering, and Math (CT-STEM). Presented at the 2014 CE21 PI and Community Meeting, Orlando, FL.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 37122, + "sort": null, + "year": 2014, + "is_ccl": false, + "reference": "Kautz, M., Muhammad, A.I., & Schopf, R. (2014). Individual traits as drivers of spatial dispersal and infestation patterns in a host-bark beetle system. Ecological Modelling, 273, 264-276. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Spatial Dispersal, Infestation Patterns" + }, + { + "id": 37123, + "sort": null, + "year": 2014, + "is_ccl": false, + "reference": "Knoeri, C., Nikolic, I., Althaus, H. J., & Binder, C. R. (2014). Enhancing recycling of construction materials: An agent based model with empirically based decision parameters. Journal of Artificial Science and Social Simulation, 17(3). doi.org/10.18564/jasss.2528", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Decision Parameters, Computer Science, Social Science" + }, + { + "id": 37124, + "sort": null, + "year": 2014, + "is_ccl": false, + "reference": "Labarbe, E., & Thiel, D. (2014). Information Sharing to Reduce Misperceptions of Interactions Among Complementary Projects: A Multi-Agent Approach. Journal of Artificial Societies and Social Simulation (JASSS), 17 (1): 9. [HTML] (Jan 2014)", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37125, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Abdollahian, M., Yang, Z., & Nelson H. (2013). Techno-Social Energy Infrastructure Siting: Sustainable Energy Modeling Programming (SEMPro). Journal of Artificial Societies and Social Simulation (JASSS), 16 (3): 6. [HTML] (June 2013)", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Technology, Social Science, Miscellaneous" + }, + { + "id": 37126, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Alaliyat, S., Osen, O. L., & Kvile, K. O. (2013). An Agent-Based Model To Simulate Pathogen Transmission Between Aquaculture Sites In The Romsdalsfjord. In ECMS (pp. 46-52).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science" + }, + { + "id": 37127, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Almud\u00ed, I., Fat\u00e1s-Villafranca, F. & Izquierdo, L.R. (2013).Industry dynamics, technological regimes and the role of demand. Journal of Evolutionary Economics Vol. 23, Issue 5, pp 1073-1098. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Technological regimes, Demand" + }, + { + "id": 37128, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Al-Roomi, M., Salman, A., & Ahmad, I. (2013, November). Analyzing MBSA performance using NetLogo. In 2013 European Modelling Symposium (pp. 67-72). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37129, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Anghinolfi, D., Capogrosso, A., Paolucci, M., & Perra, F. (2013, October). An agent-based simulator for the evaluation of the measurement of effectiveness in the military naval tasks. In 2013 17th International Conference on System Theory, Control and Computing (ICSTCC) (pp. 733-738). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37130, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Ariuntsetseg, E., & Yom, J. H. (2013). Foot-and-mouth disease spread simulation using agent-based spatial model. Journal of the Korean Society of Surveying, Geodesy, Photogrammetry and Cartography, 31(3), 209-219.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Spatial Modeling, Agent-Based Modeling, Simulation" + }, + { + "id": 37131, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Aroor, A. (2013). QoS aware distributed service composition using agents (Doctoral dissertation, Dhirubhai Ambani Institute of Information and Communication Technology).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37132, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Arslan, M.O. & \u0130can, \u00d6. (2013). \"An Agent-Based Analysis of Tax Compliance for Turkey.\" Anadolu University Journal of Social Sciences, 13(2), 143-152. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37133, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Arslan, M.O. & \u0130can, \u00d6. (2013). \"The Effects of Neighborhood on Tax Compliance Rates: Evidence from an Agent-Based Model.\" Journal of Cukurova University Institute of Social Sciences, 22(1), 337-350. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37134, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Bajracharya, K., & Duboz, R. (2013, April). Comparison of three agent-based platforms on the basis of a simple epidemiological model (WIP). In Proceedings of the Symposium on Theory of Modeling & Simulation-DEVS Integrative M&S Symposium (pp. 1-6). [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37135, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Balbi, S., Giupponi, C., Perez, P., & Alberti, M. (2013). A spatial agent-based model for assessing strategies of adaptation to climate and tourism demand changes in an alpine tourism destination. Environmental Modelling & Software, 45, 29-51.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37136, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Banos, A., Marilleau, N., & MIRO Team. (2013). Improving individual accessibility to the city. In Proceedings of the European Conference on Complex Systems 2012 (pp. 989-992). Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies" + }, + { + "id": 37137, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Basu, S., Dickes, A., Kinnebrew, J. S., Sengupta, P., & Biswas, G. (2013, May). CTSiM: A Computational Thinking Environment for Learning Science through Simulation and Modeling. In CSEDU (pp. 369-378).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 37138, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Bezirgiannis, N. (2013). Improving Performance of Simulation Software Using Haskell's Concurrency & Parallelism. Universiteit Utrecht. [HTML] (Sept 2013)", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Programming, Simulation, Haskell, Concurrency" + }, + { + "id": 37139, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Bhattacharya, S., Czejdo, B., Malhotra, R., Perez, N., & Agrawal, R. (2013, July). Agent based modeling of moving point objects in geospatial data. In 2013 Fourth International Conference on Computing for Geospatial Research and Application (pp. 132-133). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Geospatial Data, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37140, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Bhattacharya, S., Czejdo, B., Malhotra, R., Perez, N., & Agrawal, R. (2013, July). Characterization of Moving Point Objects in Geospatial Data. In 2013 Fourth International Conference on Computing for Geospatial Research and Application (pp. 151-151). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Geospatial Data, Computer Science, Physics, Chemistry, Archaeology, Ecology, Economics, History, Social Science, Education, Epidemiology" + }, + { + "id": 37141, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Bichraoui, N., Guillaume, B., & Halog, A. (2013). Agent-based modelling simulation for the development of an industrial symbiosis-preliminary results. Procedia Environmental Sciences, 17, 195-204.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Simulation, Ecology" + }, + { + "id": 37142, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Biggs, M. B., & Papin, J. A. (2013). Novel multiscale modeling tool applied to Pseudomonas aeruginosa biofilm formation. PLoS One, 8(10), e78011.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Computer Science" + }, + { + "id": 37143, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Bintoro, B. P. K. (2013). Model Berbasis Agen untuk Pengenalan Produk Baru dengan Twitter. Business and Management Review, 2(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Twitter" + }, + { + "id": 37144, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Bintoro, B. P. K., Epicentrum, K. K. K. R., & Jie, F. (2013). AGENT-BASED MODELING FOR NEW PRODUCT INTRODUCTION USING TWITTER. In International DSI and ASIA Pacific DSI 2013 Bali Conference (pp. 1-11). Decision Sciences Institute.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Computer Science, Economics, Physics, Chemistry, Urban Studies" + }, + { + "id": 37145, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Biondo, A.E., Pluchino, A., & Rapisarda, A. (2013). Return Migration After Brain Drain: A Simulation Approach. Journal of Artificial Societies and Social Simulation (JASSS), 16(2), 11. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Ecology" + }, + { + "id": 37146, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Boone, Randall B., Moore, John C., Koyama, Akihiro, Holfelder, Kirstin (2013, November 21). \"Soil microbe-predator model with enzymes\" (Version 1). CoMSES Computational Model Library. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37147, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Borsboom, D, & Cramer, A. O. (2013).Network analysis: An integrative approach to the structure of psychopathology. Annual Review of Clinical Psychology, 9, 91-121.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Psychology, Network analysis" + }, + { + "id": 37148, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Bravo, R. and D.E. Axelrod. A calibrated agent-based computer model of stochastic cell dynamics in normal human colon crypts useful for in silico experiments. Theoretical Biology and Medical Modeling 10:66 (2013), DOI: 10.1186/1742-4682-10-66, [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37149, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Bredeche, N., Montanier, J. M., Weel, B., & Haasdijk, E. (2013). Roborobo! a fast robot simulator for swarm and collective robotics. arXiv preprint arXiv:1304.2888.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37150, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Brooks, M. (2013). Facilitating the creation of advanced agents within netlogo by allowing specification and control using the behaviour oriented design methodology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37151, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Buchin, K., Buchin, M., van Kreveld, M., Speckmann, B., & Staals, F. (2013, August). Trajectory grouping structure. In Workshop on Algorithms and Data Structures (pp. 219-230). Springer, Berlin, Heidelberg.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37152, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Cabreira, T. M., de Aguiar, M. S., & Dimuro, G. P. (2013, June). An extended evolutionary learning approach for multiple robot path planning in a multi-agent environment. In 2013 IEEE Congress on Evolutionary Computation (pp. 3363-3370). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Evolutionary Learning, Robotics, Planning" + }, + { + "id": 37153, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Caillou, P., Gil-Quijano, J., & Zhou, X. (2013). Automated observation of multi-agent based simulations: a statistical analysis approach.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Statistics" + }, + { + "id": 37154, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Carrasco-Jim\u00e9nez, J. C., Celaya-Padilla, J. M., Montes, G., Brena, R. F., & Iglesias, S. (2013, June). Social interaction discovery: A simulated multiagent approach. In Mexican Conference on Pattern Recognition (pp. 294-303). Springer, Berlin, Heidelberg.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Social interaction" + }, + { + "id": 37155, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Cecconi, F. (2013). Simulating Crime: Models, Methods, Tools. Informatica e diritto, 22(1), 181-191.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37156, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "\u010cech, P., Tu\u010dn\u00edk, P., Bure\u0161, V., & Husr\u00e1kov\u00e1, M. (2013, September). Modelling complexity of economic system with multi-agent systems. In 5th International Conference on Knowledge Management and Information Sharing (KMIS 13), Vilamoura, Algarve, Portugal (pp. 464-469).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Computer Science, Physics, Miscellaneous" + }, + { + "id": 37157, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Chang-hong, L., Feng, L., Jian-ping, F., & Zhi-hong, S. (2013). Research on Selections and Influencing Factors of Industry-university-research Cooperation Models in Developing New Products. Sci-tech Innovation and Productivity, 2.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37158, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Chen, P., Plale, B., & Evans, T. (2013, October). Dependency provenance in agent based modeling. In 2013 IEEE 9th International Conference on e-Science (pp. 180-187). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37159, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Chen, P., Zhu, S. Y., Xu, L. J., Ma, X. F., & Du, Z. G. (2013). Multi-agent simulation of emergency evacuation on the sidewalk. In Applied Mechanics and Materials (Vol. 253, pp. 2005-2008). Trans Tech Publications Ltd.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37160, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "CHI, J. J., LUO, X. M., & SUN, X. N. (2013). Simulation & Evaluation of Complex Electromagnetic Environment Effect on Radar Network\" Four Countering\" Capabilities. Journal of Academy of Armored Force Engineering, (1), 16.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Radar Network" + }, + { + "id": 37161, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Ciancamerla, E., Minichino, M., & Palmieri, S. (2013, July). Modeling cyber attacks on a critical infrastructure scenario. In IISA 2013 (pp. 1-6). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Chemistry" + }, + { + "id": 37162, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Cimler, R. (2013). Analytic Hierarchy Process and agent-based simulation for traffic modeling. In Proceedings of the 12th International Symposium on the Analytic Hierarchy Process, Kuala Lumpur, Malaysia, 23rd-26th June.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Analytic Hierarchy Process, Agent-based simulation, Traffic modeling" + }, + { + "id": 37163, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Cimler, R., & Ol\u0161evi\u010dov\u00e1, K. (2013). Analysis Simulation of aircraft disembarking methods. Global Journal on Technology, 3.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Technology, Economics" + }, + { + "id": 37164, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Collard, P., Mesmoudi, S., Ghetiu, T., & Polack, F. (2013).Emergence of Frontiers in Networked Schelling Segregationist Models. Journal Complex Systems, 22(1). [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37165, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Collard, P., Verel, S. & Clergue, M. (2013).Syst\u00e8mes Complexes: une introduction par la pratique [Complex Systems: An Introduction to Practice]. Presses Polytechniques et Universitaires Romandes. Publisher of the EPFL Press, Lausanne [France], 306 p. (ISBN: 978-2-88074-991-0)", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37166, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Comer, K. W., & Loerch, A. G. (2013). The impact of agent activation on population behavior in an agent-based model of civil revolt. Procedia Computer Science, 20, 183-188.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37167, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Curtin, T., Donnelly, M., Maynard, G., Nguyen, N., Nourie, A., & Thomas, M. (2013). Can the Great Pacific Garbage Patch be Eliminated With Plastic-eating Microbes?.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37168, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Dai D, Z. Y. (2013). Simulating fire spread in a community using an agent-based model. In Proceedings of the 12th International Conference on GeoComputation. LIESMARS Wuhan University, Wuhan, China (pp. 130-132).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, GeoComputation, Ecology" + }, + { + "id": 37169, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Damaceanu, R. C. (2013). Agent-Based Computational Economics Using NetLogo. Bentham Science Publishers. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Computer Science, Miscellaneous" + }, + { + "id": 37170, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Dangles, O. J. (2013). SimAdapt: An individual-based genetic model for simulating landscape management impacts on populations.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37171, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Dao, N. B., Revel, A., Menard, M., & El Hamidi, A. (2013). Simulation Models for Grassland Ecosystem and Inter-species Plant Competition: Interation in NetLogo.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science" + }, + { + "id": 37172, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Davies, B., & Floyd, B. Simulating the effects of prehistoric migration events on body dimensions among Oceanic populations.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 37173, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Decker, W., Cromartie, J., Brandon, D., Warden, R., Ward, M. O., & Ryder, E. F. (2013). Simulation of embryonic development in C. elegans using agent-based modeling, International C. elegans Meeting, University of California, Los Angeles, CA, United States.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37174, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Delaney, L., Kleczkowski, A., Maharaj, S., Rasmussen, S., & Williams, L. (2013). Reflections on a Virtual Experiment Addressing Human Behavior During Epidemics. Summer Computer Simulation Conference. ACM Digital Library. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 37175, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Demarest, J., Pagsuyoin, S., Learmonth, G., Mellor, J., & Dillingham, R. (2013). Development of a Spatial and Temporal Agent-Based Model for Studying Water and Health Relationships: The Case Study of Two Villages in Limpopo, South Africa. Journal of Artificial Societies and Social Simulation (JASSS), 16 (4): 3. [HTML] (Oct 2013)", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37176, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "de Senna Carneiro, T. G., de Andrade, P. R., C\u00e2mara, G., Monteiro, A. M. V., & Pereira, R. R. (2013). An extensible toolbox for modeling nature\u2013society interactions. Environmental Modelling & Software, 46, 104-117.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37177, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "de Siqueira Braga, D., Alves, F. O. M., Menezes, L. C. D. S., & de Lima Neto, F. B. (2013, September). Tools for Social Simulation-What Is Missing?. In 2013 BRICS Congress on Computational Intelligence and 11th Brazilian Congress on Computational Intelligence (pp. 651-652). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37178, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "De Zeeuw, A., Craig, T., & You, H. S. (2013, October). Assessing conceptual understanding in mathematics. In 2013 IEEE Frontiers in Education Conference (FIE) (pp. 1742-1744). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Mathematics" + }, + { + "id": 37179, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Dijkstra, J., & Jessurun, A. J. (2013). Modeling planned and unplanned store stops for the scenario based simulation of pedestrian activity in city centers. In Proceedings of the Fifth International Conference on Advances in System Simulation (SIMUL2013) (Vol. 27, pp. 1-22).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37180, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Dixit, S. K., & Sachan, D. (2013). A Web Service Selection Model using Cognitive Parameters. International Journal of Computer Applications, 73(21).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37181, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Dong, S. X., Tang, L. A., & Shao, Z. Z. (2013). Research on Evolution Simulation of Technology Innovation Community in High-tech Zone. In Applied Mechanics and Materials (Vol. 411, pp. 2472-2476). Trans Tech Publications Ltd.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Evolution, Technology, Materials Science, Mechanics" + }, + { + "id": 37182, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Drogoul, A., Amouroux, E., Caillou, P., Gaudou, B., Grignard, A., Marilleau, N., ... & Zucker, J. D. (2013, May). Gama: multi-level and complex environment for agent-based models and simulations. In 12th International Conference on Autonomous agents and multi-agent systems (pp. 2-p). Ifaamas.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 37183, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Duarte Olson, I. (2013). Cultural Differences Between Favela and Asfalto in Complex Systems Thinking. Journal of Cognition and Culture, 13(1-2), 145-157. doi:10.1163/15685373-12342089 [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 37184, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Duarte Olson, I. (2013). Inequality in Levels: Navigating Everyday Complexity. In Ojalehto,B., Medin, D. Conceptualizing Complex Systems: How People Navigate Social and Ecological Systems. Symposium accepted to the Society for Anthropological Sciences Meeting.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Social Science" + }, + { + "id": 37185, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Duarte Olson, I. (2013). \"It's like an epidemic, it catches on\": Community Knowledge of Everyday Complex Phenomena. In C. Lee and G. Saxe. (Co-chairs). Capitalizing on Knowledge Co-Constructed via the Praxis of Historically Nondominant Groups. Symposium accepted to the American Educational Research Association Conference.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37186, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Duckham, M. (2013). Decentralized Spatial Computing: Foundations of Geosensor Networks.Springer. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Geosensor Networks" + }, + { + "id": 37187, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Duckham, M. (2013). Simulating Scalable Decentralized Spatial Algorithms. In Decentralized Spatial Computing (pp. 209-244). Springer, Berlin, Heidelberg.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulating Scalable Decentralized Spatial Algorithms" + }, + { + "id": 37188, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Dykstra, P., Elsenbroich, C., Jager W., de Lavalette, G. R., & Verbrugge, R. (2013). Put Your Money Where Your Mouth Is: DIAL, A Dialogical Model for Opinion Dynamics. Journal of Artificial Societies and Social Simulation (JASSS), 16 (3): 4. [HTML] (June 2013)", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37189, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Ekmekci, O. (2013). INFLUENCE OF INTERPROFESSIONAL EDUCATION ON REDUCING STEREOTYPING AND INCREASING COLLABORATIVE BEHAVIOR IN HEALTH CARE TEAMS. In INTED2013 Proceedings (pp. 3771-3776). IATED.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37190, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Em\u00edlio Almeida, J., Kokkinogenis, Z., & Rossetti, R. J. (2013). NetLogo implementation of an evacuation scenario. arXiv, arXiv-1303.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37191, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Ferguson, J. (2013, January). Collecting and Managing Multiple Video Data Sources for Visual Semiotic Analysis of Science Students\u2019 Reasoning with Digital Representations. In Proceedings of the 2013 Contemporary Approaches to Research in Mathematics, Science, Health and Environmental Education Symposium (pp. 1-9). Centre for Research in Educational Futures and Innovation, Deakin University.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37192, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Fioretti, G. (2013). Romulus-Catalin Damaceanu: Agent-based computational economics using netlogo.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Economics" + }, + { + "id": 37193, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Flores-Parra, J. M. (2013). W\u00edinik: Towards an Agent-Based Simulation Design Tool for Distributed Agency and Cognitive Software Agents. In Proceedings of the 12th International Conference on Autonomous Agents and Multiagent Systems (AA-MAS 2013).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Economics, Sociology, Psychology" + }, + { + "id": 37194, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Forbey, J. S. (2013). Individual-based modeling for the masses. Ecology, 94(1), 260-262.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37195, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Fotuhi, F., Huynh, N., Vidal, J. M., & Xie, Y. (2013). Modeling yard crane operators as reinforcement learning agents. Research in transportation economics, 42(1), 3-12.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Reinforcement Learning, Economics" + }, + { + "id": 37196, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Frank, B.M. & Baret, P.V. (2013). \"Simulating brown trout demogenetics in a river/nursery brook system: The individual-based model DemGenTrout.\" Ecological Modelling, 248, 184-202. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37197, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Frey, S. & Goldstone, R.L. (2013). Cyclic game dynamics driven by iterated reasoning. PLOS ONE, 8(2): 2-11. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Social Science, Education, Epidemiology" + }, + { + "id": 37198, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Furtado, P., Fakhfakh, R., Frayret, J. M., & Biard, P. (2013, October). Simulation of a Physical Internet\u2014Based transportation network. In Proceedings of 2013 International Conference on Industrial Engineering and Systems Management (IESM) (pp. 1-8). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Physics, Computer Science, Economics" + }, + { + "id": 37199, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Galic, N., G. M. Hengeveld, P. J. Van den Brink, A. Schmolke, P. Thorbek, E. Bruns, & H. M. Baveco. (2013). Persistence of Aquatic Insects across Managed Landscapes: Effects of Landscape Permeability on Re-Colonization and Population Recovery. PLoS ONE 8:e54584.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Landscape Ecology, Ecology, Computer Science, Economics, Archaeology, Physics, Chemistry, Urban Studies, Social Science" + }, + { + "id": 37200, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Ghorbani, A., Bots, P., Dignum, V. and Dijkema, G. (2013). MAIA: a Framework for Developing Agent-Based Social Simulations. Journal of Artificial Societies and Social Simulation (JASSS), 16 (2): 9. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37201, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Ghosh, S., Dutta, A., Mascardi, V., & Briola, D. (2013, September). Exploiting MAS-Based Simulation to Improve the Indian Railways\u2019 Efficiency. In German Conference on Multiagent System Technologies (pp. 278-291). Springer, Berlin, Heidelberg.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Mathematics, Miscellaneous" + }, + { + "id": 37202, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Ginovart, M. (2013). Discovering the Power of Individual-Based Modelling in Teaching and Learning: The Study of a Predator-Prey System. Journal of Science Education and Technology (JSET). [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37203, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Ginovart Gisbert, M. (2013). A simple discrete simulation model to explore in the classroom some rules involved in the decision-making process: the cellular automata. Hellenic Mathematical Society International Journal for Mathematics in Education, 5, 3-23.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Computer Science" + }, + { + "id": 37204, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Gkiolmas, A., Karamanos, K., Chalkidis, A., Skordoulis, C., Papaconstantinou, M., & Stavrou, D. (2013). Using Simulations of NetLogo as a Tool for Introducing Greek High-School Students to Eco-Systemic Thinking. Advances In Systems Science and Applications, 13(3), 275-297. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Simulation, Systems Science, Computer Science" + }, + { + "id": 37205, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Gr\u00fcter, C., Sch\u00fcrch, R., Farina, W.M. (2013). Task-partitioning in insect societies: Non-random direct material transfers affect both colony efficiency and information flow. J. Theor. Biol., 327, 23\u201333. doi:10.1016/j.jtbi.2013.02.013", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37206, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Guerin, A. J., Jackson, A. C., & Youngson, A. F. (2013). An agent-based model of Atlantic salmon migration in Scottish coastal waters.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37207, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Guerreiro, O., Ferreira, M., Cascalho, J., & Borges, P. (2013, September). Towards an Agent Based Modeling: The prediction and prevention of the spread of the drywood termite Cryptotermes brevis. In Portuguese Conference on Artificial Intelligence (pp. 480-491). Springer, Berlin, Heidelberg.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Prediction, Prevention, Modeling" + }, + { + "id": 37208, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Guerrero, D.A., Jimenez, R.M., & Rodriguez-Colina, E. (2013). WSN simulation model with a complex systems approach. In Proceedings of the 2013 Summer Computer Simulation Conference (SCSC '13), Article No. 41. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "WSN" + }, + { + "id": 37209, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Gulden, T. R. (2013). Agent-Based Modeling as a Tool for Trade and Development Theory. Journal of Artificial Societies and Social Simulation (JASSS), 16 (2): 1. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37210, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "GUO, L. B., LUO, X. X., & ZHU, M. X. (2013). An evolutionary game model in mobile business commerce customer trust. Journal of Theoretical & Applied Information Technology, 48(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37211, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Hajebi, S., Barrett, S., Clarke, A., & Clarke, S. (2013). Multi-agent simulation to support water distribution network partitioning.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37212, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Halter, C., & Levin, J. (2013). Multi-mediator models of new teacher learning through creating multimedia. Paper presented at the 2013 American Educational Research Association meetings. San Francisco, CA. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37213, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Hang, L. U. O. (2013). Multi-Agent Simulation Research on Urban Agglomeration Integrationand Local Government Interaction. Journal of Dalian University of Technology (Social Sciences), (2), 10.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37214, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Hart, D. (2013). A general education simulation and modeling course to stimulate interest in science. Journal of Computing Sciences in Colleges, 28(6), 84-89.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, History, Social Science, Education" + }, + { + "id": 37215, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Hasson, S. T., & Al-Najar, A. A. M. (2013). Performance Evaluation of Breera Using Net Logo Simulator.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 37216, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Hayes, B. (2013). The math of segregation. American Scientist, 101(5), 338-341.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37217, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Heckbert, S. (2013). MayaSim: An Agent-Based Model of the Ancient Maya Social-Ecological System. Journal of Artificial Societies and Social Simulation (JASSS), 16 (4): 11. [HTML] (Oct 2013)", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 37218, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Hirsh, A., & Levy, S. T. (2013). Biking with particles: Junior triathletes\u2019 learning about drafting through exploring agent-based models and inventing new tactics. Technology, Knowledge and Learning, 18(1-2), 9-37.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37219, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Hogg, C. J., Keith, R. L., & Tenney, C. M. (2013). Neighborhood Evacuation Model (No. SAND2013-7633P). Sandia National Lab.(SNL-NM), Albuquerque, NM (United States).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37220, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Holst, N. (2013). A universal simulator for ecological models. Ecological Informatics, 13, 70-76.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology" + }, + { + "id": 37221, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Hongtao, X., Lincheng, S., Huayong, Z., Daibing, Z., & Xiaojia, X. (2013, January). Multi-Agent Coevolutionary Learning Method Based on Individual Rule Set. In 2013 Third International Conference on Intelligent System Design and Engineering Applications (pp. 978-981). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37222, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Huang, L., Deng, S., Li, Y., Wu, J., Yin, J., & Li, G. (2013). A trust evaluation mechanism for collaboration of data-intensive services in cloud. Applied Mathematics & Information Sciences, 7(1L), 121-129.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37223, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Hui, L. I. U. (2013). A NetLogo Simulation Study of the Entry and Exit Behavior of Entrepreneurial Team Members. Journal of Wuyi University (Natural Science Edition), (2), 10.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37224, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Iandoli, L., Marchione, E., Ponsiglione, C., & Zollo, G. (2013). Learning and structural properties in small firms\u2019 networks: a computational agent-based model. Research in Economics and Business: Central and Eastern Europe, 1(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37225, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Ilyas, Q. M. (2013). A netlogo model for ramy al-jamarat in hajj. Journal of Basic and Applied Scientific Research, 3(12), 199-209.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 37226, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Izquierdo, L.R., Izquierdo, S.S., Gal\u00e1n, J.M. & Santos, J.I. (2013). Combining Mathematical and Simulation Approaches to Understand the Dynamics of Computer Models. In Simulating Social Complexity: A Handbook. Series: Understanding Complex Systems. Springer-Verlag, pp. 235-271. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Mathematics, Simulation, Complex Systems, Social Science" + }, + { + "id": 37227, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Jano\u0161ek, M., & Farana, R. (2013). Traffic Lights Strategy Adaptation. American Journal of Mechanical Engineering, 1(7), 226-230.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Traffic Lights Strategy Adaptation" + }, + { + "id": 37228, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Jano\u0161ek, M., Kocian, V., & Voln\u00e1, E. (2013). Complex System Simulation Parameters Settings Methodology. In Nostradamus 2013: Prediction, Modeling and Analysis of Complex Systems (pp. 413-422). Springer, Heidelberg.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37229, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Jansson, F. (2013). Pitfalls in Spatial Modelling of Ethnocentrism: A Simulation Analysis of the Model of Hammond and Axelrod. Journal of Artificial Societies and Social Simulation (JASSS), 16 (3): 2. [HTML] (June 2013)", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37230, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Jaye, M., & Burks, R. (2013). Docking Two Models of Insurgency Growth. International Journal of Operations Research and Information Systems (IJORIS), 4(3), 19-30.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37231, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Johnson, J. F., & Hoe, D. H. (2013, July). Designing an agent based model for the efficient removal of red imported fire ant colonies. In Proceedings of the 2013 Summer Computer Simulation Conference (pp. 1-7).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 37232, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Jordan, R. C., Hmelo-Silver, C., Liu, L., & Gray, S. A. (2013). Fostering reasoning about complex systems: using the aquarium to teach systems thinking. Applied Environmental Education & Communication, 12(1), 55-64.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Social Science, Education" + }, + { + "id": 37233, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Junges, R., & Kl\u00fcgl, F. (2013). Learning tools for agent-based modeling and simulation. KI-K\u00fcnstliche Intelligenz, 27(3), 273-280.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37234, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Kasmire, J., Nikolic, I., & Dijkema, G. (2013). Evolving Greenhouses: An Agent-Based Model of Universal Darwinism in Greenhouse Horticulture. Journal of Artificial Societies and Social Simulation (JASSS), 16 (4): 7. [HTML] (Oct 2013)", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Agent-Based Modeling" + }, + { + "id": 37235, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Kazak, S. (2013). Modeling random binomial rabbit hops. In Modeling Students' Mathematical Modeling Competencies (pp. 561-570). Springer, Dordrecht.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Modeling" + }, + { + "id": 37236, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Kennedy, W. G., & Harrison, J. F. (2013). Towards Representing Disasters in Computational Social Simulations.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37237, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Kim, Y., Zhong, W., and Chun, Y. (2013). Modeling Sanction Choices on Fraudulent Benefit Exchanges in Public Service Delivery. Journal of Artificial Societies and Social Simulation (JASSS), 16 (2): 8. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37238, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Kiourt, C., & Kalles, D. (2013, September). Building a social multi-agent system simulation management toolbox. In Proceedings of the 6th Balkan Conference in Informatics (pp. 66-70).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37239, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Kokkinogenis, Z., Almeida, J. E., & Rossetti, R. J. (2013). NetLogo implementation for Crowd Evacuation. In MECC 2013\u2013International Conference and Advanced School Planet Earth, Mathematics of Energy and Climate Change.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Archaeology, Miscellaneous" + }, + { + "id": 37240, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Kononova, K., & L\u00f3pez-S\u00e1nchez, M. (2013, October). Evolutionary Processes in Economics: Multi-Agent Model of Macrogenerations Dynamics. In CCIA (pp. 311-315).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics" + }, + { + "id": 37241, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Koohborfardhaghighi, S., & Kim, J. (2013). Using structural information for distributed recommendation in a social network. Applied intelligence, 38(2), 255-266.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Structural information" + }, + { + "id": 37242, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Kovalev, A. (2013). Stochastic simulation model of employment and migration.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Stochastic simulation" + }, + { + "id": 37243, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Kurniawan, F. (2013, November). Completion camper reaver game scenario in 3D view with uninformed search methode using Netlogo software.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Netlogo" + }, + { + "id": 37244, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Lam, C. Y., Lin, J., Sim, M. S., & Tai, K. (2013). Identifying vulnerabilities in critical infrastructures by network analysis. International journal of critical infrastructures, 9(3), 190-210.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Network Analysis, Critical Infrastructures, Infrastructure, Cybersecurity, Computer Science, Ecology" + }, + { + "id": 37245, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "LE, Y., ZHANG, B., GUAN, X. J., & LI, Y. K. (2013). Research of the Relationship between Government Investment Projects Institutions and Behavioral Strategies Based on Evolutionary Game Theory. Journal of Engineering Management, (3), 10.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37246, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Lee, J. K., & Park, J. W. (2013). A Study on the Calculation of Pedestrian\u2019s Conflict Index Using Multi-Agent Based Model (Multi-ABM)-Focused on the Netlogo Simulation Model. Journal of Korea Transport Institute, 20(4), 105-116.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37247, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Lee, K., Kim, S., Kim, C. O., & Park, T. (2013). An agent-based competitive product diffusion model for the estimation and sensitivity analysis of social network structure and purchase time distribution. Journal of Artificial Socities and Social Simulation, 16(1). doi.org/10.18564/jasss.2080", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Agent-based competitive product diffusion model" + }, + { + "id": 37248, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Lee, M., Kim, S., Kim, C-O, Park, T. (2013). An Agent-Based Competitive Product Diffusion Model for the Estimation and Sensitivity Analysis of Social Network Structure and Purchase Time Distribution. Journal of Artificial Societies and Social Simulation, 16 (1): 3 [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37249, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Lee, S. J., Lee, K. H., & Kang, S. J. (2013). Study on a pedestrian simulation model of natural movement. Journal of Asian Architecture and Building Engineering, 12(1), 41-48.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37250, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Lee, T., Yao, R. (2013). Incorporating technology buying behaviour into UK-based long term domestic stock energy models to provide improved policy analysis. Energy Policy, 52, 63\u201372. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37251, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Levin, J., & Halter, C. (2013). Creating and using multimedia as artifacts for mediating learning.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37252, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Li, C., & Zhang, P. (2013, July). Bidding Strategies and Equity Auction Based on Social Network. In 2nd International Conference on Science and Social Research (ICSSR 2013). Atlantis Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37253, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Li, N. W., Huang, J. T., & Niu, L. X. (2013). Evolutionary model of miners\u2019 violation behavior based on multi-agent simulation. China Saf. Sci. J, 23(11), 10-15.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Evolutionary model" + }, + { + "id": 37254, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Liao, S. L., & Lai, J. Z. (2013). Research on Modeling and Simulation of Complex Adaptive Systems Based on Multi-Agent. In Advanced Materials Research (Vol. 756, pp. 4497-4501). Trans Tech Publications Ltd.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Simulation, Complex Adaptive Systems" + }, + { + "id": 37255, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Liu, C., Sibly, R.M., Grimm, V. & Thorbek, P. (2013). Linking pesticide exposure and spatial dynamics: an individual-based model of wood mouse (Apodemus sylvaticus) populations in agricultural landscapes. Ecological Modelling, 248, 92-102. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Spatial Dynamics, Modeling" + }, + { + "id": 37256, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Liu, H., Chen, X., & Zhang, B. (2013). An approach for the accurate measurement of social morality levels. PloS one, 8(11), e79852.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37257, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Liu, H., & Silva, E. A. (2013). Simulating the dynamics between the development of creative industries and urban spatial structure: an agent-based model. In Planning support systems for sustainable urban development (pp. 51-72). Springer, Berlin, Heidelberg.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37258, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Liu, S., Dong, S. H., & An, Q. H. (2013). Research on Public Transportation Based on Complex Network and Multi-Agent Simulation. In Applied Mechanics and Materials (Vol. 364, pp. 183-187). Trans Tech Publications Ltd.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37259, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Liu, Y. (2013). Relationship between industrial firms, high-carbon and low-carbon energy: An agent-based simulation approach. Applied Mathematics and Computation, 219(14), 7472-7479.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Industrial Firms, Energy, Simulation, Agent-Based Modeling" + }, + { + "id": 37260, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "LIU, Z. D., & JIANG, C. H. (2013). Study on the association of safety production and economic development based on NetLogo platform [J]. Journal of Safety and Environment, 4.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Computer Science, Miscellaneous" + }, + { + "id": 37261, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Ma, Y., Shen, Z., & Kawakami, M. (2013). Agent-Based Simulation of Residential Promoting Policy Effects on Downtown Revitalization. Journal of Artificial Societies and Social Simulation (JASSS), 16 (2): 2. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37262, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Madani, A. (2013). An agent based simulation model for warning messages dissemination in a vehicular ad hoc network. International Journal on Computer Science and Engineering, 5(11), 914.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Ecology, Urban Studies" + }, + { + "id": 37263, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Madey, A. G. (2013). Unmanned Aerial Vehicle Swarms: The Design and Evaluation of Command and Control Strategies using Agent-Based Modeling. International Journal of Agent Technologies and Systems (IJATS), 5(3), 1-13.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Agent-Based Modeling" + }, + { + "id": 37264, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Madey, A. G., & Madey, G. R. (2013, April). Design and evaluation of UAV swarm command and control strategies. In Proceedings of the Agent-Directed Simulation Symposium (pp. 1-8).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37265, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Malik, A.A., Crooks, A.T., & Root, H.L. (2013). \u201cCan Pakistan have Creative Cities? An Agent Based Modeling Approach with Preliminary Application to Karachi.\u201d Pakistan Strategy Support Program Working Paper 13, International Food Policy Research Institute (IFPRI), Washington, D.C. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37266, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Manzo, G. (2013). \u201cEducational Choices and Social Interactions: A Formal Model and A Computational Test.\u201d Comparative Social Research, 30, 47-100. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Social Science, Computer Science" + }, + { + "id": 37267, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Martin, B.T., Jager, T., Preuss, T., Nisbet, R. & Grimm, V. (2013). Predicting population dynamics from the properties of individuals: a test of Dynamic Energy Budget theory. American Naturalist 18(4), 506-519 [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37268, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Mas, E., Adriano, B., & Koshimura, S. (2013). An integrated simulation of tsunami hazard and human evacuation in La Punta, Peru. Journal of Disaster Research, 8(2), 285-295. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Disaster Research" + }, + { + "id": 37269, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Meister, T., Thenius, R., Kengyel, D., & Schmickl, T. (2013, September). Cooperation of two different swarms controlled by BEECLUST algorithm. In Artificial Life Conference Proceedings 13 (pp. 1124-1125). One Rogers Street, Cambridge, MA 02142-1209 USA journals-info@ mit. edu: MIT Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Artificial Life, Algorithm" + }, + { + "id": 37270, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Mian, Z. T., Hall, L. A., & Mavris, D. N. (2013). Screening Level Mission Modeling and Simulation of Micro Autonomous Systems and Technologies. In AIAA Modeling and Simulation Technologies (MST) Conference (p. 4592).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling and Simulation, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37271, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Michel, F. (2013). Translating Agent Perception Computations into Environmental Processes in Multi\u2010Agent\u2010Based Simulations: A means for Integrating Graphics Processing Unit Programming within Usual Agent\u2010Based Simulation Platforms. Systems Research and Behavioral Science, 30(6), 703-715.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computing, Computer Science, Ecology, Simulation, Graphics Processing Unit Programming" + }, + { + "id": 37272, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Mili\u0107evi\u0107, D., Blagojevi\u0107, B., & Trajkovi\u0107, S. (2013). Agent-based study of stormwater reuse system operational capabilities during drought.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37273, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Minichino, M., & Ciancamerla, E. (2013). Modeling cyber attacks on a critical infrastructure scenario. In 4th International Conference on Information, Intelligence, Systems and Applications, IISA 2013.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37274, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Minichino, M., & Ciancamerla, E. (2013). Modelling SCADA and corporate network of a medium voltage power grid under cyber attacks. In 10th International Conference on Security and Cryptography, SECRYPT 2013-Part of 10th International Joint Conference on E-Business and Telecommunications, ICETE 2013.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "SCCryptography" + }, + { + "id": 37275, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Morariu, C., Morariu, O., & Borangiu, T. (2013). Customer order management in service oriented holonic manufacturing. Computers in Industry, 64(8), 1061-1072.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37276, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Moreno, F., Guzm\u00e1n, J., & G\u00f3mez, S. (2013). A formal model to identify patterns of movement in sets of moving objects. MODELLING FOR ENGINEERING AND HUMAN BEHAVIOUR 2013, 106.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Modeling for Engineering and Human Behavior" + }, + { + "id": 37277, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Mota, F. P., Dimuro, G. P., Rosa, V., & Botelho, S. S. D. C. (2013, May). Simulating the impacts of the energy consumption using multi-agent systems. In International Conference on Practical Applications of Agents and Multi-Agent Systems (pp. 399-404). Springer, Berlin, Heidelberg.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37278, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Mota, F. P., Rosa, V., Botelho, S. S. D. C., Santos, I., & Dimuro, G. (2013, September). Simulating the Consumers' Energy Profiles Using Multiagent Systems. In 2013 BRICS Congress on Computational Intelligence and 11th Brazilian Congress on Computational Intelligence (pp. 394-401). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37279, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Murimi, R. (2013, October). Sparking creativity in computer science for interdisciplinary students. In 2013 IEEE Frontiers in Education Conference (FIE) (pp. 1111-1112). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 37280, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Muscalagiu, I. (2013). MAS NetLogo Models-a. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37281, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Muscalagiu, I., Illes, C., & Popa, H.E. (2013). Large Scale Multi-Agent-Based Simulation using NetLogo for the multi-robot exploration problem. In IEEE 11th International Conference on Industrial Informatics, Bochum, Germany, pp. 225-230. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37282, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Muscalagiu, I., Muscalagiu, D. M., Berdie, A., & P\u0103noiu, M. (2013). Modeling of the Protein Folding Problem Using Distributed Constraint Optimization. Global Journal on Technology, 3.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37283, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Muscalagiu, I., Popa, H. E., Panoiu, M., & Negru, V. (2013, September). Multi-agent systems applied in the modelling and simulation of the protein folding problem using distributed constraints. In German Conference on Multiagent System Technologies (pp. 346-360). Springer, Berlin, Heidelberg.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Computer Science, Physics, Chemistry" + }, + { + "id": 37284, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Muscalagiu, I., Popa, H.E., & Vidal, J. (2013). Clustered Computing with NetLogo for the evaluation of asynchronous search techniques. In proceedings of 12th IEEE International Conference on Intelligent Software Methodologies, Tools and Techniques (SOMET 2013) (pp. 115-120). Budapest. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 37285, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Muscalagiu, I., Popa, H.E., & Vidal, J. (2013). Large Scale Multi-Agent-Based Simulation using NetLogo for implementation and evaluation of the distributed constraints. In proceedings of IJCAI \u2013 DCR 2013, 23rd International Joint Conference on Artificial Intelligence - Workshop on Distributed Constraint Reasoning, Beijing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Archaeology, Social Science, Education" + }, + { + "id": 37286, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Na, Y. G., Lee, S., & Joh, C. H. (2013). A Study on Relationships between Travel Time and Provision of Road Inundation Information in Heavy Rain and Snow using an Agent-based Simulation Model. Journal of the Economic Geographical Society of Korea, 16(2), 262-274.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37287, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Nava, R., & Wilhelmy, R. (2013). Multiagent modeling of a hunter-prey scenario using ContractNET.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 37288, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Newman, S. D., & Soylu, F. (2013). The impact of finger counting habits on arithmetic in adults and children. Psychological research, 1-8. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Arithmetic, Psychology" + }, + { + "id": 37289, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Olaya, S. S., & D\u00edaz, S. R. Integrated Household Solid Waste Management Simulator.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37290, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Ol\u0161evi\u010dov\u00e1, K., & Cimler, R. (2013, July). Simulation of Visitor Flow Management with Context-based Information System. In Workshop Proceedings of the 9th International Conference on Intelligent Environments (Vol. 17, p. 386). IOS Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37291, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Ol\u0161evi\u010dov\u00e1, K., Cimler, R., & Mach\u00e1lek, T. (2013). Agent-based model of celtic population growth: Netlogo and python. In Advanced Methods for Computational Collective Intelligence (pp. 135-143). Springer, Berlin, Heidelberg.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37292, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "O'Neil, D. A., & Petty, M. D. (2013). Organizational simulation for model based systems engineering. Procedia Computer Science, 16, 323-332.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37293, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Otcenaskova, T. (2013). Management of biological and chemical incidents: simulation-based decision support. Scientia Agriculturae Bohemica (Czech Republic).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Decision Support" + }, + { + "id": 37294, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Ozik, J., Collier, N. T., Murphy, J. T., & North, M. J. (2013, December). The ReLogo agent-based modeling language. In 2013 Winter Simulations Conference (WSC) (pp. 1560-1568). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37295, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Pallant, A., Damelin, D., & Pryputniewicz, S. (2013). Deep space detectives. The Science Teacher, 80(2), 45.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37296, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Pallant, A., Damelin, D., & Pryputniewicz, S. (2013). Searching for planets suitable for life. The Science Teacher, 80(2), 45.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37297, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Paolucci, M., & Vicidomini, L. (2013, August). A Distributed Simulation of Roost-Based Selection for Altruistic Behavior in Vampire Bats. In European Conference on Parallel Processing (pp. 575-584). Springer, Berlin, Heidelberg.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science" + }, + { + "id": 37298, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Passos, G.F., & Chamovitz, I. (2013). Modelo De Responsabilidade Organizacional, Aplicado Em Empresa P\u00fablica De Tecnologia Da Informa\u00e7\u00e3o E Fundamentado Em Din\u00e2mica De Sistemas. In: IX Congresso Nacional de Excel\u00eancia em Gest\u00e3o \u2013 CNEG 2013, 2013, Rio de Janeiro \u2013 RJ. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Management" + }, + { + "id": 37299, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Passos, G.F., Chamovitz, I., Theodoulidis, B. (2013).Organizational Responsibility Model: Dealing with Demand for Services Higher Than Installed Capacity. In: Systems, Man, and Cybernetics (SMC), 2013 IEEE International Conference on. IEEE, 2013. p. 4415-4420. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Organizational Responsibility Model" + }, + { + "id": 37300, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Pennisi, Marzio; Rajput, Abdul-Mateen; Pappalardo, Francesco; Toldo, Luca Pennisi, M.; Rajput, A.; Toldo, L.; Pappalardo, F. (2013). Agent based modeling of Treg-Teff cross regulation in relapsing-remitting multiple sclerosis. Bio Med Central [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Social Science, Education, Epidemiology" + }, + { + "id": 37301, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Petreska, I., & Stamatopoulou, I. (2013, September). A comparative study of tools for visualisation of state-based spatial multi-agent models. In Proceedings of the 6th Balkan Conference in Informatics (pp. 53-60).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Visualization, Spatial Modeling, Computer Science, Archaeology" + }, + { + "id": 37302, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Piau, P., Siang, A. K., & Labadin, J. (2013, July). An epidemic aggregate and individual-based model in a patchy environment. In 2013 8th International Conference on Information Technology in Asia (CITA) (pp. 1-5). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 37303, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Pinacho, P., Pau, I., Chac\u00f3n, M., S\u00e1nchez, S. (2013). An ecological approach to anomaly detection: The EIA model. Artifical Immune Systems: Lecture Notes in Computer Science, Vol. 7597, 2012. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37304, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Pontoppidan, M.B., & Nachman, G. (2013). Changes in behavioural responses to infrastructure affect local and regional connectivity - A simulation study on pond breeding amphibians. Nature Conservation, 5, 13-28. doi: 10.3897/natureconservation.5.4611", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Simulation" + }, + { + "id": 37305, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Pontoppidan, M.B., & Nachman, G. (2013). Effects of within-patch heterogeneity on connectivity in pond-breeding amphibians studied by means of an individual-based model. Web Ecol., 13, 21-29, doi:10.5194/we-13-21-2013", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Modeling" + }, + { + "id": 37306, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Pontoppidan, M.B., & Nachman, G. (2013). Spatial Amphibian Impact Assessment - A management tool for assessment of road effects on regional populations of Moor frogs (Rana arvalis). Nature Conservation, 5, 29-52. doi: 10.3897/natureconservation.5.4612", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Management" + }, + { + "id": 37307, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Purnomo, H., Suyamto, D., & Irawati, R. H. (2013). Harnessing the climate commons: an agent-based modelling approach to making reducing emission from deforestation and degradation (REDD)+ work. Mitigation and Adaptation Strategies for Global Change, 18(4), 471-489.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Climate Change, Modeling" + }, + { + "id": 37308, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Qin, Y., Jim, G., Min, L., & Yao, Y. (2013, April). Micro Behavior Information Decision Research in An ABM Traffic and Energy Model. In 2013 IEEE Green Technologies Conference (GreenTech) (pp. 22-27). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Mathematics, Miscellaneous" + }, + { + "id": 37309, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Ratamero, E. M. (2013). Modelling Peloton Dynamics in Competitive Cycling: A Quantitative Approach. In Sports Science Research and Technology Support (pp. 42-56). Springer International Publishing. (DOI 10.1007/978-3-319-17548-5_4).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modelling" + }, + { + "id": 37310, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Rebaudo, F., & Dangles, O. (2013). An agent-based modeling framework for integrated pest management dissemination programs. Environmental modelling & software, 45, 141-149.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37311, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "REN, K., & PU, J. Y. (2013). The parameterized simulation methods of the flame control of a new firefighting training devices. Fire Science and Technology, (8), 34.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Firefighting" + }, + { + "id": 37312, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Reuillon, R., Leclaire, M., & Rey-Coyrehourcq, S. (2013). OpenMOLE, a workflow engine specifically tailored for the distributed exploration of simulation models. Future Generation Computer Systems, 29(8), 1981-1990.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37313, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Rogers, K., Jenkin, T. A., Corbett, J., & Webster, J. (2013, January). The effects of'green'on IT/S projects: Recycling the garbage can model. In 2013 46th Hawaii International Conference on System Sciences (pp. 974-983). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37314, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Roman, B. (2013).An Agent-based Model for the Humanities. Digital Humanities Quarterly, 7 (1). [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 37315, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "RU, B. F., & ZHANG, C. L. (2013). Simulation on credit evolutionary of business cooperation based on small world network. Application Research of Computers, (12), 13.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37316, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Ruoyu, L., & Weijie, Z. (2013). The Simulation Research of Multi-agent Innovation Performance. Science & Technology Progress and Policy, 2013(21), 2.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37317, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Rush, R., Daugherty, A., Raulie, R., & Rush, D. (2013). Team Members.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 37318, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Russell, J. E. (2013). Using a retail location game to explore Hotelling\u2019s Principle of Minimum Differentiation. Business Education Innovation Journal, 5(2), 48-52.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37319, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Ryder, E. F., Boyd, J. R., Marsden, T. B., Sullender, M. E., Reider, D., & White, B. T. (2013). Modeling from molecules to moose: teaching students to develop agent-based simulations in biology, Supercomputing Conference 2013 (SC13), Denver, CO, United States.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Miscellaneous" + }, + { + "id": 37320, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Samon, S., & Levy, S. T. (2013, April). What Does a Complex Systems Perspective Offer Science Learning? Junior High-\u2010school Students\u2019 Learning of Chemical Systems with an Agent-\u2010based Viewpoint versus a Disciplinary Viewpoint. In The Annual meeting of the American Educational Research Association.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Social Science, Education, Epidemiology" + }, + { + "id": 37321, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Sanzgiri, A., Hughes, A., & Upadhyaya, S. (2013, September). Analysis of malware propagation in Twitter. In 2013 IEEE 32nd International Symposium on Reliable Distributed Systems (pp. 195-204). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Malware, Computer Science, Ecology, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37322, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Sathasivam, S., Ng, P. F., & Hamadneh, N. (2013). Developing agent based modelling for reverse analysis method. Journal of Applied Sciences, Engineering and Technology, 6(22), 4281-4288.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37323, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Sengupta, P., Kinnebrew, J. S., et al. (2013). Integrating computational thinking with K-12 science education using agent-based computation: A theoretical framework. [HTML] (Jan 2013)", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 37324, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Shanshan, W., & Chunxiao, Z. (2013, January). NetLogo Based Model for VANET Behaviors Dynamic Research. In 2013 Third International Conference on Intelligent System Design and Engineering Applications (pp. 990-993). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37325, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Sharma, R., Tiwari, A. K., & Kumar, G. S. (2013, April). Novel modeling paradigm for the algal production of biofuel. In 2013 5th International Conference on Modeling, Simulation and Applied Optimization (ICMSAO) (pp. 1-6). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Computer Science, Economics, Physics, Chemistry, Miscellaneous" + }, + { + "id": 37326, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Shen, T., Cai, H., & Chen, X. (2013, November). Simulation Research of the Downloads Influence in Social Applications. In Proceedings of the 2013 Fifth International Conference on Multimedia Information Networking and Security (pp. 762-768).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation, Social Science" + }, + { + "id": 37327, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Shiba, N. (2013). Analysis of Asymmetric Two-Sided Matching: Agent-Based Simulation with Theorem-Proof Approach. Journal of Artificial Societies and Social Simulation (JASSS), 16 (3): 11. [HTML] (June 2013)", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Mathematics, Computer Science" + }, + { + "id": 37328, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "SHIRAFKAN, M., SETAYESHI, S., & ATAR, M. A. (2013). CHECKING OF ANTIBACTERIAL EFFECT OF NANO-ENCAPSULATED NISIN ON LISTERIA MONOCYTOGENES POPULATION IN FETA CHEESE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Chemistry" + }, + { + "id": 37329, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "SHIRAFKAN, M., SETAYESHI, S., & ATAR, M. A. (2013). CHECKING OF POPULATION OF LISTERIA MONOCYTOGENES IN FETA CHEESE DURING ITS RIPENING BY CELLULAR AUTOMATA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Cell Technology" + }, + { + "id": 37330, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Song, Y., Sun, D., & Chu, Z. (2013). Modeling and Simulation of Reliability of Collaborative Decision-making System in Nuclear Power Plant Accidents. Advances in Information Sciences and Service Sciences, 5(13), 26.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37331, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Squazzoni, F. Gandelli, C. (2013). Opening the Black-Box of Peer Review: An Agent-Based Model of Scientist Behaviour. Journal of Artificial Societies and Social Simulation (JASSS), 16 (2): 3. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Agent-Based Modeling, Computer Science, Social Science" + }, + { + "id": 37332, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Stonedahl, F., Weintrop, D., Blikstein, P., & Shannon, C. (2013, March). NetLogo: teaching with turtles and crossing curricular boundaries. In Proceeding of the 44th ACM technical symposium on Computer science education (pp. 763-763).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 37333, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Sumam, M. I., & Vani, K. (2013). Agent based evacuation simulation using leader-follower model.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37334, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Sun, Z., & M\u00fcller, D. (2013). A framework for modeling payments for ecosystem services with agent-based models, Bayesian belief networks and opinion dynamics models. Environmental modelling & software, 45, 15-28.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37335, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Szilagyi, M. N. (2013). Determination of the potential distribution of electron optical systems by agent-based simulation. Optik-International Journal for Light and Electron Optics, 124(18), 3451-3452.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Optics" + }, + { + "id": 37336, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Szilagyi, M. N. (2013). Solution of partial differential equations by agent-based simulation. European Journal of Physics, 35(1), 018003.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Physics, Mathematics" + }, + { + "id": 37337, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Talbot, K., & Hug, B. (2013). WHAT MAKES US TICK\u2026 TOCK?: USING FRUIT FLIES TO STUDY CIRCADIAN RHYTHMS. Science teacher (Normal, Ill.), 80(9), 37.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology" + }, + { + "id": 37338, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Terna, P. (2013). Review of Methodological Cognitivism: Vol. 1: Mind, Rationality, and Society.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37339, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Thierry, H., Amalric, M., Corson, N., Langlois, P., Monteil, C., Marilleau, N., & Sheeren, D. (2013, October). Linking macro and micro scales in a predator\u2010prey individual\u2010based model. In Colloque ISEM 2013: Mod\u00e9lisation des \u00e9cosyst\u00e8mes durables dans le contexte des changements globaux (pp. 22-p).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37340, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Thornburg, D. D. (2013). 5 Tech Tools for the Next Generation Science Standards: An Education Futurist Shares His Favorite Software and Hardware to Help Teach the NGSS. THE Journal (Technological Horizons In Education), 40(10), 10.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Technology, Education" + }, + { + "id": 37341, + "sort": null, + "year": 2013, + "is_ccl": true, + "reference": "Tisue, S., & Wilensky, U. (2004, updated 2013).NetLogo: Design and implementation of a multi-agent modeling environment. In Proceedings of the Agent 2004 Conference on Social Dynamics: Interaction, Reflexivity and Emergence, Chicago, Illinois, October 2004. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Archaeology, NetLogo, Social Science" + }, + { + "id": 37342, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Tomasini, M., Zambonelli,, F., & Menezes, R. (2013).Using patterns of social dynamics in the design of social networks of sensors. Green Computing and Communications (GreenCom), IEEE and Internet of Things (iThings/CPSCom), IEEE International Conference on and IEEE Cyber, Physical and Social Computing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Social Science" + }, + { + "id": 37343, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Tomasini, M., et al. (2013).Evaluating the Performance of Social Networks of Sensors under Different Mobility Models. Social Computing (SocialCom), International Conference on. IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37344, + "sort": null, + "year": 2013, + "is_ccl": true, + "reference": "Trouille, L., Beheshti, E., Horn, M., Jona, K., Kalogera, V., Weintrop, D., & Wilensky, U. (2013).Bringing Computational Thinking into the High School Science and Math Classroom. In American Astronomical Society, AAS Meeting #221, #201.09", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 37345, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Tseng, S. H., & Allen, T. T. (2013, December). A magic number versus trickle down agent-based model of tax policy. In 2013 Winter Simulations Conference (WSC) (pp. 1407-1418). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37346, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Tuker, M., Balli, S., & Pembeci, \u0130. (2013). Ant Colony Optimization In Multi-Agent Systems With NetLogo.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Ant Colony Optimization" + }, + { + "id": 37347, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Turi, D. (2013). Hardware acceleration of simulations of distributed systems.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Hardware acceleration" + }, + { + "id": 37348, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Vinatier, F., Gosme, M., & Valantin-Morison, M. (2013).Explaining host-parasitoid interactions at the landscape scale: a new approach for calibration and sensitivity analysis of complex spatio-temporal models. Landscape Ecology, 28 (2): 217-231. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Landscape Scale, Spatio-temporal Models" + }, + { + "id": 37349, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Wafda, F., Saputra, R. W., Nurdin, Y., & Munadi, K. (2013, June). Agent-based tsunami evacuation simulation for disaster education. In International Conference on ICT for Smart Society (pp. 1-4). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry" + }, + { + "id": 37350, + "sort": null, + "year": 2013, + "is_ccl": true, + "reference": "Wagh. A. & Wilensky, U. (2013).Leveling the playing field: Making multi-level evolutionary processes accessible through participatory simulations. Proceedings of CSCL, Madison, Wisconsin, June 15-19", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 37351, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Wagner, N., Agrawal, V. (2013). An agent-based simulation system for concert venue crowd evacuation modeling in the presence of a fire disaster. Expert Systems with Applications, 41(6), 2807-2815. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Ecology, Modeling" + }, + { + "id": 37352, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Waldeck, R. (2013). Segregated Cooperation. Journal of Artificial Societies and Social Simulation (JASSS), 16 (4): 14. [HTML] (Oct 2013)", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology" + }, + { + "id": 37353, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Wan, S. S., Wang, D. L., & Cao, Q. (2013). Multi-agent Based Modeling Simulation about VANET. In Advanced Materials Research (Vol. 760, pp. 680-684). Trans Tech Publications Ltd.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37354, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Wang, L., Zhang, Q., Cai, Y., Zhang, J., & Ma, Q. (2013). Simulation study of pedestrian flow in a station hall during the Spring Festival travel rush. Physica A: Statistical Mechanics and its Applications, 392(10), 2470-2478.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37355, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Weidong, W., & Xilai, L. (2013). Soil Erosion Model and Simulation of Degraded Grassland of Alpine Meadow in Sanjiangyuan Region. Environmental Science and Management, (7), 9.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Soil Erosion" + }, + { + "id": 37356, + "sort": null, + "year": 2013, + "is_ccl": true, + "reference": "Weintrop, D, Hjorth, A, & Wilensky, U. (2013).Know Your Network: Learning Social Networks Analysis Through Meaningful Manipulation. Poster presented at InfoSocial 2013. Evanston, IL, USA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37357, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Weisberg, M. (2013). Modeling Herding Behavior and Its Risks. Journal of Economic Methodology, 20, 6\u201318.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Computer Science, Miscellaneous" + }, + { + "id": 37358, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Weisberg, M. (2013). Simulation and Similarity: Using Models to Understand the World. Oxford University Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37359, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "White, D. & Levin, J. (2013). Navigating the Turbulent Waters of School Reform Guided by Complexity Theory. Paper presented at the meetings of the American Educational Research Association, San Francisco, California, USA. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37360, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Wiens, J., & Monett, D. (2013). Using BDI-extended NetLogo agents in undergraduate CS research and teaching. In Proceedings of the International Conference on Frontiers in Education: Computer Science and Computer Engineering (FECS) (p. 1). The Steering Committee of The World Congress in Computer Science, Computer Engineering and Applied Computing (WorldComp). [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science, Education" + }, + { + "id": 37361, + "sort": null, + "year": 2013, + "is_ccl": true, + "reference": "Wilensky, U. (2001, updated 2013)Modeling nature's emergent patterns with multi-agent languages. Proceedings of EuroLogo 2001. Linz, Austria. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37362, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Xiong, J., Duan, Z., & Wang, Y. (2013). Modeling and simulation of the inter-organizational knowledge transfer impact factors in industrial clusters. In The 19th International Conference on Industrial Engineering and Engineering Management (pp. 161-171). Springer, Berlin, Heidelberg.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37363, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Yang, S., Lu, M., & Ge, L. (2013, June). Bayesian Network Based Software Reliability Prediction by Dynamic Simulation. In 2013 IEEE 7th International Conference on Software Security and Reliability (pp. 13-20). IEEE [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Bayesian Network" + }, + { + "id": 37364, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Yaning, L. (2013). Legal Solutions on the Basis of Netlogo for Moral Failure. Xiamen University Law Review, (2), 11.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Law" + }, + { + "id": 37365, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Yi, S. U. (2013). The model and simulation of mass unexpected events. Journal of Liaoning Normal University (Natural Science Edition), (3), 11.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Physics, Modeling" + }, + { + "id": 37366, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Yongdan, L. (2013). Model Implementation of Wechat Public Opinion evolution based on Netlogo. Wireless connected Technology, 11, 197-198.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37367, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Yu, K. K. (2013). Evolution of Macro-generations: Multi-agent Approach. Business Inform, (10), 113-117.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 37368, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Yu, Y., Shi, Q. F., & Huang, Y. (2013). Simulation of Tacit Knowledge Sharing among Organizations Using a Cellular Automaton Model. In Applied Mechanics and Materials (Vol. 263, pp. 3184-3187). Trans Tech Publications Ltd.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Mechanics, Materials, Knowledge Sharing" + }, + { + "id": 37369, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Yuanyuan, G., & Jingyuan, D. J. Y. (2013). An agent based simulation for the adoption behavior of multi-energy. Electronic Measurement Technology, (1), 3.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Economics" + }, + { + "id": 37370, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Zaharija, G., Mladenovi\u0107, S., & Boljat, I. (2013). Introducing basic programming concepts to elementary school children. Procedia-social and behavioral sciences, 106, 1576.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Programming" + }, + { + "id": 37371, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Zeuner, R., Lopez, S., Link, A., Muehlhausen, S., & Chaney, M. (2013). Predator Mayhem.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37372, + "sort": null, + "year": 2013, + "is_ccl": false, + "reference": "Zhenjiang, S., Yan, M., & Yunfeng, L. (2013). Web-Based Decision Making Support System for Integrated Urban Water Management.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37373, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Abrahamson, D., Gutierrez, J.F., & Baddorf, A.K. (2012). Try to see it my way: the discursive function of idiosyncratic mathematical metaphor. Mathematical Thinking and Learning , 14(1), 55-80.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Economics" + }, + { + "id": 37374, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Almeida, J., Kokkinogenis, Z., & Rossetti, R. (2012). NetLogo implementation of an evacuation scenario. In the Proceedings of the 7th Iberian Conference on Information Systems and Technologies (CISTI).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37375, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Almud\u00ed, I., Fat\u00e1s-Villafranca, F. & Izquierdo, L.R. (2012). Innovation, Catch-up and Leadership in Science-Based Industries. Industrial and Corporate Change, Volume 21, Number 2, pp. 345\u2013375. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37376, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Alqithami, S., & Hexmoor, H. (2012). Rapid adaptation in computational organizations. In Proceedings on the International Conference on Artificial Intelligence (ICAI) (p. 1). The Steering Committee of The World Congress in Computer Science, Computer Engineering and Applied Computing (WorldComp).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Artificial Intelligence" + }, + { + "id": 37377, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Amato, K. R., Martin, B., Pope, A., Theiling, C., Landwehr, K., Petersen, J., ... & Sparks, R. (2012). Spatially explicit modeling of productivity in pool 5 of the Mississippi River. In Ecologist-Developed Spatially-Explicit Dynamic Landscape Models (pp. 151-170). Springer, Boston, MA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Modeling, Physics, Computer Science, Economics, History, Archaeology, Miscellaneous" + }, + { + "id": 37378, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Aristotelis, G., Anthimos, C., Kostas, K., Maria, P., & Constantine, S. (2012). A Constructionist Method for Teaching Teachers about Basic Properties of Complex Systems, using a NetLogo Model.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37379, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Arsenault, A., Nolan, J., Schoney, R., & Gilchrist, D. (2012). Outstanding in the field: Evaluating auction markets for farmland using multi-agent simulation. Journal of Artificial Societies and Social Simulation, 15(1). doi.org/10.18564/jasss.1827", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Auction Markets, Simulation, Social Science" + }, + { + "id": 37380, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Azab, A., & AlGeddawy, T. (2012). Simulation methods for changeable manufacturing. Procedia CIRP, 3, 179-184.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation" + }, + { + "id": 37381, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Babi\u0161, M., & Magula, P. (2012, September). NetLogo\u2014An alternative way of simulating mobile ad hoc networks. In 2012 5th Joint IFIP Wireless and Mobile Networking Conference (WMNC) (pp. 122-125). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Miscellaneous" + }, + { + "id": 37382, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Barth, R., Meyer, M., & Spitzner, J. (2012). Typical pitfalls of simulation modeling - Lessons learned from armed forces and business. Journal of Artificial Societies and Social Simulation, 15(2). doi.org/10.18564/jasss.1935", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation Modeling, Social Science" + }, + { + "id": 37383, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Bastianelli, G., Salamon, D., Schisano, A., & Iacobacci, A. (2012, October). Agent-based simulation of collaborative unmanned satellite vehicles. In 2012 IEEE First AESS European Conference on Satellite Telecommunications (ESTEL) (pp. 1-6). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37384, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Belbase, S., Hutchison, L. S., & Edelman, J. L. (2012, November). TECHNOLOGY INTEGRATION IN PRE-SERVICE SECONDARY MATHEMATICS TEACHER EDUCATION: PROSPECTS, PRIORITIES, AND PROBLEMS. In Psychology of Mathematics Education (p. 1142).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Psychology" + }, + { + "id": 37385, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "BenDor, T., & Westervelt, J. D. (2012). A technique for rapidly forecasting regional urban growth. In Ecologist-Developed Spatially-Explicit Dynamic Landscape Models (pp. 223-234). Springer, Boston, MA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Urban Studies" + }, + { + "id": 37386, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Berkel, S. v., Turi, D., Pruteanu, A., & Dulman, S. (2012). Automatic discovery of algorithms for multi-agent systems. Paper presented at the Proceedings of the fourteenth international conference on Genetic and evolutionary computation conference companion, Philadelphia, Pennsylvania, USA. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Algorithms, Computer Science, Genetics, Evolution, Methodology, Conference, Computation" + }, + { + "id": 37387, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Bersini, H. (2012). UML for ABM. Journal of Artificial Societies and Social Simulation, 15(1). doi.org/10.18564/jasss.1897", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "UML" + }, + { + "id": 37388, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Biondo, A. E., Rapisarda, A., & Pluchino, A. (2012). Return migration after brain drain: An agent based simulation approach (No. arXiv: 1206.4280).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Simulation" + }, + { + "id": 37389, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Braga, D. D. S., Alves, F. O. M., Neto, F. B. D. L., & Menezes, L. C. D. S. (2012, August). An aspect-oriented domain-specific language for modeling multi-agent systems in social simulations. In International Conference on Intelligent Data Engineering and Automated Learning (pp. 578-585). Springer, Berlin, Heidelberg.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37390, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Bragin, J. (2012). Book review of: Niazi, M.A., & Hussain, A. (2012). Cognitive Agent-Based Computing-I: a Unified Framework for Modeling Complex Adaptive Systems Using Agent-Based & Complex Network-Based Methods (SpringerBriefs in Cognitive Computation). Journal of Artificial Societies and Social Simulation. 16 (3) Reviews - 4 [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Cognitive Computation" + }, + { + "id": 37391, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Brandl, M., Kellner, K., & Fabian, C. (2012). Simulation and Implementation of an Attractiveness based On-Demand Routing Algorithm for Wireless Sensor Networks. Procedia Engineering, 47, 908-911.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37392, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Bure\u0161, V., \u010cech, P., & Ot\u010den\u00e1\u0161kov\u00e1, T. (2012). Proposal of simulation-based management of biological or chemical incidents as a smart solution. International Review on Computers and Software, 7(5), 2173-2178.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37393, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Burguillo-Rial, J. C., Rodriguez-Hernandez, P. S., Montenegro, E. C., & Casti\u00f1eira, F. G. (2012). History-based self-organizing traffic lights. Computing and Informatics, 28(2), 157-168.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "History, Computing" + }, + { + "id": 37394, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Burns, A., Nanayakkara, P., Courtney, J., & Roberts, T. (2012). Complex Adaptive Systems, Agent-Based Modeling and Information Assurance.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37395, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Burton, J. L., Drigo, M., Li, Y., Peralta, A., Salzer, J., Varala, K., ... & Westervelt, J. D. (2012). A model for evaluating hunting and contraception as feral hog population control methods. In Ecologist-Developed Spatially-Explicit Dynamic Landscape Models (pp. 133-150). Springer, Boston, MA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Modeling" + }, + { + "id": 37396, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Burton, J. L., Lance, R. F., Westervelt, J. D., & Leberg, P. L. (2012). An individual-based model for metapopulations on patchy landscapes-genetics and demography (IMPL-GD). In Ecologist-Developed Spatially-Explicit Dynamic Landscape Models (pp. 197-209). Springer, Boston, MA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Genetics, Demography" + }, + { + "id": 37397, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Burton, J. L., Robinson, E., & Ye, S. (2012). Spatially Explicit Agent-Based Model of Striped Newt Metapopulation Dynamics Under Precipitation and Forest Cover Scenarios. In Ecologist-Developed Spatially-Explicit Dynamic Landscape Models (pp. 63-83). Springer, Boston, MA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37398, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Cabreira, T. M., Dimuro, G. P., & de Aguiar, M. S. (2012, October). An evolutionary learning approach for robot path planning with fuzzy obstacle detection and avoidance in a multi-agent environment. In 2012 Third Brazilian Workshop on Social Simulation (pp. 60-67). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, History, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 37399, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Cabrera, E., Luque, E., Taboada, M., Epelde, F., & Iglesias, M. L. (2012, December). ABMS optimization for emergency departments. In Proceedings of the 2012 Winter Simulation Conference (WSC) (pp. 1-12). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37400, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Cadiz, R. F., & Colasso, M. (2012). Osc-netlogo: A tool for exploring the sonification of complex systems using netlogo. In ICMC.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37401, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Caillou, P., & Gil-Quijano, J. (2012, June). Simanalyzer: Automated description of groups dynamics in agent-based simulations.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37402, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "CAO, X., LIU, G. W., & YANG, Y. F. (2012). Industry Crisis Spread Analysis with Game Theory Based on Cellular Automaton. Systems Engineering, (1), 16.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37403, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Chen, L. (2012). Agent-based modeling in urban and architectural research: A brief literature review. Frontiers of Architectural Research, 1(2), 166-177.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Architecture, Research" + }, + { + "id": 37404, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Chi, J. J., Luo, X. M., Han, X. M., & Wang, B. W. (2012). Study on Simulation & Evaluation of Radar Network Operation Capability in Complex Electromagnetic Environment. In Advanced Materials Research (Vol. 591, pp. 862-866). Trans Tech Publications Ltd.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Radar Network Operation, Electromagnetic Environment" + }, + { + "id": 37405, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Cimler, R., Kautzk\u00e1, E., Ol\u0161evi\u010dov\u00e1, K., & Gavalec, M. (2012, September). Agent-based model for comparison of aircraft boarding methods. In Proceedings of 30th International Conference Mathematical Methods in Economics Agent-Based (pp. 73-78).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37406, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Cimler, R., Ol\u0161evi\u010dov\u00e1, K., Mach\u00e1lek, T., & Danielisov\u00e1, A. (2012, September). Agent-base model of agricultural practices in Late Iron Age. In Proceedings of the 15th Czech-Japan seminar on data analysis and decision making under uncertainty (pp. 166-171).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Agriculture, Data Analysis, Decision Making, Uncertainty" + }, + { + "id": 37407, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Ciutacu, I., V\u00eentu, D., & S\u0102VULESCU, I. (2012). Why can't we use the same cure for all crises?-An agent based modelling approach. REVISTA ECONOMIC\u0102, 45.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37408, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Collard, M., Collard, P., & Stattner, E. (2012). Mobility and Information Flow: Percolation in a Multi-Agent Model. International Conference on Ambient Systems, Networks and Technologies (ANT), ed. Elseiver. Procedia CS, Vol. 10, p. 22-29, 2012. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Mobility, Information Flow" + }, + { + "id": 37409, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Damaceanu, R. C., & Capraru, B. S. (2012). Implementation of a multi-agent computational model of retail banking market using netlogo. Metalurgia International, 17(5), 230.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37410, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "D\u0103m\u0103ceanu, R. C. (2012). Using Agent-Based Simulation Methodology for Teaching Economics. Analele \u015etiin\u0163ifice ale Universit\u0103\u0163ii\u00bb Alexandru Ioan Cuza \u00abdin Ia\u015fi. \u015etiin\u0163e ale Educatiei, (XVI), 115-122.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Economics" + }, + { + "id": 37411, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Drigo, M., Ehlschlaeger, C. R., & Sweet, E. L. (2012). Modeling intimate partner violence and support systems. In Ecologist-Developed Spatially-Explicit Dynamic Landscape Models (pp. 235-253). Springer, Boston, MA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37412, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Dyer, E.B. (2012, November). Exploring classroom discourse through an agent-based model. Poster presented at the 34th Annual Conference of PME-NA: Kalamazoo, MI: PME.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37413, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Fadaeian, M., & Fesharaki, M. N. (2012). A self-configuration model for execution management in Grid computing. International Journal of Computer Science Issues (IJCSI), 9(6), 396.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37414, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Ferguson, J. (2012). Semiotic Analysis of Students\u2019 Use of Multi-Agent Based Modeling Software (NetLogo) in Making Meaning of Complex Systems in Science. Paper presented at the Proceedings of the Contemporary Approaches to Research in Mathematics, Science, Health and Environmental Education Symposium, Melbourne, Australia. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37415, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Frenken, K., Izquierdo, L.R. & Zeppini,P. (2012). Branching innovation, recombinant innovation, and endogenous technological transitions. Environmental Innovation and Societal Transitions, Volume 4, pp. 25\u201335. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37416, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Galic, N., H. Baveco, G. M. Hengeveld, P. Thorbek, E. Bruns, & P. J. van den Brink. (2012). Simulating population recovery of an aquatic isopod: Effects of timing of stress and landscape structure. Environmental Pollution 163:91-99.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Simulation, Landscape Structure" + }, + { + "id": 37417, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Gargiulo, F., Lenormand, M., Huet, S., & and Baqueiro Espinosa, O. (2012). Commuting Network Models: Getting the Essentials. Journal of Artificial Societies and Social Simulation, 15(2). doi.org/10.18564/jasss.1964", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37418, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Georgeon, O. L., & Sakellariou, I. (2012, June). Designing environment-agnostic agents.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37419, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Ginovart, M., Portell, X., & Blanco, M. (2012). Discovering the power of agent-based modelling to deal with complex systems in diverse contexts. FACILITATING ACCESS AND PARTICIPATION: MATHEMATICAL PRACTICES INSIDE AND OUTSIDE THE CLASSROOM, 383.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Mathematics" + }, + { + "id": 37420, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Ginovart, M. & Prats, C. (2012). A bacterial individual-based virtual bioreactor to test handling protocols in a NetLogo platform. Paper presented at the Proceedings of the 7th Vienna International Conference on Mathematical Modelling, Vienna, Austria. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37421, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Gkiolmas A., Chalkidis A., Karamanos K., Papaconstantinou M., Skordoulis C. (2012). A constructionist method for teaching teachers about basic properties of complex systems, using a NetLogo model. Paper presented at the Proceedings of the conference \"CONSTRUCTIONISM 2012\", Athens, Greece. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Constructionism, Teaching, NetLogo, Greece" + }, + { + "id": 37422, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Gr\u00fcter, C., Sch\u00fcrch, R., Czaczkes, T.J., Taylor, K., Durance, T., Jones, S.M., Ratnieks, F.L.W. (2012). Negative feedback enables fast and flexible collective decision-making in ants. Public Libr. Sci. One 7, e44501. doi:10.1371/journal.pone.0044501zzzz", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Miscellaneous" + }, + { + "id": 37423, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Gr\u00fcters, U., Cannicci, S., Vannini, M., & Dahdouh-Guebas, F. (2012). Excluding random walks in the foraging behaviour of the Portunid crab Thalamita crenata: modelisation and simulation based on real data. VLIZ Special Publication, 57, 77.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37424, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Gr\u00fcters, U., Schmidt, H., & Berger, U. (2012). Mapping Functional-Structural Models to Fields of Neighborhood. In Meeting on Mangrove ecology, functioning and Management (MMM3) 2-6 July 2012, Galle, Sri Lanka (p. 76).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 37425, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Guoxiang, R. (2012, October). Decision on firms' explorative and exploitative innovation strategy based on multi-agents simulation method. In 2012 International Conference on Information Management, Innovation Management and Industrial Engineering (Vol. 1, pp. 232-235). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Innovation, Simulation, Computer Science, Economics" + }, + { + "id": 37426, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Hashem, K., & Mioduser, D. (2012). The Contribution of Agent Based Modeling to Students\" Evolving Understanding of Complexity. International Journal of Information and Education Technology, 2(5), 538.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37427, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Hassani-Mahmooei, B. & Parris, B.W. (2012). Climate change and internal migration patterns in Bangladesh: an agent-based model. Environment and Development Economics, 17(6), 763-780. DOI: 10.1017/S1355770X12000290, Published online: 27 July 2012", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37428, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Hassani-Mahmooei, B & Parris, B.W. (2012). Resource Scarcity, Effort Allocation and Environmental Security: An agent-based theoretical approach. Economic Modeling, 30, 183-192. DOI: 10.1016/j.econmod.2012.08.020", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Resource Scarcity" + }, + { + "id": 37429, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Hargrove, W. & Westerveldt, J. (2012). An Implementation of the Pathway Analysis Through Habitat (PATH) Algorithm Using NetLogo. Ecologist-developed Spatially-explicit Dynamic Landscape Models; Modeling Dynamic Systems; Springerlink pg. 211-222. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 37430, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Heckbert, S., Isendahl, C., Gunn, J., Brewer, S., Scarborough, V., Chase, A.F., Chase, D.Z., Costanza, R., Dunning, N., Beach, T., Luzzadder-Beach, S., Lentz D., & Sinclair, P. (2012). Growing the Maya social-ecological system from the bottom up: complex systems models of resilience. In: Handbook of Historical Ecology and Applied Archaeology, C. Isendahl & D. Stump, eds. Oxford University Press ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37431, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Hemmerich, K. M. (2012). Implementation of the Model\" Simulating Collective Misbelief\" into a NetLogo environment.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Ecology" + }, + { + "id": 37432, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Hickey, D.T., Soylu, F. (2012). Wikifolios, reflections, and exams for online engagement, understanding, and achievement. Journal of Teaching and Learning with Technology: 64-71. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Teaching and Learning, Technology" + }, + { + "id": 37433, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Hinojos-Mendoza, G., Garbolino, E., & Sanseverino-Godfrin, V. (2012, September). Urban dynamics simulation and climatic change scenarios for 2050 in order to identify areas of biodiversity's conservation in the French's Maritime Alps.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37434, + "sort": null, + "year": 2012, + "is_ccl": true, + "reference": "Hjorth, A. & Wilensky, U. (2012). Acting like a Turtle: A NetLogo Kinect Extension. Proceedings of the Constructionism 2012 Conference. Athens, Greece, Aug 21-25. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 37435, + "sort": null, + "year": 2012, + "is_ccl": true, + "reference": "Horn, M. S., Weintrop, D., Beheshti, E., & Olson, I. C. (2012). Spinners, Dice, and Pawns: Using Board Games to Prepare for Agent-Based Modeling Activities. Presented at the AERA, Vancouver, Canada. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37436, + "sort": null, + "year": 2012, + "is_ccl": true, + "reference": "Horn, M.S. & Wilensky, U. (2012). NetTango: A mash-up of NetLogo and Tern. In Moher, T. (chair) and Pinkard, N. (discussant), When systems collide: Challenges and opportunities in learning technology mashups. Symposium presented at the annual meeting of the American Education Research Association,Vancouver, British Columbia.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37437, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Hu, P., Gao, H. W., & Wang, G. R. (2012, December). The Strategic Interaction Based on Public Goods Provision on Infinite Endogenous Plane Lattice. In International Conference on Network Computing and Information Security (pp. 414-421). Springer, Berlin, Heidelberg.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37438, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Infante, W. F., Khan, A. F., Libatique, N. J. C., Tangonan, G. L., & Uy, S. N. Y. (2012, November). Performance evaluation of series hybrid and pure electric vehicles using lead-acid batteries and supercapacitors. In TENCON 2012 IEEE Region 10 Conference (pp. 1-5). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Electricity, Miscellaneous" + }, + { + "id": 37439, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Isaac, A. G. (2012). NetLogo Programming.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37440, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Iwamura, T., Fragoso, J., & Lambin, E. (2012). Agent-based modeling for the landuse change of hunter-gather societies and the impacts on biodiversity in Guyana. AGUFM, 2012, B53F-0755.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37441, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Jacobson, M. J., Markauskaite, L., Kelly, N., & Stokes, P. G. (2012). Model-based learning about climate change with productive failure: preliminary findings. In Proceedings of the American Educational Research Association Annual Meeting (AERA 2012) (pp. 1-10). American Educational Research Association.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Climate Change, Learning, Modeling" + }, + { + "id": 37442, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Janssen, M. A. & Rollins, N. (2012). Predicting behavior in new behavioral experiments: Outcomes of a modeling competition. Journal of Artificial Societies and Social Simulation, 15(3). doi.org/10.18564/jasss.2015", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Simulation" + }, + { + "id": 37443, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Jiang, H., Karwowski, W., & Ahram, T. Z. (2012). Applications of agent-based simulation for human socio-cultural behavior modeling. Work, 41(Supplement 1), 2274-2278.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37444, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Jorge, J. P., Kokkinogenis, Z., Rossetti, R. J., & Marques, M. A. (2012). Simulation of an order picking system in a pharmaceutical warehouse. In Conference proceeding of the Fourth International Conference on Advances in System Simulation (pp. 107-112). Lisbon: Portugal.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Conference, System Simulation" + }, + { + "id": 37445, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Kahn, K., Noble, H., Hjorth, A., & Sampaio, F.F. (2012). Three-minute Constructionist Experiences. Paper presented at the Proceedings of Constructionism 2012, Athens, Greece", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 37446, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Karamanos, K., Gkiolmas, A., Chalkidis, A., Skordoulis, C., Papaconstantinou, M., & Stavrou, D. (2012). Ecosystem food-webs as dynamic systems: Educating undergraduate teachers in conceptualizing aspects of food-webs\u2019 systemic nature and comportment. Advances in Systems Science and Application 12 (4): 49-68 [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, System Science, Application" + }, + { + "id": 37447, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Khan, S. (2012). A Hidden GEM. The Science Teacher, 79(8), 59.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 37448, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Khatua, A., & Chaki, N. (2012, September). Sustainable peer-based structure for content delivery networks. In Proceedings of the CUBE International Information Technology Conference (pp. 403-408).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37449, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Kimbrough, S. (2012). Agents, Games, and Evolution. CRC Press, Boca Raton, Florida.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 37450, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Kochanski, Tim. (2012). Toward Teaching Markets as Complex Systems: A Web Based Simulation Assignment Implemented in Netlogo. International Review of Economics Education, 11 (2), 102-114.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 37451, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Kocyigit, P. (2012). Agent Based Optical Character Recognition (Doctoral dissertation, MSc. thesis, Dept. CS. Bangor University, Bangor).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 37452, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Koohborfardhaghighi, S., & Kim, J. (2012, March). Improving Recommendation Flow with Centrality Measure in an Evolving Social Network. In 2012 26th International Conference on Advanced Information Networking and Applications Workshops (pp. 1264-1269). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Recommendation" + }, + { + "id": 37453, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Kponyo, J. J., Kuang, Y., & Li, Z. (2012, October). Real time status collection and dynamic vehicular traffic control using ant colony optimization. In 2012 international conference on computational problem-solving (ICCP) (pp. 69-72). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Ecology" + }, + { + "id": 37454, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Kuo, W. L., He, Y. Y., & Chang, C. K. (2012, March). Development of a Simulation Learning Environment for Inquiry-based Learning: An Example of Stray Dogs Problem in Taiwan. In 2012 IEEE Fourth International Conference On Digital Game And Intelligent Toy Enhanced Learning (pp. 182-186). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Learning, Game, Digital, Computer" + }, + { + "id": 37455, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Kwiatkowska, J., & Gutowska, J. (2012). Memetics on the Facebook. Polish Journal of Management Studies, 5, 289-298.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Memetics" + }, + { + "id": 37456, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Larrosa, Juan MC. (2012). Algoritmos evolutivos en juegos de formaci\u00f3n de red. Una aplicaci\u00f3n en NetLogo. [Evolutive Algorithms in Network Formation Games: A NetLogo Application]. Editorial Acad\u00e9mica Espa\u00f1ola: Saarbrucker (Germany), 168 p. (ISBN-13: 978-3-659-05434-1)", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Algoritmos evolutivos\n\nDin\u00e1mica de Red" + }, + { + "id": 37457, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Larrosa, Juan MC. (2012). Introducci\u00f3n a la econom\u00eda computacional basada en agentes con aplicaciones NetLogo. [Introduction to Agent-Based Computational Economics with NetLogo Applications]. EdiUNS: Bah\u00eda Blanca (Argentina). 216 p. (ISBN: 978-987-1907-15-1)", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Economics" + }, + { + "id": 37458, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Laver, M. & Sergenti, E. (2012). Party Competition: An Agent-Based Model. Princeton University Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37459, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Le Page, C., Becu, N., Bommel, P., & Bousquet, F. (2012). Participatory Agent-Based Simulation for Renewable Resource Management: The Role of the Cormas Simulation Platform to Nurture a Community of Practice. Journal of Artificial Societies and Social Simulation (JASSS), 15 (1), 10.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Social Science, Computer Science" + }, + { + "id": 37460, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Levin, J., & Datnow, A. (2012). Multiple mediator models of educational reform: Organizational learning as persistent change. Paper presented at the 2012 American Educational Research Association meetings. Vancouver Canada.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37461, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Levin, J. & Datnow, A. (2012). \"The Principal Role in Data Driven Decision Making: Using Case Study Data to Develop Multi-Mediator Models of Educational Reform.\" School Effectiveness and School Improvement. 23 (2), 179-201 [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37462, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Leykum, L., Kumar, P., Parchman, M., McDaniel, R. R., Lanham, H., & Agar, M. (2012). Use of an agent-based model to understand clinical systems. Journal of Artificial Societies and Social Simulation, 15(3). doi.org/10.18564/jasss.1905", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Simulation, Computer Science, Economics, Archaeology, Social Science, Education" + }, + { + "id": 37463, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Li, K., Gao, H. W., Wang, G. R., Chen, C. R., Hu, P., & Wang, K. (2012, November). Strategic Interaction in k-neighborhood on the Network Formation. In 2012 Third Global Congress on Intelligent Systems (pp. 369-372). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37464, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Lin, Y., Berger, U., Grimm, V., Ji, Q-R. (2012). Differences between symmetric and asymmetric facilitation matter: exploring the interplay between modes of positive and negative plant interactions. Journal of Ecology. DOI: 10.1111/j.1365-2745.2012.02019.x", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37465, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Liu, C., Sibly, R.M., Grimm, V. & Thorbek, P. (2012). Linking pesticide exposure and spatial dynamics: an individual-based model of wood mouse (Apodemus sylvaticus) populations in agricultural landscapes. Ecological Modelling.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 37466, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Lytinen, S. L. and S. F. Railsback. (2012). \"The Evolution of Agent-based Simulation Platforms: A Review of NetLogo 5.0 and ReLogo.\" To appear in Proceedings of the Fourth International Symposium on Agent-Based Modeling and Simulation, at the 21st European Meeting on Cybernetics and Systems Research (EMCSR 2012), Vienna, Austria, April 2012.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Agent-based modeling, Simulation, Cybernetics, Systems Research" + }, + { + "id": 37467, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Ma, L., Chu, X. L., Huang, X., Xiong, R., Li, H., & Lin, Q. (2013, December). Simulation research on diffusion of agricultural science and technology for peasant. In 2013 International Conference on Information Science and Cloud Computing Companion (pp. 97-102). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation, Agriculture, Technology, Science, Economics" + }, + { + "id": 37468, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Mach\u00e1lek, T., Ol\u0161evi\u010dov\u00e1, K., & Cimler, R. (2012). Modelling population dynamics for archaeological simulations. Mathematical Methods in Economy, 536-539.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37469, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Maharaj, S., Kleczkowski, A. (2012). Controlling Epidemic Spread by Social Distancing: Do it well or not at all. BMC Public Health 12:679 [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37470, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Martin, B.T., Jager, T., Preuss, T., Nisbet, R. & Grimm, V. (2012). Predicting population dynamics from the properties of individuals: a test of Dynamic Energy Budget theory. American Naturalist, 18(4), 506-519.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37471, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Martin, B.T., Zimmer, E.I., Grimm, V. & Jager, T. (2012). Dynamic Energy Budget theory meets individual-based modelling: a generic and accessible implementation. Methods in Ecology and Evolution, 3, 445-449.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, History, Economics, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37472, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Metz, S. (2012). Systems thinking. The Science Teacher, 79(7), 6.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Systems thinking" + }, + { + "id": 37473, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Mialhe, F., Becu, N., & Gunnell, Y. (2012). An agent-based model for analyzing land use dynamics in response to farmer behaviour and environmental change in the Pampanga delta (Philippines). Agriculture, Ecosystems & Environment, 161, 55-69. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37474, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Miller, A., Rosenbaum, C., & Blikstein, P. (2012, February). MagneTracks: a tangible constructionist toolkit for Newtonian physics. In Proceedings of the Sixth International Conference on Tangible, Embedded and Embodied Interaction (pp. 253-256).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Physics" + }, + { + "id": 37475, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Montes, G. (2012). Using Artifical Societies to Understand the Impact of Teacher Student Match on Academic Performance: The Case of Same Race Effects. Journal of Artificial Societies and Social Simulation, 15(4), 8 [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37476, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Morariu, C., Morariu, O., & Borangiu, T. (2012). Customer Order Management in Service Oriented Holonic Manufacturing. IFAC Proceedings Volumes, 45(6), 697-703.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37477, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Morariu, C., Morariu, O., & Borangiu, T. (2012, May). Modeling and simulation for service-oriented agent based manufacturing systems. In Proceedings of 2012 IEEE International Conference on Automation, Quality and Testing, Robotics (pp. 44-49). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Manufacturing, Computer Science, Economics, Physics, Modeling, Robotics, Engineering, Urban Studies" + }, + { + "id": 37478, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Moreno Arboleda, F. J., Duitama Mu\u00f1oz, J. F., & Camilo Ospina, E. (2012). A method for estimating the position and direction of a leader of a set of moving objects. Revista Facultad de Ingenier\u00eda Universidad de Antioquia, (62), 11-20.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37479, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Mudrak, G., & Semwal, S. K. (2012, May). AgentCity-An agent-based modeling approach to city planning and population dynamics. In 2012 International Conference on Collaboration Technologies and Systems (CTS) (pp. 91-96). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37480, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Muldoon, R., Smith, T., & Weisberg, M. (2012). Segregation That No One Seeks. Philosophy of Science, 79, 38\u201362.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37481, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "MUSCALAGIU, I., IORDAN, A., OSACI, M., & PANOIU, M. (2012). Extending the modeling of the protein folding problem in DisCSP-Netlogo using triangular lattice models.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics" + }, + { + "id": 37482, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Muscalagiu, I., Iordan, A., Osaci, M., & Panoiu, M. (2012). Modeling and simulation of the protein folding problem in DisCSP-Netlogo. AWERProcedia Information Technology and Computer, 2.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Modeling" + }, + { + "id": 37483, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Newstead, A., & Jacobson, M. J. (2012). Collaborative Virtual Worlds for Enhanced Scientific Understanding.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 37484, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Niazi, M. A. & Hussain, A. (2012). Cognitive agent-based computing-I: A unified framework for modeling complex adaptive systems using agent-based & complex network-based methods. Springer-Verlag.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Ecology" + }, + { + "id": 37485, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "OT\u010cEN\u00c1\u0160KOV\u00c1, T., BURE\u0160, V., & \u010cECH, P. Decision Support during Biological Incident Management: the Employment of Multi-agent Simulations.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37486, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Patel, A., Crooks, A., & Koizumi, N. (2012). Slumulation: An Agent-Based Modeling Approach to Slum Formulations. Journal of Artificial Societies and Social Simulation (JASSS), 15 (4), 2. [HTML] (Oct 2012)", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Slumulation" + }, + { + "id": 37487, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Parunak, H. V. D. (2012). Review of Agent-Based and Individual-Based Modeling: A Practical Introduction.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37488, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Petreska, I., Kefalas, P., & Gheorghe, M. (2012). Tools for simulating spatial mas. In Proceedings of the 7th Annual SEERC Doctoral Student Conference, DSC.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Spatial Modeling, Computer Science" + }, + { + "id": 37489, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Pinacho, P., Pau, I., Chac\u00f3n, M., & S\u00e1nchez, S. (2012). \u201cAn ecological approach to anomaly detection: the EIA model\u201d in Artificial Immune Systems: Lecture Notes in Computer Science, 7597, 232-245. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37490, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Prachai, S. (2012). The Design of Diabetes Simulation System using Multi-Agent. Procedia-Social and Behavioral Sciences, 40, 146-151.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37491, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Pu, L. (2012). Application of participatory simulation in experimental teaching of Economics and Management major [J]. Experimental Technology and Management, 11.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Economics" + }, + { + "id": 37492, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Purnomo H, Suyamto D, Irawati RH. (2012). Harnessing the climate commons: an agent-based modelling approach to making reducing emission from deforestation and degradation (REDD)+work. Mitigation and Adaptation Strategies for Global Change.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Climate Change, Modeling" + }, + { + "id": 37493, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Qian, L., & Song, X. (2012, October). Command and Control Evolutive Network Models for Command Substitution. In Asian Simulation Conference (pp. 63-70). Springer, Berlin, Heidelberg.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Command Substitution" + }, + { + "id": 37494, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Quadros, C., da Silva, F. N., Silveira, J., Rodrigues, L. M., Antiqueira, L. S., Briao, S. L., ... & Cabreira, T. M. (2012, October). A study on socio-spatial segregation models based on multi-agent systems. In 2012 Third Brazilian Workshop on Social Simulation (pp. 31-38). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37495, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Ram\u00edrez, R., Harris, P.D., Bakke, T.A. (2012). An agent-based modelling approach to estimate error in gyrodactylid population growth. International Journal for Parasitology, 2(9), 809-17. doi: 10.1016/j.ijpara.2012.05.012 [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling" + }, + { + "id": 37496, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Rhee, J. M. & Iannaccone, P. M. (2012). Mapping mouse hemangioblast maturation from headfold stages. Developmental Biology, 365 (1), 1-13. doi:10.1016/j.ydbio.2012.02.023 [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Developmental Biology, Zoology" + }, + { + "id": 37497, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Rodriguez, I. (2012). Land as a Renewable Resource: Integrating Climate, Energy, and Profitability Goals using an Agent-Based NetLogo Model.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37498, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Ross, J. (2012). A comparative study of simulation software for modeling stability operations. In the Proceedings of the 2012 Symposium on Military Modeling and Simulation. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37499, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Rossmann, B., Peterson, T., & Drake, J. (2012). A Simulation Model of Fire Ant Competition with Cave Crickets at Fort Hood, Texas. In Ecologist-Developed Spatially-Explicit Dynamic Landscape Models (pp. 43-62). Springer, Boston, MA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 37500, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Rusinko, J., & Swan, H. (2012). Agent-based fabric modeling using differential equations. CODEE Journal, 9(1), 7.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Differential Equations, Computer Science" + }, + { + "id": 37501, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Safia, A., & Mala, T. (2012, December). Ascertaining the More Knowledgeable Other among peers in collaborative e-learning environment. In 2012 Fourth International Conference on Advanced Computing (ICoAC) (pp. 1-7). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37502, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Sakellariou, I. (2012, July). Agent based Modelling and Simulation using State Machines. In SIMULTECH (pp. 270-279).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, State Machines" + }, + { + "id": 37503, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Sakellariou, I. (2012). Turtles as state machines-agent programming in netlogo using state machines. In ICAART 2012-Proceedings of the 4th International Conference on Agents and Artificial Intelligence, Volume 2-Agents, Vilamoura.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, State Machines, Agent Programming, NetLogo, Artificial Intelligence" + }, + { + "id": 37504, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Sarah, B., Soumia, L., & Merouani, H. F. (2012). Segmentation of images based cellular automata-reactive agent implemented in netlogo platform. International Journal of Computer Applications, 975, 8887.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Ecology" + }, + { + "id": 37505, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Schindler, J. (2012). Rethinking the Tragedy of the Commons: The Integration of Socio-Psychological Dispositions. Journal of Artificial Societies and Social Simulation (JASSS), 15 (1): 4.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Socio-Psychological Dispositions" + }, + { + "id": 37506, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Schwarz, N., Kahlenberg, D., Haase, D., & Seppelt, R. (2012). ABMland - A tool for agent-based model development on urban land use change. Journal of Artificial Societies and Social Simulation, 15(2). doi.org/10.18564/jasss.1875", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37507, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Shen, Z., Yao, X. A., Kawakami, M., Chen, P., & Koujin, M. (2012). Integration of MAS and GIS using Netlogo. In Geospatial Techniques in Urban Planning (pp. 369-388). Springer, Berlin, Heidelberg.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Geospatial Techniques in Urban Planning" + }, + { + "id": 37508, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Smojver, S. (2012). Analysis of banking supervision via inspection Game and agent-based modeling. In the Proceedings of the 2012 Central European Conference on Information and Intelligent Systems, Vara\u017edin, Croatia, Sep 19 - 21, 2012: 355-362 [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Game, Agent-based modeling, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37509, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Sokolov, O., & Tovstik, A. (2012). Cooperative Behavior Modeling of Intelligent Agents in NetLogo Environment using Fuzzy Logic. In Proceedings of East West Fuzzy Colloquium (Vol. 19, p. 147).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Fuzzy Logic" + }, + { + "id": 37510, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Stamatopoulou, I., Sakellariou, I., & Kefalas, P. (2012, November). Formal agent-based modelling and simulation of crowd behaviour in emergency evacuation plans. In 2012 IEEE 24th International Conference on Tools with Artificial Intelligence (Vol. 1, pp. 1133-1138). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37511, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Stigberg, D. (2012). An introduction to the Netlogo modeling environment. In Ecologist-Developed Spatially-Explicit Dynamic Landscape Models (pp. 27-41). Springer, Boston, MA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37512, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Svihla, V., & Linn, M. C. (2012). A design-based approach to fostering understanding of global climate change. International Journal of Science Education, 34(5), 651-676.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37513, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Taboada, M., Cabrera, E., Luque, E., Epelde, F., & Iglesias, M. L. (2012, December). A decision support system for hospital emergency departments designed using agent-based techniques. In Proceedings of the winter simulation conference (pp. 1-2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37514, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Taveter, K., Du, H., & Huhns, M. N. (2012, September). Method for rapid prototyping of societal information systems. In 2012 Federated Conference on Computer Science and Information Systems (FedCSIS) (pp. 1221-1228). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37515, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Tempel, M. (2012). Logo: A language for all ages. Comput. Sci. K\u20138 Build. a Strong Found, 16-17.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science, Mathematics, Language" + }, + { + "id": 37516, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Thiele, J., Kurth, W. & Grimm, V. (2012). Agent-based modelling: Tools for linking NetLogo and R. Journal of Artificial Societies and Social Simulation (JASSS), 15 (3): 8. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Agent-based modelling" + }, + { + "id": 37517, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Thiele, J. C., Kurth, W. & Grimm, V. (2012). RNetLogo: an R package for running and exploring individual-based models implemented in NetLogo. Methods in Ecology and Evolution, 3, 480-483.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37518, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Tuberville, T. D., Andrews, K. M., Westervelt, J. D., Balbach, H. E., Macey, J., & Carlile, L. (2012). Using demographic sensitivity testing to guide management of gopher tortoises at Fort Stewart, Georgia: A comparison of individual-based modeling and population viability analysis approaches. In Ecologist-Developed Spatially-Explicit Dynamic Landscape Models (pp. 109-131). Springer, Boston, MA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Modeling" + }, + { + "id": 37519, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Van Berkel, S., Turi, D., Pruteanu, A., & Dulman, S. (2012, July). Automatic discovery of algorithms for multi-agent systems. In Proceedings of the 14th annual conference companion on Genetic and evolutionary computation (pp. 337-344).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Algorithms, Computer Science, Genetics, Evolutionary Computation" + }, + { + "id": 37520, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "V\u00e1zquez-V\u00e9lez, E. (2012). Agent-based Models of Nurse Behavior to Evaluate the Medication Administration Process.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37521, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Viale, R. (2012). Methodological Cognitivism: Vol 1: Mind, Rationality, and Society. Springer-Verlag.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Methodology, Society" + }, + { + "id": 37522, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Villegas-Febres, J. C., & Rousse-Romero, R. (2012). Conformation of polyelectrolytes using cellular automata techniques. Journal of Computational Methods in Sciences and Engineering, 12(4-6), 283-292.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37523, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Vinatier, F., Lescourret, F., Duyck, P.-F., & Tixier, P. (2012). From IBM to IPM: Using Individual-Based Models to design the spatial arrangement of traps and crops in Integrated Pest Management strategies. Agriculture, Ecosysems and Environment, 146 (1): 52-59. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37524, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Vinatier, F., Gosme, M., & Valantin-Morison, M. (2012). A tool for testing integrated pest management strategies on a tritophic system involving pollen beetle, its parasitoid and oilseed rape at the landscape scale. Landscape Ecology, 27 (10): 1421-1433. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Landscape" + }, + { + "id": 37525, + "sort": null, + "year": 2012, + "is_ccl": true, + "reference": "Wagh, A. & Wilensky, U. (2012). Evolution in blocks: Building models of evolution using blocks. Proceedings of Constructionism, Athens, Greece, Aug 21-25. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Constructionism" + }, + { + "id": 37526, + "sort": null, + "year": 2012, + "is_ccl": true, + "reference": "Wagh. A. & Wilensky, U. (2012). Breeding birds to learn about artificial selection: Two birds with one stone? Proceedings of ICLS, Sydney, Australia, July 2-6.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Artificial Selection, Ecology" + }, + { + "id": 37527, + "sort": null, + "year": 2012, + "is_ccl": true, + "reference": "Wagh, A. & Wilensky, U. (2012). Mechanistic Explanations of evolutionary change facilitated by agent-based models. Paper presented at AERA, Vancouver, April 13-17.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Evolution, Modeling" + }, + { + "id": 37528, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Walker, L., & Barros, J. (2012). An agent-based population model for Wolverhampton, UK: a spatio-temporal activity based approach to population modelling. GISRUK, Lancaster.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37529, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Wan, S., Cao, Q., & Wang, D. (2012, December). Aoc based vehicular Ad-hoc network modeling research. In Proceedings of 2012 2nd International Conference on Computer Science and Network Technology (pp. 964-967). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Miscellaneous" + }, + { + "id": 37530, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Wang, Y.S., Ellwood, F., Maestre, F.T., Yang, Z.Y., Wang, G. & Chu C.J. (2012). Positive interactions can produce species-rich communities and increase the species temporal turnover. Journal of Plant Ecology, 5:417-421. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology" + }, + { + "id": 37531, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Wen-ze, N. I. N. G., & Wei-xing, J. I. N. G. (2012). The impact of guidance price fuzziness on construction production earning power [J]. Journal of Xi'an University of Architecture & Technology (Natural Science Edition), 1.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37532, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Westervelt, J. & Cohen, G. (2012). Ecologist-Developed Spatially-Explicit Dynamic Landscape Models. Springer.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37533, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Westervelt, J. D., & Cohen, G. L. (2012). Never fear: You already model!. In Ecologist-Developed Spatially-Explicit Dynamic Landscape Models (pp. 1-6). Springer, Boston, MA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37534, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Westervelt, J. D., & Hannon, B. (2012). A Collaborative Process for Multidisciplinary Group Modeling Projects. In Ecologist-Developed Spatially-Explicit Dynamic Landscape Models (pp. 7-25). Springer, Boston, MA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37535, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Westervelt, J. D., & MacAllister, B. (2012). Forecasting gopher tortoise (Gopherus polyphemus) distribution and long-term viability at Fort Benning, Georgia. In Ecologist-Developed Spatially-Explicit Dynamic Landscape Models (pp. 85-107). Springer, Boston, MA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37536, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Whitehouse, H., Kahn, K., Hochberg, M.E., & Bryson, J.J. (2012). The role for simulations in theory construction for the social sciences: case studies concerning Divergent Modes of Religiosity. Religion, Brain & Behavior, 2(3).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37537, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Wong, R., & Sheng, S. Y. (2012). A business application of the system dynamics approach: Word-of-mouth and its effect in an online environment. Technology Innovation Management Review, 2(6).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37538, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Worsley, M. (2012, October). Multimodal learning analytics: enabling the future of learning through multimodal data analysis and interfaces. In Proceedings of the 14th ACM international conference on Multimodal interaction (pp. 353-356).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Multimodal data analysis, Interfaces" + }, + { + "id": 37539, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Worsley, M., & Blikstein, P. (2012). An Eye For Detail: Techniques for using eye tracker data to explore learning in computer-mediated environments.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37540, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Worth, D. J., Chin, L. S., & Greenough, C. (2012). FLAME tutorial examples: a simple SIR infection model. STFC.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37541, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Xianjun, C. M. Q. (2012). Simulation Study on Information Resources Allocationin Network Information Ecosystem [J]. Journal of Intelligence, 5.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37542, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Xiaobo, L. (2012). Netlogo Platform-based Realization of Dynamic Model of Public Opinion. Information and Documentation Services, 33(1), 55-60.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37543, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Xike, S., & Fengxian, L. (2012, December). An agent-based simulation of farmer's behaviors adapting to ecological policies using netlogo. In 2012 Fourth International Symposium on Information Science and Engineering (pp. 426-429). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37544, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Xu, J., Liu, L., & Shao, Z. (2012, August). Research on the evolution of enterprise clusters based on theory of MAS. In 2012 International Symposium on Information Technologies in Medicine and Education (Vol. 2, pp. 1094-1098). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Theory of MAS" + }, + { + "id": 37545, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Yalvac, B., Ayar, M. C., & Soylu, F. (2012). Teaching Engineering with Wikis. International Journal of Engineering Education, 28(3), 701. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37546, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Yanli, Z. D. Y. X. C. (2012). Modeling and Simulation of Knowledge Transferring Process in Innovation Network Based on Multi-agent [J]. Chinese Journal of Management, 12.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37547, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Yu, S. Y. (2012). GIS and agent-based modeling of emergency evacuation. Journal of the Korean Society of Hazard Mitigation, 12(1), 127-132.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "GIS, Agent-based modeling" + }, + { + "id": 37548, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Zhang, D., Sun, Y., & Zhong, Z. (2012, August). Simulation of the Incentive Mechanism for Knowledge Sharing between Employees Based on the Organization Design. In 2012 Fifth International Conference on Business Intelligence and Financial Engineering (pp. 89-92). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37549, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Zhang, F., More, T. K., & Zhang, X. (2012). Simulation of Wealth Distribution. In Recent Advances in Computer Science and Information Engineering (pp. 175-179). Springer, Berlin, Heidelberg.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37550, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Zheng, M. (2012). Based on NetLogo Simulation for Credit Risk Management. In Advances in Computer Science and Engineering (pp. 395-401). Springer, Berlin, Heidelberg. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37551, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Zhou, Y., Wang, L., & Chen, Q. (2012, May). Intervention of flocking behavior based on collision avoidance. In 2012 24th Chinese Control and Decision Conference (CCDC) (pp. 591-596). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Collision avoidance" + }, + { + "id": 37552, + "sort": null, + "year": 2012, + "is_ccl": false, + "reference": "Zhou, Y. X., & Wang, X. (2012). Overview of Computer Simulation Modeling Platforms Based on Multi-Agent. In Advanced Materials Research (Vol. 472, pp. 3111-3116). Trans Tech Publications Ltd.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 37553, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Ahrweiler, P., Pyka, A., & Gilbert, N. (2011). An implementation of the pathway analysis through habitat (PATH) algorithm using NetLogo. The Journal of Product Innovation Management, 28(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Pathway Analysis, NetLogo, Habitat" + }, + { + "id": 37554, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Al-Dmour, N. A. A. H. (2011). TarffSim: Multiagent traffic simulation. European Journal of Scientific Research, 53(4), 570-575.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Traffic Simulation, Computer Science" + }, + { + "id": 37555, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Alfaro, J. F. & Miller, S. A. (2011). Planning the development of electricity grids in developing countries: An initial approach using Agent Based Models. Proceedings of 2011 IEEE International Symposium on Sustainable Systems and Technology (ISSST), May 16-18, 2011, Chicago, IL, 1-6. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Electricity Grids, Agent Based Models" + }, + { + "id": 37556, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Allen, T. T. (2011). Agents and new directions. In Introduction to Discrete Event Simulation and Agent-Based Modeling (pp. 175-190). Springer, London.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Discrete Event Simulation, Agent-Based Modeling" + }, + { + "id": 37557, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Armend\u00e1riz, M., Burguillo, J. C., Peleteiro-Ramallo, A., Arnould, G., & Khadraoui, D. (2011, June). Carpooling: A Multi-Agent Simulation In Netlogo. In ECMS (pp. 61-67).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 37558, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Arnould, G., Khadraoui, D., Armendariz, M., Burguillo, J. C., & Peleteiro, A. (2011). A transport based clearing system for dynamic carpooling business services. Proceedings of 2011 11th International Conference on ITS Telecommunications (ITST), 23-25 Aug. 2011, pp. 527-533. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37559, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Asman, B. C., Kim, M. H., Moschitto, R. A., Stauffer, J. C., & Huddleston, S. H. (2011). Methodology for analyzing the compromise of a deployed tactical network. Proceedings of the 2011 Systems and Information Engineering Design Symposium (SIEDS), April 29, 2011, pp. 164-169. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37560, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Balasubramanian, G. P. (2011). An agent based simulation of Human blood coagulation system. Student Papers Complex Adaptive Systems Fall 2011, 27.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Chemistry" + }, + { + "id": 37561, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Ballinas-Hernandez, A.L., Munoz Melendez, A., & Rangel-Huerta, A. (2011). Multiagent System Applied to the Modeling and Simulation of Pedestrian Traffic in Counterflow. Journal of Artificial Societies and Social Simulation (JASSS), 14 (3) 2. [HTML] (June 2011)", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37562, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Balzer, W. & Manhart, K. (2011). A social process in science and its content in a simulation program. Journal of Artificial Societies and Social Simulation, 14(4). doi.org/10.18564/jasss.1836", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Social Science, Computer Science" + }, + { + "id": 37563, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Banirostam, T., & Fesharaki, M. N. (2011, March). Effective parameters in convergence of autonomous distributed systems using with immune system approch. In 2011 Tenth International Symposium on Autonomous Decentralized Systems (pp. 204-208). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Convergence, Computer Science, Economics, Physics, Chemistry, Archaeology" + }, + { + "id": 37564, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Banirostam, T., & Fesharaki, M. N. (2011, November). Effect of Learning and Database in Robustness of Security Tools: Based on Immune System Modeling. In 2011 UKSim 5th European Symposium on Computer Modeling and Simulation (pp. 47-52). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Security Tools, Modeling, Simulation, Immunology" + }, + { + "id": 37565, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Banirostam, T., & Fesharaki, M. N. (2011, May). Modeling and Simulation of Influenza with Biological Agent: A New Approch for Increasing System Robustness. In 2011 Fifth Asia Modelling Symposium (pp. 13-17). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation" + }, + { + "id": 37566, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Baoyan, Z. L. S. S. G. (2011). System Design of Behavior Management Based on Multi-Agent Modeling [J]. Chinese Journal of Management, 9.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37567, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Baracaldo, N., Lopez, C., Anwar, M., Lewis, M. (2011)\"Simulating the Effect of Privacy Concerns in Online Social Networks.\" Proceedings of the IEEE International Conference on Information Reuse and Integration, IRI 2011, 3-5 August 2011, Las Vegas, Nevada, USA 2011. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37568, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Barbosa, J. & Leitao, P. (2011). \"Simulation of Multi-agent Manufacturing Systems using Agent-based Modelling Platforms.\" Proceedings of the 2011 9th IEEE International Conference on Industrial Informatics (INDIN), 26-29 July 2011, pp. 477-482. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation, Modeling, Industrial Informatics, Agent-based Modelling, Computer Science, Methodology." + }, + { + "id": 37569, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Basu, S., & Biswas, G. (2011). Multiple representations to support learning of complex ecological processes in simulation environments. In Proceedings of the 19th International Conference on Computers in Education. Chiang Mai, Thailand.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology" + }, + { + "id": 37570, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Beer, M. D., Fasli, M., & Richards, D. (2011). Multi-agent systems for education and interactive entertainment: design, use and experience. Information Science Reference.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37571, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Bernardes, S., Eury, A. H., Presotto, A., Madden, M., Jordan, T., Fragaszy, D. M., ... & Tavares-Rocha, Y. (2011). An agent based modeling approach for representing capuchin (sapajus spp.) behavior in brazil. In Proceedings Of The Annual Conference-American Society For Photogrammetry AND Remote Sensing (pp. 41-47).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Modeling" + }, + { + "id": 37572, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Bida, M., Brom, C., & Popelova, M. (2011).\"To date or not to date? A Minimalist affect-modulated control architecture for dating virtual characters.\" Lecture Notes in Computer Science, 6895(2011): 419-425. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 37573, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Blikstein, P. (2011, February). Using learning analytics to assess students' behavior in open-ended programming tasks. In Proceedings of the 1st international conference on learning analytics and knowledge (pp. 110-116).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Learning Analytics, Programming, Behavior" + }, + { + "id": 37574, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Bollinger, L. A. (2011). Evolving climate-resilient energy infrastructures. TU Delft.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37575, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Braga, D. S., Alves, F. O. M., Lima Neto, F. B., & Menezes, L. C. S. (2011). AspectNetLogo: Uma Proposta de Linguaguem Orientada a Aspectos para a Modelagem de Sistemas Multi-Agentes em Simulacoes Sociais. In: X Congresso Brasileiro de Inteligencia Computacional, 2011. Fortaleza, CE. Sessao Tecnica 28 (Interfaces e Ferramentas).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37576, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Braun, A. & Rosner, H.-J. (2011). Disturbance and succession. Potential of agent-based systems for modeling vulnerable ecosystems. Application to land degradation processes. In Car, A. / Griesebner, G. / Strobl, J. (Eds.) Geospatial Crossroads @ GI_Forum '11. Proceedings of the Geoinformatics Forum Salzburg, pp. 12-21.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37577, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Briola, D., & Mascardi, V. (2011). Design and Implementation of a NetLogo Interface for the Stand-Alone FYPA System. In WOA (pp. 41-50).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37578, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Brown, B. N., Price, I. M., Toapanta, F. R., DeAlmeida, D. R., Wiley, C. A., Ross, T. M., ... & Vodovotz, Y. (2011). An agent-based model of inflammation and fibrosis following particulate exposure in the lung. Mathematical biosciences, 231(2), 186-196.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology" + }, + { + "id": 37579, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Bryson, J. J. (2011). Coursework 2: Understanding Lions or Map Learning.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 37580, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Buchtov\u00e1, M., Brom, C., & \u0160isler, V. (2011). EDUCATIONAL GAMES AND SIMULATIONS AT SCHOOL: THE HIGH-SCHOOL STUDENTS\u2019EXPERIENCES AND ATTITUDES. A QUALITATIVE STUDY. 7th DisCo Conferen New Media and E.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37581, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Cain, N., Nelson, H., Abdollahian, M., Close, B., & Hoffman, J. (2011). Not on Planet Earth (Nope): An Agent Based Model Simulating Energy Infrastructure Siting Dynamics. In APSA 2011 Annual Meeting Paper.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37582, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Casilli, A. A., & Tubaro, P. (2011). Why net censorship in times of political unrest results in more violent uprisings: A social simulation experiment on the UK riots. Available at SSRN 1909467.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37583, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Challenge, S. C., Ramirez, I., Chao, L., Miller, G., & Edington, C. (2011). Water & Ice.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37584, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Chang, C. K. (2011, August). Integrate social simulation content with game designing curriculum to foster computational thinking. In The 7th International Conference on Digital Content, Multimedia Technology and its Applications (pp. 115-118). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Game Designing" + }, + { + "id": 37585, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Chang, C. K., & Biswas, G. (2011, June). Design engaging environment to foster computational thinking. In EdMedia+ Innovate Learning (pp. 2898-2902). Association for the Advancement of Computing in Education (AACE).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37586, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Chen, W., Ward, K., Li, Q., Kecman, V., Najarian, K., & Menke, N. (2011, August). Agent based modeling of blood coagulation system: implementation using a GPU based high speed framework. In 2011 Annual International Conference of the IEEE Engineering in Medicine and Biology Society (pp. 145-148). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Miscellaneous" + }, + { + "id": 37587, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Chen, X. (2011, July). Agent-Based modeling of emergency evacuation in a spatially-aware and time-aware environment. In Proceedings of the 25th International Cartographic Conference (pp. 3-8).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37588, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Chen-dong, Y. L. D. (2011). The Research of Intersection Traffic Control Based on Agent [J]. Microcomputer Information, 9.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37589, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Cheng, G. J., Yan, Y. J., Qiang, X. J., & Li, Z. (2011). Modeling and simulation of the ecosystem based on multi-agent system. Xi'an Shiyou Daxue Xuebao(Ziran Kexue Ban)- Journal of Xi'an Shiyou University(Natural Science Edition), 26(2), 99-103.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Modeling and simulation" + }, + { + "id": 37590, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Collard, P., Mesmoudi, S. (2011).\"How to Prevent Intolerant Agents from High Segregation?\" Advances in Artificial Life, ECAL 2011: Proceedins of the Eleventh European Conference on the Synthesis and Simulation of Living Systems, T. Lenaerts, M. Giacobini, H. Bersini, P. Bourgine, M. Dorigo and R Doursat. MIT Press, (ISBN 978-0-262-29714-1). 2011. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Artificial Life, Simulation, Biology, Computer Science, Physics, Chemistry, Miscellaneous" + }, + { + "id": 37591, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Contractor, N. (2011). Social Network Analysis. Cell, 617, 803-6971.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Social Network Analysis" + }, + { + "id": 37592, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "D'Alessandro, S. (2011). If we build it will they come? Or is this only if the price right? Adoption and use of 4G versus 3G technology: results from a Netlogo simulation. In Australian and New Zealand Marketing Academy Conference (2011) (p. 4). ANZMAC2011 Conference.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Adoption, Marketing, Simulation, Technology" + }, + { + "id": 37593, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Damaceanu, R-C. (2011). Agent-based Computational Social Sciences using NetLogo. [LAP LAMBERT Academic Publishing.]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Agent-based Computational Social Sciences" + }, + { + "id": 37594, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Damaceanu, R-C. (2011). An Agent-based Computational Study of Wealth Distribution in Function of Technological Progress Using NetLogo. [American Journal of Economics, Vol 1.1, pg. 15-20.]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37595, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Dauschan, A. A. M. (2011). Implementation of Virtual Embryology using the Thrust library for CUDA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 37596, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Dave, S., Sooriyabandara, M., & Yearworth, M. (2011). A systems approach to the smart grid. Energy, 130-134.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37597, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "de Bakker, G., van Bruggen, J. Jochems, W., & Sloep, P. B. (2011). Introducing the SAPS System and a corresponding allocation mechanism for synchronous online reciprocal peer support activities. Journal of Artificial Societies and Social Simulation (JASSS), 14 (1). [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37598, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Dermody, J.; Tanner, C. & Jackson, A. (2011). The Evolutionary Pathway to Obligate Scavenging in Gyps Vultures PLoS ONE 6(9): e24635.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 37599, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Dickerson, M. (2011). \"Multi-agent simulation and NetLogo in the introductory computer science curriculum.\" Journal of Computing Sciences in Colleges, 27(1). [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 37600, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Dil\u0101ns, G. (2011). RECONSTRUCTING SIMULATION: ACCESS TO HIGH-SCHOOL SCIENCE DISCOURSE THROUGH RESPONSE-FOCUSED PARTICIPATORY DIALOGUE1. ECONOMICS AND CULTURE, 317.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Computer Science, Sociology" + }, + { + "id": 37601, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Dixon, D. S. (2011). An Agent-Based Adaptation of Friendship Games: Observations on Network Topologies. In Computational Social Sciences Society of the Americas: Second Annual Conference of the Computational Social Sciences Society of the Americas.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37602, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Dixon, D. S. (2011). \"Preliminary results from as agent-based adaptation of friendship games.\" 86th Annual Conference of Western Economics. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37603, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Doloswala, N., Winzar, H., Song, E., & Nakandala, D. J. (2011). The discovery of liars. In Australian and New Zealand Marketing Academy Conference (2011) (p. 4). ANZMAC2011 Conference.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37604, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Drucker, N., & Campbell, K. (2011). Examining the Relationships Between Education, Social Networks and Democratic Support With ABM.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37605, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Elementary, A., Ionkov, A., & Poston, D. (2011). Does Queen+ King= Checkmate?.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, History, Economics, Social Science, Education, Epidemiology" + }, + { + "id": 37606, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Fekir, A. & Benamrane, N. (2011). \"Segmentation of medical image sequence by parallel active contour.\" Advances in Experimental Medicine and Biology, 696(6): 515-522. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Medicine" + }, + { + "id": 37607, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Ferreira, J. C., da Silva, A. R., & Afonso, J. L. (2011). Agent Based Approaches for Smart Charging Strategy for Electric Vehicles (No. 2011-39-7214). SAE Technical Paper.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37608, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Ferreira, J. C., Monteiro, V., Afonso, J. L., & Silva, A. (2011, June). Smart electric vehicle charging system. In 2011 IEEE Intelligent Vehicles Symposium (IV) (pp. 758-763). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Miscellaneous" + }, + { + "id": 37609, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Ferreira, J. F., Mendes, A., Cunha, A., Baquero, C., Silva, P., Barbosa, L. S., & Oliveira, J. N. (2011, June). Logic training through algorithmic problem solving. In International Congress on Tools for Teaching Logic (pp. 62-69). Springer, Berlin, Heidelberg.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Logic" + }, + { + "id": 37610, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Filho, H. S. B., de Lima Neto, F. B., & Fusco, W. (2011). \"Migration and Social Networks - An Explanatory Multi-evolutionary Agent-Based Model.\" Proceedings of the 2011 IEEE Symposium on Intelligent Agent (IA), 11-15 April 2011, pp. 1-7. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Migration, Social Networks" + }, + { + "id": 37611, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Fong, M. (2011). Creating an Agent-based Model to Examine Spatial Behavior of Eriocheir Sinensis.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37612, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Frank, B.M.; Piccolo, J.J. & Baret, P.V. (2011). \"A review of ecological models for brown trout: towards a new demogenetic model.\" Ecology of Freshwater Fish 20(2) 167-198.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37613, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Fuks, K., & Kawa, A. (2011, June). Virtual Organization Networking Strategies\u2013Simulations Experiments. In KES International Symposium on Agent and Multi-Agent Systems: Technologies and Applications (pp. 602-609). Springer, Berlin, Heidelberg.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Simulation, Computer Science, Economics, Archaeology, Social Science, Education, Epidemiology" + }, + { + "id": 37614, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Gabbreillini, S. (2011). Simulare meccanismi sociali con NetLogo: Una introduzione. Methodology and Techniques of Social Research. E-book [HTML].", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37615, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Gabrielsen, P. J., Wilson, J. L., & Pullin, M. (2011). Agent-based modeling of hyporheic dissolved organic carbon transport and transformation. AGUFM, 2011, H51B-1208.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology" + }, + { + "id": 37616, + "sort": null, + "year": 2011, + "is_ccl": true, + "reference": "Gobert, J., O'Dwyer, L., Horwitz, P., Buckley, B., Levy, S.T., & Wilensky, U. (2011). Examining the relationship between students' epistemologies of models and conceptual learning in three science domains: Biology, Physics, & Chemistry. International Journal of Science Education, 33(5), 653-684.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 37617, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Gong, C., Li, L., Zhu, K., & Gao, Y. (2011). Evolutionary Model of Coal Mine Water Hazards Based on Multi-Agent. Systems Engineering Procedia, 2, 358-365.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Evolutionary Model" + }, + { + "id": 37618, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Guerram, T., & Dehimi, N. E. H. (2011). Multi agent Simulation: A Unified Framework for the analysis of viral infections within a bovine population. International Journal of Computer Science Issues (IJCSI), 8(5), 170.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37619, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Gui-sheng, Y., Ji-jie, W., Hong-bin, D., & Jia, L. (2011)\"Intelligent Viral Marketing algorithm over online social network.\" Proceedings of 2011 Second International Converence on Networking and Distributed Computing (ICNDC), 21-24 Sept. 2011, pp. 319-323. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Viral Marketing, Network Computing" + }, + { + "id": 37620, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Guoxiang, R. U. A. N., & Jing, R. P. S. (2011). The Evolutionary Game Simulation on Knowledge Sharing Among Innovation Network Members. Journal of Intelligence, 30(2), 100-104.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37621, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Haack, J. N., Fink, G. A., Maiden, W. M., McKinnon, A. D., Templeton, S. J., & Fulp, E. W. (2011, April). Ant-based cyber security. In 2011 Eighth International Conference on Information Technology: New Generations (pp. 918-926). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Cyber Security, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37622, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Hachichi, H., Chelloug, S., & Athmouni, F. (2011, April). A virtual topology for routing in adhoc networks. In 2011 Saudi International Electronics, Communications and Photonics Conference (SIECPC) (pp. 1-6). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Topology, Computer Science, Physics, Chemistry" + }, + { + "id": 37623, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Halverson, R., Blakesley, C., & Figueiredo-Brown, R. (2011). Video game design as a model for professional learning. Learning to play, 9-28.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37624, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "HAN, Z. B., LI, Y., PING, Y., KOU, X. D., & WU, J. J. (2011). College Confidential Project Management Modeling Based on Multi-agent System. Microprocessors, (1), 14.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37625, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Hashem, K., & Mioduser, D. (2011). The contribution of learning by modeling (LbM) to students' understanding of complexity concepts. International Journal of e-Education, e-Business, e-Management and e-Learning, 1(2), 151-157.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Education, Miscellaneous" + }, + { + "id": 37626, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Hong, X. S. Z. (2011). Analysis of Dynamics of Knowledge Transfer Based on Supernetwork [J]. Journal of Intelligence, 7.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37627, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Honwad, S., Hmelo-Silver, C., Jordan, R., Sinha, S., Eberbach, C., Goel, A., & Rugaber, S. (2011). Learning about Ecosystems in a Computer Supported Collaborative Learning Environment.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37628, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Huang, L., Deng, S., Li, Y., Wu, J., & Yin, J. (2011, July). Data-dependency aware trust evaluation for service choreography. In 2011 IEEE International Conference on Web Services (pp. 708-709). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Social Science, Education, Epidemiology" + }, + { + "id": 37629, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Huang, S., & Yu, S. (2011). Model and simulation for global supply chain enterprises to migrate to port cluster. Journal of Tongji University. Natural Science, 39(9), 1401-1406.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37630, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Hussain, T., Al-Mutib, K. N., Alghamdi, A. S. (2011)\"Towards software engineering process for C4I systems.\" Proceedings of the 2011 IEEE 3rd International Conference on Communication Software and Networks (ICCSN), 27-29 May 2011, pp. 125-129. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Software Engineering, Communication Software and Networks" + }, + { + "id": 37631, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Inkoom, J. N. (2011). Simulating Spatial Growth Patterns in Developing Countries: an Agent Based Modelling Approach. A Case of Shama in the Western Region of Ghana. AGUFM, 2011, U22B-05.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Simulation, Modeling, Spatial Growth" + }, + { + "id": 37632, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Isaac, A. G. (2011). The ABM template models: A reformulation with reference implementations. Journal of Artificial Societies and Social Simulation, 14(2). doi.org/10.18564/jasss.1749", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37633, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Ismail, A. R. (2011). Immune-inspired self-healing swarm robotic systems (Doctoral dissertation, University of York).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, History, Social Science, Education" + }, + { + "id": 37634, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Israel, N., & Wolf-Branigin, M. (2011). Nonlinearity in social service evaluation: A primer on agent-based modeling. Social Work Research, 35(1), 20-24.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Modeling" + }, + { + "id": 37635, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Jacobson, M. J., Kapur, M., So, H. J., & Lee, J. (2011). The ontologies of complexity and learning about complex systems. Instructional Science, 39(5), 763-783.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37636, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Jamshidnejad, A., & Mahjoob, M. J. (2011, December). Traffic simulation of an urban network system using agent-based modeling. In 2011 IEEE Colloquium on Humanities, Science and Engineering (pp. 300-304). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37637, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Johnson, T. E., & Rosenberg-Kima, R. B.Development of a training effects algorithm for modeling the impact of training in IMPRINT for 21st century Air Force needs.. SpringSim (MMS), 86\u201391.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 37638, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Joyner, D. A., Goel, A. K., Rugaber, S., Hmelo-Silver, C., & Jordan, R. (2011, July). Evolution of an integrated technology for supporting learning about complex systems. In 2011 IEEE 11th International Conference on Advanced Learning Technologies (pp. 257-259). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Archaeology, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37639, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Karlsson, C., Frey, C. L., Zarzhitsky, D. V., Spears, D. F., & Widder, E. A. (2011). Physicomimetics for distributed control of mobile aquatic sensor networks in bioluminescent environments. In Physicomimetics (pp. 145-191). Springer, Berlin, Heidelberg.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Physics" + }, + { + "id": 37640, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Kauffmann, P. D. (2011). Traffic Flow on Escalators and Moving Walkways: Quantifying and Modeling Pedestrian Behavior in a Continuously Moving System (Doctoral dissertation, Virginia Tech).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37641, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Kim, J-W., & Hanneman, R.A. (2011). A Computational Model of Worker Protest. Journal of Artificial Societies and Social Simulation (JASSS), 14 (3) 1. [HTML] (June 2011)", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37642, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Kim, J. Y., Park, H. J., & Jun, Y. C. (2011). The Effects of Educational Contents Authoring in a Project-Based Learning using NetLogo for Pre-service Teachers' Creativity. Journal of Engineering Education Research, 14(4), 29-38.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37643, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Kottonau, J. (2011). An interactive computer model for improved student understanding of random particle motion and osmosis. Journal of Chemical Education, 88(6), 772-775.[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37644, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Kumarappan, S. (2011). \"Spatial pricing patterns of cellulosic biomass under oligopsony - A multi-agent simulation model.\" Paper presented at the 2011 AAEA & NAREA Joint Annual Meeting.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Simulation Modeling, Computer Science, Economics, Archaeology, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37645, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Kurve, A. & Kesidis, G. (2011)\"Sybil Detection via Distributed Sparse Cut Monitoring.\" Proceedings of the 2011 IEEE international Conference on Communications (ICC), 5-9 June 2011. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 37646, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Kwiatkowska, J. (2011). NetLogo-environment for simulation of logistics problems. Gospodarka Materia\u0142owa i Logistyka, (12), 65-69.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Logistics, Simulation, Economics" + }, + { + "id": 37647, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Laclav\u00edk, M., Dlugolinsk\u00fd, \u0160., \u0160eleng, M., Kvassay, M., Schneider, B., Bracker, H., ... & Hluch\u00fd, L. (2011, May). Agent-based simulation platform evaluation in the context of human behavior modeling. In International Conference on Autonomous Agents and Multiagent Systems (pp. 396-410). Springer, Berlin, Heidelberg.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Economics, Archaeology, Psychology" + }, + { + "id": 37648, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Lammoglia, A., Marilleau, N., & Josselin, D. (2011). How to assess the robustness of a flexible transport using an Agent Based Model?.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37649, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Lamy, F., Bossomaier, T., & Perez, P. (2011)\"SimUse: Simulation of recreational poly-drug use.\" Proceedings of the 2011 IEEE Symposium on Artificial Life (ALIFE), 11-15 April 2011, pp. 170-177. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation" + }, + { + "id": 37650, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Lamy, F., Perez, P., Ritter, A. & Livingston, M. (2011)\"SimARC: An ontology-driven behavioural model of alcohol abuse.\" Proceedings of the Third International Conference on Advances in System Simulation, Oct. 23-29, pp. 128-133. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Behavioural Modeling, Simulation" + }, + { + "id": 37651, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Lauberte, I., & Ginters, E. (2011, May). Agent-based TemPerMod simulator cell architecture. In Proceedings of the 13th WSEAS International Conference on automatic control, modelling & simulation (ACMOS 11) (pp. 75-80).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37652, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Levin, J. A. (2011). Landmark representation and dynamic mediation. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 37653, + "sort": null, + "year": 2011, + "is_ccl": true, + "reference": "Levy, S. T. & Wilensky, U. (2011). Mining students inquiry actions for understanding of complex systems. ScienceDirect Alert: Computers & Education, Vol. 56, Iss. 3, 2011. pp. 556-573. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Science, Computer Science, Miscellaneous" + }, + { + "id": 37654, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Li, Y., Wu, J., Ping, Y., Kou, W., & Han, Z. (2011). \"NetLogo-based simulation and analysis of college confidential project management.\" Computer Technology and Development.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37655, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Lima, D. V., da Rocha Costa, A. C., & Krusche, N. (2011, April). Net Logo and the Climate Change Model as a Tool for the Simulation of the Greenhouse Effect. In 2011 Workshop and School of Agent Systems, their Environment and Applications (pp. 104-106). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37656, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Liu, D., & Chen, X. (2011, November). Rumor propagation in online social networks like twitter--a simulation study. In 2011 Third International Conference on Multimedia Information Networking and Security (pp. 278-282). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Social Science, Computer Science, Miscellaneous" + }, + { + "id": 37657, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Lubyansky, A. (2011). A system dynamics and agent-based simulation approach to test group-level theories of political violence. In The 29th International Conference of the System Dynamics Society (pp. 1-26).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "System dynamics, Agent-based simulation, Political violence" + }, + { + "id": 37658, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Lytinen, S. L., & Railsback, S. F. (2011). Agent-based simulation platforms: An updated review. In European Meetings on Cybernetics and Systems Research.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Cybernetics, Systems Research" + }, + { + "id": 37659, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Maharaj, S., McCaldin, T., Kleczkowski, A. (2011). A Participatory Simulation Model for Studying Attitudes to Infection Risk. In Proceedings of the Summer Computer Simulation Conference 2011, ACM Digital Library, July 2011. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37660, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Male\u0161, L., & \u017darni\u0107, B. (2011, April). A spatiotemporal model of events within a BDI. In 2011 IEEE EUROCON-International Conference on Computer as a Tool (pp. 1-4). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science" + }, + { + "id": 37661, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Mandava, V., Nimmagadda, P., Korrapati, T. R., & Anne, K. R. (2011, August). Knowledge Based Agent for Intelligent Traffic Light Control\u2013An Indian Perspective. In International Conference on Intelligent Computing (pp. 491-501). Springer, Berlin, Heidelberg.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37662, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Manzo, G. (2011)\u201cRelative Deprivation in Silico: Agent-based Models and Causality in Analytical Sociology.\u201d in P. Demeulenaere (ed.), Analytical Sociology and Social Mechanisms, Cambridge, Cambridge University Press, ch. 13, 266-308 [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Causality, Analytical Sociology, Agent-based Models, Social Mechanisms" + }, + { + "id": 37663, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Marquez, B. Y., Espinoza-Hernandez, I., Castanon-Puga, M., Castro, J.R., & Suarez, E. D. (2011)\"Distributed Agencies Applied to Complex Social Systems, a Multi-Dimensional approach.\" Proceedings of 2011 The 2nd International Conference on Next Generation Information Technology (ICNIT), 21-23 June 2011, pp. 213-219. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37664, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Masiera, M. Fundamental and Technical Analysis to Comparison: Agents Simulation with NetLogo.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 37665, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "McCray, S. (2011). Simulating Belief Propagation Within a Population Via Agent Based Modeling Using NetLogo.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Modeling" + }, + { + "id": 37666, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "McDonnell, S. and M. Zellner (2011).\"Exploring the effectiveness of bus rapid transit a prototype agent-based model of commuting behavior.\" Transport Policy 18(6): 825-835.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37667, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Merico, D., & Bisiani, R. (2011, July). An agent-based data-generation tool for situation-aware systems. In 2011 Seventh International Conference on Intelligent Environments (pp. 129-134). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37668, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "M\u00f6lders, M., Fink, R. D., & Weyer, J. (2011). Modeling scientists as agents: How scientists cope with the challenges of the new public management of science. Journal of Artificial Societies and Social Simulation, 14(4). doi.org/10.18564/jasss.1831", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37669, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Moreno, F., & Ospina, E. (2011). On Estimating the Position and Direction of a Leader of a Group of Entities. Mathematical Modelling in Engineering & Human Behaviour, 1-2.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Mathematics" + }, + { + "id": 37670, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Muscalagiu, I., Iordan, A., Muscalagiu, D. M., & Panoiu, M. (2011, April). The effect of synchronization of agents\u2019 execution in randomly generated networks of constraints. In Proceedings of the 5th European conference on European computing conference (pp. 285-290). World Scientific and Engineering Academy and Society (WSEAS).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Synchronization" + }, + { + "id": 37671, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Nan, N. (2011). \"Capturing bottom-up information technology use processes: A Complex adaptive systems model.\" Management Information Systems Quarterly, 35(2), 505-532.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Management Information Systems, Complex adaptive systems, Economics, Computer Science, Ecology" + }, + { + "id": 37672, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Narang, V., Wong, S. Y., Leong, S. R., Abastado, J. P., & Gouaillard, A. (2011, August). Comparing mathematical models of cell adhesion in tumors. In 2011 Defense Science Research Conference and Expo (DSR) (pp. 1-4). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Computer Science" + }, + { + "id": 37673, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Niazi, M.A.K. (2011). \"Towards A Novel Unified Framework for Developing Formal, Network and Validated Agent-Based Simulation Models of Complex Adaptive Systems.\" University of Stirling. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, Network Science, Simulation, Social Science" + }, + { + "id": 37674, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Niazi, M. A.; Hussain, A. (2011). \"A Novel Agent-Based Simulation Framework for Sensing in Complex Adaptive Environments.\" Sensors Journal, IEEE, 11(2) doi: 10.1109/JSEN.2010.2068044. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Sensors" + }, + { + "id": 37675, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "NING, W. Z., & JIN, W. X. (2011). Study on the Influence of Bid Evaluation Criteria for Construction Industry Benefits\u2014\u2014Based on MAS Behavior Theory. Technoeconomics & Management Research, (8), 5.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37676, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Noor, Talal H.; Sheng, Quan Z. (2011). \"Trust as a Service: A Framework for Trust Management in Cloud Environments.\" Proceedings of the 2011 12th International Conference on Web Information System Engineering (WISE), 12-14 October 2011, pp. 314-321. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Trust" + }, + { + "id": 37677, + "sort": null, + "year": 2011, + "is_ccl": true, + "reference": "Olson, I.C., & Horn, M. (2011). Modeling on the Table: Agent-Based Modeling in Elementary School with NetTango. Proceedings of 10th International Conference on Interaction Design and Children (short paper), Ann Arbor, MI. June, 2011", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37678, + "sort": null, + "year": 2011, + "is_ccl": true, + "reference": "Olson, I.C., Leong, Z.A., Wilensky, U., & Horn, M.S. (2011). \u201cIt\u2019s just a toolbar!\u201d Using tangibles to help children manage conflict around a multi-touch tabletop. In Proc. of the fifth international conference on Tangible, Embedded and Embodied Interaction (TEI\u201911) , Funchal, Portugal. ACM New York. pp. 29-36.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37679, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Otcenaskova, T., Bures, V., & Cech, P. (2011). \"Multi-agent simulations in decision support: Specifics of the biological incident management. \" Mathematics and Computers in Biology, Business, and Acoustics. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Mathematics, Computer Science, Economics" + }, + { + "id": 37680, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Owczarek, T. (2011, September). Collaboration and competition in complex environment\u2014An agent-based approach. In Proceedings of the 6th IEEE International Conference on Intelligent Data Acquisition and Advanced Computing Systems (Vol. 2, pp. 594-597). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37681, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Pan, R. (2011, March). Rebellion on sugarscape: case studies for greed and grievance theory of civil conflicts using agent-based models. In International Conference on Social Computing, Behavioral-Cultural Modeling, and Prediction (pp. 333-340). Springer, Berlin, Heidelberg.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37682, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Patarakin, E., Yarmakhov B., Burov V. (2011). \"Agent based simulation activities within the wiki system.\" Educational Technology & Society. pp.407 - 422. (In Russian) [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37683, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Pawlewski, P., & Borucki, J. (2011). \u201cGreen\u201d Possibilities of Simulation Software for Production and Logistics: A Survey. In Information Technologies in Environmental Engineering (pp. 675-688). Springer, Berlin, Heidelberg.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation Software, Information Technologies, Production, Logistics" + }, + { + "id": 37684, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Pereda, M. & Zamarreno, J. M. (2011). \"Agent-based modeling of an activated sludge process in a batch reactor.\" Proceedings of the 2011 19th Mediterranean Conference on Control & Automation (MED), 20-23 June 2011, pp. 1128-1133. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Control & Automation, Chemistry" + }, + { + "id": 37685, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Petreska, I., Kefalas, P., Gheorghe, M. (2011). \"A framework towards the verification of emergent properties in spatial multi-agent systems.\" Proceedings of the Workshop on Applications of Software Agents, pp. 37-44.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Spatial Multi-Agent Systems, Software Agents" + }, + { + "id": 37686, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Petreska, I., Kefalas, P., & Gheorghe, M. (2011). Informal verification by visualisation of state-based agents models. In In Proceedings of the 6th Annual South East European Doctoral Student Conference.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Visualization, Modeling" + }, + { + "id": 37687, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Petreska, I., Kefalas, P., & Georghe, M. (2011). Population p systems with moving active cells. In Twelfth International Conference on Membrane Computing (CMC12) (pp. 421-432).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 37688, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Portugali, J. (2011). Complexity, Cognition and the City. Springer-Verlag.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Complexity, Cognition, City" + }, + { + "id": 37689, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Purnomo, H., Suyamto, D., Akiefnawati, R., Abdullah, L., & Harini, R. (2011). Harnessing the Climate Commons: An agent-based modelling approach to reduce carbon emission from deforestation and degradation.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37690, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Qingnan, L. I. U. X. L. I. R. L., & Xi, Z. H. A. O. (2011). Simulation of Passenger Flow at Urban Bus Station. Journal of Transport Information and Safety, (4), 5.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37691, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Railsback, S. F. & Grimm, V. (2011). Agent-Based and Individual-Based Modeling: A Practical Introduction. Princeton University Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Economics, Computer Science, Physics, Chemistry, Urban Studies" + }, + { + "id": 37692, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Rashid, S., Yoon, Y., & Kashem, S. B. (2011). Assessing the potential impact of Microfinance with agent-based modeling. Economic Modelling, 28(4), 1907-1913.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37693, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Rebaudo, F., Crespo-P\u00e9rez, V., Silvain, J-F., & Dangles, O. (2011). Agent-Based Modeling of Human-Induced Spread of Invasive Species in Agricultural Landscapes: Insights from the Potato Moth in Ecuador. Journal of Artificial Societies and Social Simulation (JASSS), 14 (3) 7. [HTML] (June 2011)", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37694, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Rhee, J., & Iannaccone, P. Program/Abstract# 365 Understanding early stages of hematopoietic stem cell maturation during mouse embryogenesis.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 37695, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Rodrigues, L. M., Dimuro, G. P., da Rocha Costa, A. C., & Emmendorfer, L. R. (2011, April). A Multiagent System-Based Solution for Shipment Operations with Priorities in a Container Terminal. In 2011 Workshop and School of Agent Systems, their Environment and Applications (pp. 28-36). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37696, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Ruan, G., & Ruan, P. (2011, September). Knowledge Sharing within Innovation Network Members with Netlogo Simulation Platform. In 2011 International Conference of Information Technology, Computer Engineering and Management Sciences (Vol. 2, pp. 210-213). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 37697, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Rush, D. (2011). \"A simulation of evolving sustainable technology through social pressure.\" Proceedings of the 2011 AAAI Fall Symposium, pp. 117-126. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37698, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Sakellariou, I., Kefalas, P., & Stamatopoulou, I. (2011). An intelligent agents and multi-agent systems course involving NetLogo. In Multi-Agent Systems for Education and Interactive Entertainment: Design, Use and Experience (pp. 26-50). IGI Global.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37699, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Salamon, T. (2011).\"Design of Agent-Based Models: Developing Computer Simulations for a Better Understanding of Social Processes.\" Repin, Czech Republic: Bruckner Publishing. [Website]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Miscellaneous" + }, + { + "id": 37700, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Sarah, B., Soumia, L., & Farida, M. An approach automata Game of Life-MAS of segmentation MRI brain.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37701, + "sort": null, + "year": 2011, + "is_ccl": true, + "reference": "Sengupta, P., & Wilensky, U. (2011). Lowering the Learning Threshold: Multi-Agent-Based Models and Learning Electricity. In Khine, M.S., & Saleh, I.M (Eds.). Dynamic Modeling: Cognitive Tool for Scientific Inquiry. Springer, New York, NY. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Computer Science, Economics, Physics, Chemistry, Ecology, Miscellaneous" + }, + { + "id": 37702, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Seo, Y. W., & Lee, K. C. (2011, August). Multi-Agent Simulation Approach for Investigating the Evolution Pattern Analysis of Digital Creativity Considering Task Diversity. In 2011 International Conference on Management and Service Science (pp. 1-4). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37703, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Shelley, T., Lyons, L., Zellner, M. & Minor, E.(2011)\"Evaluating the embodiment benefits of a paper-based tui for educational simulations.\" Proceedings of CHI Extended Abstracts 2011, pp. 1375-1380. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 37704, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Shi, X. (2011). Organisational Innovativeness and Diffusion of Innovation (Doctoral dissertation, University of York).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37705, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Shi-shi, F., Ji-jun, Z., & Yun-tao, L. (2011). An Agent-Based Model of Technical Duffision in Industrail Clusters. Electronics Quality, (2), 11.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37706, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Shvartsman, I., & Taveter, K. (2011, September). Agent-oriented knowledge elicitation for modeling the winning of \u201chearts and minds\u201d. In 2011 Federated Conference on Computer Science and Information Systems (FedCSIS) (pp. 605-608). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Social Science, Education" + }, + { + "id": 37707, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Sinclair, M., Dauerty, H., & Finke, T. (2011). Biocomplexity in the high school classroom. MSTA Journal, 56, 31-35.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37708, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Singh, V. K., Modanwal, N., & Basak, S. (2011)\"MAS coordination strategies and their application in disaster management domain.\" Proceedings of 2011 2nd International Conference on Intelligent Agent and Multi-Agent Systems (IAMA), 7-9 Sept. 2011, pp. 14-19. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Disaster Management, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37709, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Sklar, E. (2011).\"NetLogo, a multi-agent simulation environment.\" Artificial Life, 13(3): 303-311.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37710, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Soriano, G. C. & Urano, Y. (2011) \"Replication with state using the self-organizing map neural network.\" Proceedings of the 2011 13th International Conference on Advanced Communication Technology (ICACT), 13-16 Feb. 2011, pp. 383-388. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Replication with state using the self-organizing map neural network." + }, + { + "id": 37711, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Spears, W. M. (2011). NetLogo and Physicomimetics. In Physicomimetics (pp. 55-92). Springer, Berlin, Heidelberg.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Chemistry, Economics" + }, + { + "id": 37712, + "sort": null, + "year": 2011, + "is_ccl": true, + "reference": "Stonedahl, F. & Wilensky, U. (2011).Finding Forms of Flocking: Evolutionary Search in ABM Parameter-Spaces. In Multi-Agent-Based Simulation XI, T. Bosse, A. Geller, & C. M. Jonker (Eds). Lecture Notes in Computer Science. Springer Berlin / Heidelberg. Vol. 6532. pp. 61-75. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Evolutionary Search, Computer Science, Simulation" + }, + { + "id": 37713, + "sort": null, + "year": 2011, + "is_ccl": true, + "reference": " Stonedahl, F., Wilkerson-Jerde, M. & Wilensky, U. (2011). MAgICS: Toward a Multi-Agent Introduction to Computer Science. In M.Beer, M.Fasli, and D. Richards (Eds.) Multi-Agent Systems for Education and Interactive Entertainment: Design, Use and Experience. IGI Global. pp.1-25.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37714, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Su\u00e1rez, J. L. & Sancho, F. (2011). A virtual laboratory for the study of history and cultural dynamics. Journal of Artificial Societies and Social Simulation, 14(4). doi.org/10.18564/jasss.1855", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, History, Miscellaneous" + }, + { + "id": 37715, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Taboada, M., Cabrera, E., Iglesias, M. L., Epelde, F., & Luque, E. (2011). An agent-based decision support system for hospitals emergency departments. Procedia Computer Science, 4, 1870-1879.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 37716, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Taboada, M., Cabrera, E., & Luque, E. (2011). A Decision Support System for Hospital Emergency Departments Built Using Agent-Based Techniques. In Advances on Practical Applications of Agents and Multiagent Systems (pp. 247-253). Springer, Berlin, Heidelberg.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Agent-based Systems, Computer Science, Economics, Physics, Miscellaneous" + }, + { + "id": 37717, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Tang, M., & Jia, H. (2011, December). An approach for calibration and validation of the social force pedestrian model. In Proceedings 2011 International Conference on Transportation, Mechanical, and Electrical Engineering (TMEE) (pp. 2026-2031). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37718, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Thiruvathukal, G. K. (2011). An Exceptionally Useful Exploration. Computing in Science & Engineering, 13(1), 5-8.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computing Science" + }, + { + "id": 37719, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Thompson, K., Kennedy-Clark, S., Markauskaite, L., & Southavilay, V. (2011). Capturing and analysing the processes and patterns of learning in collaborative learning environments.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37720, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Tivnan, B., Koehler, M., McMahon, M., Olson, M., Rothleder, N., & Shenoy, R. (2011). Adding to the regulator's toolbox: Integration and extension of two leading market models. arXiv preprint arXiv:1105.5439.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37721, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Turner, A., Balestrini-Robinson, S., & Mavris, D. (2011, December). Representation of humanitarian aid/disaster relief missions with an agent based model to analyze optimal resource placement. In Proceedings of the 2011 Winter Simulation Conference (WSC) (pp. 2649-2660). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37722, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Ulbinait\u0117, A., Ku\u010dinskien\u0117, M., & Le Moullec, Y. (2011). Integration of the decoy effect in an agentbased-model simulation of insurance consumer behaviour. In 2011 International Conference on Software and Computer Applications IPCSIT. Conference Proceedings (Vol. 9, pp. 152-157).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37723, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "van Borkulo, C., Borsboom, D., Nivard, M. G., & Cramer, A. (2011). NetLogo Symptom Spread Mode.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37724, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Varnakovida, P. Transportation Development: Agent-Based Modeling and Landscape Prediction of Urban Environment.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37725, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Vattam, S. S., Goel, A. K., Rugaber, S. (2011). \"Behavior Patterns: Bridging conceptual models and agent-based simulations in interactive learning environments.\" Proceedings of the 2011 IEEE 11th International Conference on Advanced Learning Technologies, pp.139-141", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37726, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Vattam, S. S., Goel, A. K., Rugaber, S., Hmelo-Silver, C. E., Jordan, R., Gray, S., & Sinha, S. (2011). Understanding complex natural systems by articulating structure-behavior-function models. Journal of Educational Technology & Society, 14(1), 66-81.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37727, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Vinatier, F., Lescurret, F., Duyck, P.-F., Martin, O., Senoussi, R., & Tixier, P. (2011).Should I Stay or Should I Go? A Habitat-Dependent Dispersal Kernel Improves Prediction of Movement. PLoS ONE, 6, e21115.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 37728, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Wang, C., & Zhou, M. (2011, November). The Multi-Layer Network Structure and the Dynamic Mechanism of Proliferation of Cluster Risks. In 2011 International Conference on Information Management, Innovation Management and Industrial Engineering (Vol. 3, pp. 501-504). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37729, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "WANG, F., CHEN, L., & LU, H. Q. (2011). Research of CGF maneuver planning based on genetic algorithm. Journal of PLA University of Science and Technology (Natural Science Edition), 6.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Genetic Algorithm" + }, + { + "id": 37730, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Wanjugu, W. M. (2011). Urban Transport Real time tracking System (Doctoral dissertation, University of Nairobi).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37731, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Wen, K., & Shen, W. (2011). A study of wayfinding in Taipei metro station transfer: Multi-agent simulation approach. Proceedings of the 28th ISARC, Seoul, 875-879.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37732, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Wen-ze, N. I. N. G., & Wei-xing, J. I. N. G. (2011). Research on Industrial Qualification Based on MAS in the Construction Industry. Journal of Engineering Management, 3.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Engineering Management, Construction Industry" + }, + { + "id": 37733, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Wildman, W., & Sosis, R. (2011). Stability of Groups with Costly Benefits and Practices. Journal of Artificial Societies and Social Simulation (JASSS), 14 (3) 6. [HTML] (June 2011)", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 37734, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Wilkinson, I. F., Young, L., Marks, R., Bossomaier, T., & Held, F. P. (2011). Toward a business network agent-based modeling system. In International Conference on Complex Systems (pp. 680-691).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37735, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Xia, H., Jia, Z., Ju, L., Li, X., & Zhu, Y. (2011).\"A subjective trust management model with multiple decision factors for MANET based on AHP and fuzzy logic rules.\" Proceedings of 2011 IEEE/ACM International Converence on Green Computing and Communications (GreenCom), 4-5 Aug. 2011, pp. 124-130. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37736, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Xing-Chen, P., & Yun-Feng, W. (2011). Research of agent architecture based on BDI under emergency response. Microcomputer and Its Applications, 30(5), 81-84.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37737, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Xiong, H. Y., & So, W. H. (2011). NetLogo Extension Module for the Active Participatory Simulations with GoGo Board. The Journal of Korean Institute of Communications and Information Sciences, 36(11B), 1363-1372.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37738, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Yan, G. A. N. G., & Yuquan, D. U. (2011). Applying Simulation Model to Evaluation on Television Audience Ratings: Construction of Simulation Model Based on NetLogo. Video Engineering, 11.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation Model, NetLogo" + }, + { + "id": 37739, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Yan-hui, N. I. E. (2011). A research of enterprise innovation knowledge transfer network econometric model on NetLogo simulation. Studies in Science of Science, (7), 20.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Enterprise innovation" + }, + { + "id": 37740, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Yu, L., & Duan, C. (2011, August). Evacuation modelling: An agent based approach. In 2011 2nd International Conference on Artificial Intelligence, Management Science and Electronic Commerce (AIMSEC) (pp. 7080-7083). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37741, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Yu, Y. (2011). Simulation Study of Tacit Knowledge Sharing in the Learning Organization [J]. Information Studies: Theory & Application, 11.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37742, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Yu, Z. T., Yi, L. L., Yan, Q., Shu, H. Y., & Liang, C. (2011, May). Simulation analysis of the evolution of mobile internet industry chain. In 2011 International Conference on Business Management and Electronic Information (Vol. 3, pp. 533-536). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Miscellaneous" + }, + { + "id": 37743, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Yuantao, J., Siqin, Y., & Zhifeng, X. (2011, August). Simulation of e-commerce diffusion model based on Netlogo. In Proceedings of the 2011 International Conference on Innovative Computing and Cloud Computing (pp. 99-102).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computing, Economics, Computer Science, Proceedings" + }, + { + "id": 37744, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Zhao, C. X., Zhang, X. F., & Gong, W. N. (2011). Research on Simulation on Classroom Discipline Based on Complex System Theory with Scientific Teaching Materials. In Applied Mechanics and Materials (Vol. 63, pp. 736-739). Trans Tech Publications Ltd.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Teaching Materials" + }, + { + "id": 37745, + "sort": null, + "year": 2011, + "is_ccl": false, + "reference": "Zhao, M., & He, Q. (2011). A Simulation System of Social Economic. Computer and Information Science, 4(5), 97.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37746, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Abrahamson, D. (2010). A tempest in a teapot is but a drop in the ocean: action-objects in analogical mathematical reasoning. In K. Gomez, L. Lyons & J. Radinsky (Eds.) Learning in the Disciplines: Proceedings of the 9th International Conference of the Learning Sciences (ICLS 2010) (Vol. 1 [Full Papers], pp. 492-499). International Society of the Learning Sciences: Chicago, IL.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Action-objects" + }, + { + "id": 37747, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Berryman, M.J. & Angus, S.D. (2010). Software Tools for Analysis and Modelling of Complex Systems. In R. L. Dewar & F. Detering (Eds.) Complex Physical, Biophysical and Econophysical Systems: Proceedings of the 22nd Canberra International Physics Summer School. Sydney: World Scientific Publishing. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Software Tools" + }, + { + "id": 37748, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Berryman, M. J., & Angus, S. D. (2010). Tutorials on agent-based modelling with NetLogo and network analysis with Pajek. In Complex physical, biophysical and Econophysical systems (pp. 351-375).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Network Analysis, Modeling" + }, + { + "id": 37749, + "sort": null, + "year": 2010, + "is_ccl": true, + "reference": " Blikstein, P., & Wilensky, U. (2010). MaterialSim: A constructionist agent-based modeling approach to engineering education. In M. J. Jacobson & P. Reimann, (Eds.), Designs for learning environments of the future: International perspectives from the learning sciences. New York: Springer.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Engineering Education, Modeling" + }, + { + "id": 37750, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Buzby, C. K., & Jona, K. (2010). EcoCasting: Using NetLogo models of aquatic ecosystems to teach scientific inquiry. AGUFM, 2010, ED21A-0650.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, NetLogo, Science Inquiry" + }, + { + "id": 37751, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Cecconi, F., Campenni, M., Andrighetto, G., & Conte, R. (2010). What do agent-based and equation-based modelling tell us about social conventions: The clash between ABM and EBM in a congestion game framework. Journal of Artificial Societies and Social Simulation, 13(1). doi.org/10.18564/jasss.1585", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37752, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Chu, C.J., Weiner, J., Maestre, F.T., Wang, Y.S., Morris, C., Xiao, S., Yuan, J.L., Du, G.Z. & Wang, G. (2010). Effects of positive interactions, competitive modes and abiotic stress on self thinning in simulated plant populations. Annals of Botany 106: 647-652", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, Economics, History, Social Science, Education, Epidemiology" + }, + { + "id": 37753, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Cioffi-Revilla, C. (2010). A methodology for complex social simulations. Journal of Artificial Societies and Social Simulation, 13(1). doi.org/10.18564/jasss.1528", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Social Science, Miscellaneous" + }, + { + "id": 37754, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Cong, R., & Wei, Y. (2010). Potential impact of (CET) carbon emissions trading on China\u2019s power sector: A perspective from different allowance allocation options. Energy, 35, p 3921-3931. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Carbon Emissions Trading, Power Sector, Allowance Allocation" + }, + { + "id": 37755, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Davilia, A. A., & An, G. (2010). An Agent Based Model of Liver Damage, Inflammation, and Repair: in Silico Translation of Cellular and Molecular Mechanisms to the Clinical Phenomena of Cirrhosis Using NetLogo. Oral Presentation for the 5th Annual Academic Surgical Congress, San Antonio, TX, February 5, 2010.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37756, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Davilia, A. A., & An, G. (2010). An Agent Based Model of Liver Damage, Inflammation, and Repair: in Silico Translation of Cellular and Molecular Mechanisms to the Clinical Phenomena of Cirrhosis Using NetLogo. Journal of Surgical Research (ASC Abstracts Issue), 158(2):411.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Inflammation, Repair, NetLogo, Clinical Phenomena, Cirrhosis" + }, + { + "id": 37757, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Edmonds, B. (2010). Bootstrapping knowledge about social phenomena using simulation models. Journal of Artificial Societies and Social Simulation, 13(1). doi.org/10.18564/jasss.1523", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation Modeling, Social Science" + }, + { + "id": 37758, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Georgeon, O., & Sakellariou, I. Designing Environment-Agnostic Agents. In Adaptive Learning Agents workshop (ALA2012), of the 11th International Conference on Autonomous Agents and Multiagent Systems (AAMAS 2012), pp. 25-32. Valencia, Spain 2012.2[HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37759, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Gobattoni, F., Lauro, G., Leone, A., Monaco, R., & Pelorosso, R. (2010). A simulation method for the stability analysis of landscape scenarios by using a NetLogo application in GIS environment. EGUGA, 5769.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, GIS, Simulation, Archaeology" + }, + { + "id": 37760, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Hadzikadic, M., Carmichael, T., & Curtin, C. (2010). Complex Adaptive Systems and Game Theory: An Unlikely Union. Complexity. Vol 16, Issue 1, p34.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Game Theory, Complexity" + }, + { + "id": 37761, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Hamill, L. (2010). Agent-Based Modelling: The Next 15 Years. Journal of Artificial Societies and Social Simulation (JASSS), 13 (4): 7. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Agent-Based Modelling" + }, + { + "id": 37762, + "sort": null, + "year": 2010, + "is_ccl": true, + "reference": "Holbert, N., Penney, L., & Wilensky, U. (2010). Bringing Constructionism to Action Gameplay. In J. Clayson & I. Kalas (Eds.), Proceedings of the Constructionism 2010 Conference. Paris, France, Aug 10-14.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Constructionism" + }, + { + "id": 37763, + "sort": null, + "year": 2010, + "is_ccl": true, + "reference": "Holbert, N., & Wilensky, U. (2010). FormulaT Racing: Combining gaming culture and intuitive sense of mechanism for video game design. In K. Gomez & J. Radinsky (Ed.), Proceedings of the 9th International Conference of the Learning Sciences. Chicago, IL.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Gaming Culture, Mechanism" + }, + { + "id": 37764, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Izquierdo, S.S., Izquierdo, L.R. & Vega-Redondo, F. (2010). The Option to Leave: Conditional Dissociation in the Evolution of Cooperation. Journal of Theoretical Biology Volume 267, Issue 1, pp. 76\u201384. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Cooperation" + }, + { + "id": 37765, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Jang, S. M., Rhee, J. H., & Oh, S. H. (2010). Implementation of Microscopic Pedestrian Simulation by using NetLogo. Journal of The Korean Society of Civil Engineers, 30(2D), 119-125.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37766, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Johnson, T., Karaman, S., & Rosenberg-Kima, R. B. (2010, October). Computer modelling of teams learning: an agent based social simulation of team learning (SSTeL).. Paper presented at AECT (Association for Educational Communications and Technology), Anaheim, CA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37767, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Johnson, T., Sikorski, E. G., Rosenberg-Kima, R. B., Novak, E., & Andrews, D. E. (2010, May). Development of a training effects algorithm for use within an agent-based modeling and simulation tool.. Paper presented at AERA (American Educational Research Association), Denver, Colorado.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Chemistry, Economics" + }, + { + "id": 37768, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Kahn, K., & Noble, H. (2010). The BehaviourComposer 2.0: a web-based tool for composing NetLogo code fragments. Constructionist approaches to create learning, thinking and education: Lessons for the 21st century: Proceedings for Constructionism.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37769, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Kahn, K. & Noble, H. (2010). The Modelling4All Project -- A web-based modelling tool embedded in Web 2.0. Paper presented at the Proceedings of Constructionism 2010, Paris, France", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 37770, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Kim, J-W. (2010). A Tag-Based Evolutionary Prisoner's Dilemma Game on Networks with Different Topologies. Journal of Artificial Societies and Social Simulation (JASSS), 13 (3): 2. [HTML] (June 2010)", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Evolution, Networks" + }, + { + "id": 37771, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Kleczkowski, A., Maharaj, S. (2010). Stay at home, Wash Your Hands: Epidemic Dynamics with Awareness of Infection. In proceedings of the SCS Summer Computer Simulation Conference, Ottawa, July 2010.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Epidemiology" + }, + { + "id": 37772, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Kurahashi, C., & An, G. (2010). Examining the Spatial Dynamics of the Inflammatory Response with Topographical Metrics in an Agent-Based Computational Model of Inflammation and Healing. Journal of Surgical Research (ASC Abstracts Issue), 158(2):382.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Spatial Dynamics, Computational Modeling" + }, + { + "id": 37773, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Kurahashi, C., & An, G. (2010). Examining the Spatial Dynamics of the Inflammatory Response with Topographical Metrics in an Agent-Based Computational Model of Inflammation and Healing. Oral Presentation for the 5th Annual Academic Surgical Congress, San Antonio, TX, February 5, 2010.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Spatial Dynamics, Computational Modeling, Inflammation, Healing" + }, + { + "id": 37774, + "sort": null, + "year": 2010, + "is_ccl": true, + "reference": "Lerner, R., Levy, S.T., & Wilensky, U. (2010). Encouraging Collaborative Constructionism: Principles Behind the Modeling Commons. n J. Clayson & I. Kalas (Eds.), Proceedings of the Constructionism 2010 Conference. Paris, France, Aug 10-14.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37775, + "sort": null, + "year": 2010, + "is_ccl": true, + "reference": "Levy, S. T., Wilensky, U. (2010). Mining students' actions for understanding of complex systems: Students' explorations of gas models in the Connected Chemistry curriculum. Paper presented at AERA 2010, Denver, CO. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry" + }, + { + "id": 37776, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Li, Y., Wang, W., Ji, L., & Zhu, J. (2010, October). Research on Muti-Agent simulation and emulation in battlefield based on NETLOGO. In 2010 International Conference on Computer Application and System Modeling (ICCASM 2010) (Vol. 6, pp. V6-131). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Ecology, Archaeology, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37777, + "sort": null, + "year": 2010, + "is_ccl": true, + "reference": "Maroulis, S., Guimera, R., Petry, H., Stringer, M., Gomez, L., Amaral, L., & Wilensky, U. (2010). A complex systems approach to Educational Policy Research. Science 1 October 2010: Vol. 330. no. 6000, pp. 38 .", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37778, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Mastrangeli, M., Schmidt, M., & Lacasa, L. (2010). The Roundtable: An Abstract Model of Conversation Dynamics. Journal of Artificial Societies and Social Simulation 13 (4) 2 [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Conversation Dynamics" + }, + { + "id": 37779, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Miodownik, D., Cartrite, B., & Bhavnani, R. (2010). Between replication and docking: \"Adaptive agents, political institutions, and civic traditions\" revisited. Journal of Artificial Societies and Social Simulation, 13(3). doi.org/10.18564/jasss.1627", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37780, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Monett, D., Janisch, R., Starroske, S. (2010). NL-Analyzer: Enhancing Simulation Tools to Assist Multiagent Systems' Teaching. In K. Gomez & J. Radinsky (Ed.), In W. van der Hoek, G.A. Kaminka, Y. Lesp\u00e9rance, M. Luck, S. Sen (eds.), Proceedings of the Workshop Multi-Agent Systems for Education and Interactive Entertainment (MASEIE), 9th International Conference on Autonomous Agents and Multiagent Systems, AAMAS 2010, pp. 1-6, Toronto, Canada.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Education, Computer Science, Miscellaneous" + }, + { + "id": 37781, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Muis, J. (2010). Simulating Political Stability and Change in the Netherlands (1998-2002): an Agent-Based Model of Party Competition with Media Effects Empirically Tested. Journal of Artificial Societies and Social Simulation (JASSS) 13 (2): 4 [HTML] (March 2010)", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37782, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Niazi, M., Siddique, Q., Hussain, A., & Kolberg, M. (2010). Verification & Validation of an Agent-Based Forest Fire Simulation Model. Agent-Directed Simulation Symposium, SCS Spring Simulation Conference, April 2010, Orlando, FL.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Simulation" + }, + { + "id": 37783, + "sort": null, + "year": 2010, + "is_ccl": true, + "reference": "Olson, I., Horn, M., & Wilensky, U. (2010). NetLogo Tango: Supporting Student Programming with Tangible Objects and Multi-Touch Displays. In K. Gomez & J. Radinsky (Ed.), Proceedings of the 9th International Conference of the Learning Sciences. Chicago, IL.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Miscellaneous" + }, + { + "id": 37784, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Olsen, J & Jepsen, MR (2010). HPV transmission and cost-effectiveness of introducing quadrivalent HPV vaccination in Denmark. International Journal of Technology Assessment in Health Care , 26(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics" + }, + { + "id": 37785, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Ol\u0161evi\u010dov\u00e1, K., Bodn\u00e1rov\u00e1, A., & \u010cech, P. (2010, November). Managing Net-Logo Models in CLIPS. In Proceedings of the 9th WSEAS International Conference on Data Networks, Communications, Computers (DNCOCO 10) (pp. 150-152).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37786, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Pluchino, A., Rapisarda, A. & Garofalo, C. (2010). Peter Principle Revisited: a Computational Study. Physica A: Statistical Mechanics and its Applications, 389(3), 467-472. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37787, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Rabuzin, K., & Bakos, N. (2010). Agent-based simulation model of online auctions in NetLogo. In Central European Conference on Information and Intelligent Systems (p. 75). Faculty of Organization and Informatics Varazdin.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37788, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Rezayan, H., Delavar, M.R., Frank, A.U. & Mansouri, A. (2010). Spatial rules that generate urban patterns: Emergence of the power law in the distribution of axial line length. International Journal of Applied Earth Observation and Geoinformation. Volume 12, Issue 5, October 2010, pp. 317-330.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37789, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Rogers, C., Nguy, K. N. T., Amajor, O. A., Seaquist, T., Crawford, B., Mubayi, A., ... & Oyediran, O. (2010). Daily behavior of trypanosoma cruzi hosts and vectors in Texas: An agent-based modeling approach in Netlogo. Mathematics Department Technical Report 2010-18, University of Texas at Arlington, 2010. Online at http://www. uta. edu/math/preprint/rep2010 18. pdf.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Netlogo" + }, + { + "id": 37790, + "sort": null, + "year": 2010, + "is_ccl": true, + "reference": "Russell, E., Buzby, C., & Wilensky, U. (2010). Watershed Modeling For Education. Paper presented at the First International Conference for Geospatial Research & Application, Washington, DC.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37791, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Sakellariou, I. Agent based Modelling and Simulation using State Machines. SIMULTECH 2012. Proceedings of the 2nd International Conference on Simulation and Modeling Methodologies, Technologies and Applications, pp 270-279, Rome, Italy, 28 - 31 July, 2012 [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Agent-based Modeling \n\nSimulation \n\nState Machines \n\nConference \n\nRome" + }, + { + "id": 37792, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Sakellariou, I. Turtles as State Machines - Agent Programming in NetLogo using State Machines. Proceedings of the 4th International Conference on Agents and Artificial Intelligence (ICAART 2012), Volume 2 - Agents, Joaquim Filipe, Ana L. N. Fred (Eds.), SciTePress 2012, ISBN 978-989-8425-96-6, pp. 375-378, Vilamoura, Algarve, Portugal, 6-8 February, 2012 [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Turtles" + }, + { + "id": 37793, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Seal, J.B., Alverdy, J.C., & An, G. (2010). Mechanistic Computational Representation of Iron Metabolism in the Gut Milieu. Oral Presentation for the 5th Annual Academic Surgical Congress, San Antonio, TX, February 3, 2010.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mechanistic Computational Representation" + }, + { + "id": 37794, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Seal, J.B., Alverdy, J.C., Zaborina, O., Zaborin, A., Babrowski, T., Romanowski, K., & An, G. (2010). Computational mechanistic representation of phosphate sensing and virulence activation in Pseudomonas aeruginosa in the gut milieu. Poster Presentation for the 39th Annual Critical Care Congress of the Society of Critical Care Medicine, Miami, FL, January 11, 2010.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biologicals" + }, + { + "id": 37795, + "sort": null, + "year": 2010, + "is_ccl": true, + "reference": "Sengupta, P., & Wilensky, U. (2010). Balancing Electrons & Learning Electricity in 5th Grade: Emergence, Electric Current and Multi- Agent Based Models . Cognition and Instruction.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Education, Epidemiology" + }, + { + "id": 37796, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Sheth, K.R., & An, G. (2010). In Silico Translation of Cellular and Molecular Mechanisms to Clinical Phenomena in Atheroma Development with an Agent Based Model. Journal of Surgical Research (ASC Abstracts Issue), 158(2):382-3.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science" + }, + { + "id": 37797, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Sheth, K.R., & An, G. (2010). In Silico Translation of Cellular and Molecular Mechanisms to Clinical Phenomena in Atheroma Development with an Agent Based Model. Oral Presentation for the 5th Annual Academic Surgical Congress, San Antonio, TX, February 5, 2010.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science" + }, + { + "id": 37798, + "sort": null, + "year": 2010, + "is_ccl": true, + "reference": "Stonedahl, F. & Rand, W., & Wilensky, U. (2010). Evolving Viral Marketing Strategies. Proceedings of the 12th Annual Conference on Genetic and Evolutionary Computation. Portland, OR.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Viral Marketing" + }, + { + "id": 37799, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Stamatopoulou, I., Sakellariou, I., & Kefalas, P. Formal Agent-Based Modelling and Simulation of Crowd Behaviour in Emergency Evacuation Plans. Tools with Artificial Intelligence (ICTAI), 2012 IEEE 24th International Conference on , vol.1, no., pp.1133-1138, 7-9 Nov. 2012 [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37800, + "sort": null, + "year": 2010, + "is_ccl": true, + "reference": "Stonedahl, F. & Rand, W., & Wilensky, U. (2010). Evolving Viral Marketing Strategies. Proceedings of the 12th Annual Conference on Genetic and Evolutionary Computation. Portland, OR. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Viral Marketing" + }, + { + "id": 37801, + "sort": null, + "year": 2010, + "is_ccl": true, + "reference": "Stonedahl, F., & Wilensky, U. (2010). Evolutionary Robustness Checking in the Artificial Anasazi Model. Proceedings of the AAAI Fall Symposium on Complex Adaptive Systems: Resilience, Robustness, and Evolvability. November 11-13, 2010. Arlington, VA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Evolutionary Robustness Checking" + }, + { + "id": 37802, + "sort": null, + "year": 2010, + "is_ccl": true, + "reference": "Stonedahl, F. & Wilensky, U. (2010). Finding Forms of Flocking: Evolutionary Search in ABM Parameter-Spaces. Proceedings of the MABS workshop at the Ninth International Conference on Autonomous Agents and Multi-Agent Systems. Toronto, Canada.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science" + }, + { + "id": 37803, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Suhadolnik, N., Galimberti, J., & Da Silva, S. (2010). Robot traders can prevent extreme events in complex stock markets. Physica A: Statistical Mechanics and its Applications, 389(22): 5182-5192.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Statistics, Miscellaneous" + }, + { + "id": 37804, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Thiele, J.C., & Grimm, V. (2010). NetLogo meets R: Linking agent-based models with a toolbox for their analysis. Environmental Modeling and Software. 25(8), 972-974.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry" + }, + { + "id": 37805, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Valbuena, D., Verburg, P.H., Veldkamp, A., Bregt, A.K. & Ligtenberg, A. (2010). Effects of farmers' decisions on the landscape structure of a Dutch rural region: An agent-based approach. Landscape and Urban Planning. 97(2), 98-110.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Landscape Architecture, Agent-Based Modeling, Agriculture" + }, + { + "id": 37806, + "sort": null, + "year": 2010, + "is_ccl": true, + "reference": "Wagh, A. & Wilensky, U. (2010). Agent-based and aggregate level reasoning elicited by problem scenarios and an agent-based model. Poster presented at the annual meeting of the American Education Research Association, Denver, CO, April 30-May 4.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37807, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Wandling, M., & An, G. (2010). Multi-Scale Dynamic Knowledge Representation of Pulmonary Inflammation with an Agent-Based Model: from Gene Regulation to Clinical Phenomenon. Journal of Surgical Research (ASC Abstracts Issue), 158(2):381.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37808, + "sort": null, + "year": 2010, + "is_ccl": false, + "reference": "Wandling, M., & An, G. (2010). Multi-Scale Dynamic Knowledge Representation of Pulmonary Inflammation with an Agent-Based Model: from Gene Regulation to Clinical Phenomenon. Oral Presentation for the 5th Annual Academic Surgical Congress, San Antonio, TX, February 5, 2010.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Pulmonary Inflammation, Agent-Based Modeling" + }, + { + "id": 37809, + "sort": null, + "year": 2010, + "is_ccl": true, + "reference": "Wilensky, U., & Novak, M. (2010). Teaching and learning evolution as an emergent process: The BEAGLE project. Epistemology and science education: Understanding the evolution vs. intelligent design controversy, 213-243.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37810, + "sort": null, + "year": 2010, + "is_ccl": true, + "reference": "Wilensky, U., & Papert, S. (2010). Restructurations: Reformulations of Knowledge Disciplines through new representational forms. In J. Clayson & I. Kallas (Eds.), Proceedings of the Constructionism 2010 Conference. Paris, France.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Knowledge Disciplines" + }, + { + "id": 37811, + "sort": null, + "year": 2010, + "is_ccl": true, + "reference": "Wilkerson-Jerde, M. & Wilensky, U. (2010). NetLogo HotLink Replay: A Tool for Exploring, Analyzing and Interpreting Mathematical Change in Complex Systems. Poster to be presented at ICLS 2010, Chicago, IL, Jun 29 - Jul 2.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Computer Science, Physics, Economics, Ecology, Archaeology, History" + }, + { + "id": 37812, + "sort": null, + "year": 2010, + "is_ccl": true, + "reference": "Wilkerson-Jerde, M. & Wilensky, U. (2010). Qualitative Calculus of Systems: Exploring Students' Understanding of Rate of Change and Accumulation in Multiagent Systems. Paper accepted for presentation at AERA 2010, Denver, CO.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37813, + "sort": null, + "year": 2010, + "is_ccl": true, + "reference": "Wilkerson-Jerde, M., & Wilensky, U. (2010). Restructuring Change, Interpreting Changes:The DeltaTick Modeling and Analysis Toolkit. Paper to be presented at Constructionism 2010, Paris.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37814, + "sort": null, + "year": 2010, + "is_ccl": true, + "reference": "Wilkerson-Jerde, M. & Wilensky, U. (2010). Seeing Change in the World from Different Levels: Understanding the Mathematics of Complex Systems. In M. Jacobson (Org.), U. Wilensky (Chair), and Peter Reimann (Discussant), Learning about Complexity and Beyond: Theoretical and Methodological Implications for the Learning Sciences. To be presented at ICLS 2010, Chicago, IL, Jun 29 - Jul 2.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37815, + "sort": null, + "year": 2010, + "is_ccl": true, + "reference": "Yang, C.K. & Wilensky, U. (2010). Reinterpreting school effects from the bottom up: Merging statistical analysis and a complex systems perspective. Poster presented at the Constructionism conference. Paris, France. August 16-20, 2010.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 37816, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Abrahamson, D. (2009). A student's synthesis of tacit and mathematical knowledge as a researcher's lens on bridging learning theory. In M. Borovcnik & R. Kapadia (Eds.), Research and developments in probability education [Special Issue]. International Electronic Journal of Mathematics Education, 4(3), 195 - 226.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Knowledge, Research, Education" + }, + { + "id": 37817, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Abrahamson, D. (2009). Embodied design: Constructing means for constructing meaning. Educational Studies in Mathematics, 70(1), 27-47. [PDF] ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37818, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "An, G. (2009). A model of TLR4 signaling and tolerance using a qualitative, particle\u2013event-based method: Introduction of spatially configured stochastic reaction chambers (SCSRC). Mathematical biosciences, 217(1), 43-52.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, TLR4 signaling, Tolerance" + }, + { + "id": 37819, + "sort": null, + "year": 2009, + "is_ccl": true, + "reference": " An, G., & Wilensky, U. (2009). From artificial life to in silico medicine: NetLogo as a means of translational knowledge representation in biomedical research. In A. Adamatzky & M. Komosinski (Eds.), Artificial Life Models in Software (2nd Ed.). Berlin: Springer-Verlag. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37820, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Ang, C.S., & Zaphiris, P. (2009). Simulating Social Networks of Online Communities: Simulation as a Method for Sociability Design. In Proceedings of the 12th IFIP TC 13 International Conference on Human-Computer Interaction: Part II (INTERACT '09), Tom Gross, Jan Gulliksen, Paula Kotz\u00e9, Lars Oestreicher, Philippe Palanque, Raquel Oliveira Prates, and Marco Winckler (Eds.). Springer-Verlag, Berlin, Heidelberg, 443-456.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Social Science" + }, + { + "id": 37821, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Bandini, S., Manzoni, S., & Vizzari, G. (2009). Agent based modeling and simulation: An informatics perspective. Journal of Artificial Societies and Social Simulation, 12(4).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Modeling" + }, + { + "id": 37822, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "BenDor, T., Westervelt, J., Aurambout, J. & Meyer, W. (2009). Simulating population variation and movement within fragmented landscapes: An application to the gopher tortoise (Gopherus polyphemus). Ecological Modelling 220(6), 867-878.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37823, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Bettge, T. (2009). System dynamics modeling of community sustainability in netlogo. TJHSST Computer Systems Lab Senior Research Project, 2008\u20132009, 1-8.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, System Dynamics" + }, + { + "id": 37824, + "sort": null, + "year": 2009, + "is_ccl": true, + "reference": "Blikstein, P., & Wilensky, U. (2009). An atom is known by the company it keeps: A constructionist learning environment for materials science using multi-agent simulation. International Journal of Computers for Mathematical Learning, 14(1), 81-119. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37825, + "sort": null, + "year": 2009, + "is_ccl": true, + "reference": "Blikstein, P., Wilensky, U., & Abrahamson, D. (2009, April). Towards a framework for cognitive research using agent-based modeling and complexity sciences. In M. Jacobson (Chair), M. Kapur (Organizer) & N. Sabelli (Discussant), Complexity, learning, and research: Under the microscope, new kinds of microscopes, and seeing differently. Symposium conducted at the annual meeting of the American Educational Research Association, San Diego, CA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Complexity Sciences, Research" + }, + { + "id": 37826, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Carmichael, T., Hadzikadic, M.,Dr\u00e9au, D., & Whitmeyer, J. (2009). Characterizing Threshold Effects Across Diverse Phenomena. In Z. Ras & W. Ribarsky (Eds), Advances in Information and Intelligent Systems. New York: Springer.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37827, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Castillo, L. F., Bedia, M. G., Uribe, A. L., & Isaza, G. (2009). A formal approach to test commercial strategies: Comparative study using Multi-agent based techniques. Journal of Physical Agents, 3(3), 25-30.(1), 27-47. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37828, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Chu, C.J., Weiner, J., Maestre, F.T., Xiao, S., Wang, Y.S., Li, Q., Yuan, J.L., Zhao, L.Q., Ren, Z.W. & Wang, W. 2009.Positive interactions can increase size inequality in plant populations. Journal of Ecology 94: 1401-1407.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology" + }, + { + "id": 37829, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Crooks, A., Hudson-Smith, A., & Dearden, J. (2009). Agent street: An environment for exploring agent-based models in Second Life. Journal of Artificial Societies and Social Simulation, 12(4).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37830, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Drachsler, H., Hummel, H., van den Berg, B., Eshuis, J., Waterink, W., Nadolski, R., Berlanga, A., Boers, N. & Koper, R. (2009). Evaluating the Effectiveness of Personalised Recommender Systems in Learning Networks. In R. Koper (ed.), Learning Network Services for Professional Development (pp.95-113), Berlin:Springer-Verlag. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37831, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Dr\u00e9au, D., Stanimirov, D., Carmichael T., & Hadzikadic M. (2009). An agent-based model of solid tumor progression. Paper presented at the 1st International Conference on Bioinformatics and Computational Biology, New Orleans, LA., April 2009.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37832, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Filatova, T., Parker, D., & van der Veen, A. (2009). Agent-Based Urban Land Markets: Agent's Pricing Behavior, Land Prices and Urban Land Use Change. Journal of Artificial Societies and Social Simulation (JASSS), 12 (1): 3. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37833, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Friedman, D. & Abraham, R. (2009). Bubbles and crashes: Gradient dynamics in financial markets. Journal of Economic Dynamics and Control 33(4), 922-937.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Economics, Physics, Chemistry, Computer Science, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37834, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Fuks, K., & Kawa, A. (2009). Simulation of resource acquisition by e-sourcing clusters using netlogo environment. Agent and Multi-Agent Systems: Technologies and Applications, 687-696.[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation" + }, + { + "id": 37835, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Graham, S. (2009). Behaviour Space: Simulating Roman Social Life and Civil Violence. Digital Studies / Le Champ Num\u00e9Rique, 1(2). [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37836, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Hamill, L. & Gilbert, N. (2009). Social circles: A simple structure for agent-based social network models. Journal of Artificial Societies and Social Simulation, 12(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Social Science" + }, + { + "id": 37837, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Han, J. X., & Xue, H. F. (2009). Netlogo based modeling and simulation of oem enterprise knowledge management. Journal of Xi'an Technological University, 29, 192-199.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37838, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Handel, A., Yates, A., Pilyugin, S.S., & Antia, R. (2009). Sharing the burden: Antigen transport and firebreaks in immune responses. Journal of the Royal Society Interface 6, 447-454.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37839, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Hunt, C.A. , Ropella, G. E. P.,\u00a0 Lam, T. N., Tang, J., Kim, S. H. J., Engelberg, J. A., & Sheikh-Bahaei, S. (2009). At the biological modeling and simulation frontier. Pharmaceutical Research 26(11), 2369-2400. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Simulation, Physics, Chemistry, Ecology" + }, + { + "id": 37840, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Izquierdo, L. R., Izquierdo, S. S., Gal\u00e1n, J. M., & Santos, J. I. (2009). Techniques to Understand Computer Simulations: Markov Chain Analysis. Journal of Artificial Societies and Social Simulation (JASSS), 12 (1): 6 [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37841, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Janssen, M.A. (2009). Understanding Artificial Anasazi. Journal of Artificial Societies and Social Simulation (JASSS), 12 (4): 13.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Artificial Societies and Social Simulation" + }, + { + "id": 37842, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Jepsen, MR , Simonsen, J & Ethelberg, S (2009). Spatio-temporal cluster analysis of the incidence of Campylobacter cases and patients with general diarrhea in a Danish county.International Journal of Health Geographics , 8(11), pp. 1-12.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37843, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Jiang, L., & Zhao, C. (2009, August). The Netlogo-Based Dynamic Model for the Teaching. In 2009 Ninth International Conference on Hybrid Intelligent Systems (Vol. 2, pp. 49-53). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37844, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Johnson, B.R. (2009). A self-organizing model for task allocation via frequent task quitting and random walks in the honeybee. American Naturalist 174, 537-547.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37845, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Kimbrough, S. O., & Murphy, F. H. (2009). Learning to collude tacitly on production levels by oligopolistic agents. Computational Economics 33(1), 47-78. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37846, + "sort": null, + "year": 2009, + "is_ccl": true, + "reference": "Kornhauser, D., Wilensky, U., & Rand, W. (2009). Design guidelines for agent based model visualization. Journal of Artificial Societies and Social Simulation, JASSS, 12(2), 1. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37847, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Lansing, J.S., Cox, M.P., Downey, S.S., Janssen, M.A., & Schoenfelder, J.W. (2009). A robust budding model of Balinese water temple networks. World Archaeology 41(1), 112-133.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37848, + "sort": null, + "year": 2009, + "is_ccl": true, + "reference": "Lerner, R., Levy S. T., & Wilensky, U. (2009). Design of the Modeling Commons. Chais Conference, Tel Aviv, Israel.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37849, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Levin, J. A. (2009).Notes toward a landmark mediated geometry. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37850, + "sort": null, + "year": 2009, + "is_ccl": true, + "reference": "Levy, S. T., & Wilensky, U. (2009). Crossing levels and representations: The Connected Chemistry (CC1) curriculum. Journal of Science Education and Technology, 18(3), 224-242. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 37851, + "sort": null, + "year": 2009, + "is_ccl": true, + "reference": "Levy, S. T., & Wilensky, U. (2009). Students' learning with the Connected Chemistry (CC1) curriculum: Navigating the complexities of the particulate world. Journal of Science Education and Technology, 18(3), 243-254. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Chemistry, Physics, Computer Science" + }, + { + "id": 37852, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Linard, C., Pon\u00e7on, N., Fontenille, D., & Lambin, E.F., (2009). A multi-agent simulation to assess the risk of malaria re-emergence in southern France. Ecological Modelling, 220(2): 160-174.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37853, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Maharaj, S., McCaig, C., & Shankland C. E. (2009). Studying the effects of adding spatiality to a process algebra model. 8th Workshop on Process Algebra and Stochastically Timed Activities :153-158, 2009. Edinburgh.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37854, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Manzo, G. (2009). \u201cBoudon\u2019s Model of Relative Deprivation Revisited.\u201d In Cherkaoui, M. & Hamilton, P. (eds.) Raymond Boudon: A Life in Sociology, Oxford, Bardwell Press, vol. 3, part 3, ch. 46, 91-121. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Sociology" + }, + { + "id": 37855, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Nadolski, R. J., van den Berg, B., Berlanga, A. J., Drachsler, H., Hummel H. G. K., Koper, R., & Sloep, P. B. (2009). Simulating Light-Weight Personalised Recommender Systems in Learning Networks: a Case for Pedagogy-Oriented and Rating-Based Hybrid Recommendation Strategies. Journal of Artificial Societies and Social Simulation (JASSS), 12(1). [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37856, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "New York Times Magazine. (2009). \"Random Promotions\" from the 9th Annual Year in Ideas. Retrieved March 23, 2010 from http://www.nytimes.com/projects/magazine/ideas/2009/#social_science-12. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Social Science" + }, + { + "id": 37857, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Niazi, M., and Hussain, A. (2009). Agent-Based Tools for Modeling and Simulation of Self-Organization in Peer-to-Peer, Ad Hoc, and Other Complex Networks. IEEE Communications Magazine, Vol.47 No.3. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37858, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Niazi, M., Hussain, A., & Kolberg, M. (2009). Verification and Validation of Agent-Based Simulations using the VOMAS approach. Proceedings of the Third Workshop on Multi-Agent Systems and Simulation '09, as part of MALLOW 09, Sep 7-11, 2009, Torino, Italy.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, Social Science, Education" + }, + { + "id": 37859, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Nikolai, C. & Madey, G. (2009). Tools of the trade: A survey of various agent based modeling platforms. Journal of Artificial Science and Social Simulation, 12(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Agent-based modeling" + }, + { + "id": 37860, + "sort": null, + "year": 2009, + "is_ccl": true, + "reference": "Novak, M., Levy, S. T., & Wilensky, U. (2009). Playing in a particle sandbox and gaining a glass box perspective: The Connected Chemistry curriculum. Working paper.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37861, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Ol\u0161evi\u010dov\u00e1, K. (2009). Ambient Intelligence, Agents and NetLogo. In Ambient Intelligence Perspectives II: Selected Papers from the Second International Ambient Intelligence Forum 2009 (Vol. 5, p. 77). IOS Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Ambient Intelligence, Agents, NetLogo" + }, + { + "id": 37862, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "O'Sullivan, D. (2009). \"Changing neighborhoods\u2014Neighborhoods Changing; A Framework for spatially explicit agent-based models of social systems.\" Sociological Methods Research, 37(4), 498-530. [HTML", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37863, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Patarakin E., Yarmakhov B. (2009). \"Modeling organizational relations with the NetLogo \"links\" Educational Technology & Society\" Educational Technology & Society, No. 2. pp. 409-422. (In Russian) [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37864, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Rol\u00f3n, M., Canavesio, M. & Mart\u00ednez, E. (2009). Agent Based Modelling and Simulation of Intelligent Distributed Scheduling Systems. In Jezowski Jacek & Thullie Jan (Eds.), Proceedings of the 19th European Symposium on Computer Aided Process Engineering (Vol. 26, pp. 985-990). Amsterdam, Holland: Elsevier.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Agent Based Modelling" + }, + { + "id": 37865, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Rol\u00f3n, M., Canavesio, M. & Martinez, E. (2009). Generative Modeling of Holonic Manufacturing Execution Systems for Batch Plants. In R.M. de Brito Alves, C.A.O. do Nascimento , & E.C. Biscaia Jr. (Eds.),10th International Symposium on Process Systems Engineering: Part A (Vol. 27, 795-800). Amsterdam, Holland: Elsevier.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Generative Modeling" + }, + { + "id": 37866, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Sakellariou, I., Kefalas, P., Stamatopoulou, I. (2009). MAS Coursework Design in NetLogo. In Proceedings of the Educational Uses of Multi Agent Systems, Budapest, Hungary. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37867, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Sammons, P. J., & Page, J. (2009). Experimentation and validation of vehicle cluster simulator using NetLogo. Adelaide, SA, Australia.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Experimentation" + }, + { + "id": 37868, + "sort": null, + "year": 2009, + "is_ccl": true, + "reference": "Sengupta, P., & Wilensky, U. (2009). Learning electricity with NIELS: Thinking with electrons and thinking in levels. International Journal of Computers for Mathematical Learning, 14(1), 21-50. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37869, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Schultz, L., Koons, P. O., & Schauffler, M. (2009). Middle-School Understanding of the Greenhouse Effect using a NetLogo Computer Model. AGUFM, 2009, ED23A-0545.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Ecology" + }, + { + "id": 37870, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Siddiqa, A., Niazi, M., Mustafa, F., Bukhari, H., Hussain A., Akram, N., Shaheen, S., Ahmed F., & Iqbal, S. (2009). A New Hybrid Agent-Based Modeling & Simulation Decision Support System For Breast Cancer Data Analysis, IEEE ICICT 09, IBA, Karachi.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37871, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Steiniger, S. & Hay, G.J. (2009). Free and open source geographic information tools for landscape ecology. Ecological Informatics 4(4), 183-195.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Geography" + }, + { + "id": 37872, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Stonedahl, F. (2009, May). NetLogo: Meditations on a Tool for Learning and Modeling. In International Workshop on the Educational Uses of Multi-Agent Systems (EduMAS) (p. 3).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Education" + }, + { + "id": 37873, + "sort": null, + "year": 2009, + "is_ccl": true, + "reference": "Stonedahl, F., Wilkerson-Jerde, M., & Wilensky, U. (2009). Re-conceiving introductory computer science curricula through agent-based modeling. Paper presented at the Eighth International Conference on Autonomous Agents and Multi-agent Systems (AAMAS) - EduMAS Workshop, Budapest, Hungary. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 37874, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Sudhira, H.S. and Ramachandra, T.V. (2009). A Spatial Planning Support System for Managing Bangalore\u2019s Urban Sprawl. In Stan Geertman and John Stillwell (Eds.), Planning Support Systems: Best Practice and New Methods. Springer.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Urban Studies, Planning" + }, + { + "id": 37875, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Thompson, N. S. & Derr, P. (2009). Contra Epstein, good explanations predict. Journal of Artificial Societies and Social Simulation, 12(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37876, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Vattam, S., Goel, A. K., Rugaber, S., Hmelo-Silver, C. & Jordan, R. (2009). From Conceptual Models to Agent-based Simulations: Why and How. Paper presented at the 14th International Conference on Artificial Intelligence in Education (AIED), 2009. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Artificial Intelligence, Simulation, Education" + }, + { + "id": 37877, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Wang, B., Ji, F., & Zhou, M. (2009). Analyzed on the Forming and Its Evolving Of Complex Logistics Network Based On Netlogo. In Logistics: The Emerging Frontiers of Transportation and Development in China (pp. 519-526).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Logistics, Network Science, Computer Science, Transportation" + }, + { + "id": 37878, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Weisberg, M., & Muldoon, R. (2009). Epistemic Landscapes and the Division of Cognitive Labor. Philosophy of Science, 76, 225-252", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37879, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Wilkerson, M. (2009). Agents with attitude: Exploring Coombs Unfolding technique with agent-based models. International Journal of Computers for Mathematical Learning, 14 (1), 51-60. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Attitude" + }, + { + "id": 37880, + "sort": null, + "year": 2009, + "is_ccl": true, + "reference": "Wilkerson-Jerde, M., & Wilensky, U. (2009, April). Complementarity in agent-based and equation-based models. Paper presented at the annual meeting of the American Educational Research Association, San Diego, CA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 37881, + "sort": null, + "year": 2009, + "is_ccl": false, + "reference": "Zhai, Z., Schoenharl, T., Chen, F., & Madey, G. (2009). Design and Implementation of an Agent-Based Simulation for Emergency Response and Crisis Management. Department of Computer Science and Engineering, University of Norte Dame, IN. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Ecology, Physics, Chemistry" + }, + { + "id": 37882, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Abraham, R., & Friedman, D. (2008). Bubbles and Crashes: a Simulation Approach.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37883, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Aktipis, A. (2008). A SIMPLE model for the evolution of movement and cooperation: Social dilemmas emerge from interactions with a shared environment. Paper presented at Swarmfest, 2008.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37884, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Amblard, F. & Jager, W. (2008). Advances in Complex Systems (ACS): Special Issue on Social Simulation (Vol. 11(2)). World Scientific Publishing.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37885, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "An, G. (2008). Introduction of an agent-based multi-scale modular architecture for dynamic knowledge representation of acute inflammation. Theoretical Biology and Medical Modelling, 5(1), 11.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Theoretical Biology, Medical Modelling" + }, + { + "id": 37886, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Arunachalam, S., Zalila-Wenkstern, R., & Steiner, R. (2008). Environment Mediated Multi Agent Simulation Tools - A Comparison. In Proceedings of the 2008 Second IEEE international Conference on Self-Adaptive and Self-Organizing Systems Workshops (57-62). Washington, DC: IEEE Computer Society. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37887, + "sort": null, + "year": 2008, + "is_ccl": true, + "reference": "Blikstein, P., & Wilensky, U. (2008). Implementing multi-agent modeling in the classroom: Lessons from empirical studies in undergraduate engineering education. In G. Kanselaar, J. van Merri\u00ebnboer, P. Kirschner & T. de Jong (Eds.), Proceedings of the International Conference for the Learning Sciences, ICLS2008 (Vol. 3, pp. 266-273). Utrecht, The Netherlands: ISLS. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37888, + "sort": null, + "year": 2008, + "is_ccl": true, + "reference": "Blikstein, P., Abrahamson, D., & Wilensky, U. (2008). The classroom as a complex adaptive system: An agent-based framework to investigate students' emergent collective behaviors. In G. Kanselaar, J. van Merri\u00ebnboer, P. Kirschner & T. de Jong (Eds.), Proceedings of the International Conference for the Learning Sciences, ICLS2008 (Vol. 3, pp. 312-313). Utrecht, The Netherlands: ISLS. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37889, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Bonura, A., Capizzo, M. C., Fazio, C., & Guastella, I. (2008, May). Electric conduction in solids: a pedagogical approach supported by laboratory measurements and computer modelling environments. In AIP Conference Proceedings (Vol. 1018, No. 1, pp. 227-230). American Institute of Physics.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Physics, Chemistry" + }, + { + "id": 37890, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Bravo, G. (2008). Imitation and cooperation in different helping games. Journal of Artificial Societies and Social Simulation, 11(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Cooperation, Helping Games" + }, + { + "id": 37891, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Chu, C.J. Maestre, F.T., Xiao, S., Weiner, J., Wang, Y.S., Duan, Z.H. & Wang, G. (2008). Balance between facilitation and resource competition determines biomass-density relationships in plant populations. Ecology Letters 11: 1189-1197", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37892, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Crooks, A., Castle, C. & Batty, M. (2008). Key challenges in agent-based modelling for geo-spatial simulation. Computers, Environment and Urban Systems 32(6), 417-430.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37893, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Colosimo, A. (2008). Biological Simulations by Autonomous Agents: Two Examples Using the NetLogo Environment. Biophysics and Bioengineering Letters, 1(3).[PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Physics, Computer Science, Miscellaneous" + }, + { + "id": 37894, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Damaceanu, R. (2008). An agent-based computational study of wealth distribution in function of resource growth interval using NetLogo. Applied Mathematics and Computation, 201, 371-377.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37895, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Diappi, L. & Bolchi, P. (2008). Smith's rent gap theory and local real estate dynamics: A multi-agent model. Computers, Environment and Urban Systems 32(1), 6-18.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37896, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Earnest, D. C. (2008). Voting Complexity and Electoral Outcomes: An Agent-Based Model of Condorcet Social Choice Problems. Complexity and Policy Analysis: Decision Making in an Interconnected World. Kurt A. Richardson, Linda Dennard and Goktug Morcol, eds. Greenwich, CT: Information Age Publishing: 2008. 147-166.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Voting Complexity, Electoral Outcomes" + }, + { + "id": 37897, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Earnest, D.C. (2008). Coordination in Large Numbers: An Agent-Based Model of International Negotiations. International Studies Quarterly 52, 2: 363-382. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Coordination" + }, + { + "id": 37898, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Feldman, T., Friedmam, D., & Abraham R. (2008). Bubbles & Crashes: An Experimental Approach. Retrieved February 25, 2010 from http://www.vismath.org/research/landscapedyn/articles/vela2.pdf. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37899, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Fioretti, G. & Lomi, A. (2008). An agent-based representation of the garbage can model of organizational choice. Journal of Artificial Societies and Social Simulation, 11(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37900, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Francisco, M. (2008). Designing classrooms with ABM. Paper presented at Swarmfest, 2008.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37901, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Gilbert G. (2008). Agent-based models. Sage Publications, Inc.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 37902, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Graham, S., & Steiner, J. (2008). \u201cTravellersim: Growing Settlement Structures and Territories with Agent-Based Modelling\u201d in Jeffrey T. Clark and Emily M. Hagemeister (eds) Digital Discovery: Exploring New Frontiers in Human Heritage. CAA 2006. Computer Applications and Quantitative Methods in Archaeology. Proceedings of the 34th Conference, Fargo, United States, April 2006. Budapest: Archaeolingua.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37903, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Iozzi, F. (2008). A simple implementation of Schelling's segregation model in NetLogo. Dondena Centre for Research on Social Dynamics Dondena Working Paper, 15.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 37904, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Isaac, A. G. (2008). Simulating evolutionary games: A Python-based introduction. Journal of Artificial Societies and Social Simulation, 11(3).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37905, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Janota, A. (2008). MAS Model of the Level Crossing. International Journal of ITS Research, Japan, Vol. 6, No. 2 (p. 111-116). ISSN 1348-8503", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37906, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Janssen, M.A. & Bushman, C. (2008). Evolution of cooperation and altruistic punishment when retaliation is possible. Journal of Theoretical Biology 254: 451-455.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37907, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Janssen, M. A., Alessa, L. N., Barton, M., Bergin, S., & Lee, A. (2008). Towards a community framework for agent-based modelling. Journal of Artificial Societies and Social Simulation, 11(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37908, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Jolly, R., & Wakeland, W. W. (2008). Using Agent Based Simulation and Game Theory Analysis to Study Information Sharing in Organizations - The InfoScape. HICSS 2008: 335.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37909, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Jones, G.T. (2008). Dynamical Jurisprudence: Law as a Complex System. Georgia State University Law Review, 24(4), 873-883. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Law, Sociology" + }, + { + "id": 37910, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Jovani, R., and V. Grimm. (2008). Breeding synchrony in colonial birds: from local stress to global harmony. Proceedings of the Royal Society of London B 275:1557-1563.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 37911, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Kanarek, A., Lamberson, R., & Black, J. M. (2008). An individual-based model for traditional foraging behavior: investigating effects of environmental fluctuation. Natural Resource Modeling, Vol 21 (1), pp 93-116. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 37912, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Le, Q.B., Park, S.J., Vlek, P.L. & Cremers, A.B. (2008). Land-Use Dynamic Simulator (LUDAS): A multi-agent system model for simulating spatio-temporal dynamics of coupled human-landscape system. I. Structure and theoretical specification. Ecological Informatics 3(2), 135-153.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 37913, + "sort": null, + "year": 2008, + "is_ccl": true, + "reference": "Levy, S.T., & Wilensky, U. (2008). Inventing a \"mid-level\" to make ends meet: Reasoning through the levels of complexity. Cognition and Instruction, 26(1), 1-47.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37914, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Lysenko, M. & D'Souza, R. M. (2008). A framework for megascale agent based model simulations on graphics processing units. Journal of Artificial Societies and Social Simulation, 11(4).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Agent Based Modeling, Graphics Processing Units" + }, + { + "id": 37915, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Menezes, R., & Bullen, H. (2008). A study of terrain coverage models. Proceedings of the 2008 ACM symposium on Applied computing. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37916, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Menke, N. (2008). Modeling the Effects of Trauma on Epidermal Wound Healing. Paper presented at Swarmfest, 2008.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37917, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Merlone, U., Sonnessa, M., & Terna, P. (2008). Horizontal and vertical multiple implementations in a model of industrial districts. Journal of Artificial Societies and Social Simulation, 11(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37918, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Millington, J., Romero-Calcerrada, R., Wainwright, J., & Perry, G. (2008). An agent-based model of Mediterranean agricultural land-use/cover change for examining wildfire risk. Journal of Artificial Societies and Social Simluation, 11(4).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37919, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Niazi, M. (2008). Self-organized customized content delivery architecture for ambient assisted environments. In Proceedings of the Third international Workshop on Use of P2p, Grid and Agents For the Development of Content Networks (Boston, MA, USA, June 23-23, 2008). HPDC, UPGRADE '08. ACM, New York, NY, 45-54.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Content Delivery, Architecture, Agents, Networks, Computer Science, Content" + }, + { + "id": 37920, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Niazi, M., & Baig, A.R. (2008). Growth of Research Institutes in Developing Nations. International Research Conference 2008, West Visayas State University, La Paz Iloilo City, Philippines, Feb 27- 29, 2008.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37921, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Niazi, M., Hussain, A., Baig, A.R., & Bhatti, S. (2008). Simulation of the research process. in Winter Simulation Conference, Miami, FL, pp.1326-1334.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation" + }, + { + "id": 37922, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Okuyama, T. (2008). Intraguild predation with spatially structured interactions. Basic and Applied Ecology 9(2), 135-144.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology" + }, + { + "id": 37923, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Pathak, S.A., Jacobson, M.J., Kim, B., Zhang, B., & Feng, D. (2008). Learning the Physics of Electricity with Agent-Based Models: The paradox of productive failure. Paper presented at the 2008 International Conference on Computers in Education. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Physics, Computer Science, Biology" + }, + { + "id": 37924, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Polhill, J. G., Parker, D., Brown, D., & Grimm, V. (2008). Using the ODD protocol for describing three agent-based social simulation models of land-use change. Journal of Artificial Societies and Social Simulation, 11(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37925, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Rahmani, A. T., Saberi, A., Mohammadi, M., Nikanjam, A., Mosabbeb, E. A., & Abdoos, M. (2008, May). SHABaN multi-agent team to herd cows. In International Workshop on Programming Multi-Agent Systems (pp. 248-252). Springer, Berlin, Heidelberg.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37926, + "sort": null, + "year": 2008, + "is_ccl": true, + "reference": "Rand, W., Blikstein, P., & Wilensky, U. (2008). GoGoBot: Group collaboration, multi-agent modeling and robots. In L. Padgham, D. Parkes, J. M\u00fcller & S. Parsons (Eds.), Proceedings of the 7th International Conference on Autonomous Agents and Multi-Agent Systems, AAMAS (Vol. 3, pp. 1717-1722). Richland, SC: International Foundation for Autonomous Agents and Multiagent Systems (IFAAMAS). [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37927, + "sort": null, + "year": 2008, + "is_ccl": true, + "reference": "Russell, E., & Wilensky, U. (2008, May). Consuming spatial data in NetLogo using the GIS Extension. Paper presented at the annual meeting of the Swarm Development Group, Chicago, IL.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Geography" + }, + { + "id": 37928, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Sakellariou, I., Kefalas, P., Stamatopoulou, I. (2008). Enhancing NetLogo to Simulate BDI Communicating Agents. In J. Darzentas et al. (Eds.), Proceedings of 5th Hellenic Conference on Artificial Intelligence, SETN 08, (pp. 263-275). Syros, Greece: Springer-Verlag. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37929, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Sakellariou, I., Kefalas, P., Stamatopoulou, I. (2008). Teaching Intelligent Agents using NetLogo. Paper presented at the ACM-IFIP Informatics Education Europe III Conference, IEEIII 2008, Venice, Italy, December 4-5, 2008. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37930, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Schumann, D., & Simon, A. (2008). Public acceptance of CO2 capture and storage (CCS): Simulating the impact of communication. Paper presented at ZUMA (Zentrum f\u00fcr Umfragen, Methoden und Analysen, Centre for surveys, methods and analyses) Advanced Simulation Workshop, April 8-11, Koblenz.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37931, + "sort": null, + "year": 2008, + "is_ccl": true, + "reference": "Sengupta, P., & Wilensky, U. (2008, March). Designing across ages: On the low-threshold-high-ceiling nature of NetLogo-based learning environments. Paper presented at the annual meeting of the American Educational Research Association, New York, NY.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37932, + "sort": null, + "year": 2008, + "is_ccl": true, + "reference": "Sengupta, P., & Wilensky, U. (2008, March). On the representational and epistemological affordances of NetLogo-based science curricula. Paper presented at the annual meeting of the American Educational Research Association, New York, NY.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37933, + "sort": null, + "year": 2008, + "is_ccl": true, + "reference": "Sengupta, P., & Wilensky, U. (2008). On learning electricity in 7th grade with multi-agent based computational models (NIELS). In G. Kanselaar, J. van Merri\u00ebboer, P. Kirschner & T. de Jong (Eds.), Proceedings of the International Conference for the Learning Sciences, ICLS2008 (Vol. 3, pp. 123-125). Utrecht, The Netherlands: ISLS. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37934, + "sort": null, + "year": 2008, + "is_ccl": true, + "reference": "Sengupta, P., & Wilensky, U. (2008). Learning activities as tools for formative assessment - Case study of a computational multi-agent based electricity curriculum (NIELS: NetLogo Investigations In Electromagnetism). In G. Kanselaar, J. van Merri\u00ebboer, P. Kirschner & T. de Jong (Eds.), Proceedings of the International Conference for the Learning Sciences, ICLS2008 (Vol. 3, pp. 383-391). Utrecht, The Netherlands: ISLS.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Learning activities\nelectricity\ncomputer science\nmathematics\nelectromagnetism" + }, + { + "id": 37935, + "sort": null, + "year": 2008, + "is_ccl": true, + "reference": "Sengupta, P., & Wilensky, U. (2008). On the learnability of electricity as a complex system. In G. Kanselaar, J. van Merri\u00ebboer, P. Kirschner & T. de Jong (Eds.), Proceedings of the International Conference for the Learning Sciences, ICLS2008 (Vol. 3, pp. 258-264). Utrecht, The Netherlands: ISLS.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Electricity, Complex Systems, Computer Science, Physics, Ecology, Archaeology, History, Social Science, Education, Miscellaneous" + }, + { + "id": 37936, + "sort": null, + "year": 2008, + "is_ccl": true, + "reference": "Stonedahl, F., Kornhauser, D., Russell, E., Brozefsky, C., Verreau, E., Tisue, S., & Wilensky, U. (2008, May). Tinkering with turtles: An overview of NetLogo's Extensions API. Paper presented at the annual meeting of the Swarm Development Group, Chicago, IL. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37937, + "sort": null, + "year": 2008, + "is_ccl": true, + "reference": "Stonedahl, F., Rand, W., & Wilensky, U. (2008, July). CrossNet: A framework for crossover with network-based chromosomal representations. Paper presented at the 2008 Genetic and Evolutionary Computation Conference (GECCO), Atlanta, GA. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Network Theory, Computer Science" + }, + { + "id": 37938, + "sort": null, + "year": 2008, + "is_ccl": true, + "reference": "Stonedahl, F., Rand, W., & Wilensky, U. (2008, May). Multi-agent learning with a distributed genetic algorithm: Exploring innovation diffusion on networks. Paper presented at the Seventh International Conference on Autonomous Agents and Multi-agent Systems (AAMAS), Estoril, Portugal. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37939, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Sudhira, H. S. (2008).Modelling the Strategic Interactions in Urban Governance. In Proceedings of Third International Conference on Public Policy and Governance, Centre for Public Policy, Indian Institute of Management - Bangalore, India.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Urban Studies, Computer Science, Economics, History, Physics, Chemistry, Social Science, Education" + }, + { + "id": 37940, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Usher, C, Tilson, L, Olsen, J, Jepsen, M, Walsh, C, Barry, M & Jepsen, MR (2008). Cost-effectiveness of human papillomavirus vaccine in reducing the risk of cervical cancer in Ireland due to HPV types 16 and 18 using a transmission dynamic model. Vaccine , 26(44), pp. 5654-5661.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37941, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Voinov, A. A., Sven Erik, J., & Brian, F. (2008). Software. Encyclopedia of Ecology (pp. 3270-3277). Oxford: Academic Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology" + }, + { + "id": 37942, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Wang, B. J., Ji, F., & Zhou, M. (2008, September). Investigate on the forming and its evolving of complex diffusion network based on Netlogo. In 2008 International Conference on Management Science and Engineering 15th Annual Conference Proceedings (pp. 236-242). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Netlogo, Computer Science, Management Science and Engineering" + }, + { + "id": 37943, + "sort": null, + "year": 2008, + "is_ccl": true, + "reference": "Wang, J., Dam, G., Yildrim, S., Rand, W., Wilensky, U., & Houk, J. C. (2008). Reciprocity between the cerebellum and the cerbral cortex: Nonlinear dynamics in microscopic modules. Complexity, 14(2), 29-45. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Miscellaneous" + }, + { + "id": 37944, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Weisberg, M., & Reisman, K. (2008). The Robust Volterra Principle. Philosophy of Science, 75, 106\u2013131.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Philosophy" + }, + { + "id": 37945, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Whitmeyer, J., Carmichael, T., Eichelberger, C., Hadzikadic, M., Khouja, M., Saric, A., & Sun, M. (2008). A Computer Simulation Laboratory for Social Theories. Paper presented at the 2008 IEEE/WIC/ACM International Conference on Intelligence Agent Technology, Sydney, Australia, December 2008.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37946, + "sort": null, + "year": 2008, + "is_ccl": true, + "reference": " Wilkerson-Jerde, M., Sengupta, P., & Wilensky, U. (2008). Perceptual supports for sense-making: A case study using multi-agent based computational learning environments. In G. Kanselaar, J. van Merri\u00ebnboer, P. Kirschner & T. de Jong (Eds.), Proceedings of the Eighth International Conference for the Learning Sciences, ICLS2008 (Vol. 3, pp. 151-152). Utrecht, The Netherlands: ISLS. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37947, + "sort": null, + "year": 2008, + "is_ccl": false, + "reference": "Will, O. & Hegselmann, R. (2008). A replication that failed: On the computational model in 'Michael W. Macy and Yoshimichi Sato: Trust, cooperation and market formation in the U.S. and Japan. Proceedings of the National Academy of Sciences, May 2002'. Journal of Artificial Societies and Social Simulation, 11(3).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computation, Economics" + }, + { + "id": 37948, + "sort": null, + "year": 2007, + "is_ccl": true, + "reference": "Abrahamson, D., & Wilensky, U. (2007). Learning Axes and Bridging Tools in a Technology-Based Design for Statistics. International Journal of Computers for Mathematical Learning. 12(1), 23-55.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37949, + "sort": null, + "year": 2007, + "is_ccl": true, + "reference": "Abrahamson, D., Blikstein, P., & Wilensky, U. (2007). Classroom Model, Model Classroom: Computer-Supported Methodology for Investigating Collaborative-Learning Pedagogy. Proceedings of the Computer-Supported Collaborative Learning conference, New Brunswick, NJ.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37950, + "sort": null, + "year": 2007, + "is_ccl": true, + "reference": "Abrahamson, D., Wilensky, U., & Levin, J. (2007). Agent-Based Modeling as a Bridge Between Cognitive and Social Perspectives on Learning. In D. Abrahamson (Org.), Learning Complexity: Agent-Based Modeling Supporting Education Research on Student Cognition in Social Contexts. Paper presented at the 2007 annual meeting of the American Educational Research Association, Chicago, IL, April 9-13. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Cognitive, Social, Modeling, Education" + }, + { + "id": 37951, + "sort": null, + "year": 2007, + "is_ccl": false, + "reference": "Albiero, F., Fitzek, F. H., & Katz, M. D. (2007). Analysis of Cooperative Power Saving Strategies with NetLogo. In Cognitive Wireless Networks (pp. 603-620). Springer, Dordrecht.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 37952, + "sort": null, + "year": 2007, + "is_ccl": false, + "reference": "Albiero, F., Fitzek, F. H., & Katz, M. D. (2007). Introduction to NetLogo. In Cognitive Wireless Networks (pp. 579-602). Springer, Dordrecht.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, NetLogo, Computer Science, Economics" + }, + { + "id": 37953, + "sort": null, + "year": 2007, + "is_ccl": true, + "reference": "Bakshy, E., & Wilensky, U. (2007). Turtle Histories and Alternate Universes; Exploratory Modeling with NetLogo and Mathematica. In M. J. North, C. M. Macal & D. L. Sallach (Eds.), Proceedings of the Agent 2007 Conference on Complex Interaction and Social Emergence (pp. 147-158). IL: Argonne National Laboratory and Northwestern University. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37954, + "sort": null, + "year": 2007, + "is_ccl": true, + "reference": "Blikstein, P., & Wilensky, U. (2007). Bifocal modeling: a framework for combining computer modeling, robotics and real-world sensing. Paper presented at the 2007 annual meeting of the American Educational Research Association, Chicago, IL, April 9-13. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37955, + "sort": null, + "year": 2007, + "is_ccl": true, + "reference": "Blikstein, P., & Wilensky, U. (2007). Modeling manifold epistemological stances with agent-based computer simulation. Paper presented at the 2007 annual meeting of the American Educational Research Association, Chicago, IL, April 9-13. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 37956, + "sort": null, + "year": 2007, + "is_ccl": true, + "reference": "Blikstein, P., Abrahamson, D., & Wilensky, U. (2007). Multi-agent simulation as a tool for investigating cognitive-developmental theory. Paper presented at the 2007 annual meeting of the American Educational Research Association, Chicago, IL, April 9-13. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Cognitive Development, Simulation, Computer Science, Education" + }, + { + "id": 37957, + "sort": null, + "year": 2007, + "is_ccl": true, + "reference": "Blikstein, P., Rand, W., & Wilensky, U. (2007). Just a Cog in the Machine: Participatory Robotics as a Powerful Tool for Understanding Collaborative Learning. Computer Supported Collaborative Learning (CSCL), Rutgers University, Rutgers, NJ, USA. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37958, + "sort": null, + "year": 2007, + "is_ccl": true, + "reference": "Blikstein, P., Rand, W., & Wilensky, U. (2007). Examining group behavior and collaboration using ABM and robots. In M. J. North, C. M. Macal & D. L. Sallach (Eds.), Proceedings of the Agent 2007 Conference on Complex Interaction and Social Emergence (pp. 159-172). IL: Argonne National Laboratory and Northwestern University. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Collaboration, Robotics, Complex Interaction, Social Emergence" + }, + { + "id": 37959, + "sort": null, + "year": 2007, + "is_ccl": false, + "reference": "Bryson, J., Ando, Y., Lehmann, H. (2007). Agent-based modelling as scientific method: A case study analysing primate social behavior. Philosophical Transactions of the Royal Society, 362, pp.1685-1695. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Psychology" + }, + { + "id": 37960, + "sort": null, + "year": 2007, + "is_ccl": false, + "reference": "Capizzo, M.C. and Bonura, A. and Fazio, C. (2007). Characteristic Properties of Semiconductors Through Experiments and Modelling. Paper presented at GIREP EPEC Conference Frontiers of Physics Education, 26-31 August, 2007, Opatija, Croatia. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Physics" + }, + { + "id": 37961, + "sort": null, + "year": 2007, + "is_ccl": false, + "reference": "Damaceanu, R-C. (2007). An agent-based computational study of wealth distribution in function of resource growth interval using NetLogo. Applied Mathematics & Computation, Vol 12 (43). [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 37962, + "sort": null, + "year": 2007, + "is_ccl": false, + "reference": "Dekker, A. (2007). Studying organisational topology with simple computational models. Journal of Artificial Societies and Social Simulation, 10(4).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37963, + "sort": null, + "year": 2007, + "is_ccl": false, + "reference": "Doi, M. & Kawaguchi, I. (2007). Ecological impacts of umbrella effects of radiation on the individual members. Journal of Environmental Radioactivity 96(1-3), 32-38.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Radiation" + }, + { + "id": 37964, + "sort": null, + "year": 2007, + "is_ccl": false, + "reference": "Fitzek, Frank H.P. & Katz, Marcos D. (2007). Cognitive Wireless Networks. Springer. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Cognitive" + }, + { + "id": 37965, + "sort": null, + "year": 2007, + "is_ccl": false, + "reference": "Gilbert, N. (2007). Agent-Based Models. Sage Publications.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Agent-Based Models" + }, + { + "id": 37966, + "sort": null, + "year": 2007, + "is_ccl": false, + "reference": "Gong, X. & Xiao, R. (2007). Research on multi-agent simulation of epidemic news spread characteristics. Journal of Artificial Societies and Social Simulation, 10(3).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37967, + "sort": null, + "year": 2007, + "is_ccl": false, + "reference": "Hmelo-Silver, C., Liu, L., Gray, S., Finkelstein, H., & Schwartz, R. (2007). Enacting things differently: Using NetLogo models to learn about complex systems. In biennial meeting of European Association for Research on Learning and Instruction.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37968, + "sort": null, + "year": 2007, + "is_ccl": false, + "reference": "Hundhausen, C.D. & Brown, J.L. (2007). What You See Is What You Code: A \"live\" algorithm development and visualization environment for novice learners. Journal of Visual Languages & Computing 18(1), 22-47.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37969, + "sort": null, + "year": 2007, + "is_ccl": false, + "reference": "Izquierdo, S.S., & Izquierdo, L.R. (2007). The impact of quality uncertainty without asymmetric information on market efficiency. Journal of Business Research, Volume 60, Issue 8, pp. 858-867. []", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37970, + "sort": null, + "year": 2007, + "is_ccl": false, + "reference": "Johnson, I. D. (2007). Mathematical modeling with NetLogo: Cognitive demand and fidelity. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Mathematics" + }, + { + "id": 37971, + "sort": null, + "year": 2007, + "is_ccl": false, + "reference": "Kahn, K. (2007). Building computer models from small pieces. In Proceedings of the 2007 Summer Computer Simulation Conference (San Diego, California, July 16 - 19, 2007). Summer Computer Simulation Conference (931-936). San Diego, CA: Society for Computer Simulation International. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science, Biology" + }, + { + "id": 37972, + "sort": null, + "year": 2007, + "is_ccl": false, + "reference": "Kahn, K. (2007). Comparing Multi-Agent Models Composed from Micro-Behaviours. Retrieved February 25, 2010 from http://dfl.cetis.ac.uk/wiki/uploads/0/0d/M2M_2007_C2L_v4.pdf. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37973, + "sort": null, + "year": 2007, + "is_ccl": false, + "reference": "Katzper, M. (2007). Roles for autonomous physiologic agents; an oxygen supply and demand example. Proceedings of the 39th conference on Winter simulation: 40 years! The best is yet to come, pp 1483 - 1486. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Physiology" + }, + { + "id": 37974, + "sort": null, + "year": 2007, + "is_ccl": false, + "reference": "Kon\u00e9, M., Berlanga, Sloep, P. B., Koper, R. (2007). A Learning Community Simulation. Retrieved February 25, 2010 from https://dspace.ou.nl/bitstream/1820/1247/1/KoneetalWBC2007.pdf. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37975, + "sort": null, + "year": 2007, + "is_ccl": true, + "reference": "Kornhauser, D., Rand, W., & Wilensky, U. (2007). Visualization Tools for Agent-Based Modeling in NetLogo. Paper presented at Agent2007, Chicago, November 15-17. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37976, + "sort": null, + "year": 2007, + "is_ccl": false, + "reference": "Lam, R. (2007). Agent-based simulations of service policy decisions. Proceedings of the 39th conference on Winter simulation: 40 years! The best is yet to come. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Economics, Physics, Social Science, Education" + }, + { + "id": 37977, + "sort": null, + "year": 2007, + "is_ccl": false, + "reference": "Lee, K. C. & Lee, N. (2007). CARDS: Case-based reasoning decision support mechanism for mutli-agent negotiation in mobile commerce. Journal of Artificial Societies and Social Simulation, 10(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37978, + "sort": null, + "year": 2007, + "is_ccl": true, + "reference": "Levy, S., & Wilensky, U. (2007). How do I get there...straight, oscillate or inch? High-school students' exploration patterns of Connected Chemistry. Paper presented at the 2007 annual meeting of the American Educational Research Association, Chicago, IL, April 9-13. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Chemistry, Physics, Computer Science, Economics" + }, + { + "id": 37979, + "sort": null, + "year": 2007, + "is_ccl": true, + "reference": "Levy, S.T., & Wilensky, U. (2007). Action across levels (AAL): A multiple levels perspective on what it means to make sense of complex systems. Paper presented at the EARLI 2007 conference, Budapest, Hungary, September 2007. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37980, + "sort": null, + "year": 2007, + "is_ccl": false, + "reference": "Miller, J.H. & Page, S.E. (2007). Complex Adaptive Systems: An Introduction to Computational Models of Social Life. Princeton University Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37981, + "sort": null, + "year": 2007, + "is_ccl": false, + "reference": "Momen, S., Amavasai, B.P., Siddique, N.H. (2007). Mixed Species Flocking for Heterogeneous Robotic Swarms. IEEE Eurcon 2007, The International Conference on 'computer as a tool,' pp: 2329-2336. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 37982, + "sort": null, + "year": 2007, + "is_ccl": false, + "reference": "North, M. & Macal, C. (2007). Managing Business Complexity: Discovering Strategic Solutions with Agent-Based Modeling and Simluation. Oxford University Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37983, + "sort": null, + "year": 2007, + "is_ccl": false, + "reference": "North, M. J, & Macal, C. M. (2007). Agent-based modeling and simulation: desktop ABMS. Proceedings of the 39th conference on Winter simulation: 40 years! The best is yet to come. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science" + }, + { + "id": 37984, + "sort": null, + "year": 2007, + "is_ccl": false, + "reference": "Niazi, M., & Baif, A.R. (2007). Phased Approach to Simulation of Security Algorithms for Ambient Intelligent (AmI) Environments. Winter Simulation Conference 07 (WSC07), PhD Student Colloquium, December 7-11, 2007.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37985, + "sort": null, + "year": 2007, + "is_ccl": true, + "reference": "Ottino-Loffler, J., Rand, W., & Wilensky, U. (2007). Coevolution of Predators and Prey in a Spatial Model. Paper presented at the GECCO 2007 Conference. London, England. July 7-11. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Spatial Modeling" + }, + { + "id": 37986, + "sort": null, + "year": 2007, + "is_ccl": false, + "reference": "Rand, W., & Sondahl, F. (2007). The El Farol Bar Poblem and Computational Effort: Why People Fail to Use Bars Efficiently. In M. J. North, C. M. Macal & D. L. Sallach (Eds.), Proceedings of the Agent 2007 Conference on Complex Interaction and Social Emergence (pp. 71-86). IL: Argonne National Laboratory and Northwestern University. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computation, Archaeology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37987, + "sort": null, + "year": 2007, + "is_ccl": true, + "reference": "Rand, W., & Wilensky, U. (2007). Full-Spectrum Modeling: From Simplicity to Elaboration and Realism in Urban Pattern Formation. Paper presented at the North American Association Computational Social and Organization Sciences conference (NAACSOS), Atlanta, GA. [PDF", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37988, + "sort": null, + "year": 2007, + "is_ccl": true, + "reference": "Sengupta, P., Wilkerson, M. & Wilensky, U. (2007). On The Relationship Between Spatial Knowledge And Learning Electricity: Comparative Case Studies of Students Using 2D And 3D Emergent, Computational Learning Environments. Paper presented at the 2007 annual meeting of the American Educational Research Association, Chicago, IL, April 9-13. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Learning Electricity, Spatial Knowledge, Computational Learning Environments" + }, + { + "id": 37989, + "sort": null, + "year": 2007, + "is_ccl": false, + "reference": "Sklar, E. (2007). Software Review: NetLogo, a Multi-agent Simulation Environment. Artificial Life, 13, 303-311.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Software Review" + }, + { + "id": 37990, + "sort": null, + "year": 2007, + "is_ccl": false, + "reference": "Sondahl, F., & Rand, W (2007). Evolution of Non-Uniform Cellular Automata using a Genetic Algorithm: Diversity and Computation. Presented at the GECCO 2007 Conference, London, UK.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Miscellaneous" + }, + { + "id": 37991, + "sort": null, + "year": 2007, + "is_ccl": false, + "reference": "Sondahl, F., & Rand, W. (2007). Multi-agent Communication Disorders: Dynamic Breeding Networks in Genetic Algorithms. Presentation at Swarmfest 2007 Conference, DePaul University, Chicago, IL. July 2007.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37992, + "sort": null, + "year": 2007, + "is_ccl": false, + "reference": "Stamatopoulo I., Sakellariou, I., Kefala P., & Eleftheraki G. (2007). Formal Modelling for In-silico Experiments with Social Insect Colonies. Paper presented at the 11th Panhellenic Conference in Informatics, 18-20 May 2007. Patras, Greece. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 37993, + "sort": null, + "year": 2007, + "is_ccl": false, + "reference": "Sudhira, H.S., & Ramachandra, T.V. (2007). Integrated Spatial Planning Support System for Managing Urban Sprawl. Reviewed Paper #199, In Conference Proceedings of 10th International Conference on Computers in Urban Planning and Urban Management, Iguassu Falls, PR, Brazil.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37994, + "sort": null, + "year": 2007, + "is_ccl": false, + "reference": "Sudhira, H.S., & Ramachandra, T.V. (2007). Modelling the dynamics of urban sprawl using system dynamics and agent-based models. International Conference on Framing Land Use Dynamics \u2013 II, University of Utrecht, The Netherlands, 18-20 April 2007.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, System Dynamics, Agent-Based Modeling, Urban Studies" + }, + { + "id": 37995, + "sort": null, + "year": 2007, + "is_ccl": false, + "reference": "Tatara, E., North, M.J., Howe, T., Collier, N., & Parker, M. (2007). Building Models in Repast Symphony: A predator-prey example. Paper presented at NAACSOS 2007, Atlanta, GA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 37996, + "sort": null, + "year": 2007, + "is_ccl": false, + "reference": "Thompson, J.W., & Sorvig, K. (2007). Sustainable Landscape Construction: A Guide to Green Building Outdoors. 2nd edition. Island Press. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 37997, + "sort": null, + "year": 2007, + "is_ccl": true, + "reference": "Wilensky, U., & Centola, D. (2007). Simulated evolution: Facilitating students' understanding of the multiple levels of fitness through multi-agent modeling. Paper presented at the Evolution Challenges Conference. Phoenix, AZ. November 3, 2007.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Evolution" + }, + { + "id": 37998, + "sort": null, + "year": 2007, + "is_ccl": true, + "reference": "Wilensky, U., & Rand, W. (2007). Making models match: Replicating agent-based models. Journal of Artificial Societies and Social Simulation (JASSS), 10(4). [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 37999, + "sort": null, + "year": 2007, + "is_ccl": false, + "reference": "Zhang, T. & Zhang, D. (2007). Agent-based simulation of consumer purchase decision-making and the decoy effect. Journal of Business Research 60(8), 912-922.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38000, + "sort": null, + "year": 2007, + "is_ccl": false, + "reference": "Zhao C., Zhong N., & Hao Y. (2007). AOC-by-Self-discovery Modeling and Simulation for HIV. In S. Istrail, P. Pevzner, and M. Waterman (Eds.), Life System Modeling and Simulation (4689/2007, 462-469). Springer: Netherlands. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Simulation, Computer Science, Physics, Mathematics" + }, + { + "id": 38001, + "sort": null, + "year": 2006, + "is_ccl": true, + "reference": "Abrahamson, D., Berland, M.W., Shapiro, R. B., Unterman, J. W., & Wilensky, U. (2006). Leveraging epistemological diversity through computer-based argumentation in the domain of probability. For the Learning of Mathematics, 26(3), 39-55.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 38002, + "sort": null, + "year": 2006, + "is_ccl": true, + "reference": "Abrahamson, D., Janusz, R. M. & Wilensky, U. (2006). There once was a 9-Block... -- A middle-school design for probability and statistics. Journal of Statistics Education, 14(1). [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Statistics, Probability" + }, + { + "id": 38003, + "sort": null, + "year": 2006, + "is_ccl": false, + "reference": "Alessa, L. N., Laituri, M., & Barton, M. (2006). An \"all hands\" call to the social science community: Establishing a community framework for complexity modeling using agent based models and cyberinfrastructure. Journal of Artificial Societies and Social Simulation, 9(4).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Social Science, Miscellaneous" + }, + { + "id": 38004, + "sort": null, + "year": 2006, + "is_ccl": false, + "reference": "An, G. (2006). Concepts for developing a collaborative in silico model of the acute inflammatory response using agent-based modeling. Journal of critical care, 21(1), 105-110.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Agent-Based Modeling" + }, + { + "id": 38005, + "sort": null, + "year": 2006, + "is_ccl": false, + "reference": "Andruss, C. (2006). Computational Modeling of the Interaction of the T. cruzi Parasite and its Environment. Final research report presented at the VCU Bio Informatics Institute, Virginia. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science" + }, + { + "id": 38006, + "sort": null, + "year": 2006, + "is_ccl": true, + "reference": "Berland, M.& Wilensky, U. (2006).Constructionist collaborative engineering: Results from an Implementation of PVBOT. Paper presented at the annual meeting of the American Educational Research Association, San Francisco, CA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Constructionist" + }, + { + "id": 38007, + "sort": null, + "year": 2006, + "is_ccl": true, + "reference": "Blikstein, P. , Abrahamson, D., & Wilensky, U. (2006). Minsky, mind, and models: Juxtaposing agent-based computer simulations and clinical-interview data as a methodology for investigating cognitive-developmental theory. Paper presented at the annual meeting on the Jean Piaget Society, Baltimore, MD, June 1-3. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 38008, + "sort": null, + "year": 2006, + "is_ccl": true, + "reference": "Blikstein, P. & Wilensky, U. (2006). An atom is known by the company it keeps: A constructionist learning environment for Materials Science using multi-agent simulation. Paper presented at the annual meeting of the American Educational Research Association, San Francisco, CA, April 7-11. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 38009, + "sort": null, + "year": 2006, + "is_ccl": true, + "reference": "Blikstein, P. & Wilensky, U. (2006). 'Hybrid modeling': Advanced scientific investigation linking computer models and real-world sensing. Paper presented at the Proceedings of the Seventh International Conference of the Learning Sciences, Bloomington, IL, June 27-July 1. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 38010, + "sort": null, + "year": 2006, + "is_ccl": true, + "reference": "Blikstein, P. & Wilensky, U. (2006). From inert to generative modeling: Case studies of multi-agent-based simulation in undergraduate engineering education. Paper presented at the annual meeting of the American Educational Research Association, San Francisco, CA. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38011, + "sort": null, + "year": 2006, + "is_ccl": true, + "reference": "Blikstein, P. & Wilensky, U. (2006). A case study of multi-agent-based simulation in undergraduate materials science education. Paper presented at the Annual Conference of the American Society for Engineering Education, Chicago, IL, June 18-21.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38012, + "sort": null, + "year": 2006, + "is_ccl": true, + "reference": "Blikstein, P., & Wilensky, U. (2006). The Missing Link: A Case Study of Sensing-and-Modeling Toolkits for Constructionist Scientific Investigation. Proceedings of the International Conference for Advanced Learning Technologies (ICALT 2006) (pp. 980-982). Kerkrade, The Netherlands. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Sensing-and-Modeling Toolkits" + }, + { + "id": 38013, + "sort": null, + "year": 2006, + "is_ccl": true, + "reference": "Blikstein, P., Rand, W. & Wilensky, U. (2006). Participatory, embodied, multi-agent simulation. Paper presented at AAMAS 2006. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Archaeology, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38014, + "sort": null, + "year": 2006, + "is_ccl": false, + "reference": "Bonura, A., Capizzo, M. C., & Fazio, C. (2006). A Pedagogical Approach to Modelling Electric Conduction in Solids. In Proceedings of the XXI GIREP International Conference \u201cModelling in Physics and Physics Education\u201d (pp. 824-830). AMSTEL Institute, University of Amsterdam.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Physics, Computer Science, Modeling" + }, + { + "id": 38015, + "sort": null, + "year": 2006, + "is_ccl": false, + "reference": "Bryson, J. J., Caulfield, T. J., & Drugowitsch, J. (2006). Integrating Life-Like Action Selection into Cycle-Based Agent Simulation Environments. in Proceedings of Agent 2005: Generative Social Processes, Models, and Mechanisms, Michael North, David L. Sallach and Charles Macal eds., pp. 67-81, Argonne National Laboratory 2006. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38016, + "sort": null, + "year": 2006, + "is_ccl": true, + "reference": "Felsen, M., Watson, B., & Wilensky, U. (2006). Urban Complexity + Emergence: Procedural Modeling of City Activity and Form. In Surfacing Urbanisms: Recent Approaches to Metropolitan Design (pp. 261-265). Pasadena, CA: Woodbury University. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38017, + "sort": null, + "year": 2006, + "is_ccl": false, + "reference": "Garofalo, M. (2006). Modeling the El Farol Bar Problem in NetLogo. Submitted for publication. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 38018, + "sort": null, + "year": 2006, + "is_ccl": false, + "reference": "Graham, S. (2006). Networks, Agent-Based Modeling, and the Antonine Itineraries. In The Journal of Mediterranean Archaeology 19.1: 45-64.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Archaeology, Computer Science, Economics" + }, + { + "id": 38019, + "sort": null, + "year": 2006, + "is_ccl": false, + "reference": "Hammond, R., & Axelrod, R. (2006). The Evolution of Ethnocentrism. Journal of Conflict Resolution, 50(6), 926-936. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 38020, + "sort": null, + "year": 2006, + "is_ccl": false, + "reference": "Hills, T. T. (2006). Building\" ethical agent\" based simulations: A case study of a pathological problem in altruistic punishment. In ALife Ethics Workshop Artificial Life X, Bloomington, IN, USA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ethics" + }, + { + "id": 38021, + "sort": null, + "year": 2006, + "is_ccl": false, + "reference": "Izquierdo, L.R. and Polhill, J.G. (2006). Is your model susceptible to floating-point errors? Journal of Artificial Societies and Social Simulation 9(4)4. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 38022, + "sort": null, + "year": 2006, + "is_ccl": true, + "reference": "Jacobson, M. & Wilensky, U. (2006). Complex systems in education: Scientific and educational importance and implications for the learning sciences. Journal of the Learning Sciences, 15(1), pp. 11-34. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38023, + "sort": null, + "year": 2006, + "is_ccl": false, + "reference": "Jepsen, MR , Leisz, S , Rasmussen, K , Jakobsen, J, Moller-Jensen, L & Christiansen, L (2006). Agent-based modelling of shifting cultivation field patterns, Vietnam. International Journal of Geographical Information Science , 20(9), pp. 1067-1085.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38024, + "sort": null, + "year": 2006, + "is_ccl": false, + "reference": "Joyce, D., Kennison, J., Densmore, O., Guerin, S., Barr, S., Charles, E., et al. (2006). My Way or the Highway: a More Naturalistic Model of Altruism Tested in an Iterative Prisoners' Dilemma. Journal of Artificial Societies and Social Simulation, 9(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38025, + "sort": null, + "year": 2006, + "is_ccl": false, + "reference": "Koehler, M. (2006). Using NetLogo in the Data Farming Environment.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology\n```\n```" + }, + { + "id": 38026, + "sort": null, + "year": 2006, + "is_ccl": false, + "reference": "Kumar, S. & Mitra, S. (2006). Self-organizing traffic at a malfunctioning intersection. Journal of Artificial Societies and Social Simulation, 9(4).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38027, + "sort": null, + "year": 2006, + "is_ccl": true, + "reference": "Lechner, T., Watson, B., Ren, P., Wilensky, U., Tisue, S. & Felsen, M. (2006). Procedural modeling of urban land use. ACM SIGGRAPH 2006 conference. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, Urban Studies, Social Science, Education" + }, + { + "id": 38028, + "sort": null, + "year": 2006, + "is_ccl": true, + "reference": "Levy, S.T, Novak, M. & Wilensky, U. (2006). Students' foraging through the complexities of the particulate world: Scaffolding for independent inquiry in the connected chemistry (MAC) curriculum. Paper presented at the annual meeting of the American Educational Research Association, San Francisco, CA. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Chemistry, Physics, Miscellaneous" + }, + { + "id": 38029, + "sort": null, + "year": 2006, + "is_ccl": true, + "reference": "Levy, S.T. & Wilensky, U. (2006). Gas laws and beyond: Strategies in exploring models of the dynamics of change in the gaseous state. Paper presented at the annual meeting of the National Association for Research in Science Teaching, San Francisco, CA. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Physics, Miscellaneous" + }, + { + "id": 38030, + "sort": null, + "year": 2006, + "is_ccl": true, + "reference": "Levy, S.T. & Wilensky, U. (2006). Emerging knowledge through an emergent perspective: High-school students' inquiry, exploration and learning in the Connected Chemistry curriculum. Paper presented at the annual meeting of the American Educational Research Association, San Francisco, CA. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38031, + "sort": null, + "year": 2006, + "is_ccl": false, + "reference": "Makowsky, M. (2006). An agent-based model of mortality shocks, intergenerational effects, and urban crime. Journal of Artificial Societies and Social Simulation, 9(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Urban Studies" + }, + { + "id": 38032, + "sort": null, + "year": 2006, + "is_ccl": true, + "reference": "Maroulis, S., & Wilensky, U. (2006). Using agent-based modeling to understand the social dynamics of schools. Paper presented at the Teacher Networks conference, Northwestern University, Evanston, IL, November 8.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 38033, + "sort": null, + "year": 2006, + "is_ccl": false, + "reference": "Muscalagiu, I., Jiang, H., & Emil, P. H. (2006, September). Implementation and Evaluation Model for the Asynchronous Search Techniques: From a Synchronously Distributed System to an Asynchronous Distributed System. In 2006 Eighth International Symposium on Symbolic and Numeric Algorithms for Scientific Computing (pp. 209-216). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Economics" + }, + { + "id": 38034, + "sort": null, + "year": 2006, + "is_ccl": false, + "reference": "Pugh, G. A. (2006, March). Agent-based simulation of discrete-event systems. In Proceedings of the 2006 Illinois-Indiana and North Central Joint Section Conferences,(Mar 31-Apr 1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Economics" + }, + { + "id": 38035, + "sort": null, + "year": 2006, + "is_ccl": false, + "reference": "Railsback, S., Lytinen, S., & Jackson, S. (2006). Agent-based Simulation Platforms: Review and Development Recommendations. SIMULATION, 82(9), 609-623.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38036, + "sort": null, + "year": 2006, + "is_ccl": false, + "reference": "Rand, W. (2006). Machine Learning Meets Agent-Based Modeling: When Not to Go to a Bar. Paper presented at Agent 2006, Chicago, IL. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Machine Learning, Agent-Based Modeling, Modeling" + }, + { + "id": 38037, + "sort": null, + "year": 2006, + "is_ccl": true, + "reference": "Rand, W. & Wilensky, U. (2006). Verification and Validation through Replication: A Case Study Using Axelrod and Hammond's Ethnocetnrism Model. Paper presented at NAACSOS 2006, South Bend, IN, June 2006. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 38038, + "sort": null, + "year": 2006, + "is_ccl": true, + "reference": "Rand, W. & Wilensky, U. (2006). NetLogo 3.1: Low Threshold, No Ceiling. Paper presented at NAACSOS 2006, South Bend, IN, June 2006.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 38039, + "sort": null, + "year": 2006, + "is_ccl": true, + "reference": "Rand, W., Blikstein, P. & Wilensky, U. (2006). Widgets, Planets, and Demons: the Case for the Integration of Human, Embedded, and Virtual Agents via Mediation. Paper presented at Swarmfest 2006, South Bend, IN, June 2006. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38040, + "sort": null, + "year": 2006, + "is_ccl": false, + "reference": "Richiardi, M., Leombruni, R., Saam, N., & Sonnessa, M. (2006). A common protocol for agent-based social simulation. Journal of Artificial Societies and Social Simulation, 9(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Archaeology, Social Science" + }, + { + "id": 38041, + "sort": null, + "year": 2006, + "is_ccl": false, + "reference": "Riggs, W. W. (2006, October). Agent-based modeling as constructionist pedagogy: An alternative teaching strategy for the social sciences. In E-Learn: World Conference on E-Learning in Corporate, Government, Healthcare, and Higher Education (pp. 1417-1423). Association for the Advancement of Computing in Education (AACE).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Agent-based modeling, Pedagogy, Constructionist pedagogy" + }, + { + "id": 38042, + "sort": null, + "year": 2006, + "is_ccl": false, + "reference": "Roberts, B. (2006). Blocked exit syndrome: A serious risk in venue emergencies. Fire & Safety Magazine, Fall 2006.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 38043, + "sort": null, + "year": 2006, + "is_ccl": true, + "reference": " Sengupta, P. & Wilensky, U. (2006). NIELS: An agent-based modeling environment for learning electromagnetism. Paper presented at the annual meeting of the American Educational Research Association, San Francisco, CA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry" + }, + { + "id": 38044, + "sort": null, + "year": 2006, + "is_ccl": true, + "reference": " Stondahl, F., Tisue, S. & Wilensky, U. (2006). Breeding faster turtles: Progress towards a NetLogo compiler. Paper presented at Agent 2006, Chicago, IL. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 38045, + "sort": null, + "year": 2006, + "is_ccl": false, + "reference": "Thorne, B., Bailey, A, Benedict, K., & Peirce-Cottler, S. (2006). Modeling blood vessel growth and leukocyte extravasation in ischemic injury: an integrated agent-based and finite element analysis approach. Journal of Critical Care, 21(4), 346. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Physics, Chemistry, Archaeology" + }, + { + "id": 38046, + "sort": null, + "year": 2006, + "is_ccl": true, + "reference": "Unterman, J. & Wilensky, U. (2006). PANDA BEAR: Perimeter and area by embodied agent reasoning. Paper presented at the annual meeting of the American Educational Research Association, San Francisco, CA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 38047, + "sort": null, + "year": 2006, + "is_ccl": true, + "reference": "Wilensky, U. (2006). Complex systems and restructuration of scientific disciplines: Implications for learning, analysis of social systems, and educational policy. Paper presented at the annual meeting of the American Educational Research Association, San Francisco, CA, April 7-11.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Education, Miscellaneous" + }, + { + "id": 38048, + "sort": null, + "year": 2006, + "is_ccl": true, + "reference": "Wilensky, U. (2006). Promoting ABM literacy: implications for design, scientific content and education. Paper presented at Agent 2006, Chicago, IL.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Education" + }, + { + "id": 38049, + "sort": null, + "year": 2006, + "is_ccl": true, + "reference": "Wilensky, U. & Abrahamson, D. (2006). Is a disease like a lottery?: Classroom networked technology that enables student reasoning about complexity. Paper presented at the annual meeting of the American Educational Research Association, San Francisco, CA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Education" + }, + { + "id": 38050, + "sort": null, + "year": 2006, + "is_ccl": true, + "reference": "Wilensky, U. & Reisman, K. (2006). Thinking Like a Wolf, a Sheep or a Firefly: Learning Biology through Constructing and Testing Computational Theories -- an Embodied Modeling Approach. Cognition & Instruction, 24(2), pp. 171-209. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computational Theory, Modeling" + }, + { + "id": 38051, + "sort": null, + "year": 2006, + "is_ccl": true, + "reference": "Wilensky, U., & Papert, S. (2006). Restructurations: Reformulations of Knowledge Disciplines through a change in representational forms. Unpublished working paper. Evanston, IL. Center for Connected Learning and Computer-Based Modeling. Northwestern University.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 38052, + "sort": null, + "year": 2006, + "is_ccl": false, + "reference": "Xie, Q., & Tinker, R. (2006). Molecular Dynamics Simulations of Chemical Reactions for Use in Education. Journal of Chemical Education, 83(1), 77. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Molecular Dynamics Simulations" + }, + { + "id": 38053, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Abraham, R., Miller, M., & Miller, J. (2005). Emerging 4D graphics for math and science education. Paper presented at the ACM SIGGRAPH 2005 Educators program, Los Angeles, California. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Miscellaneous" + }, + { + "id": 38054, + "sort": null, + "year": 2005, + "is_ccl": true, + "reference": "Abrahamson, D., Blikstein, P., Lamberty, K. K. & Wilensky, U. (2005). Mixed-media learning environments. Paper presented at the annual meeting of Interaction Design and Children 2005, Boulder, Colorado.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 38055, + "sort": null, + "year": 2005, + "is_ccl": true, + "reference": "Abrahamson, D., & Wilensky, U. (2005). Collaboration and equity in classroom activities using Statistics As Multi-Participant Learning-Environment Resource (S.A.M.P.L.E.R.). In W. Stroup and U. Wilensky (Chairs), & C. D. Lee (Discussant), \"Patterns in group learning with next-generation network technology.\" Paper presented at the annual meeting of the American Educational Research Association, Montreal, Canada, April 11 - 15. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Statistics" + }, + { + "id": 38056, + "sort": null, + "year": 2005, + "is_ccl": true, + "reference": "Abrahamson, D. & Wilensky, U. (2005). Piaget? Vygotsky? I'm game: Agent-based modeling for psychology research. Paper presented at the annual meeting of the Jean Piaget Society. Vancouver, Canada, June 1-3. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Psychology" + }, + { + "id": 38057, + "sort": null, + "year": 2005, + "is_ccl": true, + "reference": "Abrahamson, D. & Wilensky, U. (2005). ProbLab goes to school: Design, teaching, and learning of probability with multi-agent interactive computer models. Paper presented at the Fourth Conference of the European Society for Research in Mathematics Education, San Feliu de Guixols, Spain. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Probability, Computer Science, Mathematics Education" + }, + { + "id": 38058, + "sort": null, + "year": 2005, + "is_ccl": true, + "reference": "Abrahamson, D., & Wilensky, U. (2005). The stratified learning zone: Examining collaborative-learning design in demographically-diverse mathematics classrooms. In D. Y. White (Chair) & E. H. Gutstein (Discussant), \"Equity and diversity studies in mathematics learning and instruction.\" Paper presented at the annual meeting of the American Educational Research Association, Montreal, Canada, April 11 - 15", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38059, + "sort": null, + "year": 2005, + "is_ccl": true, + "reference": "Abrahamson, D. & Wilensky, U. (2005). Understanding chance: From student voice to learning supports in a design experiment in the domain of probability. In G.M. Lloyd, M. Wilson, J. L. M. Wilkins & S.L. Behm (Eds.), Proceedings of the Twenty Seventh Annual Meeting of the North American Chapter of the International Group for the Psychology of Mathematics Education.Roanoke, VA. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Chance" + }, + { + "id": 38060, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Agar, M. (2005). Agents in living color: Towards emic agent-based models. Journal of Artificial Societies and Social Simulation, 8(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 38061, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Aldinger, T., Kopf, S., Scheele, N., & Effelsberg, W. (2005). Participatory Simulation of a Stock Exchange. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 38062, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Amos, M., & Wood, A. (2005). Effect of door delay on aircraft evacuation time. Arxiv preprint cs.MA/0509050. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 38063, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Banos, A. Godara, A., & Lassarre, S. (2005). Simulating pedestrians and cars behaviours in a virtual city: an agent-based approach. Paper presented at the European Conference on Complex Systems, Paris, 14-18 November. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 38064, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Barton, A. (2005). Modelling the Foraging Patterns of a Colony of Co-operating Army Ant Agents using NetLogo. NRC/ERB-1122. February 21, 2005. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Modeling" + }, + { + "id": 38065, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Beer, M. D., & Hill, R. (2005). Integrating Multi-Agent Systems into the Wider Computing Curriculum. Paper presented at the The AAMAS-2005 Workshop on Teaching Multi-Agent Systems - TeachMAS Utrecht, the Netherlands.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 38066, + "sort": null, + "year": 2005, + "is_ccl": true, + "reference": "Berland, M., & Wilensky, U. (2005). Complex play systems -- Results from a classroom implementation of VBOT. Paper presented at the annual meeting of the American Educational Research Association, Montreal, Canada, April 11 - 15.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38067, + "sort": null, + "year": 2005, + "is_ccl": true, + "reference": "Blikstein, P. & Wilensky, U. (2005). Less is more: Agent-based simulation as a powerful learning tool in materials science. Paper presented at the 4th International Joint Conference on Autonomous Agents and Multiagent Systems (AAMAS 2005), Utrecht, Netherlands. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Materials Science, Agent-based Systems, Computer Science, Learning" + }, + { + "id": 38068, + "sort": null, + "year": 2005, + "is_ccl": true, + "reference": "Blikstein, P., Abrahamson, D. & Wilensky, U. (2005). NetLogo: Where we are, where we're going. Paper presented at the annual meeting of Interaction Design and Children. Boulder, Colorado. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 38069, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Cace, I., & Bryson, J. (2005). Agent Based Modelling of Communication Costs: Why information can be free. In Emergence and Evolution of Linguistic Communication C. Lyon, C. L Nehaniv and A. Cangelosi, eds., pp. 305-322, Springer 2007. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Communication, Modeling" + }, + { + "id": 38070, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Calvez, B., & Hutzler, G. (2005). Parameter Space Exploration of Agent-Based Models. In Knowledge-Based Intelligent Information and Engineering Systems, 3684, 633-639. Springer Berlin / Heidelberg. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 38071, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Capizzo, M. C., Fazio, C., & Sperandeo-Mineo, R. M. (2005). Object based modelling environments applied to science education. Methods and Technologies for Learning, 34, 193.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38072, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Da Costa, L. E., & Terhesiu, D. (2005). A simple model for the diffusion of ideas. Research Project for the Complex Systems Summer School, SFI (Santa Fe, New Mexico). [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 38073, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "de Marchi, S. (2005). Computational and Mathematical Modeling in the Social Sciences. Cambridge University Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38074, + "sort": null, + "year": 2005, + "is_ccl": true, + "reference": "Forsyth, A. J., Horne, G. E., Upton, S. C., & Center, A. T. (2005). Marine Corps applications of data farming. Paper presented at the Proceedings of the 2005 Winter Simulation Conference. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Data Farming" + }, + { + "id": 38075, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Gershenson, C. (2005). Self-Organizing Traffic Lights. Complex Systems, 16(1):29\u201353. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies" + }, + { + "id": 38076, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Gilbert, N., & Troitzsch, K. (2005). Simulation for the social scientist (second ed.). Milton, UK: Open University Press.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38077, + "sort": null, + "year": 2005, + "is_ccl": true, + "reference": "Gobert, J., Buckley, B., Dede, C., Levy, S., Slotta, J., & Wilensky, U. (2005). Technology features that support research through logging of student interactions with models. Paper presented at the Winter Text Conference, Jackson Hole, WY, January 20-23.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38078, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Gulyas, L., Bartha, S., Kozsik, T., Szalai, R., Korompai, A., & Tatai, G. (2005). The Multi-Agent Simulation Suite (MASS) and the Functional Agent-Based Language of Simulation (FABLES). Paper presented at Swarmfest2005, Torino, Italy, June 5-7, 2005. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Simulation, Language" + }, + { + "id": 38079, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Hoffer, L. (2005). Using Agent-based Modeling to Better Understand Local Heroin Dealing. Organizations and Drug Markets, Washington University.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 38080, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Janota, A., Rastocny, K., Zahradnik, J. (2005). Multi-agent approach to traffic simulation in NetLogo environment - Level Crossing model. Paper presented at the 5th International Conference Transport Systems Telematics TST '05, Silesian University of Technology. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38081, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Janota, A., Spalek, J., & Hrb\u010de J. (2005). NetLogo \u2013 prostredie na tvorbu multiagentov\u00fdch syst\u00e9mov a jeho vyu\u017eitie na simul\u00e1ciu riadenia \u017eelezni\u010dn\u00e9ho priecestia. AT&P Journal, PLUS7.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 38082, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Keshtkar, F., Gueaieb, W., & White, A. (2005). An Agent-based Model for Image Segmentation. Paper presented at the 13th Multi-disciplinary Iranian Researchers Conference in Europe (IRCE'2005), Leeds, United Kingdom, July 2005.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Image Segmentation" + }, + { + "id": 38083, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Khouadjia, M., Khanfouf, H., & Meshoul, S. (2005). Une Approche adaptative pour la segmentation d\u00d5images: Implementation sur la plate-forme Multi-agents NetLogo. Working Paper, Laboratoire LIRE, Universit\u00e9 Mentouri, Constantine, Alg\u00e9rie.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 38084, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Koehler, M., Tivnan, B., & Bloedorn, E. (2005). Generating Fraud: Agent Based Financial Network Modeling. Paper presented at the NAACSOS Conference 2005, South Bend, IN, June 26-28. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38085, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Koehler, M., Tivnan, B., & Upton, S. (2005). Clustered Computing with NetLogo and Repast J: Beyond Chewing Gum and Duct Tape. Paper presented at the Agent2005 conference, Chicago, IL. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 38086, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Koper, R. (2005). Increasing learner retention in a simulated learning network using indirect social interaction. Journal of Artificial Societies and Social Simulation, 8(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Social Science, Computer Science" + }, + { + "id": 38087, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Kopf, S., Scheele, N., Winschel, L., & Effelsberg, W. (2005). Improving Activity and Motivation of Students with Innovative Teaching and Learning Technologies. International Conference on Methods and Technologies for Learning (ICMTL). [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Teaching, Technology, Motivation" + }, + { + "id": 38088, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Kuhl, M. E., Steiger, N. M., Armstrong, F. B., & Joines, J. A. (2005). MARINE CORPS APPLICATONS OF DATA FARMING.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38089, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Lauberte, I. (2005). Using of cellular automata in agent-based simulation for regional development. Paper presented at the 6th Conference on Baltic Studies in Europe, Valmiera, June 17-19, pp. 99-104. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 38090, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Laver, M. (2005). Policy and the dynamics of political competition. American Political Science Review, 99(2), 263-281. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Politics, Science, Economics" + }, + { + "id": 38091, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Le, Q.B. (2005). Multi-agent system for simulation of land-use and land-cover change: a theoretical framework and its first implementation for an upland watershed in the Central Coast of Vietnam. Ecology and Development Series 29. G\u00f6ttingen: Cuvillier Verlag.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 38092, + "sort": null, + "year": 2005, + "is_ccl": true, + "reference": "Levy, S.T., & Wilensky, U. (2005). Students' patterns in exploring NetLogo models, embedded in the Connected Chemistry curriculum. In J. Gobert (Chair) and J. Pellegrino (Discussant), \"Logging students' learning in complex domains: Empirical considerations and technological solutions.\" Paper presented at the annual meeting of the American Educational Research Association, Montreal, Canada, April 11 - 15. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38093, + "sort": null, + "year": 2005, + "is_ccl": true, + "reference": "Maroulis, S., & Wilensky, U. (2005). Modeling school districts as complex adaptive systems: A simulation of market-based reform. Paper presented at the 3rd Lake Arrowhead Conference on Human Complex Systems. Lake Arrowhead, CA, May 18-22.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Complex Systems, Simulation, Economics, Human Complex Systems, Urban Studies" + }, + { + "id": 38094, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Merks, R. & Glazier, J. (2005). A cell-centered approach to developmental biology. Physica A. 352(1), 1 July 2005, 113\u2013130. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Developmental biology" + }, + { + "id": 38095, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Michel, F., Beurier, G., & Ferber, J. (2005). The TurtleKit Simulation Platform: Application to Multi-Level Emergence. First International Conference on Signal-Image Technology & Internet-Based Systems (Workshop Sessions), Hilton Hotel, Yaound\u00e9, Cameroon, November 27th - December 1st, 2005. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Signal-Image Technology, Internet-Based Systems" + }, + { + "id": 38096, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Morrison, D., & Dennis, B. (2005). MetaLab: supporting social grounding and group task management in CSCL environments through social translucence. Proceedings of the Proceedings of the 2005 conference on Diversity in computing (pp. 20-22). Albuquerque, New Mexico, USA: ACM. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Sociology" + }, + { + "id": 38097, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Muscalagiu, I., Horia-Emil, P., & Panoiu, M. (2005). Determining the Number of Messages Transmitted for the Temporary Links in the Case of ABT Family Techniques. Paper presented at the 7th International Symposium on Symbolic and Numeric Algorithms for Scientific Computing (SYNASC'05), Timisoara, Romania September 25-29, 2005.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38098, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Nan, N., Johnston, E., Olson, J., & Bos, N. (2005). Beyond being in the lab: using multi-agent modeling to isolate competing hypotheses. Paper presented at the Conference on Human Factors in Computing Systems, Portland, OR. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 38099, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Ohshima, Y. (2005). Kedama: A GUI-Based Interactive Massively Parallel Particle Programming System. Visual Languages and Human-Centric Computing, 2005 IEEE Symposium on, 91-98.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 38100, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Pereira, G. M. (2005). The effects of functional diversity in spatially distributed geographic domains. Paper presented at the Geocomputation 2005 conference. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 38101, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Rand, W., Brown, D., Riolo, R. & Robinson, D. (2005). Toward a graphical ABM toolkit with GIS integration. Paper presented at the Agent2005 Conference, Chicago, IL, October 13-14. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Geography, Computer Science, Miscellaneous" + }, + { + "id": 38102, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Robertson, D. A. (2005). Agent-Based Modeling Toolkits NetLogo, RePast, and Swarm. Academy of Management Learning and Education, 4(4), 525-527. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Agent-Based Modeling, Education" + }, + { + "id": 38103, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Schellinck, J., & White, T. (2005). Use of Netlogo as a rapid prototyping tool for the creation of more rigorous spatially explicit individual-based biological models. In First Open International Conference on Modeling & Simulation.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling & Simulation, Computer Science" + }, + { + "id": 38104, + "sort": null, + "year": 2005, + "is_ccl": true, + "reference": " Sengupta, P. & Wilensky, U. (2005). N.I.E.L.S: An emergent multi-agent based modeling environment for learning physics. Paper presented at the 4th International Joint Conference on Autonomous Agents and Multiagent Systems (AAMAS 2005), Utrecht, Netherlands.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Physics, Computer Science, Modeling" + }, + { + "id": 38105, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Shaker, A., Reeves, D.S. (2005). Self-Stabilizing Structured RingTopology P2P System. Paper presented at the Fifth IEEE International Conference on Peer-to-Peer Computing (P2P'05). [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38106, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Stieff, M., Bateman Jr., R. C., Uttal, D. (2005). Teaching and Learning with Three-dimensional Representations. In J. K. Gilbert (Ed.) Models and Modeling in Science Education (Vol 1, 93-120). Springer: Netherlands. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Science Education" + }, + { + "id": 38107, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Stirling, D. (2005). Modeling complex systems. Paper submitted to the Advanced International Colloquium on Building the Scientific Mind. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Modeling" + }, + { + "id": 38108, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Vidal, J. M. (2005). NetLogo for Building Prototype Multiagent Systems. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 38109, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Wheeler, S. (2005). It pays to be popular: A study of civilian assistance and guerilla warfare. Journal of Artificial Societies and Social Simulation, 8(4).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38110, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Wheeler, S. (2005). On the Suitability of NetLogo for the Modelling of Civilian Assistance and Guerrilla Warfare. DSTO Science Systems Laboratory. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38111, + "sort": null, + "year": 2005, + "is_ccl": false, + "reference": "Xie, C. (2005). Molecular Dynamics Simulations Beyond the Lennard-Jones Particles. Submitted to the American Journal of Physics. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Molecular Dynamics Simulations" + }, + { + "id": 38112, + "sort": null, + "year": 2004, + "is_ccl": false, + "reference": "Abrahamson, D. (2004). Embodied spatial articulation: A gesture perspective on student negotiation between kinesthetic schemas and epistemic forms in learning mathematics. In D. E. McDougall and J. A. Ross (Eds.), Proceedings of the Twenty Sixth Annual Meeting of the North American Chapter of the International Group for the Psychology of Mathematics Education Vol. 2 (pp. 791 - 797). Windsor, Ontario: Preney. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Gesture, Spatial articulation, Mathematics Education, Learning" + }, + { + "id": 38113, + "sort": null, + "year": 2004, + "is_ccl": true, + "reference": "Abrahamson, D., & Wilensky (2004). ProbLab: A computer-supported unit in probability and statistics. In M.J. Hoines & A.B. Fuglestad (Eds.), Proceedings of the 28th Annual Meeting of the International Group for the Psychology of Mathematics Education Vol. 1 (p. 369). Bergen: Bergen University College. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Probability, Statistics, Mathematics Education" + }, + { + "id": 38114, + "sort": null, + "year": 2004, + "is_ccl": true, + "reference": "Abrahamson, D., & Wilensky, U. (2004). SAMPLER: Collaborative interactive computer-based statistics learning environment. In the Proceedings of the 10th International Congress on Mathematical Education, Copenhagen, July 4 - 11, 2004. http://www.icme-organisers.dk/tsg11/. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics Education" + }, + { + "id": 38115, + "sort": null, + "year": 2004, + "is_ccl": true, + "reference": "Abrahamson, D., & Wilensky, U. (2004). S.A.M.P.L.E.R.: Statistics As Multi-Participant Learning-Environment Resource. In U. Wilensky (Chair) and S. Papert (Discussant), \"Networking and complexifying the science classroom: Students simulating and making sense of complex systems using the HubNet networked architecture.\" Paper presented at the annual meeting of the American Educational Research Association, San Diego, CA, April 12 - 16. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Statistics" + }, + { + "id": 38116, + "sort": null, + "year": 2004, + "is_ccl": true, + "reference": "Abrahamson, D., Berland, M.W., Shapiro, R.B., Unterman, J.W., & Wilensky, U. (2004). Leveraging epistemological diversity through computer-based argumentation in the domain of probability. In Y. B. Kafai, W. A. Sandoval, N. Enyedy, A. S. Nixon, & F. Herrera (Eds.), Proceedings of The Sixth International Conference of the Learning Sciences (pp. 28 - 35). Mahwah NJ: Lawrence Erlbaum Associates. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Epistemology\nProbability\nArgumentation\nComputer Science" + }, + { + "id": 38117, + "sort": null, + "year": 2004, + "is_ccl": false, + "reference": "Achorn, E. (2004). Integrating Agent-Based Models with Quantitative and Qualitative Research Methods. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Agent-Based Models, Quantitative Research, Qualitative Research, Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 38118, + "sort": null, + "year": 2004, + "is_ccl": false, + "reference": "Agar, M. (2004). An Anthropological Problem, A Complex Solution. Human Organization, 63(4), 411-418. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Anthropology, Archaeology, Biology" + }, + { + "id": 38119, + "sort": null, + "year": 2004, + "is_ccl": false, + "reference": "Agar, M. (2004). Agents in Living Color: Towards Emic Agent-Based Models. Journal of Artificial Societies and Social Simulation (JASSS), 8 (1): 4. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Miscellaneous" + }, + { + "id": 38120, + "sort": null, + "year": 2004, + "is_ccl": false, + "reference": "An, G. (2004). In silico experiments of existing and hypothetical cytokine-directed clinical trials using agent-based modeling. Critical care medicine, 32(10), 2050-2060.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Cytokine, Clinical Trials" + }, + { + "id": 38121, + "sort": null, + "year": 2004, + "is_ccl": false, + "reference": "Aschwanden, P. (2004). Spatial Simulation Model for Infectious Viral Diseases with Focus on SARS and the Common Flu. In Proceedings of the 37th Hawaii International Conference on System Sciences, January 2004. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Infectious Diseases, System Sciences" + }, + { + "id": 38122, + "sort": null, + "year": 2004, + "is_ccl": false, + "reference": "Barry, P., & Koehler, M. (2004). Simulation in context; using data farming for decision support. Simulation Conference, 2004. Proceedings of the 2004 Winter, 1. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation" + }, + { + "id": 38123, + "sort": null, + "year": 2004, + "is_ccl": false, + "reference": "Beauchemin, C., & Liao, L. (2004). Tutorial on agent-based models in NetLogo.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38124, + "sort": null, + "year": 2004, + "is_ccl": true, + "reference": "Berland, M., & Wilensky, U. (2004). Virtual robotics in a collaborative constructionist learning environment. In U. Wilensky (Chair) and S. Papert (Discussant), \"Networking and complexifying the science classroom: Students simulating and making sense of complex systems using the HubNet networked architecture.\" Paper presented at the annual meeting of the American Educational Research Association, San Diego, CA, April 12 - 16.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 38125, + "sort": null, + "year": 2004, + "is_ccl": true, + "reference": "Blikstein, P., & Wilensky, U. (2004). MaterialSim: an agent-based simulation toolkit for Materials Science learning. Paper presented at the International Conference on Engineering Education, Gainesville, Florida. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Miscellaneous" + }, + { + "id": 38126, + "sort": null, + "year": 2004, + "is_ccl": false, + "reference": "Bloomquist, K. (2004). Modeling Taxpayers Response to Compliance Improvement Alternatives. Paper presented at the Annual Conference of the North American Association for Computational Social and Organizational Science (NAACSOS), Pittsburgh, PA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 38127, + "sort": null, + "year": 2004, + "is_ccl": false, + "reference": "Bourjot, C., & Chevrier, V. (2004). A Platform for the analysis of artificial self-organized systems. 2004 IEEE International Conference on Advances in Intelligent Systems-Theory and Applications-AISTA. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38128, + "sort": null, + "year": 2004, + "is_ccl": false, + "reference": "Bryson, J. (2004). Action Selection and Individuation in Agent Based Modelling. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38129, + "sort": null, + "year": 2004, + "is_ccl": true, + "reference": " Buckley, B.C., Gobert, J.D., Kindfield, A., Horwitz, P., Tinker, R., Gerlits, B., Wilensky, U., Dede, C., & Willett, J. (2004). Model-based Teaching and Learning with BioLogica\u2122: What do they learn? How do they learn? How do we know? Journal of Science Education and Technology, 13(1), 23-41. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Teaching and Learning, Technology" + }, + { + "id": 38130, + "sort": null, + "year": 2004, + "is_ccl": false, + "reference": "Cacciaguerra, S., Roccetti, M., Roffilli, M., & Lomi, A. (2004). A Wireless Software Architecture for Fast 3D Rendering of Agent-Based Multimedia Simulations on Portable Devices. Paper presented at the First Consumer Communications and Networking Conference (CCNC), IEEE Communications Society, Las Vegas, Nevada (USA), January 2004. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Wireless Communication, Computer Science, Rendering, Multimedia, Electronics" + }, + { + "id": 38131, + "sort": null, + "year": 2004, + "is_ccl": false, + "reference": "Chitnis, A.B. & Itoh, M. (2004). Exploring alternative models of rostral-caudal patterning in the zebrafish neurectoderm with computer simulations. Current Opinion in Genetics & Development 14(4), 415-421.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Genetics" + }, + { + "id": 38132, + "sort": null, + "year": 2004, + "is_ccl": false, + "reference": "Densmore, O. (2004). NetLogo 2.0: Graphs, Nodes, and Edges Oh My! January 12, 2004, O'Reilly.com.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 38133, + "sort": null, + "year": 2004, + "is_ccl": false, + "reference": "Friedman, D., & Abraham, R. (2004). Landscape Dynamics and Conspicuous Consumption. Paper presented at the 2004 Proceedings of the Society for Dynamic Games. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Landscape Dynamics, Conspicuous Consumption" + }, + { + "id": 38134, + "sort": null, + "year": 2004, + "is_ccl": false, + "reference": "Goldstone, R. L. (2004). The complex systems see-change in education. Journal of the Learning Sciences, 15 (1), pp 35 - 43. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38135, + "sort": null, + "year": 2004, + "is_ccl": false, + "reference": "Gross, T. S., Poliachik, S. L., Ausk, B. J., Sanford, D. A., Becker, B. A., & Srinivasan, S. (2004). Why rest stimulates bone formation: a hypothesis based on complex adaptive phenomenon. Exerc Sport Sci Rev, 32(1), 9-13. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Bone formation, Complex phenomenon" + }, + { + "id": 38136, + "sort": null, + "year": 2004, + "is_ccl": false, + "reference": "Henein, C.M., & White, T. (2004). Agent-based modelling of forces in crowds. In Lecture Notes in Computer Science Vol. 3415, 2005. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 38137, + "sort": null, + "year": 2004, + "is_ccl": false, + "reference": "Ingalls, R. G., Rossetti, M. D., Smith, J. S., & Peters, B. A. (2004). Simulation in context: Using data farming for decision support. Paper presented at the 2004 Winter Simulation Conference. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation" + }, + { + "id": 38138, + "sort": null, + "year": 2004, + "is_ccl": false, + "reference": "Kottonau, J. (2006, based on 2004 paper). Simulation einer Ameisenstra\u00dfe mit NetLogo. Lehrer-online. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 38139, + "sort": null, + "year": 2004, + "is_ccl": false, + "reference": "Le, Q. B., Park, S., & Vlek, P. L. G. (2004). Simulating Spatial Patterns of Land-use and Land-cover Change: A Multi-agent Model and its Application to an Upland Watershed in Central Vietnam. In K. J. Peters, D. Kirschke, W. Manig, A. B\u00fcrkert, R. Schultze-Kraft, L. Bharati, C. Bonte-Friedheim, A. Deininger, N. Bhandari, H. Weitkamp (Eds.), \"Rural Poverty Reduction through Research for Development and Transformation\" - Proceedings of the Deutscher Tropentag 2004 (p. 67). Berlin: Humboldt-Universit\u00e4t. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Land-use Change, Spatial Patterns, Modeling, Agriculture, Watershed, Vietnam" + }, + { + "id": 38140, + "sort": null, + "year": 2004, + "is_ccl": true, + "reference": "Lechner, T., Watson, B., Wilensky, U., & Felsen, M. (2004). Procedural modeling of land use in cities. Technical report NWU-CS-04-38. Evanston, IL: Northwestern University, Computer Science department. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 38141, + "sort": null, + "year": 2004, + "is_ccl": true, + "reference": " Levy, S.T., & Wilensky, U. (2004). Making sense of complexity: Patterns in forming causal connections between individual agent behaviors and aggregate group behaviors. In U. Wilensky (Chair) and S. Papert (Discussant), \"Networking and complexifying the science classroom: Students simulating and making sense of complex systems using the HubNet networked architecture.\" Paper presented at the annual meeting of the American Educational Research Association, San Diego, CA, April 12 - 16.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38142, + "sort": null, + "year": 2004, + "is_ccl": true, + "reference": " Levy, S.T., Kim, H., & Wilensky, U. (2004). Connected Chemistry - A study of secondary students using agent-based models to learn chemistry. In J. Gobert (Chair) and N. H. Sabelli (Discussant), \"Modeling Across the Curriculum (MAC): Technology, Pedagogy, Assessment, & Research.\" Paper presented at the annual meeting of the American Educational Research Association, San Diego, CA, April 12 - 16. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Chemistry" + }, + { + "id": 38143, + "sort": null, + "year": 2004, + "is_ccl": false, + "reference": "Miller, J.H., & Page, S.E. (2004). The Standing Ovation Problem. Complexity 9(5), pp 8-16. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38144, + "sort": null, + "year": 2004, + "is_ccl": false, + "reference": "Newman, Chris. \"Revolution by Osmosis: A Case Study of West Florida, Texas, California and Hawaii.\" Proceedings of the Fifth Annual International Conference on Complex Systems, May, 2004.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 38145, + "sort": null, + "year": 2004, + "is_ccl": false, + "reference": "Prodromou, T. (2004). Distribution as emergent phenomena. Proceedings of the British Society for Research into Learning Mathematics, 24(1), 49-54. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics" + }, + { + "id": 38146, + "sort": null, + "year": 2004, + "is_ccl": false, + "reference": "Sallez, Y., Berger, T., & Tahon, C. (2004). Simulating intelligent routing in flexible manufacturing systems using NetLogo. Industrial Technology, 2004 IEEE International Conference.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology" + }, + { + "id": 38147, + "sort": null, + "year": 2004, + "is_ccl": false, + "reference": "Sancho-Royo, A., Pelta, D. A., Verdegay, J. L., & Gonzalez, J. R. (2004). Evaluation of Cooperative Strategies in Optimization Problems. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38148, + "sort": null, + "year": 2004, + "is_ccl": false, + "reference": "Schellinck, J., & White, T. (2004). Use of NetLogo as a rapid prototyping tool for the creation of more rigorous spatially explicit individual-based biological models. First Open International Conference on Modeling & Simulation.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 38149, + "sort": null, + "year": 2004, + "is_ccl": false, + "reference": "Singh, A., & Haahr, M. (2004). Topology Adaptation in P2P Networks Using Schelling's Model. Proceedings of the Workshop on Games and Emergent Behaviors in Distributed Computing Environments (Birmingham, UK, Sept. 2004). [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Topology" + }, + { + "id": 38150, + "sort": null, + "year": 2004, + "is_ccl": false, + "reference": "Solberg, J. (2004). Assemble time for self-assembling square tiles. Project for MECH 448. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 38151, + "sort": null, + "year": 2004, + "is_ccl": true, + "reference": "Tisue, S., & Wilensky, U. (2004). NetLogo: Design and Implementation of a Multi-Agent Modeling Environment. Paper presented at the Agent2004 Conference, Chicago, IL. (This is a combined, revised, and updated version of our ICCS and SwarmFest papers from earlier this year.) [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Paper" + }, + { + "id": 38152, + "sort": null, + "year": 2004, + "is_ccl": true, + "reference": "Tisue, S., & Wilensky, U. (2004). NetLogo: A simple environment for modeling complexity. Paper presented at the International Conference on Complex Systems, Boston, May 16 - 21. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 38153, + "sort": null, + "year": 2004, + "is_ccl": true, + "reference": "Tisue, S., & Wilensky, U. (2004). NetLogo: Design and implementation of a multi-agent modeling environment. Paper presented at SwarmFest, Ann Arbor, MI, May 9 - 11. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 38154, + "sort": null, + "year": 2004, + "is_ccl": false, + "reference": "Tobias, R. & Hofmann, C. (2004). Evaluation of free Java-libraries for social-scientific agent based simulation. Journal of Artificial Societies and Social Simulation, 7(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38155, + "sort": null, + "year": 2004, + "is_ccl": false, + "reference": "Vag, A. (2004). First generation multi-agent models and their upgrades. Interdisciplinary Description of Complex Systems, 2(1), 95-103. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 38156, + "sort": null, + "year": 2004, + "is_ccl": false, + "reference": "Vidal, J. M., Buhler, P., & Goradia, H. (2004). The Past and Future of Multiagent Systems. Paper presented at the AAMAS Workshop on Teaching Multi-Agent Systems. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38157, + "sort": null, + "year": 2004, + "is_ccl": false, + "reference": "Winschel, L., & Kopf, S. (2004). Entwicklung einer B\u00f6rsensimulation mit der multiagentenbasierten Entwicklungsumgebung NetLogo. Universit\u00e4t Mannheim / Institut f\u00fcr Informatik. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 38158, + "sort": null, + "year": 2004, + "is_ccl": false, + "reference": "Wokoma, I., Sacks, L., & Marshall, I. (2004). A Self-Organising Clustering Algorithm for Wireless Sensor Networks. University College, London. [DOC]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 38159, + "sort": null, + "year": 2003, + "is_ccl": true, + "reference": "Abrahamson, D., & Wilensky, U. (2003). The quest of the bell curve: A constructionist approach to learning statistics through designing computer-based probability experiments. In M. A. Mariotti (Ed.), Proceedings of the Third Conference of the European Society for Research in Mathematics Education. Pisa, Italy: University of Pisa. Retrieved June 1, 2009, from http://www.dm.unipi.it/didattica/CERME3/proceedings/Groups/TG5/TG5_abrahamson_cerme3.pdf. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Statistics, Mathematics Education" + }, + { + "id": 38160, + "sort": null, + "year": 2003, + "is_ccl": false, + "reference": "Agar, M. (2003). My Kingdom for a Function: Modelling Misadventures of the Innumerate. Journal of Artificial Societies and Social Simulation, 6(3). [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Miscellaneous" + }, + { + "id": 38161, + "sort": null, + "year": 2003, + "is_ccl": false, + "reference": "Ausk, B. J., Poliachik, S. L., Gross, T. S., & Srinivasan, S. (2003). Synchronous signaling within the osteocyte cell network underlies the osteogenic potency of rest-inserted loading. In 27th Meeting of the American Society for Biomechanics, Toledo, OH.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Osteology, Biomechanics" + }, + { + "id": 38162, + "sort": null, + "year": 2003, + "is_ccl": false, + "reference": "Bouquet, P., Busetta, P., Adami, G., Bonifacio, M., & Palmieri, F. (2003). K-Trek: A Peer-to-Peer Infrastructure for Distributing and Using Knowledge in Large Environments. Paper presented at the WOA 2003: dagli Oggetti agli Agenti Sistemi Intelligenti e Computazione Pervasiva, Cagliari, Italy. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38163, + "sort": null, + "year": 2003, + "is_ccl": false, + "reference": "Driscoll, M.P. (2003). How people learn (and what technology might have to do with It). ERIC Digest. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Technology" + }, + { + "id": 38164, + "sort": null, + "year": 2003, + "is_ccl": false, + "reference": "Evans, D., Heuvelink, A., & Nettle, D. (2003). The evolution of optimism: A multi-agent based model of adaptive bias in human judgement. Proceedings of the AISB'03 Symposium on Scientific Methods for the Analysis of Agent-Environment Interaction, University of Wales, pp.20-25. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38165, + "sort": null, + "year": 2003, + "is_ccl": false, + "reference": "Fell, A. (2003). A Study of Modeling Crowd Dynamics. Final year project in Compter Science, Carleton University. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Computer Science" + }, + { + "id": 38166, + "sort": null, + "year": 2003, + "is_ccl": true, + "reference": "Gobert, J., Horwitz, P., Tinker, R., Buckley, B., Wilensky, U., Levy, S. T. & Dede, C. (2003). Modeling across the curriculum: Scaling up modeling using technology. Paper presented at the Twenty-Fifth Annual Meeting of the Cognitive Science Society, Boston, MA, July 31 - August 2. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Technology" + }, + { + "id": 38167, + "sort": null, + "year": 2003, + "is_ccl": false, + "reference": "Goldstone, R. (2003). \"Complex Adaptive Systems\" psychology course at Indiana University. Spring 2003. Syllabus: [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Psychology" + }, + { + "id": 38168, + "sort": null, + "year": 2003, + "is_ccl": false, + "reference": "Hills, L. (2003). A Thin Red Line Between Red and Green: Emerging Patterns in Group Preference an Exploration at Bryn Mawr College. Senior Thesis, Dartmouth College.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 38169, + "sort": null, + "year": 2003, + "is_ccl": true, + "reference": "Horwitz, P., Gobert, J., Wilensky, U., & Dede, C. (2003). MAC: A longitudinal study of modeling technology in science classrooms. Paper presented at the National Educational Computing Conference (NECC), Seattle, WA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38170, + "sort": null, + "year": 2003, + "is_ccl": false, + "reference": "InfoWorld. (2003). Experts: U.S. needs better terror models. Investigative report. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38171, + "sort": null, + "year": 2003, + "is_ccl": false, + "reference": "Kline, G. (2003). Campers at UI have fun, G.A.M.E.S. News-Gazette. August 23, 2003. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 38172, + "sort": null, + "year": 2003, + "is_ccl": false, + "reference": "Korman, M. J. (2003). LiveLetters: Writing with Emergence. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Writing" + }, + { + "id": 38173, + "sort": null, + "year": 2003, + "is_ccl": false, + "reference": "Lomi, A., & Cacciaguerra, S. (2003). Decision Chemistry Part II: The Emergence of Routines. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Chemistry" + }, + { + "id": 38174, + "sort": null, + "year": 2003, + "is_ccl": false, + "reference": "Lomi, A., & Cacciaguerra, S. (2003, April). Organizational decision chemistry on a lattice. In proc. of the 7th Annual Swarm Users/Researchers Conference.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Chemistry" + }, + { + "id": 38175, + "sort": null, + "year": 2003, + "is_ccl": false, + "reference": "Longo, D., Peirce, S., Skalak, T., Marsden, M., Davidson, L., Dzamba, B., et al. (2003). Computational automata simulation of blastocoel roof thinning in the Xenopu laevis embryo. Systems and Information Engineering Design Symposium, 2003 IEEE, 127-131. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 38176, + "sort": null, + "year": 2003, + "is_ccl": false, + "reference": "Manhart, K. (2003). Schildkr\u0161tenwelten - Multi-Agenten-Simulationen mit NetLogo und StarLogo. C'T, 2003(25), 232-237.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Simulation" + }, + { + "id": 38177, + "sort": null, + "year": 2003, + "is_ccl": true, + "reference": "Stieff, M., & Wilensky, U. (2003). Connected Chemistry - incorporating interactive simulations into the chemistry classroom. Journal of Science Education and Technology, 12(3), 285-302. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Chemistry" + }, + { + "id": 38178, + "sort": null, + "year": 2003, + "is_ccl": false, + "reference": "Turcsanyi-Szabo, M. (2003). Practical Teacher Training Through Implementation of Capacity Building Internet Projects. Proceedings of Society for Information Technology and Teacher Education Conference, Albuquerque, 2003, 1564-1571. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Computer Science, Miscellaneous" + }, + { + "id": 38179, + "sort": null, + "year": 2003, + "is_ccl": true, + "reference": "Wilensky, U. (2003). Statistical mechanics for secondary school: The GasLab modeling toolkit. International Journal of Computers for Mathematical Learning, 8(1), 1-41 (special issue on agent-based modeling). [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Statistical mechanics" + }, + { + "id": 38180, + "sort": null, + "year": 2003, + "is_ccl": true, + "reference": "Wilensky, U., & Shapiro, B. (2003). Networked Participatory Simulations: Classroom Collaboration in Exploring the Dynamics of Complex Systems. Proceedings of the International Conference of the Learning Sciences, Oslo, Norway.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38181, + "sort": null, + "year": 2003, + "is_ccl": true, + "reference": "Wilensky, U., & Stroup, W. (2003). Participatory Simulations guide for Computer-HubNet. Evanston, IL, Center for Connected Learning and Computer Based Modeling, Northwestern University. (Updated 2004, 2005) [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 38182, + "sort": null, + "year": 2003, + "is_ccl": true, + "reference": "Wilensky, U., & Stroup, W. (2003). Embedded complementarity of object-based and aggregate reasoning in students developing understanding of dynamic systems. Paper presented at the annual meeting of the American Educational Research Association, Chicago, IL, April 1-5.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, History, Education" + }, + { + "id": 38183, + "sort": null, + "year": 2002, + "is_ccl": true, + "reference": "Abrahamson, D., & Wilensky, U. (2002). Statistics as situated probability: The design and implementation of S.A.M.P.L.E.R. Unpublished manuscript.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Statistics, Probability" + }, + { + "id": 38184, + "sort": null, + "year": 2002, + "is_ccl": true, + "reference": "Abrahamson, D., Berland, M., Shapiro, R.B., Unterman, J., & Wilensky, U. (2002). Collaborative interpretive argumentation as a phenomenological-mathematical negotiation: A case of statistical analysis of a computer simulation of complex probability. Unpublished manuscript. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38185, + "sort": null, + "year": 2002, + "is_ccl": false, + "reference": "Bull, G., Bell, R., Garofalo, J., & Sigmon, T. (2002). Learner-Based Tools: The Case for Open Source Educational Software. Learning & Leading with Technology, 30(2), 10-17.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38186, + "sort": null, + "year": 2002, + "is_ccl": false, + "reference": "Fazio, C., Sperandeo-Mineo, R. M., & Tarantino, G. (2002). Mathematical representation of real systems: Two modelling environments involving different learning strategies. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Mathematics, Modeling, Learning, Biology, Ecology, Computer Science, Economics" + }, + { + "id": 38187, + "sort": null, + "year": 2002, + "is_ccl": false, + "reference": "Gilbert, N. (2002). Varieties of Emergence In M. J. North, C. M. Macal & D. L. Sallach (Eds.), Proceedings of the Agent 2002 Conference on Complex Interaction and Social Emergence (pp. 41-50). IL: Argonne National Laboratory and Northwestern University. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38188, + "sort": null, + "year": 2002, + "is_ccl": false, + "reference": "Gilbert, N. a. B., S. (2002). Platforms and methods for agent-based modeling Paper presented at the National Academy of Sciences of the United States of America.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38189, + "sort": null, + "year": 2002, + "is_ccl": false, + "reference": "Impullitti, G., & Rebmann, C. M. (2002). An agent-based model of wealth distribution (No. 2002-15). Schwartz Center for Economic Policy Analysis (SCEPA), The New School.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Economics, Computer Science, Physics, Chemistry, Urban Studies" + }, + { + "id": 38190, + "sort": null, + "year": 2002, + "is_ccl": false, + "reference": "Johnson, N. L. (2002). The development of collective structure and its response to environmental change.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 38191, + "sort": null, + "year": 2002, + "is_ccl": false, + "reference": "Lehmann, H., Wang, J., & Bryson, J. (2002). Tolerance and sexual attraction is despotic societies: A replication and analysis of Hemelrijk. Artificial models of natural Intelligence. UK. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 38192, + "sort": null, + "year": 2002, + "is_ccl": false, + "reference": "MSCP Project Summary. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Miscellaneous" + }, + { + "id": 38193, + "sort": null, + "year": 2002, + "is_ccl": false, + "reference": "North, M.J., & Burkhart, R.M. (2002). Agent-Based Methods, Toolkits, and Techniques In M. J. North, C. M. & D. L. Sallach (Eds.), Proceedings of the Agent 2002 Conference on Complex Interaction and Social Emergence (pp. 3-10). IL: Argonne National Laboratory and University of Chicago. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Agent-Based Methods" + }, + { + "id": 38194, + "sort": null, + "year": 2002, + "is_ccl": false, + "reference": "Ratto, M., Shapiro, R.B., Truong, T., & Griswold, W. (2002). The ActiveClass Project: Experiments in encouraging classroom participation. Unpublished manuscript.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38195, + "sort": null, + "year": 2002, + "is_ccl": true, + "reference": "Stieff, M., & Wilensky, U. (2002). ChemLogo: An emergent modeling environment for teaching and learning chemistry. Paper presented at the Fifth Biannual International Conference of the Learning Sciences, Seattle, WA, October. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Chemistry" + }, + { + "id": 38196, + "sort": null, + "year": 2002, + "is_ccl": true, + "reference": "Stroup, W., Kaput, J., Ares, N., & Wilensky, U. (2002). The nature and future of classroom connectivity: The dialectics of mathematics in the social space. Paper presented at the Psychology of Mathematics Education conference, Atlanta, GA, October. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38197, + "sort": null, + "year": 2002, + "is_ccl": true, + "reference": "Wilensky, U., & Stroup, W. (2002). Participatory Simulations: Envisioning the networked classroom as a way to support systems learning for all. Paper presented at the annual meeting of the American Educational Research Association, New Orleans, LA, April 13. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38198, + "sort": null, + "year": 2002, + "is_ccl": true, + "reference": "Wilensky, U., & Stroup, W. (2002). Participatory Simulations guide for Calculator-HubNet. Evanston, IL, Center for Connected Learning and Computer Based Modeling, Northwestern University. (Updated 2003, 2004, 2005)", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 38199, + "sort": null, + "year": 2002, + "is_ccl": true, + "reference": "Yang, C. K., & Wilensky, U. (2002). School Effects Reinterpreted from the Bottom-Up: Merging Statistical Methods and Agent-based Modeling.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38200, + "sort": null, + "year": 2001, + "is_ccl": false, + "reference": "An, G. (2001). Agent-based computer simulation and sirs: building a bridge between basic science and clinical trials. Shock, 16(4), 266-273.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 38201, + "sort": null, + "year": 2001, + "is_ccl": false, + "reference": "Kahn, K. (2001). ToonTalk and Logo. Paper presented at Eurologo 2001. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 38202, + "sort": null, + "year": 2001, + "is_ccl": false, + "reference": "Neuwirth, E. (2001). Turtle Ballet: Simulating Parallel Turtles in a Nonparallel LOGO Version. Paper presented at the Eurologo 2001. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science" + }, + { + "id": 38203, + "sort": null, + "year": 2001, + "is_ccl": false, + "reference": "Tam, P-W. (2001). \"E-Commerce (A Special Report): The Classroom - Tools of the future: Thanks to Technology, K-12 will never look the same.\" Wall Street Journal (Eastern edition). New York, New York. March 12, 2001. p. R28.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Ecology, Computer Science, Miscellaneous" + }, + { + "id": 38204, + "sort": null, + "year": 2001, + "is_ccl": true, + "reference": "Wilensky, U. (2001). Emergent Entities and Emergent Processes: Constructing Emergence through Multi-agent programming. Paper presented at the annual meeting of the American Educational Research Association. Seattle, WA. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 38205, + "sort": null, + "year": 2001, + "is_ccl": true, + "reference": "Wilensky, U. (2001). Modeling nature's emergent patterns with multi-agent languages. Paper presented at EuroLogo 2001. Linz, Austria. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 38206, + "sort": null, + "year": 2001, + "is_ccl": true, + "reference": "Wilensky, U. (2001). Embodied Learning: Students Enacting Complex Dynamic Phenomena with the HubNet Architecture. Paper presented at the annual meeting of the American Educational Research Association. Seattle, WA. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Education, Physics" + }, + { + "id": 38207, + "sort": null, + "year": 2000, + "is_ccl": true, + "reference": "Centola D., McKenzie E., & Wilensky U. (2000). Survival of the groupiest: Facilitating students' understanding of multi-level evolution through multi-agent modeling - The EACH Project. In Proceedings of the Fourth International Conference on Complex Systems. Nashua, NH: New England Complex Systems Institute, and InterJournal Complex Systems, 377 [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38208, + "sort": null, + "year": 2000, + "is_ccl": true, + "reference": "Centola D., Wilensky U., & McKenzie E. (2000). A hands-on modeling approach to evolution: Learning about the evolution of cooperation and altruism through multi-agent modeling - The EACH Project. Proceedings of the Fourth Annual International Conference of the Learning Sciences, Ann Arbor, MI, June 14-17. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Evolution" + }, + { + "id": 38209, + "sort": null, + "year": 2000, + "is_ccl": false, + "reference": "Gilbert, N. T., P. (2000). How to build and use agent-based models in social science. Mind and Society, 1(1), 57-72.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 38210, + "sort": null, + "year": 2000, + "is_ccl": true, + "reference": " Wilensky, U., Hazzard, E., & Longenecker, S. (2000). A Bale of Turtles: A Case Study of a middle school science class studying complexity using StarLogoT. Paper presented at the meeting of the Spencer Foundation, New York, New York, October 11-13, 2000.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Complexity" + }, + { + "id": 38211, + "sort": null, + "year": 2000, + "is_ccl": true, + "reference": "Wilensky, U., Stroup, W. (2000). Networked gridlock: Students enacting complex dynamic phenomena with the HubNet architecture. Proceedings of the Fourth Annual International Conference of the LearningSciences, Ann Arbor, MI, June 14 - 17. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 38212, + "sort": null, + "year": 2000, + "is_ccl": true, + "reference": "Wilensky, U., & Centola, D. (2007, based on 2000 paper). Simulated Evolution: Facilitating Students' Understanding of the Multiple Levels of Fitness through Multi-Agent Modeling. Paper presented at the Evolution Challenges conference, Phoenix, AZ, November 1-4. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Evolution, Modeling" + }, + { + "id": 38213, + "sort": null, + "year": 2000, + "is_ccl": true, + "reference": "Wilensky, U. (2000) Modeling Emergent Phenomena with StarLogoT. @CONCORD.org, Winter 2000.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 38214, + "sort": null, + "year": 1999, + "is_ccl": false, + "reference": "Berland, M., & Charniak, E. (1999). Finding parts in very large corpora. Proceedings of the 37th Annual Meeting of the Association for Computational Linguistics (ACL-99), College Park, MD, 57-64.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology" + }, + { + "id": 38215, + "sort": null, + "year": 1999, + "is_ccl": true, + "reference": "Stroup, W., & Wilensky, U. (1999). Assessing learning as emergent phenomena: Moving constructivist statistics before the individual and beyond the Bell-curve. In A.E. Kelly & R. Lesh (Eds.), Research in Mathematics and Science Education. Englewood, NJ: Lawrence Erlbaum Associates.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Science Education" + }, + { + "id": 38216, + "sort": null, + "year": 1999, + "is_ccl": true, + "reference": "Wilensky, U. (1999). GasLab: An extensible modeling toolkit for exploring micro- and macro- views of gases. In N. Roberts, W. Feurzeig, & B. Hunter (Eds.), Computer modeling and simulation in science education (pp. 151-178). Berlin: Springer Verlag. [HTML]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Simulation, Computer Science" + }, + { + "id": 38217, + "sort": null, + "year": 1999, + "is_ccl": true, + "reference": "Wilensky, U., & Resnick, M. (1999). Thinking in Levels: A Dynamic Systems Perspective to Making Sense of the World. Journal of Science Education and Technology, 8(1). [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38218, + "sort": null, + "year": 1999, + "is_ccl": true, + "reference": "Wilensky, U., & Stroup, W. (1999). Learning through participatory simulations: Network-based design for systems learning in classrooms. Proceedings of Computer Supported Collaborative Learning (CSCL'99). Stanford, CA, December 12 - 15. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 38219, + "sort": null, + "year": 1999, + "is_ccl": true, + "reference": "Wilensky, U., & Stroup, W. (1999). Participatory Simulations: Networked-based Design for Systems Learning in Classrooms. In R. Nikolov, E. Sendova, & I. Nikolova (Eds.). Presented at the PI meeting of the National Science Foundation, EHR division, June 3 - 4. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Participatory Simulations" + }, + { + "id": 38220, + "sort": null, + "year": 1999, + "is_ccl": true, + "reference": "Wilensky, U., Hazzard, E & Froemke, R. (1999). GasLab: An Extensible Modeling Toolkit for Exploring Statistical Mechanics. Paper presented at the Seventh European Logo Conference - EUROLOGO '99, Sofia, Bulgaria. [PDF]", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Statistical Mechanics" + }, + { + "id": 38221, + "sort": null, + "year": 2017, + "is_ccl": false, + "reference": "A spatial explicit agent based model approach to evaluate the performance of different monitoring options for mortality estimates in the scope of onshore windfarm impact assessments", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38225, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Zhang, S., Zou, H., Yao, Y., Feng, K., Tian, J., Liu, D., & Du, H. (2025). From Demonstration to Diffusion: Community Dynamics and Incentives Analysis in Household Solar Photovoltaic Adoption. Energy, 137302.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38226, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Marisetty, V., van Heeswijk, W., & Narayanan, A. An Agent-Based Model of Rumor-Induced Volatility in Financial Markets. Available at SSRN 5375758.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38227, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Wang, S., & Wang, Z. (2025). Modelling and algorithms of highway transportation network in urban agglomerations. Scientific Reports, 15(1), 28145.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38228, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Souza, C. F. D. (2025). Ferramenta facilita o aprendizado de ci\u00eancias para pessoas com defici\u00eancia visual. Jornal da Universidade, 15 maio 2025, n. 236.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 38229, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Toth, Z. (2025). Can foraging in pesticide-treated patches become an ecological trap for pollinators? Modelling visitation patterns on a simulated landscape. bioRxiv, 2025-07.\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Modelling" + }, + { + "id": 38230, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Pamungkas, K. A., & Ardiansyah, R. (2025). Analysis Of HIV/AIDS Spread Patterns in Central Java Using Agent-Based Simulation. Digital Nexus Systematic Journal, 1(2), 5-8.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 38231, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Jung, J., Miller, J. H., & Page, S. E. (2025). Agent-based modeling for psychological research on social phenomena. The American Psychologist. https://doi.org/10.1037/amp0001530\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Psychology, Modeling" + }, + { + "id": 38232, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Al-Jaberi, L. A. (2025). Exploring New Energy Solutions in Kongsvinger using AI Methods (Master's thesis, Oslo Metropolitan University).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, AI, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38233, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Chen, Y., Wang, C., Shen, Y., & Zhang, Y. (2025). A simulation-based method for the optimal building evacuation plan: a study of emergency behavior among older adults. Engineering, Construction and Architectural Management, 1-18.\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38234, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Njegovanovic, A., & Flodin, S. (2025). A Comparison of the Crowd Simulators NetLogo and Pathfinder in Arena Evacuation Situations (Dissertation). https://urn.kb.se/resolve?urn=urn:nbn:se:kth:diva-367565.\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38235, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Innocenti, F., & Rozzi, R. (2025). An Evolutionary Analysis of Narrative Selection. arXiv preprint arXiv:2508.03540.\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Evolution, arXiv" + }, + { + "id": 38236, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Pardo, G. E., Cuevas, L. B., V\u00e1squez-Liz\u00e1rraga, J., Pary, A. C., Pacheco-Otalora, L. F., & Oruro, E. M. (2025). Temporal variation in maternal behavioral transitions under limited nesting conditions across postpartum windows in rats: Implications for neurobehavioral development. Behavioural Brain Research, 495(115769), https://doi.org/10.1016/j.bbr.2025.115769\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38237, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Banerjee, S. (2025). Towards a taxonomy of life-like systems: An information theoretic view of life. In Workshop in Physics of Self-Organization in Complex Systems (Vol. 2025).\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Physics" + }, + { + "id": 38239, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Chicacausa, N., Otalora-Low, M., Carrillo-Acosta, N., Arenas-Bautista, M. C., & Preziosi-Ribero, A. (2025). Agent-based models for integrated water resource management: quantifying land use changes by integrating economic and social incentives. Case study: Vista Hermosa (Meta). DYNA, 92(238), 57-65.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Economic, Computer Science, Archaeology, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38240, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Fernandez, M. D., & Casta\u00f1eda, C. Y. M. (2025). Simulaci\u00f3n multiagente para analizar el comportamiento exportador de las PYMES: un modelo basado en NetLogo. Regi\u00f3n Cient\u00edfica, 4(2), 14.\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38241, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "ZOTO, E., KOWALSKI, S. J., MEINICH, A. H., LINDST\u00d8L, A., & ENGESVIK, S. L. Addressing agents\u2019 strategies in a cyberwar game\u2013CyberAIMs 2.0. Business, Innovation and Technology ICEBIT 2024, 1397.\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38242, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Sadeghi Foroushani, S. (2025). Harnessing sustainability mobile apps for carbon reduction: a multilevel approach (Doctoral dissertation, University of British Columbia).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38244, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Khan, I. (2025). [Social] Allostasis: Or, How I Learned To Stop Worrying and Love The Noise. Proceedings of the Artificial Life Conference 2025, ASME. https://doi.org/10.1162/ISAL.a.912", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Social Science" + }, + { + "id": 38245, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Chen, F., & He, W. (2025). Agent-Based Models for Simulating Consumer-led Innovation: Pathways to Dual Upgrading in China's Economic Development Strategy. Computational Economics, 1-33. https://doi.org/10.1007/s10614-025-11050-8", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Agent-Based Models" + }, + { + "id": 38246, + "sort": null, + "year": 2025, + "is_ccl": true, + "reference": "Dabholkar, S., Irgens, G. A., & Wilensky, U. (2025). Characterizing Integrated Learning of Disciplinary Core Ideas and Science Practices in a Computational Thinking (CT)\u2013Integrated Biology Curriculum. Journal of Science Education and Technology, 1-16.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Science Practices, Computer Science, Ecology" + }, + { + "id": 38248, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Gharamaleki, M. M., & Elahi, N. Investigating the effect of tax on money on the macroeconomic variables in a closed economy using the agent-based general equilibrium model.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Economics, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 38249, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Bolden, N. C. (2025). Staying Alive: Does Knowledge Integration or Team Creativity Drive Resiliency in Hierarchical Teams? (Doctoral dissertation, The Chicago School of Professional Psychology).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38250, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Zhang, Y., Yu, X., & Luo, S. (2025). Misleading air quality reports lower the public\u2019s perception of pollution and increase travel behavior. Communications Earth & Environment, 6(1), 689.\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38251, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Passey, D. J. (2025). Connecting Probabilistic and Mechanistic Frameworks for Causality to the Dynamic Intervention Response Problem (Doctoral dissertation, The University of North Carolina at Chapel Hill).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38252, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Joshi, C. H. (2025). Persist or Give Up? Social Insect Decision-Making When Faced With Problems (Doctoral dissertation, The University of Arizona).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38253, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Sohn, D. (2025). When Opinions Polarize Without Persuasion: Modeling the Dynamics of Attitude-Opinion Convergence and Decoupling. Communication Research, 00936502251362278.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 38254, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Karabiyik, T., Jaiswal, A., & Laux, C. (2025). From Classroom to Global Impact: Systems Thinking in Addressing UN-Identified Challenges. In IISE Annual Conference. Proceedings (pp. 1-6). Institute of Industrial and Systems Engineers (IISE).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38255, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "LIU, J., BU, Y., ZHOU, S., ZHANG, Y., HUANG, X., TANG, J. H. C., & ZHUGE, C. SelfSim: An Agent-based Integrated Framework for Simulating the Impacts of Sustainable Technologies, Infrastructures and Policies in Smart Cities.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38256, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Zhang, Y., Ding, Z., Sun, J., Zhao, X., Hu, X., & Yang, Z. (2025). Optimizing AI strategies in e-commerce customer service: An agent-based simulation. Electronic Markets, 35(1), 1-22.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38257, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Murphy, K. J. (2025). Agent\u2010based models in applied ecology: Designing data\u2010informed simulations for wildlife conservation and management. Ecosphere, 16(9), e70342.\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 38258, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Giabbanelli, P. J., Daumas, C., Flandre, N. Y., Pitkar, A., & Vazquez-Estrada, J. (2025). Promoting empathy in decision-making by turning agent-based models into stories using large-language models. Journal of Simulation, 1-21.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics, Miscellaneous" + }, + { + "id": 38259, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Chen, M., Pan, Z., Alfonso, Y. N., Bell, S. O., & Bishai, D. (2025). The impact of investing in private clinics and pharmacies on modern contraceptive uptake: an agent-based model of a segmented market. BMC Health Services Research, 25, 1177.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38260, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Assaad, L., Fuchs, R., Phillips, K., Sch\u00f6ppl, K., & Hahn, U. (2025). Capturing Argument in Agent-Based Models. Topoi, 1-19.\n", + "doesnt_really_use_netlogo": true, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38261, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Dijvejin, F. G. (2025). Analysis of Economic Systems Using Complex Systems Simulation Models. Business, Marketing, and Finance Open, 1-13.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Economics" + }, + { + "id": 38263, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Rodr\u00edguez D\u00edez, G. (2025). Sistema de transporte adaptado a la demanda con gamificaci\u00f3n y simulaci\u00f3n multiagente.\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38264, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Baroni, P., Fellin, G., Giacomin, M., & Proietti, C. (2025). A NetLogo Tool for Exploring Value-Based Argumentation in Public Interest Communication. https://ceur-ws.org/Vol-4025/short5.pdf. \n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38265, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Amasa, S. N. C., Beleta, T. M. P., Montilla, S. L., & Llantos, O. E. (2025). Simulating HIV transmission dynamics: An agent-based approach using NetLogo. PloS one, 20(9), e0330456.\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "HIV, Transmission dynamics, Agent-based approach, NetLogo" + }, + { + "id": 38266, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Laatabi, A., Gaudou, B., Hanachi, C., & Stolf, P. (2025). A Survey on the Use of Agent-Based Modeling and Simulation for the Vehicle Routing Problem. ACM Computing Surveys.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38267, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Ty, C., Penland, A., Gerving, J., Mendoza-Ceja, M., Pratt, M., & Larripa, K. (2025). Investigating Potential Alzheimer's Disease Therapies through an Agent-Based Model of Impaired Microglia MetabolismModeling Impaired Microglia Metabolism. Spora: A Journal of Biomathematics, 11(1), 110-136.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Microglia, Modeling, Biomathematics" + }, + { + "id": 38268, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Hwang, Y. S. (2025). Feedback Loops of Influence: An Agent-Based Simulation of Media-Voter Dynamics and Political Polarization (Doctoral dissertation, The Claremont Graduate University).\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38269, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "van Rosmalen, R., Harmanny, K., & Schulp, C. J. (2025). Impact of environmental land lease contract specification on implementation of nature inclusive farming. Open Research Europe, 5, 289.\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Agriculture, Economics, Urban Studies" + }, + { + "id": 38270, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Moreno, M. (2025). Subtracting Self-Selection Bias from Scientific Inquiry: A Computational Exploration. Erkenntnis, 1-28.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 38271, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Fakhari, Z., & Ahmadi, A. (2025). Integrating the agent-based approach with hydraulic analysis of the water distribution network to a realistic micro-scale simulation of end-users in GAZ City, Iran. Journal of Hydrology: Regional Studies, 62, 102805.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Hydrology, Economics, Physics, Chemistry, Urban Studies, Social Science" + }, + { + "id": 38272, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "\nThadi, A. (2025). Evolution of Reproduction of Crickets in Extreme Environments: Offspring Investment and Mate-Finding Strategies in Hawaiian Lava Crickets and the Pacific Field Cricket (Doctoral dissertation, University of Minnesota).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 38273, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Thomas, D., & Helgeson, J. (2025). Supply Chain Disruption and Agent-Based Modeling.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38274, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Dzreke, S. S. Sovereignty arbitrage 5.3 x ROI: Apple\u2019s $900 M strategic pivot and the geopolitical resilience matrix (GRM). Engineering Science & Technology Journal, 6(8), 450-467. https://doi.org/10.51594/estj.v6i8.2036", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38275, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Koblentz, E., & Kennedy, W. (2025). The Impact of Information Availability on Trust Emergence in an Agent-Based Model of Stag Hunt. Journal of Student-Scientists' Research, 7.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38276, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Mustillo, T. (2025). Building a FAIR, linked, and open data ecosystem: innovation cascades in political science. European Political Science, 1-16.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38277, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "McDannald, A. Agent, Agentic, and Distributed Artificial Intelligence: From Managing Next-Generation Labs to the Philosophy of Science A. Gilad Kusne1, 2 (ORCID: 0000-0001-8904-2087).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Artificial Intelligence" + }, + { + "id": 38278, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Vannier, C., Choulette, K., Richards, D., Heays, A., Herzig, A., & Lavorel, S. (2025). SMARTscape: An agent-based model to analyse rural landscapes multifunctionality. Environmental Modelling & Software, 106732.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38279, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "HUANG, X., Yilan, B. U., Junbei, L. I. U., Meng, M. E. N. G., ZHANG, J., & ZHUGE, C. (2025). A spatial agent-based approach to simulating the ride-hailing system and its environmental impacts. Transport Policy, 103848.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 38280, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Liu, B., Shao, Y., Zhou, X., & Jin, Y. (2025). Can government subsidies affect enterprises\u2019 strategies of breakthrough innovation? A two-stage evolutionary analysis. Strategic Business Research, 100009.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 38281, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Kamali, A., Niksokhan, M. H., & Ardestani, M. (2025). Evaluating the environmental and economic effects of groundwater quotas and markets using multi-agent system simulation and centralized optimal model. Agricultural Water Management, 320, 109853.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38282, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Linzbuoy, L., Gilthorpe, M. S., Heppenstall, A. J., & Ge, J. (2025). A causal inference framework for individual-level models.\u00a0International Journal of Population Data Science,\u00a010(5).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38283, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Bernardin, A., & Perez-Acle, T. (2025). Assessing the impact of misinformation during the spread of infectious diseases. Scientific Reports, 15(1), 34740.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38284, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "\nBurgess, M. D., Sheehan, D. K., White, P. J., Anderson, G. Q., Fisher, G., Grice, P. V., ... & Norris, K. (2025). Inadequate reproductive success is a potential cause of Spotted Flycatcher (Muscicapa striata) population decline in England. Ibis.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38285, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "S\u00e1ez, P., Rivera, J., Salas, P., & Parada, V. (2025). Rescheduling Under Disruption: A Product-Driven Framework with Heuristic and Reinforcement Learning Strategies. Management and Production Engineering Review.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Management, Production, Engineering, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science" + }, + { + "id": 38286, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Rakotonarivo, O. S., Bell, A., Dillon, B., Duthie, A. B., Kipchumba, A., Rasolofoson, R. A., ... & Bunnefeld, N. (2021). Experimental evidence on the impact of payments and property rights on forest user decisions. Frontiers in Conservation Science, 2, 661987.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38287, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Bell, A. R., Rakotonarivo, O. S., Zhang, W., De Petris, C., Kipchumba, A., & Meinzen-Dick, R. S. (2025). Understanding pastoralist adaptations to drought via games and choice experiments: field testing among Borana communities. Ecology and Society, 30(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 38288, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Sargent, R., Rakotonarivo, O. S., Rushton, S. P., Cascio, B., Grau, A., Bell, A. R., ... & Pfeifer, M. (2022). An experimental game to examine pastoralists' preferences for human\u2013lion coexistence strategies. People and Nature, 4(5), 1263-1278.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38289, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Rakotonarivo, O. S., Jones, I. L., Bell, A., Duthie, A. B., Cusack, J., Minderman, J., ... & Bunnefeld, N. (2021). Experimental evidence for conservation conflict interventions: The importance of financial payments, community trust and equity attitudes. People and Nature, 3(1), 162-175.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38290, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Coca, J. R., Fern\u00e1ndez-Vilas, E., Lopes, R. P., & Pereira, M. Ethodiversity Reduction in Elderly: a Preliminar Study with Agent-Based Social Simulation. EVOLUTION OF THE BIOSOCIAL WORLD, 73.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 38291, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Schubert, D. (2025). Modelling segregation based on surveyed neighbourhood preferences. Review of Regional Research, 1-21.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38292, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Viertel, S. P., Pessini, L., Secomandi, L., Cavion, R., & Staudt, F. H. BOARDING EFFICIENCY IN REGIONAL AVIATION: A COMPARATIVE ANALYSIS OF METHODS.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38293, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Lu, L., Li, J., Yang, X., & Zhang, Y. (2025). Spatiotemporal Epidemic Diffusion in Urban Tourist Areas: Modelling Tourist Flow and Virus Spread. Applied Spatial Analysis and Policy, 18(4), 138.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38295, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Langbeheim, E., & Bielik, T. (2025). Student engagement in constructing computer models in K-12 science education: a systematic.\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38296, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Liu, X., Li, W., Pan, C., & Zhou, S. (2025). AI-DTCEM: A Capability Ecology Framework for Dual-Qualified Teacher Team Construction. Applied Sciences, 15(21), 11392.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38297, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Zhao, Y., Qiao, T., Chen, Y., Kuang, M., Bai, W., Yi, Y., ... & Wang, W. (2025). Attention on social media depends more on how you express yourself than on who you are. Nature Human Behaviour, 1-15.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38299, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Madamba, T., Moreira, R. G., Castillo, A., & Mohebbi, Z. (2025). Simulating listeria monocytogenes cross\u2010contamination of fresh avocado in a dry pack line: A hybrid approach to food safety. Journal of Food Process Engineering, 48(10). https://doi.org/10.1111/jfpe.70223 ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Food Safety, Simulation, Engineering, Economics, Food Hygiene" + }, + { + "id": 38300, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Lin, B., Liu, J., Li, K., & Zhong, X. (2025). Modeling transmission of pre-exposure prophylaxis non-adherence among MSM using data-driven agent-based approaches: a real-world study. Annals of Operations Research, 1-22.\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38301, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Ruan, W., Liu, J., Tang, H., & Liu, C. A Multi-Stage Modeling Framework for Pedestrian Exit Choice: Decision-Node Identification and Cross-Scenario Validation. Chang, A Multi-Stage Modeling Framework for Pedestrian Exit Choice: Decision-Node Identification and Cross-Scenario Validation.\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38302, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Boot, J., van den Ende, M. W., Wiers, R. W., Lees, M. H., & van der Maas, H. L. (2025). Integrating dual-process decision making and social dynamics: A formal modeling framework for addiction. Psychological Review.\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38303, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Moraes, L. B. D. (2025). Simula\u00e7\u00e3o de um sistema de fabrico usando modela\u00e7\u00e3o baseada em agente.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Simulation" + }, + { + "id": 38304, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Nejad, A. Z. S., Baltes, J., Nejad, A. Z. S., & Sadeghnejad, S. Developing an Open Innovation Model for Advanced Robotics: A Systems Thinking Framework in the FIRA Innovation & Business League.\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38305, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Allameh, S. and Ghandehari, M. (2025). Extended Producer Responsibility in the Apparel Industry: An Agent-Based Simulation Incorporating Physical and Emotional Product Durability. Industrial Management Journal, 17(3), 161-179. doi: 10.22059/imj.2025.395722.1008247", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Agent-Based Simulation, Physical Durability, Emotional Durability" + }, + { + "id": 38306, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Granger, J., Nevitt, G., & Johnson, S. (2025). Multispecies Sensory Networks and Social Foraging Strategies: Implications for Population Decline in Procellariiform Seabirds. Proceedings of the National Academy of Sciences, 122(41).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Social Science" + }, + { + "id": 38307, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Baer, M., Allhoff, K. T., Barnes, D. K., & Koch, F. (2025). Forecasting bryozoan assemblage dynamics under simulated climate change. bioRxiv, 2025-10.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Climate Change, Forecasting" + }, + { + "id": 38308, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Heredia Rengifo, M. G., & Hern\u00e1ndez D\u00edaz-Ambrona, C. G. Modelo din\u00e1mico-probabil\u00edstico sobre el comportamiento de los pueblos ind\u00edgenas en aislamiento de la Amazonia Ecuatoriana.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Miscellaneous" + }, + { + "id": 38309, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Verlaan, T., Birks, D., & van der Mei, R. (2025). The Effect of Police Deployment Strategy on Emergency Response Times: An Agent-based Modelling Investigation. Journal of Quantitative Criminology.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38310, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Mapa, M., Sun, Y., Kuligowski, E. D., Cova, T. J., Lovreglio, R., & Zhao, X. (2026). Analyzing evacuation route choices during the 2021 Marshall Fire. Safety Science, 194, 107046.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38311, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Wang, K. Y., & Yu, J. (2026). Agent-based policy analysis: Youth housing affordability and urban market stability. Cities, 170(106629). https://doi.org/10.1016/j.cities.2025.106629\n", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Urban Studies, Economics" + }, + { + "id": 38312, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "PINDELSKI, M. (2025). STRATEGIC INJUSTICE IN GOALS SETTING AFTER USE OF AI. Scientific Papers of Silesian University of Technology. Organization & Management/Zeszyty Naukowe Politechniki Slaskiej. Seria Organizacji i Zarzadzanie, (229).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38313, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Alves, Bruno C.; Caldas, Let\u00edcia B.; F. Junior, Ulisses G.; Santos, Agatha C. S.; Grossmann, Rodolfo B.; BORN, M\u00edriam B.; Aguiar, Marilton S. de. Sistema Multiagente para simula\u00e7\u00e3o de propaga\u00e7\u00e3o viral no contexto da COVID-19 utilizando a ferramenta NetLogo. In: WORKSHOP-ESCOLA DE SISTEMAS DE AGENTES, SEUS AMBIENTES E APLICA\u00c7\u00d5ES (WESAAC), 19. , 2025, Fortaleza/CE. Anais [...]. Porto Alegre: Sociedade Brasileira de Computa\u00e7\u00e3o, 2025 . p. 324-331. ISSN 2326-5434. DOI: https://doi.org/10.5753/wesaac.2025.37558.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 38314, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Ivanova, Y. A. (2025). Aviation Safety Simulation Study on the Impact of Turbulence on Unmanned Aircraft Systems Management. 2025 International Conference on Information Technologies (InfoTech), Sofia, Bulgaria, pp. 1-4.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38315, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Hirst, J, Singarayer, J, Lombardo, U, & Mayle, F. (2025). Modelling Maize Agriculture by the Pre-Columbian Casarabe Culture of Amazonian Bolivia: An Agent-based Approach. Journal of Artificial Societies and Social Simulation 28(4) 5.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38316, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Pantoja-Rojas, L, Alzate-Monroy, M, Medina-Garcia, V, & Moreno-Sandoval, L. (2025). Cognitive Agent-Based Modeling to Optimize Complex Project Management Under Uncertainty. IEEE Access, 13, 127263-127279.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Cognitive Agent-Based Modeling, Complexity, Project Management, Uncertainty" + }, + { + "id": 38317, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Iap\u0103scurt\u0103, V., Falenciuc, R., Munteanu, V., Arnaut, O. (2025). Advancing Biomedical Engineering: An Agent-Based Approach to Pulmonary Edema Simulation. In: Sontea, V., Tiginyanu, I., Railean, S. (eds) 7th International Conference on Nanotechnologies and Biomedical Engineering. ICNBME 2025. IFMBE Proceedings, vol 135. Springer, Cham. https://doi.org/10.1007/978-3-032-06497-4_7", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Biomedical Engineering, Simulation, Nanotechnology, Springer" + }, + { + "id": 38318, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Iap\u0103scurt\u0103, V., Munteanu, V., Bel\u00eei, A. (2025). Exploring Maternal-Placental-Fetal Interactions: A Hybrid Modeling Approach for Biomedical Engineering. In: Sontea, V., Tiginyanu, I., Railean, S. (eds) 7th International Conference on Nanotechnologies and Biomedical Engineering. ICNBME 2025. IFMBE Proceedings, vol 135. Springer, Cham. https://doi.org/10.1007/978-3-032-06497-4_30", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Maternal-Placental-Fetal Interactions" + }, + { + "id": 38319, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Sznajd-Weron, K., & Kami\u0144ska, B. (2025). Emergence of Pluralistic Ignorance: An Agent-Based Approach. In WORking papers in Management Science. Department of Computational Social Science, Wroclaw University of Science and Technology. https://worms.pwr.edu.pl/RePEc/ahh/wpaper/WORMS_25_08.pdf.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Management Science, Agent-Based Approach" + }, + { + "id": 38320, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Kimemiah Mwangi, P., T. Njenga, S., & Ndung\u2019u Kamau, G. (2025). Temporal Analysis of an IOT distributed ledger simulation using NetLogo and agents.jl. Journal of Computer Sciences and Applications, 13(1), 16\u201328. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38321, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Iancu, L. D., Dr\u0103goi, P.-A., Sandu, A., & Cotfas, L.-A. (2025). Fire-induced evacuation in concert venues: An agent-based simulation approach using NetLogo. Proceedings of the International Conference on Business Excellence, 19(1), 599\u2013610.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Simulation, Computer Science, Business Excellence" + }, + { + "id": 38323, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Wogatai, K., Sinanovi\u0107, E., & Elmenreich, W. (2025). Applying a slime mold-inspired algorithm to network planning challenges in the Carinthian region. Carinthia II Part 3 - Carinthia Nature Tech, 2(2). https://doi.org/10.71911/cii-p3-nt-2025222", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Network Planning" + }, + { + "id": 38324, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Skevas, T., & Thompson, W. (2025). Farm policies and their impact on sector composition and risk aversion. Journal of Agricultural Economics 77(1), (pp. 171-182). https://doi.org/10.1111/1477-9552.70014", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Sector composition, Risk aversion" + }, + { + "id": 38325, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Silalahi, S. A., Pujawan, I. N., & Singgih, M. L. (2025). Agent-based simulation of digital interoperability thresholds in fragmented air cargo systems: Evidence from a developing country. Logistics, 9(4), 160. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38326, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Jahic, E., & Larsson, L. (2025). Multiagent Modelling of Energy Consumption in the Household. [Independent thesis, Malm\u00f6 University]. Digitala Vetenskapliga Arkivet. https://www.diva-portal.org/smash/get/diva2:1997961/FULLTEXT02.pdf. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38327, + "sort": null, + "year": 2023, + "is_ccl": true, + "reference": "Kelter, J., Peel, A., Davey, B., Horn, M., & Wilensky, U. (2023). Quickstart Spaceship Programming for Developing Physical Intuition and Connecting it to Propositional Physics Knowledge. In proceedings of the International Society of the Learning Sciences (ISLS) 2023. Montreal, CA.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Physics, Miscellaneous" + }, + { + "id": 38328, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Becerra-Flores, C., Oruro, E. M., Medina-Saldivar, C., Pardo, G. E., & Pacheco-Ot\u00e1lora, L. F. (2025). Maternal Care Modulates Chloride Cotransporter Development during Inhibitory Circuit Maturation in the Piriform Cortex.", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38329, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Talid, M., Rubaie, E., & Talid, Z. (2025). A Proposed Spectral Clustering Method for Wireless Sensor Networks. National Journal of Antennas and Propagation, Vol. 7, No. 2.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38330, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Pangallo, M., Giachini, D., & Vandin, A. (2025). Statistical Model Checking of NetLogo Models. Cornell University. https://arxiv.org/abs/2509.10977. ", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Statistical Model Checking" + }, + { + "id": 38331, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Hou, B., Miao, H., Wang, Q., & Xu, C. (2025). Comparison of crowd evacuation efficiency under static signage and dynamic personnel guidance from an emotional contagion perspective. Physica A: Statistical Mechanics and its Applications, vol. 678 (130977). ISSN 0378-4371, https://doi.org/10.1016/j.physa.2025.130977.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, Statistics, Miscellaneous" + }, + { + "id": 38332, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Kamal, J.B., Kashem, S.B., Rashid, S. (2025). Islamic Versus Mainstream Bank Behavior Using Agent-Based Modelling Simulation. In: Taghizadeh-Hesary, F., Mohd Thas Thaker, H., Bhatti, M.I., Allah Pitchay, A. (eds) Islamic Financial Markets and Institutions. Contributions to Economics. Springer, Singapore. https://doi.org/10.1007/978-981-96-8650-6_3", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Computer Science, Mathematics, Sociology, Islamic Finance" + }, + { + "id": 38333, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Do, T. D., & Bui, H. P. (2025). Modeling Lane-Changing Behavior on Two-Lane Roadways Using a NetLogo-Based Simulation Framework. Journal of Resilient Urbanism & Sustainable Design, 1(1). https://doi.org/10.64822/jrusd.v1i1.19", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Urbanism, Simulation, NetLogo" + }, + { + "id": 38334, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "M. Yingling, T. O'Neill, T. C. Skalak and S. Peirce-Cottler, \"A cellular automata model of circulating cell adhesion and transmigration in the microvaculature,\" 2005 IEEE Design Symposium, Systems and Information Engineering, Charlottesville, VA, USA, 2005, pp. 356-361, doi: 10.1109/SIEDS.2005.193280.\nkeywords: {Adhesives;Stem cells;Bones;Computational modeling;Predictive models;Injuries;Mice;Muscles;Animals;Medical treatment},", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Adhesives\nStem cells\nBones\nComputational modeling\nPredictive models\nInjuries\nMice\nMuscles\nAnimals\nMedical treatment" + }, + { + "id": 38335, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Correia, L. G., & Mena-Chalco, J. P. (2025). The Impact Factor Game: An Agent-Based Exploration of Self-Citation Influence and Interdisciplinary Dynamics on Impact Metrics. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38336, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Li, Y., Liu, Y., & Wang, W. (2025). How demand-side incentive policies drive the diffusion of Forest Wellness Tourism Products: An agent-based modeling analysis. Forest Policy and Economics, 174, 103496. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38337, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Callegari, E. (2025). Can Word Order in the Left Periphery Emerge from Local Interactions? A Complexity Inspired Simulation Framework. University of Iceland, https://www.elenacallegari.com/documents/JLM_Left_Periphery_ABM_EC.pdf. ", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 38338, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "N\u00fa\u00f1ez Barahona, E. G. (2025). Modelado basado en agentes y el surgimiento del liderazgo en equipos nuevos: optimizaci\u00f3n de la toma de decisiones desde el enfoque del liderazgo \u00e9tico.\nRegi\u00f3n Cient\u00edfica, 4(2), 2025495. https://doi.org/10.58763/rc2025495.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38339, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Li, L., Zhang, X., Wang, J., Jin, C., Harris, M., Merveille, N., & Zhang, J. (2025). Replacing monetary with social incentives for community-based home charger owners\u2019 sharing adoption. Transportation Research Part D: Transport and Environment, 149, 105070.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38340, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Dzokom, Alexis. 2025. SOCIO-ECONOMIC ADAPTATION STRATEGIES IN THE LAKE CHAD AREA. hal-04990490", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Ecology, Economics, Sociology" + }, + { + "id": 38341, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Waterson, P., Baber, C., Hunt, E., Milivojevic, S., Maynard, S., & Musolesi, M. (2025, April 28-30). Function Allocation for Responsible Artificial Intelligence: How do we allocate trust and responsibility? [Paper presentation]. CIEHF, Trent, UK.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 38342, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Zapata-Celis, J. A., Ceballos, Y. F., & Castillo-Grisales, J. A. (2025). Modelo de simulaci\u00f3n del crecimiento del parque automotor para revisi\u00f3n de pol\u00edticas p\u00fablicas en gesti\u00f3n de demanda. Revista Facultad De Ingenier\u00eda Universidad De Antioquia, (116), 90\u201399.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38343, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Daemen, J.-P., & Leoni, S. (2025). Simulating tertiary educational decision dynamics: An agent-based model for the Netherlands. Journal of Economic Interaction and Coordination.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38344, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Jacknis, N., Maddala, K. 2025. Forecasting the Adoption of New Technology Products Combining Machine Learning with Multi-Agent Simulations. Available at SSRN.", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Machine Learning, Simulations, Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 38345, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Ferraciolli, E., Renzini, F., Ara\u00fajo, T., Squazzoni, F. 2025. The Devil\u2019s Dung? Money as a mechanism of generalized reciprocity in human societies. https://doi.org/10.48550/arXiv.2506.20691.", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38346, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Teixeira, S., Campos, P. (2025). Strategic Alliances in NetLogo: A Flocking Algorithm with Reinforcement Learning. In: Campos, P., Rao, A., Margarido, J. (eds) Machine Learning Perspectives of Agent-Based Models. Springer, 287-306.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38347, + "sort": null, + "year": 2014, + "is_ccl": false, + "reference": "Chiacchio, Ferdinando, Pennisi, Marzio, Russo, Giulia, Motta, Santo, Pappalardo, Francesco, Agent-Based Modeling of the Immune System: NetLogo, a Promising Framework, BioMed Research International, 2014, 907171, 6 pages, 2014.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 38348, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Karel Vlaeminck, Charlotte Nys, Katrien Arijs, Jelle Mertens, Karel De Schamphelaere, A modeling approach to predict population-level impact of silver (Ag) to rainbow trout (Oncorhynchus mykiss), Environmental Toxicology and Chemistry, Volume 44, Issue 7, July 2025, Pages 1937\u20131952", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Modeling, Toxicology, Chemistry, Environmental Toxicology, Trout" + }, + { + "id": 38349, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "W. Yi, J. Cao, Z. Zhou, B. Niu, W. You and H. Li, \"Dynamic Trust-Based Secure Node Selection in 5G/6G Federated Learning,\" 2025 11th IEEE International Conference on Privacy Computing and Data Security (PCDS), Hakodate, Japan, 2025, pp. 01-08, doi: 10.1109/PCDS65695.2025.00024.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Secure Node Selection, IEEE, Privacy Computing and Data Security, Computer Science, Physics, Economics, History, Ecology, Digital, Education" + }, + { + "id": 38350, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Setiawan, E., Natang, R.H., Anggrianita, W. (2025). An Agent-Based Simulation Model to Analyze the Impact of Land Use Change, Climate Change, and Pest Attacks on the Decline of Rice Production in Central Java. Digital Nexus Systematic Journal, vol. 1, no. 2. doi: 10.26753/dns.v1i2.1552. \n\n\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38351, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Borkowski, A. S., & Wo\u017aniewicz, M. (2025). Agent-Based Modeling of Fire Situation in NetLogo Using BIM Model. TechRxiv.", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 38352, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Oruro, E. M., & Pardo, G. E. (2025). From morphogenesis to morphodynamics neuroscience: Modeling the growth of dendritic shape in pyramidal cells of the piriform cortex in infant rats. The European Physical Journal B, 98(5).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Neuroscience, Morphology" + }, + { + "id": 38353, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Mack, D. (2025). Compartmental Disaggregation: Bridging Simulation and Sampling Methods for Synthetic Population Data Generation. [Doctoral Dissertation, Washington University in St. Louis]. McKelvey School of Engineering Theses & Dissertations.\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics" + }, + { + "id": 38354, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Cohen, M. & Colombo, M. (2025) Paths to Diversity: A Simulation of Conformity in Environments with Different Geometries. Ergo an Open Access Journal of Philosophy. 12(0). doi: https://doi.org/10.3998/ergo.8584", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Philosophy" + }, + { + "id": 38355, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Dwyer, M. (2025). Waabizheshiwag (Martens americana) in the Heart of Anishinaabe-Aki. Purdue University, Thesis, https://www.proquest.com/openview/9d9994ecaa0df4521bf605bbe217f0fa/1?pq-origsite=gscholar&cbl=18750&diss=y. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology" + }, + { + "id": 38356, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Jayasooriya, V., Waidyalankara, S., Dassanayake, S. (2025). Mobility and Transport Improvements for Human Health. In: Brears, R.C. (eds) The Palgrave Handbook of Ecosystems and Wellbeing. Palgrave Studies in Sustainable Futures. Palgrave Macmillan, Cham. https://doi.org/10.1007/978-3-031-24952-5_20-1", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Transport Improvements, Ecosystems, Wellbeing" + }, + { + "id": 38357, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Wang, K., Wang, T. & Li, X. Topology optimization of cooling channels based on swarm intelligence. Struct Multidisc Optim 68, 140 (2025). https://doi.org/10.1007/s00158-025-04076-x", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Topology optimization" + }, + { + "id": 38358, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Talavera, S. E. (2025). Aplicaci\u00f3n de modelos multiagentes para la simulaci\u00f3n de incendios forestales en las Islas Canarias. Universidad de La Laguna. file:///Users/ccl_1/Downloads/Aplicacion%20de%20modelos%20multiagentes%20para%20la%20simulacion%20de%20incendios%20forestales%20en%20las%20Islas%20Canarias.pdf. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Models, Fire, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 38359, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Sharbini, H., Chan, C.P., Mat, A.R., Borhan, N.H., Talib, M.S., Mustaffa, N.H. (2025). Agent-based simulation with awareness levels of the emergency evacuation of educational facilities. Edelweiss Applied Science and Technology, Learning Gate, vol. 9(7), pages 2063-2077.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38360, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Taillandier, P., Zucker, J.D., Grignard, A., Gaudou, B., Nghi, H.Q., Drogoul, A. (2025). Integrating LLM in Agent-Based Social Simulation: Opportunities and Challenges. Cornell University. \nhttps://doi.org/10.48550/arXiv.2507.19364.", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, LLM, Agent-Based Social Simulation, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38361, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Abdelshafie, A., Salah, M., & Kramberger, T. (2025). The Environmental Impact of Inland Empty Container Movements Within Two-Depot Systems. Applied Sciences, 15(14), 7848. https://doi.org/10.3390/app15147848", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38362, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Garty, B., Gambash, G., Levy, S. T., Bar-Oz, G. (2025). Wine economy in Byzantine Shivta (Negev, Israel): Exploring the role of runoff agriculture and droughts through Agent-Based Modeling. PLoS One 20(7): e0325204. https://doi.org/10.1371/journal.pone.0325204.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38363, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "da Silva, T. F., and Maia, J. (2025). Leadership Detection via Time-Lagged Correlation-Based Network Inference. Cornell University. arXiv:2507.04917. https://doi.org/10.48550/arXiv.2507.04917.\n", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Time-Lagged Correlation-Based Network Inference" + }, + { + "id": 38364, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Flinspach, L., Wiegand, T., Camarero, J. J., Batllori, E., Guti\u00e9rrez, E., & Bader, M. Y. (2025). Quantification of small\u2010scale spatial patterns in Alpine\u2013Treeline ecotones. Ecology and Evolution, 15(5). https://doi.org/10.1002/ece3.71186 ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38365, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Nabila, P. T., Hardhienata, H., & Alatas, H. (2025). Modeling of communication within termite-like population using agent-based model: Pheromone evaporation effects. BIO Web of Conferences, 175, 03006. https://doi.org/10.1051/bioconf/202517503006 ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Agent-based model, Pheromone, Ecology" + }, + { + "id": 38366, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Sibala, L.S.B., Oguis, G.F.R., & Rivas, N.A.B. (2025). Assessing the Dynamics of the Coffee Value Chain in Davao del Sur: An Agent-Based Modeling Approach. arXiv. https://doi.org/10.48550/arXiv.2505.05797. ", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38367, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Van Den Berg, F. P. W., Noyons, B. C., & Van, M. A. (2025). Safety assessment with an agent based model for levees with beaver burrowing during high-water events (). Twenty-Eighth International Congress on Large Dams, 967\u2013984. https://doi.org/10.1201/9781003642428-41 ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38368, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Cheng, Y. & Siljak, H. (2025). Emergent Multi-View Fidelity in Autonomous UAV Swarm Sport Injury Detection. arXiv. https://doi.org/10.48550/arXiv.2505.06588", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, arXiv, Computer Science, Miscellaneous" + }, + { + "id": 38369, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "G\u00fcnther, A., van der Kam, M., Rasanan, A. H., Gluth, S., & Hahnel, U. (2025). Divergent effects of economic and behavioural policy coupling on electric vehicle adoption at individual and system levels. Research Square. https://doi.org/10.21203/rs.3.rs-8135836/v1 ", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Economic, Computer Science, Ecology, Physics, Sociology, Research Square, Policy" + }, + { + "id": 38370, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Bao, C., Chen, Y., Tahlyan, D., & Mahmassani, H. S. (2026). Understanding the trade-offs of Telework: An agent-based simulation of hybrid work models and employee behavioural dynamics. Travel Behaviour and Society, 43, 101207. https://doi.org/10.1016/j.tbs.2025.101207 ", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38371, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Zhang, P., Huang, A., Wu, L., Li, R., & Fu, Z. (2025). A multi-agent simulation-based decision support tool for Sustainable Tourism Land Use Planning in rural China. Land, 14(12), 2342. https://doi.org/10.3390/land14122342 ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38372, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Lange, J., Koch, A., Kn\u00f6chelmann, L., & Alves, H. (2025). Attitude Formation Based on Political Views: An Expectancy-Value Model of Interpersonal Likability in Politics. Personality and Social Psychology Bulletin. Advance online publication.", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Psychology, Sociology" + }, + { + "id": 38373, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Zhang, Y., Song, P., & Yang, Q. (2025). A Risk-Aware Dynamic Credit Allocation Mechanism in Green Supply Chains: An Agent-Based Model with ESG Metrics. Risks 13(12). https://doi.org/10.3390/risks13120236", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Risk, Credit, Supply Chains, Agent-Based Modeling, ESG Metrics" + }, + { + "id": 38374, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Nwokoye, C. (2026). A Survey of SIR-Based Differential Epidemic Models for Control and Security Against Malware Propagation in Computer Networks. Security and Privacy 9(1). https://doi.org/10.1002/spy2.70138", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Differential Equations, Computer Science, Malware, Security, Epidemiology" + }, + { + "id": 38375, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Baccega, D., Pernice, S., Castagno, P., Sereno, M., & Beccuti, M. (2025). Living along covid-19: Assessing contention policies through agent-based models. Computational Intelligence Methods for Bioinformatics and Biostatistics, 143\u2013161. https://doi.org/10.1007/978-3-031-90714-2_11 ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 38376, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Gavric, S., Stevanovic, A., Mitrovic, N., Netjasov, F., & Rakas, J. (2025). Urban surface and Air Mobility Control: A microsimulation integrating intelligent fly-drive vehicles into surface traffic. IEEE Transactions on Intelligent Transportation Systems, 26(7), 9893\u20139906.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Miscellaneous" + }, + { + "id": 38377, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Palrecha, J., Hegade, P., & Shettar, A. (2025). NetLogo Models for Pattern Recognition in Problem Based Learning. Journal of Engineering Education Transformations 38(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38378, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Shan, S., Wang, Y., Hao, J., Guo, R., & Zhang, Y. (2025) The Relationship Between Individual Willingness to Collaborate and the Performance of Collaborative Public Crisis Governance: An Agent Based Model. MDPI Mathematics 13(10).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38379, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Cannavucciuolo, L., Maione, V., Ponsiglione, C., & Primario, S. (2025). Agent-based modelling of electric vehicle adoption: a multidimensional perspective assessment. Research in Transportation Business & Management 61.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38380, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Kininmonth, S. J. & Beeden, R. J. (2025). Snakes and Ladders: Adopting a Globally Renowned Game to Enhance Understanding of Ecological Sustainability. Preprints.org", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 38381, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Schneider, J.S., Reutemann, A.V., Sassone, A.B. et al. An interactive heuristic model to test ecological and evolutionary hypotheses on incipient polyploid species. Sci Rep (2025). https://doi.org/10.1038/s41598-025-29286-7. \n\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecological, Evolutionary, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38382, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Nwokoye, C.H. (2025). Multigroup e-SIjRjTj Model for Malware Propagation in Wireless Sensor Networks. IAENG International Journal of Computer Science, vol 52. (7), p. 2075-2090. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Malware Propagation, Wireless Sensor Networks" + }, + { + "id": 38383, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Cruz-Mart\u00ednez, G. A. (2025). Gobernanza y transformaci\u00f3n digital en el sector salud. Innovare Revista De Ciencia Y tecnolog\u00eda, 14(1), 1\u20137. https://doi.org/10.69845/innovare.v14i1.480", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38384, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Alford, J. G., Orozco, A. R., Lutterschmidt, W. I., Williams, J. K., & Godwin, W. (2025). PFSt-SIM: an agent-based pine forest stand simulator. Journal of Simulation, 1\u201318. https://doi.org/10.1080/17477778.2025.2524357", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Chemistry" + }, + { + "id": 38385, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Dawson, D., Minucci, J., Purucker, T. (2025). Incorporating a nectar-based pesticide module into BeeHave, an agent-based model of honeybee population dynamics. Ecological Solutions and Evidence, vol. 6 (3), e70105. https://doi.org/10.1002/2688-8319.70105", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 38386, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Liang, C.-L., Collins, B. (2025). Applying Agent-Based Modeling to Examine Business Strategies \u2013 Tools and Examples for Researchers and Practitioners. Small Business Institute Journal, 21(1), 16\u201324. https://doi.org/10.53703/001c.138368", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Computer Science, Miscellaneous" + }, + { + "id": 38387, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Rini, N.K., Deliana, Y., Wibowo, K. A., Trimo, L., Setiawan, I., Sukmawani, R., Widianto, S., Wulandari, E. (2025). Simulating value co-creation in digital agri-food platforms: An agent-based model of consumer\u2013producer interaction in the organic vegetable market. Edelweiss Applied Science and Technology. Learning Gate, vol. 9(6), pages 2553-2567. doi: 10.55214/25768484.v9i6.8432", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38388, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Alebrahim, E. (2025). Agent-Based Models in Industrial Economics: A Perspective of the Kuwaiti Housing Market Structure. Arab Journal of Administrative Sciences, 32(2), 389\u2013433. https://doi.org/10.34120/ajas.2025.1281", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Computer Science, Industrial Economics, Administration" + }, + { + "id": 38389, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Athamena, B., Athamena, M.R., Houhamdi, Z., Elrefae, G., Al Qeisi, K. (2025). Supplier selection strategies evaluation: a multi-agent based simulation. International Journal of Economics and Business Research, vol. 29 (14), p. 1-54. DOI: 10.1504/IJEBR.2025.10071838", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Computer Science, Miscellaneous" + }, + { + "id": 38390, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Li, H., Huan, J. & Xie, J. (2025). Research on the evolution law of supply chain disruption based on Complex Adaptive System. Flex Services and Manufacturing Journal. https://doi.org/10.1007/s10696-025-09627-4", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Complex Adaptive System" + }, + { + "id": 38391, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Hyunwoo, K. (2025). Production and Distribution of Unified Silla Pottery through Agent-Based Modeling A Hypothetical Approach to Producer and Consumer Choice Mechanisms. Journal of Humanities, vol. 82 (2). DOI 10.17326/jhsnu.82.2.202505.187", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Agent-Based Modeling, Producer, Consumer, Choice, Economics" + }, + { + "id": 38392, + "sort": null, + "year": 2025, + "is_ccl": true, + "reference": "Kelter, J. Z., & Emery, J. D., & Wilensky, U. J. (2025, June). Computational Modeling in Materials Science and Engineering: Student Responses to a Restructurated. Introductory Course Paper presented at 2025 ASEE Annual Conference & Exposition , Montreal, Quebec, Canada. doi: 10.18260/1-2--56132", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Materials Science and Engineering, Computer Science, Education" + }, + { + "id": 38393, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Prunetti, D., Innocenti, E., Maraninchi, G., Idda, C., Detotto, C., Yuheng, L., & Parker, D. C. (2025). Evaluation of Development Policies of a Tourist Territory Confronted with Intensive Urban Development using a Multi-Agent Modeling. Hal Open Science.", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38394, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Baghban Khiabani, S., Rahnama, M.R. & Ajza Shokouhi, M. (2025). Integrating GIS and NetLogo-based modelling for simulating land-cover change scenarios in Mashhad Metropolitan Area, Iran. Bulletin of Geography. Socio-economic Series, 68(68): 65-86. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "GIS, Modeling, Geography, Iran, Land-cover change, NetLogo" + }, + { + "id": 38395, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Assogba, G.G.C., Descheemaeker, K., Adam, M., Berre, D., Speelman, E., & Delay, E. (2025). Bridging Gaps in Agro-Ecosystem Integration: A Multi-Level Modelling Study in Semi-Arid Burkina Faso. SSRN.", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38396, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Reintgen Kamphuisen, F. M., Joye, Y., & Bolderdijk, J. W. (2025). An agent-based model of the extinction of experience: How nature availability and connectedness to nature co-evolve over time. Journal of Environmental Psychology, 106, 102629.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38397, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Carre\u00f3n V\u00e1zquez G., Hern\u00e1ndez Zavaleta, J. E., Cort\u00e9s Berrueco, L. E. & Carri\u00f3n Vel\u00e1zquez, V. (2025). Modelaci\u00f3n basada en agentes en el bachillerato: un estudio de las experiencias cotidianas y conceptos cient\u00edficos. En A. Solares-Rojas, & A. P. Preciado Babb (Eds.), La investigaci\u00f3n en modelizaci\u00f3n matem\u00e1tica: un di\u00e1logo entre educadores de Latinoam\u00e9rica y Espa\u00f1a (pp. 205\u2013229). Editorial SOMIDEM. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38398, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Sert, M. F., Kartal, B., \u00c7ak\u0131ro\u011flu, K. I., & \u00d6zt\u00fcrk, A. (2025). Predictive modelling of future tea consumption: Analysing consumer behaviour with combining the machine learning and agent-based simulation approaches. Journal of the Operational Research Society, 1\u201316.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38399, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Mukherjee, A., Hilzendeger, M., Rinvelt, A., Fatma, S., Schupp, M., Nogare, D.D., & Chitnis, A.B. (2025). Signaling and Mechanics influence the number and size of epithelial rosettes in the migrating zebrafish Posterior Lateral Line primordium. Available at bioRxiv.", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Signaling, Mechanics, Echinoderms" + }, + { + "id": 38400, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Westmattelmann, D., Sprenger, M., Lanfer, J., Stoffers, B., & Petr\u00f3czi, A. (2025). The impact of sample retention and further analysis on doping behavior and detection: Evidence from agent-based simulations. Frontiers in Sports and Active Living, 7. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38401, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Iap\u0103scurt\u0103, Victor. (2025). Agent-based modeling of fluid dynamics in lung tissue engineering. Cells and tissues transplantation Actualities and perspectives, Ed. 3, 21-22", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Fluid Dynamics, Modeling" + }, + { + "id": 38402, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Lee, H. W., DeAngelis, D. L., Yurek, S., & Papastamatiou, Y. P. (2025). Foraging of wading birds on a patchy landscape: Simulating effects of social information, interference competition, and patch selection on prey intake and individual distribution. Ecological Modelling 507.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 38403, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Dai, D., Zhang, R., Wang, Y., Long, R. (2025). Walkability evaluation and optimization based on pedestrian and environment interaction: an agent-based modeling approach. Journal of Transport and Health, vol. 44. doi: https://doi.org/10.1016/j.jth.2025.102107.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Pedestrian, Environment, Modeling, Health" + }, + { + "id": 38404, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Vogelstein, L., Wagh, A., Champion, D. (2025). Towards Expansive and Equitable Modeling: Syncretic Modeling through the Lenses of Dance, Science, and computation. International Society of the Learning Societies. https://repository.isls.org/bitstream/1/11293/1/ICLS2025_1449-1453.pdf.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computation" + }, + { + "id": 38405, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Sakata, A., Kikuchi, T., Kunigami, M., & Terano, T. (2025). A Framework to Support Upgrading Gaming Simulations in Response to Feedback from the External Environment. IEEE/ACIS 23rd International Conference on Software Engineering Research, Management and Applications (SERA), Las Vegas, NV, USA. pp. 456-463, doi: 10.1109/SERA65747.2025.11154581.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38406, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Piskorska, K.M., & Takac, M. (2025). Multi-agent modelling of climate change denial spread. https://cogsci.fmph.uniba.sk/kuz2025/zbornik/34_Piskorska_final.pdf", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38407, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Henzler, J., Beyer, N., Han\u00df, S., Fiedler, S., Simpkins, C. D., & Wiegand, K. (2025). Coupling agent-based and InVEST models for spatio-temporal simulation of land-use change effects on ecosystem services. Available at SSRN 5856141.", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38408, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Xiang, L., Keck, J. W., Gallimore, J., Sakhaei, A., Loh, E., & Berry, S. M. (2025). Wastewater Infrastructure as a Public Health Tool: Agent-Based Modeling of Surveillance Strategies in a COVID-19 Context. Systems, 13(12), 1093.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38409, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Kalu, E. I., Amadi, A. N., Enebeli, U. U., Uzochukwu, B. S. C., Or-Dinioha, B., Cherima, Y. J., Kalu, F. A., Igwe, P. C., Kalu, J. J., Kalu, B. O., Nwokenna, U. S., & Hassan, R. K. (2025). Spatio-temporal dynamics of flood-induced Anopheles breeding sites and malaria hotspots in urban Abia State: A GIS-based cohort study. Hensard Journal of Environment, 1(1)", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, GIS, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 38410, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Scharf, I. (2025). Active predators do not necessarily specialize in sedentary prey: A simulation model. Ann NY Acad Sci., 1549, 199\u2013207.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Simulation model" + }, + { + "id": 38411, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Schranz, M., Elmenreich, W., & Arvin, F. (2025). Simulating swarms of cyber-physical systems. Engineering Swarms of Cyber-Physical Systems, 67\u201383.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Engineering" + }, + { + "id": 38412, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Luttermann, M., Prestele, R., Grimm, V., & Groeneveld, J. (2025). Expanding the Scope of the Bumblebee Model BEE-STEWARD: A Simple Foraging Module Facilitates the Parameterization. Ecology and Evolution 15(5). ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 38413, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Zimdahl, R. & Kn\u00f6\u00f6s Franz\u00e9n, L. (2025). An Inclusive Method for Connecting System-of-Systems Architectures with Stakeholders. Systems, 13(6). ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38414, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Ji, T., Stankov, I., Sherman Egan, N., Hassmiller Lich, K., Thornton, R. L.J., Wang, Q., Igusa, T., Wei, H., & Matson, P.A. (2025). Investigating the impacts of alcohol outlet zoning policy on alcohol consumption and access to non-alcoholic services: A spatial agent-based simulation. Health & Place 94.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38415, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Dwivedi, S., da Silva Torres, R., Hameed, I. A., Tufte, G., & Karlsen, A.S.T. (2025). Koopman-based data-driven soft artificial life: obtaining rulesets from observed data. Natural Computing 24, 799-812.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38416, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Real Ortega, C. R., Hern\u00e1ndez Sol\u00eds, A., Pe\u00f1a Acu\u00f1a, F., & Solares-Rojas, A. (2025). Uso de representaciones semi\u00f3ticas mediante la modelizaci\u00f3n basada en agentes. En A. Solares-Rojas, & A. P. Preciado Babb (Eds.), La investigaci\u00f3n en modelizaci\u00f3n matem\u00e1tica: un di\u00e1logo entre educadores de Latinoam\u00e9rica y Espa\u00f1a (pp. 231\u2013254). Editorial SOMIDEM. https://doi.org/10.24844/SOMIDEM/S2/2025/01-10", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Mathematics, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 38417, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Lu, X., Xu, Z., Li, Y., Hu, X., Song, P., Shi, Q. (2025). A micro\u2013macro coupled approach to assess urban road traffic flood risk at the city scale. Journal of Hydrology 664(B), https://doi.org/10.1016/j.jhydrol.2025.134435.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38418, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Chen, S. (2025). Economic Simulations in Swarm: 20 Years On. New Mathematics and Natural Computation. https://doi.org/10.1142/S1793005726500572.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Economic Simulations, Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 38419, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Abedini, V. and abdoli, G. (2025). Agent-Based Simulation of the Effect of Generosity Behavior Variable on Wealth Distribution in Urban Fabric. Journal of Social Problems of Iran, 15(2), 177-195. doi: 10.22059/ijsp.2025.380082.671250", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Agent-Based Simulation" + }, + { + "id": 38420, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Reddy Sareddy, M. (2025). Enhancing Smart City Healthcare with Hybrid Swarm Optimization: A Comparison of MFO-PSO and ACO Approaches. IRO Journal on Sustainable Wireless Systems 7(1), 1-18, 10.36548/jsws.2025.1.001.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38421, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Andrade-Garda, J., Carneiro-D\u00edaz, V., Lage-Etchart, D., Su\u00e1rez-Garaboa, S. (2025). Automated argumentation-based social trust negotiation in collaborative networks. Computers and Industrial Engineering 203. https://doi.org/10.1016/j.cie.2025.111026", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38422, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Jimenez-Romero, C., Yegenoglu, A., Blum, C. (2025). Multi-agent systems powered by large language models: applications in swarm intelligence. Frontiers in Artificial Intelligence 8, https://doi.org/10.3389/frai.2025.1593017", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Artificial Intelligence, Swarm Intelligence" + }, + { + "id": 38423, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Yaqi, L., Guisheng, H., Xiujuan, J. (2025). Multi-agent simulation of team stability evolution: A complexity science perspective. Journal of Infometrics 19(2), https://doi.org/10.1016/j.joi.2025.101655", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Complexity Science, Simulation, Economics" + }, + { + "id": 38424, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Aguilera-Ontiveros, A., Alferes-Varela, G. (2025). Python para el modelado y simulaci\u00f3n basado en agentes en las ciencias sociales. El Colegio de San Luis. https://colsan.repositorioinstitucional.mx/jspui/handle/1013/1773", + "doesnt_really_use_netlogo": true, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38425, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Desai, A. (2025). Precision Elimination: Proof-of-Concept In Silico Testing of a Novel Construct for Optimizing HIV-1 Eradication. doi: 10.20944/preprints202503.0071.v2", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 38426, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Gerada, A., Rosato, C., Howard, A., Green, P.L., Hope, W. (2025). Gastro-intestinal transmission and colonisation of pathogenic bacteria: calibration of an agent-based model. International Journal of Infectious Diseases 152, 68, https://doi.org/10.1016/j.ijid.2024.107600", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Infectious Diseases, Agent-Based Modeling" + }, + { + "id": 38427, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Levy, S.T., Sacks, D.P. (2025). Simulations Storybook: Supporting Young Children's Growing Understanding of Complex Systems. Proceedings of the 20th Chais Conference for the Study of Innovation and Learning Technologies: Learning in the Digital Era. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 38428, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Fernando, W. W. A. D. R., Ariyarathne, D. M. T. W., Dilshan, B. A. T., Wijerama, N. S., Lahiru, U. P., & Rajapakse, R. A. C. P. (2025). Agent-Based Modeling of Human-Elephant Conflict Dynamics: A Simulation Approach Using NetLogo. 5th International Conference on Advanced Research in Computing (ICARC), pp. 1-6, doi: 10.1109/ICARC64760.2025.10962930.", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Agent-Based Modeling" + }, + { + "id": 38429, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Weraduwa, S., Kannangara, M., Gayantha, N., Piyumantha, K., & Rajapaksa, C. (2025). An Agent-Based Model to Address the Gap in Internship Opportunities for IT Undergraduates in Sri Lanka. 5th International Conference on Advanced Research in Computing (ICARC), pp. 1-6, doi:10.1109/ICARC64760.2025.10963178.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38430, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Adam, C., Gaudou, B. (2024). A survey about perceptions of mobility to inform an agent-based simulator of modal choice. Cornell University. https://doi.org/10.48550/arXiv.2502.12058", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38431, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Malikov, M. & Salazar-Serna, K. (2025). Realistic Social Networks in Agent-Based Modeling. 2025 Annual Modeling and Simulation Conference (ANNSIM), Madrid, Spain.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 38432, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Irving-Beck, Fiona. (2025). Weathering and Beyond: Leveraging Mathematical Modeling to Simulate Erosion in Digital Media. Scripps Senior Theses. 2617. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Mathematics, Physics, Economics, History, Social Science, Education" + }, + { + "id": 38433, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Cozzi, F., Pangallo, M., Perotti, A., Panisson, A., & Monti, C. (2025). Learning Individual Behavior in Agent-Based Models with Graph Diffusion Networks. arXiv:2505.21426.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Social Science, Education" + }, + { + "id": 38434, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Gorvett, Rick. (2025). Agent-Based Modeling: Introduction and Actuarial Applications.\nCAS E-Forum Quarter 1.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38435, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Chatter, S., Chokethaworn, K., & Chaiboonsri, C. (2025). Simulating the Impact of FDI Shocks on Macroeconomic Stability Using Agent-Based Modeling. International Journal of Science and Social Science Research 3(1). ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38436, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Sybertz, A., Ottermanns, R., & Ro\u00df-Nickoll, M. (2025). MIXCOP - Implementation of a model to assess the time-dependent effects of mixed pesticides on a collembolan population. MethodsX 14.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Miscellaneous" + }, + { + "id": 38437, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Prasher, S., & Hobson, E. A. (2025). Exploring the Factors Underlying Adaptive Social Plasticity in Foragers Using an Agent-Based Model. Integrative and Comparative Biology 65(3) 615-630.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38438, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Xiaoxing Yu (2025). An Agent-based Approach to the Gravity Model of Linguistic Diffusion, SIAM Undergraduate Research Online.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38439, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Rinc\u00f3n-Gonz\u00e1lez, C. E., y Montoya-Arango, J. A. (2025). Resiliencia de la arquitectura regional de bahareque: simulaci\u00f3n seg\u00fan un modelo basado en agentes con el software NetLogo. Revista de Arquitectura (Bogot\u00e1), 27(2), 15-37.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38440, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Cardoso, G. E. M. (2025). Aprendizaje de la derivada en estudiantes de bachillerato mediante tecnolog\u00eda arduino, Netlogo y Geogebra. [Master's Thesis], Benem\u00e9rita Universidad Aut\u00f3noma de Puebla.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Technology, Computer Science, Mathematics, Education" + }, + { + "id": 38441, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Hirst, J., Singarayer, J. S., Lombardo, U., & Mayle, F. (2025). Constraining the population size estimates of the pre-Columbian Casarabe Culture of Amazonian Bolivia. PLoS One 20(5): e0325104.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38442, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Drennan, J. L., & Tumulty, J. P. (2025). Frogs With a Southern Drawl: Wide Recognition Space Facilitates Heterospecific Aggression in Territorial Cricket Frogs. Ethology 2025 0:1-13. https://doi.org/10.1111/eth.70038", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Agriculture" + }, + { + "id": 38443, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Rahmatina, N., Permatasari, A. D., Yaqin, M. A. (2025). Evaluasi Strategi Versioning Produk terhadap Retensi dan Profitabilitas. Pustaka Galeri Mandiri, 5(2), 311-322.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38444, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Liberatore, A., Sousa, A. E., Cardoso, P., & Pais, S. (2025). Immersive Technologies in Italian Cultural Tourism: An Exploratory Analysis of Visitor Satisfaction and Predictive Modeling. Studia Universitatis Babes Bolyai - Negotia 70(2) 43-76.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38445, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Yousef, Khaled and Yuce, Baris and He, Naihui, Renewable Energy Strategic Planning and Management: An Agent-Based Modeling and Simulation. Available at SSRN: https://ssrn.com/abstract=5279357", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38446, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Nadieh Barnard, L. (2024). Using agent based modelling to determine behavioural rules in host location by Cotesia parasitoids (in environments with competitors and nonhosts). [Master's Thesis], Wageningen University & Research.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 38447, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Kami\u0144ska, B., Sznajd-Weron, K. (2025). Impact of cognitive dissonance on social hysteresis: Insights from the expressed and private opinions model. Expert Systems with Applications 273, https://doi.org/10.1016/j.eswa.2025.126851", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Cognitive Dissonance, Social Hysteresis, Opinion Modeling" + }, + { + "id": 38448, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Isnan, S.S.M., Abdullah, A.F., Sharif, A.R.M., Ishak, I., Ismail, S.N.S., Tai, D., Appanan, M.R. (2025). Leveraging Computational Model Approach in Understanding Infectious Disease: A Case Study in Sabah, Malaysia. Pertankia Journals Science & Technology 33(2), 653-676, https://doi.org/10.47836/pjst.33.2.06", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Infectious Disease, Computer Science, Economics, Malaysia, Science and Technology" + }, + { + "id": 38449, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Sartor, G., Wyner, A., Contissa, G. (2025). Mind the Gaps: Logical English, Prolog, and Multi-agent\nSystems for Autonomous Vehicles. 40th International Conference on Logic Programming (ICLP 2024)\nEPTCS 416, 2025, pp. 111\u2013124, https://doi.org/10.48550/arXiv.2502.09216", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Logic Programming" + }, + { + "id": 38450, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Raikar, G.V.S, Raikar, A.S., Gururaj, H.L., et al. (2025). Revolutionizing UTI Treatment: Harnessing Ant Colony Optimization for Effective E. coli Combat in the Urinary Tract. PREPRINT (Version 1)Research Square, https://doi.org/10.21203/rs.3.rs-5905599/v1", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38451, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Rodriguez-Lucatero, C. (2025). Simulation of Virus Propagation in Complex Networks Using NetLogo Multiagent Testbed. Complex Systems with Artificial Intelligence - Sustainability and Self-Constitution: Sustainability and Self-Constitution, 33-54, http://dx.doi.org/10.5772/intechnopen.1007441", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, NetLogo, Complex Networks, Artificial Intelligence, Sustainability" + }, + { + "id": 38452, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Edalati, O., Salehnia, N., seyed Ramezani, F. (2025). Agent-Based Modeling in the Design and\nManagement of Circular Marine Tourism Economy. 2nd International Conference on Blue Economy, University of Hormozgan. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38453, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Knoke, D. (2025). Network Collective Action: Agent-Based Models of Pandemics, Riots, Social Movements, Insurrections and Insurgencies. Springer. https://doi.org/10.1007/978-3-031-86199-4", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38454, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Zaljey, A., Dasanayake, L., Kodithuwakku, T., Herath, T., & Silva, N. (2025). Agent-Based Modeling of the Egg Supply Chain: Dynamics, Challenges, and Optimization Strategies. 2025 International Research Conference on Smart Computing and Systems Engineering (SCSE), pp. 1-6, doi: 10.1109/SCSE65633.2025.11031034.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38455, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Edi Yoga, K. (2025). Tree Island Enhanced and Monoculture Oil Palm Plantation Landscape Evolution Modelling (TIEMOPLEM) Catchment-scale soil and water redistribution effects of tree islands enrichments. Thesis. Wageningen University and Research. https://edepot.wur.nl/697091", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Soil, Water, Ecology, Modelling, Agriculture, Soil Science, Landscape, Research" + }, + { + "id": 38456, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Grando, L. (2025). Study for Optimization of Battery Consumption for Unmanned Aerial Vehicles. Thesis. Universidade Estadual de Campinas (UNICAMP). https://doi.org/10.47749/T/UNICAMP.2025.1499477", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Chemistry" + }, + { + "id": 38457, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Salazar Serna, K. G. (2025). Evaluaci\u00f3n de Pol\u00edticas para el Sector de Motocicletas. [Doctoral Thesis, Universidad Nacional de Colombia].", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38458, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Cantatore, E., Bernardini, G., Quagliarini, E., & Fatiguso, F. (2025). Evaluating and Mitigating Terrorist Risk in Historical Outdoor Open Areas Including User Factors. In: Albatici, R., Dalpr\u00e0, M., Gatti, M.P., Maracchini, G., Torresin, S. (eds) Envisioning the Futures - Designing and Building for People and the Environment. Colloqui.AT.e 2025. Lecture Notes in Civil Engineering, vol 765. Springer, Cham.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38459, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Williams, D. L. (2025). Multi-Agent Communication Protocol in Collaborative Problem Solving: A Design Science Approach. [Masters Thesis, Uppsala University]. Diva Portal: 1970755.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38460, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Dixon, P., Sieprawski, K., Tang, A., & Lira, M. (2025). Making drawings count for assessing quantitative knowledge. In Seitamaa-Hakkarainen, P. & Kangas, K. (Eds.), Proceedings of the International Conference of the Learning Sciences, 2901\u20132903.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38461, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Vulic, J., Jacobsen, M., & Levin, J.A. (2025). Computational Educational Research: An Exploration of Instructional Frameworks. Paper presented at the 2025 annual meeting of the American Educational Research Association. Retrieved December 2025 from the AERA Online Paper Repository.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 38462, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Sani Iyal, A., Afarasimu, A. (2025). Improved Dijkstra Indoor Path Planning for Scalable Multi-Robot with Time-Stepped Coordination. UMYU Scientifica. https://publications.umyu.edu.ng/scientifica/index.php/usci/article/download/361/302/1055?inline=1 ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Dijkstra, Indoor Path Planning, Scalable Multi-Robot, Time-Stepped Coordination" + }, + { + "id": 38463, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Alonte, J., Benalla, P., Jamito, E.R.A., Salvador, M.A., Tolentino, J., & Villanueva, R. (2025). Dynamics of Rabies Spread Using Mathematical Modeling and Simulation. Kafrelsheikh Journal of Information Sciences 5(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Modeling, Simulation, Ecology" + }, + { + "id": 38464, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "de Oliveira Leite Nascimento, C., Pira, M. L., Fazio, M., Marcucci, E., Gatta, V., & Pluchino, A. (2025). Customers in action: Involving Crowdshippers in e-grocery deliveries. Transportation Research Part A: Policy and Practice, 199, 104582. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Customer behavior" + }, + { + "id": 38465, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Sommer, I., Faggian, R., Sposito, V., & Dieguez Cameroni, F. (2025). Agent-based modelling applied to nitrogen and phosphorus assessment in agroecosystems: A case study of a Uruguayan dairy farm. Agrociencia Uruguay 29.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Agriculture, Modeling" + }, + { + "id": 38466, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Mathieu, P., Nongaillard, A., & Simon, E.P. (2025). Infrastructure intelligente pour l'allocation de puissance dans les syst\u00e8mes MIMO de type cell-free. Journ\u00e9es Francophones sur les Syst\u00e8mes Multi-Agents (JFSMA), Jul 2025, Dijon, France. pp.43-53. Available at hal-05214291.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Maths, Systems Multi-Agents, Physics, Economics" + }, + { + "id": 38467, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Hager, T., Mellacher, P., & Rath, M. (2025). Gender norms and network structure: A model of the intrahousehold division of Labor. Feminist Economics, 31(3), 237\u2013274.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38468, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Saba, J., Kapur, M., & Roll, I. (2025). Learning about multivariable causality with interactive simulations: exploration before instruction may hurt immediate gains but benefits transfer. Instructional Science 54, 1603-1632.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 38469, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Kuo, T.C., Zulkarnain, I., Rahmat, D.A., Rumanti, A.A., Pulungan, M.A. (2025). Large Language Model Integration in Agent-Based Modeling for the Simulation and Recycling System. SSRN. http://dx.doi.org/10.2139/ssrn.5897130\n", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38470, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Susco, A. (2025). Enhancing Efficiency in Last-Mile Food Delivery: Analysis of innovative and alternative delivery systems through Mixed-Methods and Simulation. Universit\u00e0 degli Studi di Torino. https://hdl.handle.net/2318/2059754\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38471, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Iap\u0103scurt\u0103, V. (2025). Exploring the human circulatory system through system dynamics: a model-based approach. In: Journal of Engineering Science, 2024, 31(4), pp. 95-104. ISSN 2587-3474. DOI: https://doi.org/10.52326/jes.utm.2024.31(4).07", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, System Dynamics, Engineering Science" + }, + { + "id": 38472, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Karrenberg, C., Edwards, E., Berglund, E.Z. (2025). Agent-based modeling to assess the effects of time-of-use water tariffs on social equity. Utilities Policy 99. https://doi.org/10.1016/j.jup.2025.102130", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Social Science, Economics" + }, + { + "id": 38473, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Alaliyat, S., Oucheikh, R. (Eds.). (2025). Agent-Based Modeling of Urban Residential Electricity Demand Incorporating EV Charging Behavior. Proceedings of the Communications of the ECMS. ECMS 39(1). https://www.scs-europe.net/dlib/2025/ecms2025acceptedpapers/0455_simo_ecms2025_0050.pdf", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Urban Studies, Economics" + }, + { + "id": 38474, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Fauvelle, M., Grier, C., Garc\u00eda-Piquer, A. (2025). The Archaeology of Seafaring in Small-Scale Societies: Negotiating Watery Worlds. University Press of Florida. https://doi.org/10.5744/9780813079493", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Archaeology, Biology, Miscellaneous" + }, + { + "id": 38475, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Will, M., Jager, F., & Muller, B. (2025). Farmer decision-making on agri-environmental schemes: An agent-based modelling approach to evaluate different policy designs in Saxony, Germany. Agricultural Systems 229. https://doi.org/10.1016/j.agsy.2025.104439. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38476, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Mesas, F., Taboada, M., Rexachs, D., Epelde, F., Wong, A., Luque, E. (2025). A Customizable Agent-Based Simulation Framework for Emergency Departments. In: Lees, M.H., et al. Computational Science \u2013 ICCS 2025. ICCS 2025. Lecture Notes in Computer Science, vol 15906. Springer, Cham. https://doi.org/10.1007/978-3-031-97635-3_6", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Computational Science, Economics, Ecology, Archaeology, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 38477, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Gumahad B., & Collins, AJ. (2025). Simulating emergent behavior of autonomous swarm systems using agent-based modeling. SIMULATION 0(0). doi:10.1177/00375497251349538\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Agent-Based Modeling, Simulation" + }, + { + "id": 38478, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Roos, M. (2025). The complexity of problem-solving human social systems: Structural vs dynamic complexity. PLOS Complex Systems 2(7): e0000055. https://doi.org/10.1371/journal.pcsy.0000055\n\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38479, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Lin, S., Koch, J. R., Barnes, A. J., Hayes, R. B., & Xue, H. (2025). Assessing the effects of social media based anti-tobacco campaigns on tobacco use among youth in Virginia: an agent-based simulation approach. European Journal of Public Health 35(5). ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38480, + "sort": null, + "year": 2025, + "is_ccl": true, + "reference": "Gurkan, C., Jwalapuram, N. K., Wang, K., Danda, R., Chen, J., Rasmussen, L., & Wilensky, U. (2025). LEAR: LLM-Driven Evolution of Agent-Based Rules. In Ochoa, G. (Ed), Proceedings of the Genetic and Evolutionary Computation Conference Companion, 2309-2326.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38481, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Boman, B. M., Dinh, T., Decker, K., Emerick, B., Modarai, S. R., Opdenaker, L. M., Fields, J. Z., Raymond, C., & Schleiniger, G. (2025). Dynamic Organization of Cells in Colonic Epithelium is Encoded by Five Biological Rules. Biology of the Cell 117(7).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 38482, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Yang, Y., Xu, X., Luo, Y., Liu, y., Xiang, Y., Hu, W., & Liu, J. (2025). Enhancing Resilience of Urban Distribution Networks: Integrating Agent-Based V2G Response Model for Extreme Event Restoration. IEEE Transactions on Transportation Electrification 11(5).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 38483, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Wang, R., Feng, Y., Tang, P., Li, P., Dong, Y., Xu, Y, Wang, C., Liu, S., Jin, Y., Liu, S., & Tong, X. (2025). A Multiagent Decision-Making Model for Martian Landing Site Selection. IEEE Journal of Selected Topics in Applied Earth Observations and Remote Sensing 18.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38484, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Berceanu, C., Bertolotti, F., Arshad, N., Patrascu, M. (2025). Understanding the mechanisms of infodemics: Equation-based vs. agent-based models. PLOS ONE 20(12): e0338614. https://doi.org/10.1371/journal.pone.0338614", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38485, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Sardarzehi, M., Sajadi, S. M., Esmaelnezhad, D., Taghizadeh-Yazdi, M., & Nazari-Shirkouhi, S. (2025). A novel integrated Six Sigma and simulation approach for reducing waiting time in emergency departments. Journal of Simulation, 1\u201324. https://doi.org/10.1080/17477778.2025.2603493", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Six Sigma, Simulation" + }, + { + "id": 38486, + "sort": null, + "year": 2025, + "is_ccl": true, + "reference": "Chen, Y. (2025). Designing Constructionist Systems for Scaling and Scaffolding Open-Ended Human Learning (Publication No. 32284922) [Doctoral dissertation, Northwestern University]. ProQuest Dissertations & Theses.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38487, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Dragomir, O. E., & Dragomir, F. (2025). Multi-Agent-Based Estimation and Control of Energy Consumption in Residential Buildings. Processes 2025, 13, 2261.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 38488, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Puche Regaliza, J. C., Porras Alfonso, S., Casado Yusta, S., & Pacheco Bonrostro, J. (2025). Impact of gamification to understanding Bayes\u2019 Theorem: A study using the Monty Hall Dilemma Simulation. Direcci\u00f3n y Organizaci\u00f3n, (86), 16\u201328. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38489, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Chaturvedi, V., & de Vries, W. T. (2025). Residential Location Preferences in a Post-Conflict Context: An Agent-Based Modeling Approach to Assess High-Demand Areas in Kabul New City, Afghanistan. Land 14(7), 1502.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38490, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Mondal, K., Menon, B.G., & Sahadev, S. (2025). Modeling for the Growth of Unorganized Retailing in the Presence of Organized and E-Retailing in Indian Pharmaceutical Industry. arXiv:2507.17023.", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38491, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Li, S., Hao, J., Chai, Y., Liu, Y., Feng, T., & Zhu, X. (2026). Emotional Contagion Mechanism and Response Strategy Simulation of Corporate Crises from the Perspective of Online Collective Action. Systems, 14(1), 1. https://doi.org/10.3390/systems14010001", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38492, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Tarantino R, Garcia-Gonzalez F (2025) Agent-based modelling reveals feedback loops and non-linearity between mating system evolution and disease dynamics. PLOS ONE 20(12): e0336020. https://doi.org/10.1371/journal.pone.0336020", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38493, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Rahimifar, A., Kaniyamattam, K., Wiegert, J.G., Tedeschi, L.O. (2025). ASAS-NANP SYMPOSIUM: MATHEMATICAL MODELING IN ANIMAL NUTRITION: Developing an agent-based model to calculate growth performance and predict nutrient requirements of growing-finishing pigs toward sustainability. Journal of Animal Science, skaf443. https://doi.org/10.1093/jas/skaf443", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mathematics, Animal Science, Modeling, Sustainability" + }, + { + "id": 38494, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Do, D.T., Tran, V.T. (2025). NetLogo for transport and logistics: agent-based modeling of flows, control, and operations. Acta Logistica - International Scientific Journal about Logistics 12(4), p. 643-655. https://doi.org/10.22306/al.v12i4.699", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Transport and Logistics, Agent-Based Modeling, Logistics" + }, + { + "id": 38495, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Wagh, A., Wilkerson, M. (2025). Programming Still Matters, but How?: Reflections about Programming for K-12 Math & Science Learning in the Age of AI. J. ACM 37, 4, Article 111. \n", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Programming" + }, + { + "id": 38496, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Calabr\u00f2, G., Le Pira, M., Inturri, G. (2025). Where and when does demand-responsive transport work best? A parametric analysis using agent-based modelling. EURO Journal on Transportation and Logistics 15. https://doi.org/10.1016/j.ejtl.2025.100173", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Modeling, Computer Science, Economics, Archaeology, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38497, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Hamed, S., Tabesh, M. (2025). A socio-hydrological agent-based model of farmer adaptation to groundwater salinity stress in an arid region of Iran. SSRN. http://dx.doi.org/10.2139/ssrn.5944155", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Socio-hydrological, Groundwater, Iran, Agriculture, Adaptation, Economics, Modeling" + }, + { + "id": 38498, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Jiang, Y., Ding, Q., Li, M. and Ding, W., Cheng, C. (2025). Phase transition and opinion-action decoupling in social innovation: A two-layer network model with the spiral of silence. SSRN. http://dx.doi.org/10.2139/ssrn.5947722", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38499, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "\u010cerepinko, D., \u017duli\u010dek, M. (2025). The Simulation of Society Evolution Based on the Impact of Communication Messages. Communication Management Review 10(2), p. 62-75. DOI 10.2252/cmr202502111", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38500, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Tang, X., Lira, M., Lindgren, R. (2025). Haptic Experiences Shift Students' Representational Gestures and Knowledge Resources. Journal of Research in Science Teaching, p. 1-23. https://doi.org/10.1002/tea.70033", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, History, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 38501, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Zhao, X., & Gopalappa, C. (2025). A Modeling Framework for Evaluating the Synergistic Impact of Structural Interventions on Related Diseases: HIV and Cervical Cancer as Case Study. medRxiv.", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38502, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Strombom, N. A. (2025). Family and medical leave act and childhood secure attachment: Are we doing enough to ensure children establish good patterns for lifelong health?(Order No. 32401534). ProQuest Dissertations & Theses Global. (3284363060). https://www.proquest.com/dissertations-theses/family-medical-leave-act-childhood-secure/docview/3284363060/se-2", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Family and medical leave act, Childhood secure attachment, Health" + }, + { + "id": 38503, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Niu, Z., Asselman, J., Janssen, C. R., Linley, C. P., De Schamphelaere, K., Everaert, G., & Catarino, A. I. (2025). Combined exposure of poly(lactic-co-glycolic acid) microplastics and global warming affects the population dynamics of a coastal copepod. Marine Pollution Bulletin, 221.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 38504, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Sch\u00f6ppl, K. (2025). Industry Influencing Collective Scientific Reasoning: A Bayesian, Agent-based Exploration. In Barner, D., Bramley, N.R., Ruggeri, A., & Walker, C.M. (Eds), Proceedings of the Annual Meeting of the Cognitive Science Society, 47, 1591 - 1597.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Bayesian, Agent-based Exploration" + }, + { + "id": 38505, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "An, S., Hammock, J., & Goel, A. (2025). How Online Learners Engage in Self-Directed Modeling: A Behavioral Analysis. International Journal of Artificial Intelligence in Education, 35, 3501-3528.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Behavioral Analysis, Artificial Intelligence in Education, Computer Science, Psychology" + }, + { + "id": 38506, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Kuang, M., Yan, W., Wang, Q., & Zhang, Y. (2025). Self-Organizing Coverage Method of Swarm Robots Based on Dynamic Virtual Force. Symmetry, 17(8), 1202.\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 38507, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Meng, X., Li, D., Li, C., Zhang, H., Piao, X., & Luan, H. (2025). Coordinated Optimal Dispatch of Source\u2013Grid\u2013Load\u2013Storage Based on Dynamic Electricity Price Mechanism. Energies, 18(23), 6277. https://doi.org/10.3390/en18236277", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 38508, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Serdyuk, A. (2025). Policy Responses and Organizational Adaptation of Ukrainian Universities During the Full-Scale Russian Invasion: An Agent-based Approach. International Scientific and Practical Conference \u201cInterdisciplinary Expertise for the Recovery and Development of Ukraine.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38509, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Ngo, A.T., See, L., & Van Mai, T. (2025). Economic Coordination for Climate Policy: Optimizing Livestock Sector Emission Reduction Using Genetic Algorithms and Agent-Based Modeling in Quang Binh, Vietnam. Environmental Modeling and Assessment, 30, 12153-1268. \n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Computer Science, Ecology, Miscellaneous" + }, + { + "id": 38510, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Stockwell, J. D., Chapina, R. J., & Dur, G. (2025). An individual-based model to evaluate the potential contribution of benthic resources to growth and production of a vertically migrating omnivorous macroinvertebrate. Canadian Journal of Fisheries and Aquatic Sciences, 82.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 38511, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Alamro, A. S., & Alsulaiman, F. A. (2025). Adaptive Trust-Based Access Control with Honey Objects and Behavior Analysis. Applied Sciences, 16(1), 242. https://doi.org/10.3390/app16010242", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38512, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Jacauna, R.D.P., Coleho, D.P.J., Menezes, C.S. (2025). Inclusive Pedagogical Architecture in Action: Teaching Complex Systems to Visually. Inclusiva em A\u00e7\u00e3o: Ensinando Sistemas Complexos a Pessoas com Defici\u00eancia Visual. EaD em Foco 15(1), e2513. doi: https://doi.org/10.18264/eadf.v15i1.2513", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38513, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Aldea, N., Beltr\u00e1n-S\u00e1nchez, H., Daza, S., Garc\u00eda-Aguirre, A., Palloni, A. (2025). Generalized Stable Population and Agent-Based Models of phenotypic transmission in human populations, with an application to body size. Human Hereditary. https://doi.org/10.1159/000549053", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Agent-Based Models, Phenotypic Transmission" + }, + { + "id": 38514, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Twumwaa Tagoe, T., Megiddo, I., & Van Deer Meer, R. (2025). Improving diabetes treatment outcomes: an agent-based model of patients\u2019 self-management behaviours and treatment outcomes in Ghana. In Luis, M., Harper, A., Monks, T., & Mustafee, N. (Eds), Proceedings of the Operational Research Society Simulation Workshop 2025.\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38515, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Fabris, B., Tucker, J., & Lorig, F. (2025). Using Agent-Based Social Simulations to Inform Organ Donation Policymaking: Adopting the Spanish Approach in Sweden. In Vidler, A. & Swarup, S. (Eds), Proceedings of The 26th International Workshop on Multi-Agent-Based Simulation.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Agent-Based Social Simulations, Sweden" + }, + { + "id": 38516, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Zhang, Z., Jalali, M. S., & Ghaffarzadegan, N. (2025). Behavioral Dynamics of Epidemic Trajectories and Vaccination Strategies: A Simulation-Based Analysis. Journal of Artificial Societies and Social Simulation 28 (1) 3.\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Economics, Computer Science, Psychology" + }, + { + "id": 38517, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Platt, L. S. & Zeinali, A. (2025). Modeling the Dynamic Outcomes of Infection Prevention Behaviors in an ICU Environment. Health Environments Research & Design Journal 18(2), 174-192.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Infection Prevention Behaviors, ICU Environment" + }, + { + "id": 38518, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "DelaPaz-Ru\u00edz, N., Augustijn, P.W.M., Farnaghi, M., Abdulkareem, S.A., Zurita-Milla, R. (2025). Integrating agent-based disease, mobility and wastewater models for the study of the spread of communicable diseases. Geospatial Health 20(1). ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38519, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Akinnubi R. T. & Oziegbe R. (2025). Labour\u2013Carbon Dynamics in Rural Nigeria: Econometric Modelling for Inclusive Biochar Value Chains and Global Market Integration. Journal of Education, Science and Technology 2025, (1)1, 94-102.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Econometrics, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38520, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Liu, C., Moss, S. R., Perraki, A., Plumb, W., & Kaundun, S. S. (2025). Inferring herbicide non-target-site cross-resistance from dose response and mixture treatments. Pest Management Science 81(6), 2901-2909.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 38521, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Poodiack Parsons, S., Torenvlied, R. (2025) When noise mitigates bias in human\u2013algorithm decision-making: An agent-based model. PLOS ONE 20(12): e0339273. https://doi.org/10.1371/journal.pone.0339273", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Algorithm, Decision-Making, Agent-Based Modeling, Computer Science, Modeling" + }, + { + "id": 38522, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Merz, M.R., Brehm, A.M., Humphreys, B.R. et al. (2025). Integrating small mammal personality and population abundance into forest regeneration predictions for a managed, mixed species forest in Maine, USA. Sci Rep 15(45426). https://doi.org/10.1038/s41598-025-29879-2", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Forest Regeneration" + }, + { + "id": 38523, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Lockhart, V., McCreary, D., Peterson, T.A. (2025). MicroSims: A Framework for AI-Generated, Scalable Educational Simulations with Universal Embedding and Adaptive Learning Support. Arxiv Cornell University. https://doi.org/10.48550/arXiv.2511.19864", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 38524, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Stufano Melone, M. R., & Camarda, D. (2025). Risk as a wicked problem in planning: the role of future non-knowledge. TeMA - Journal of Land Use, Mobility and Environment, 18(3), 457\u2013473. https://doi.org/10.6093/1970-9870/11883", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Risk, Planning, Future" + }, + { + "id": 38525, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Visser, R. M., Lambers, K., Aitchison, K., Jutte, A., Rocks-Macqueen, D., van der Knaap, L., et al.(2025). Lessons Learned: Creating Tutorials to Teach Agent-Based Modelling to Archaeologists. Journal of Computer Applications in Archaeology, 8(1), 354\u2013367. https://doi.org/10.5334/jcaa.241", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38526, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Attiya, W. M., Shams, M.B., Alabbasi, A., & Albuflasa, H. (2025). Agent-based modeling of residential solar adoption in subsidized energy markets. Solar Energy 306.", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38527, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Tarantino, R., Contino, S., Gugliotta, L., Indelicato, G., Panunzi, G., Bertolazzi, G., & Romano, V. (2026). An Agent-Based Model of Protein Polymerization Dynamics: Focus on the Actin System. bioRxiv preprint, https://doi.org/10.64898/2026.01.02.697380\n", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Protein Polymerization, Actin System" + }, + { + "id": 38528, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Morales, D., Chaigneau, S. E., Canessa, E. (2025). An Agent-Based Model of Semantic Memory Search: Disentangling Cognitive Control and Semantic Space Organization. Cognitive Science 49(12).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38529, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Ingram, F., Rudawska, A. (2026). Investigating Knowledge Sharing Under Diverse Working Modes Using Agent-Based Simulation. In M. Hernes et al. (Eds.), Proceedings of 28th European Conference on Artificial Intelligence ECAI 2025 - IMIS Workshop: Vol. 1. Emerging Challenges in Intelligent Management Information Systems (pp. 307 - 322). Springer. https://doi.org/10.1007/978-3-032-13869-9_24.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Agent-Based Simulation, Artificial Intelligence, Management Information Systems" + }, + { + "id": 38530, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Pires, R., Torres, P., Valente, N.A., Solteiro Pires, E.J., Reis, A., de Mourna Oliveria, P.B., & Barroso J. (2026). Agent-Based Simulation of Forest Fire Spread with NetLogo. In M. Antona and C. Stephanidis (Eds.), 27th International Conference on Human-Computer Interaction: Vol.16335. HCI International 2025 - Late Breaking Papers (pp. 212-224). Springer. https://doi.org/10.1007/978-3-032-12781-5_14. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Ecology, Network Modeling, Human-Computer Interaction" + }, + { + "id": 38531, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Shamsi Gamchi, N., Esmaeili, M., & Afshar Sedigh, A. H. (2025). Mitigating direct and indirect costs of unexpected pandemics: a parallel vaccination strategy utilizing agent-based simulation. Journal of Simulation, 1\u201322. https://doi.org/10.1080/17477778.2025.2600537", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Economics, Computer Science, Journal, Vaccination" + }, + { + "id": 38532, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Grigoryan, G., Soylu, M.Y., Lee, J., Sembrat, E., & Harmon, S. (2025). Digital Twin of Self-Regulated Learners: Effects of Metacognition, Feedback, and Task Complexity. In H. Wang & J.D. Texier (Eds.), 2025 IEEE Digital Education and MOOCS Conference (DEMOcon), Boca Raton, FL, pp. 1-6.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38533, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Liu, J., Zhuge, C., Tang, J.H.C.G., Meng, M., & Zhang, J. (2025). Consumers' attitudes toward benefits and drawbacks of vehicle-to-grid technology: An agent-based model. International Journal of Sustainable Transportation 19(12). ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38534, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Bi, J., Han, G., & Yang, G. (2025). Intelligent Synergy in Urban Public Health and Safety Governance: A Multi-Agent Simulation Framework with Edge Computing and Optimization Algorithm. In Proceedings of the 2025 International Conference on Smart City and Sustainable Development, pp. 123 - 131.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Urban Studies, Computer Science, Economics, Physics, Chemistry, Ecology" + }, + { + "id": 38535, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Liu, Q. & Wang, Y. (2025). Modeling and Analysis of Opinion Dynamics Model Based on the Information Point Mechanism. In Proceedings of the 2025 International Conference on Digital Management and Information Technology, pp. 553-560.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38536, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Wei, L., Shang, L., Zhang, M., Li, H., Zhu, X. Evaluation and optimization of resource matching for perception services in power communication networks. Sci Rep (2025). https://doi.org/10.1038/s41598-025-31776-7\n\n", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Resource Matching, Perception Services, Power Communication Networks" + }, + { + "id": 38537, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Lovell, C., Williams, J., Mondolini, S., Pettorelli, N. (2025). Individual-based models allow accurate prediction of introduced large herbivore populations in rewilded landscapes. In Sreekar, R. (Ed.), Journal of Applied Ecology 00(e70264). https://doi.org/10.1111/1365-2664.70264", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38538, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Ehsanitabar, A., Hassanzadeh, Y., Aalami, M., & Sadeghfam, S. (2025). Agent-based modeling for demand management of reservoirs considering social and hydrological interactions under uncertainty. Journal of Environmental Management 380.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38539, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Zhenhai, X., Minggang, Y., Ming, H., Guoyou, C., Zheng, Z., Ziyu, W., & Lu, L. (2025). Evolution Mechanism of Unmanned Cluster Cooperation Oriented Toward Strategy Selection Diversity. Journal of Systems Engineering and Electronics, 36(2), 462-482.\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Archaeology, History, Social Science, Education, Epidemiology" + }, + { + "id": 38540, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Ancapi, F.B., Kleijweg, M., Van den Berghe, K., Yorke-Smith, N., & van Bueren, E. (2025). How ex ante policy evaluation supports circular city development: Amsterdam's mass timber construction policy. Journal of Environmental Management 376.\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38541, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "\u00c1lvarez, C., Calder\u00f3n, M., Llamirez, C., Gil-Costa, V., & Marin, M. (2025). Simulaci\u00f3n del desplazamiento estudiantil entre aulas en la experiencia acad\u00e9mica. JAIIO, Jornadas Argentinas De Inform\u00e1tica, 11(15), 1-14.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38542, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Keshavamurthy, D., Kumar, M., Tsaramirsis, G., & Oroumchian, F. (2025). An AI-Based Framework for Secure and Transparent Banking: Integrating Adversarial Robustness, Interpretability, and Organizational Modeling. Security and Privacy 9(1), https://doi.org/10.1002/spy2.70153.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "AI, Security, Banking, Modeling, Robustness, Interpretability" + }, + { + "id": 38543, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Saavedra-Robinson, L.A., Salazar-Serna, K., Cadavid L. (2025).Safety performance: Effectiveness of preventive strategies in construction projects. Ingenier\u00eda y Competitividad 27(3)e-20915259. https://doi.org/10.25100/iyc.v27i3.15259", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Safety performance, Construction projects" + }, + { + "id": 38544, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Verma, R., Rashid Anwar, S., Mayan, J.A., Jena, A., Allamprabhu, C.Y., Yeasmin, L. (2025).\nAgent-Based Modeling of Human-Wildlife Conflict in Agricultural Landscapes. NESciences, 10 (3), 119-134. doi: 10.28978/nesciences.1811111", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38545, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Bala, R., Manoharan, R., Ramya, G. (2026). Trust models for blockchain networks: a comprehensive review. J Ambient Intell Human Comput. https://doi.org/10.1007/s12652-025-05027-6", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Blockchain, Computer Science, Economics, Archaeology, Ecology, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38546, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Ballinas-Hern\u00e1ndez, A.L., Rangel-Galv\u00e1n, M., Rangel-Galv\u00e1n, V. (2026). Corridor geometry effects on the bidirectional pedestrian walking modeled as a multi-agent system. Physica A: Statistical Mechanics and its Applications 684(131207). https://doi.org/10.1016/j.physa.2025.131207", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38547, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Dukker, R. (2025). The Influence of Socio-Technical Factors on Evacuation Performance of University Buildings [Master Thesis, Delft University of Technology]. TUDelft. https://repository.tudelft.nl/.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38549, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Wang, Y., Ge, J., & Comber, A. (2025). Modelling emergent pedestrian evacuation behaviors from intelligent, game-playing agents. Journal of Computational Social Sciences 8(49).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38550, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Kaim, A., Schmitt, T.M., Annuth, S.H., Haensel, M., & Koellner, T. (2025). An agent-based model to simulate field-specific nitrogen fertilizer applications in grasslands. European Journal of Agronomy 165.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies" + }, + { + "id": 38551, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Schiavo, M., Aubert, P.M., Le Mou\u00ebl, C. (2025). The Impact of Agroecological Transition on the Meat Industry: An Agent-Based Modelling Approach Applied to the French Livestock Sector. Journal of Agricultural Economics 76(2).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38552, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Li, T., Wang, S., Zhou, D., & Razzaq, A. (2025). Consumer attention and market concentration in e-commerce: an agent-based perspective. Journal of Economic Interaction and Coordination 20.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38553, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Araujo, A.S.D., Massucheto, J., Bugs, G.T., Saraiva, M.V.P., Duarte, F. (2025). Unveiling inequalities: The intersection of gender and income in accessibility in Curitiba, Brazil. Journal of Transport Geography 123.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38554, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "B\u00f6ttcher, L. (2026). Control of dynamical systems with neural networks. Nonlinear Dyn 114(79). https://doi.org/10.1007/s11071-025-11937-z", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biological Systems" + }, + { + "id": 38555, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Schuengel, C., Fearon, P., Wass, S., Mahmoud, M., Minnis, H., Van Heerden, A., Bakkum, L., Persico, F., Provida, K., Oosterman, M., Scheper, F. (2026). Behavior and the Development of Attachment: Innovating Assessment and Theory Building. Psychoanalytic Inquiry, pp.1\u201319. https://doi.org/10.1080/07351690.2025.2609520", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Attachment" + }, + { + "id": 38556, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Jin, Z., Xiong, Y., Yu, C., Li, C., Jin, Z., Ye, X. (2026). Enhancing urban flood resilience through agent-based modeling of evacuation behaviors. Sustainable Cities and Society (107133). https://doi.org/10.1016/j.scs.2026.107133", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Urban Studies, Ecology, Computer Science, Physics, Chemistry, Economics, Social Science, Epidemiology" + }, + { + "id": 38557, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Umlauft, M. & Schranz, M. (2025). Flocking Behavior: An Innovative Inspiration for the Optimization of Production Plants. arXiv. https://doi.org/10.48550/arXiv.2508.19963", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Flocking Behavior" + }, + { + "id": 38558, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Koide, R., Murakami, S., Yamamoto, H., Nansai, K., Quist, J., & Chappin, E. (2025). Prospective life cycle and circularity assessment of circular business models using an empirically grounded agent-based model. Journal of Industrial Ecology 29(5), 1897-1911, https://doi.org/10.1111/jiec.70090. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38559, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Su, M., Chi, M.T.H., & Nagashima, T. (2025). Applying the PAIR-C framework to foster deep understanding and address misconceptions in science education. Journal of the Learning Sciences. https://doi.org/10.1080/10508406.2025.2546471", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Science Education, Methodology" + }, + { + "id": 38560, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Kosak, O., Kastenm\u00fcller, P., Reif, W. (2026). Let's do the swarm flight again: unleashing the potential of PROTEASE 2.0 for drone formation flight. International Journal on Software Tools for Technology Transfer. https://doi.org/10.1007/s10009-025-00834-w. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Software Tools for Technology Transfer" + }, + { + "id": 38561, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Kapadia, K., Yongsatianchot, N., Marsella, S., John, Richard. (2024). Integrating Actual Human Behavior into an Agent-Based School Shooting Simulation. Proceedings of the 2024 Winter Simulation Conference. H. Lam, E. Azar, D. Batur, S. Gao, W. Xie, S. R. Hunter, and M. D. Rossetti (Eds.). ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38562, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Zhang, Y. (2025). A Hybrid Fuzzy-IGA-APSO Framework for Real-Time Urban Landscape Optimization in Smart Cities. Informatica, 49(35). https://doi.org/10.31449/inf.v49i35.9973", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Fuzzy-IGA-APSO Framework" + }, + { + "id": 38563, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Dagnino, A.M., Perez, L. (2025). Simulating Social-Ecological Outcomes of Urban Greening Initiatives: A Cellular Automata Case Study in Montreal. Proceedings of the 32nd International Cartographic Conference 10(54). \nhttps://doi.org/10.5194/ica-abs-10-54-2025", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Cartography" + }, + { + "id": 38564, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Zeng, H., & Lei, X. (2025). An Integrated Cybersecurity Defense Framework for Attack Intelligence Analysis, Counteraction, and Traceability in Complex Network Architectures. EAI Endorsed Transactions on Scalable Information Systems, 12(6), 18. https://doi.org/10.4108/eetsis.9770", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Cybersecurity, Network Architecture, Scalable Information Systems" + }, + { + "id": 38565, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Zhu, X. & Fu, N. (2026). Modeling and Stability Analysis of Malware Propagation in Hierarchically Protected WSNs Based on Epidemiological Theory. IET Control Theory & Applications 20(1). https://doi.org/10.1049/cth2.70100", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Malware, Epidemiology, Computer Science, Economics, Physics, Chemistry, Urban Studies" + }, + { + "id": 38566, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Zandbergen, B., Quist, J., Blanksma, N., de Waart, W., Warnier, M. (2025). Enhancing Textile Reuse in the Netherlands: Agent- Based Modelling for Reuse, Rebound Effects and Value Changes in Textiles. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38567, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Obringer, R., Peterson, G., White, D. D. (2025). Exploring the Impacts of Climate Change and Water Conservation Attitudes on Urban Water Supply in the Colorado River Basin. Water Resources Research 61(12). https://doi.org/10.1029/2024WR039403. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Climate Change, Water Conservation, Urban Studies" + }, + { + "id": 38568, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Serdyuk A. (2025). Agent-based simulating of Ukrainian universities adaptation to a full-scale Russian invasion. Communities and Collections, pp. 68-73. https://ekmair.ukma.edu.ua/handle/123456789/37650", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38569, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Medupe, D. (2025). The Role of Risk in the Emergence of Intensive Agriculture and Complex Stratified Societies: The Oasis-Goldilocks Hypothesis of Agriculture Intensification. [Doctoral dissertation, Pennsylvania State University]. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 38570, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Focardi, A., Bagnoli, F., Guazzini, A., Gronchi, G. (2026). Introducing the Physics of Complex Systems through Videogames. arXiv, Cornell University. https://doi.org/10.48550/arXiv.2601.06230", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Physics, Miscellaneous" + }, + { + "id": 38571, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Braccini, M., De Filippo, A., Lombardi, M., & Milano, M. (2025). Dance Choreography Driven by Swarm Intelligence in Extended Reality Scenarios: Perspectives and Implications. 2025 IEEE International Conference on Artificial Intelligence and eXtended and Virtual Reality (AIxVR). 348-354.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Dance choreography, Swarm intelligence, Extended reality, Artificial intelligence, Virtual reality, Computer Science" + }, + { + "id": 38572, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Rabiee, H., Ladani, B.T., & Sahafizadeh, E. (2025). Unmasking Influence: The Power of Artificial Entities in Shaping Public Opinion on Social Networks. IEEE Transaction on Computational Social Systems. DOI: 10.1109/TCSS.2025.3631707.\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38573, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Zellner, M.L., Massey, D., Laboy, M., O'Brien, D.T., Mueller, A., & Engelberg, D. (2025). Enhancing digital twin technology with community-led, science-driven participatory modeling: A case in green infrastructure planning. Environment and Planning B: Urban Analytics and City Science. https://doi.org/10.1177/23998083251323671", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38574, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Lai, P.K. (2026). Enhancing learning of nanoscale phenomena: the role of agent-based models and embodied reasoning. Instr Sci, 54(22). https://doi.org/10.1007/s11251-025-09776-x", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Miscellaneous" + }, + { + "id": 38575, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Pereira, A.P., Laureano, R.M.S., de Lima Neto, F.B. (2026). Simulation of Human Behavior in Adherence to Preventive Health Programmes -- A Methodological Proposal and an Example of Its Applications. A. Rocha et al. (Eds.), Proceedings of 19th Iberian Conference on Information Systems and Technologies (CISTI 2024) (pp. 100-112). Springer. https://doi.org/10.1007/978-3-032-12882-9_9", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Psychology, Computer Science, Economics, Sociology, Methodology, Information Systems, Application" + }, + { + "id": 38576, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Vance, E., Clarke, B., Ivanova, S. (2026). Agentic AI and Workflow Orchestration: Balancing Automation, Ethics, and Human Oversight in Enterprise Applications. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38577, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Horn, C., Potter, R., Di Carlo, J.M., & Peternell, M. (2026). Carving miniature worlds \u2013 landscape, environments, and Nordic Bronze Age rock art carvers.World Archaeology. https://doi.org/10.1080/00438243.2025.2608638", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Landscape, Nordic Bronze Age, Rock Art, Archaeology, Geology" + }, + { + "id": 38578, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Konrad, C. M., Dabiri, A., Schulte, F., Moore, J. K., & Happee, R. (2025). Cycling safety assessment in\nmicroscopic traffic simulation: A review and methodological framework. Transportation Research\nInterdisciplinary Perspectives, 34(101734). https://doi.org/10.1016/j.trip.2025.101734", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Traffic Simulation, Methodology" + }, + { + "id": 38579, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Abbasi, E. (2025). Climate Change--Driven Evolution of Insecticide Resistance in Malaria Vectors. Authorea. DOI: 10.22541/au.176719541.18336405/v1", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Climate Change, Insecticide Resistance" + }, + { + "id": 38580, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Moss, A. D. (2025). Follow the Leader: Group Recruitment in the \u201cGreedy\u201d Ant Tetramorium immigrans (32396536). [Doctoral Dissertation, University of Colorado Denver]. ProQuest Dissertations & Theses Global.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 38581, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Caravaggio, A., & Leoni, S. (2025). An Agent-Based approach to high-cost drugs for infectious diseases. Dipartimento di Scienze per l\u2019Economia e l\u2019Impresa 9(50127). https://www.disei.unifi.it/upload/sub/pubblicazioni/repec/pdf/wp20_2025.pdf", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Miscellaneous" + }, + { + "id": 38582, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Nikulina, A. (2025). Anthropogenic landscapes? Modelling the role of huntergatherers in interglacial ecosystems in Europe (813904) [Doctoral Dissertation, Leiden University]. Leiden University Scholarly Publications.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Anthropology, Ecology, Biology" + }, + { + "id": 38583, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Astobiza, A.M. (2025). Do AI agents trump human agency?. Discov Artif Intell 5(348). https://doi.org/10.1007/s44163-025-00608-y", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Artificial Intelligence, Biology, Computer Science, Economics" + }, + { + "id": 38584, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Picazo, A.G., Graber, A., Feusier, C., Campfens, J.K.E.K, Edwards, J., Baggenstos, M., & Labounko, T. (2025). Between Roots and Resistance: Social Dynamics of Forest Management in Canavese. PLUS. Retrieved January 22, 2026, from https://www.researchgate.net/profile/Jair-Kees-Evert-Karel-Campfens/publication/397785614_Between_Roots_and_Resistance_Social_Dynamics_of_Forest_Management_in_Canavese/links/691ed3b8c2a8e047ef3e3b57/Between-Roots-and-Resistance-Social-Dynamics-of-Forest-Management-in-Canavese.pdf", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38585, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Silva de Carvalho, L.F.B., de Souza, V.S., Bonatto, A.N., Perez, T., Baronea, D.A.C., Wickboldt, J.A. (2025).\nMulti-agent systems modeling of command and control systems: a metrics-driven approach to simulator evaluation and co-simulation. Journal of Simulation, (pp. 1\u201319). https://doi.org/10.1080/17477778.2025.2584542", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38586, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Gao, S., Zhu, B., Zhang, X. (2025). Optimizing Emergency Response by Digital Spontaneous Volunteers: Insight From Agent-Based Modeling Analysis. Risk Analysis, 45(12), 4077-5086. https://doi.org/10.1111/risa.70158", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Risk Analysis" + }, + { + "id": 38587, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Lovaco, J., Munjulury, R. C., & Krus, P. (2025). Contextualised generative AI in system of systems modelling: an approach for firefighting aircraft requirements. The Aeronautical Journal, 1\u201329. doi:10.1017/aer.2025.10097", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, AI, System of Systems Modeling, Firefighting Aircraft" + }, + { + "id": 38588, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Liu, T., & Zhu, Q. (2025). The impact of data sharing on the sustainable development of aged care service platforms. Journal of Cleaner Production, 534(147063). https://doi.org/10.1016/j.jclepro.2025.147063", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38589, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Segundo, C., Oliveira, M., & Gon\u00e7alves, E. (2025). An Agent-Based Simulation for Task Allocation in Software Development Teams based on the Truck Factor Metric. ADCAIJ: Advances in Distributed Computing and Artificial Intelligence Journal, 14(e32600). https://doi.org/10.14201/adcaij.32600", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38590, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Zhang, J., Laili, Y., Gong, J., Zhang, L., Ren, L. (2025). A Quantitative Learning Method for Simulation Model Evaluation Using L-SHADE Optimized Structured Regression. In: Cai, W., Low, M., Tan, G., D'Angelo, G., Ta, D. (Eds.) Methods and Applications for Modeling and Simulation of Complex Systems. Communications in Computer and Information Science 2727, (pp. 3-15). Springer, Singapore. https://doi.org/10.1007/978-981-95-4472-1_1", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Regression, Computer Science, Mathematics, Physics, Modeling, Systems, Springer" + }, + { + "id": 38591, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Malikov, M. (2025). A Network Approach to Scaling Agent-Based Model Outputs (Publication No. 32042796) [Doctoral Dissertation, George Mason University]. ProQuest Dissertations & Theses.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38592, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Vriens, E., Andrighetto, G., & Wijermans, N. (2025). Embracing differences: What group composition reveals about the dynamics of collective action. SSRN. http://dx.doi.org/10.2139/ssrn.5743705", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38593, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Barhoumi, E.M., Charabi, Y., & Farhani, S. (2026). Agent-Based Modeling of Human-Nonhuman Interaction for Resilient Infrastructure Design and Environmental Conflict Management. Journal of Smart Infrastructure and Environmental Sustainability 3(2), 1-9.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38594, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Delay, E., Broutin, L., Fallot, A., Perrotton, A., & Masse, D. (2025). From Local Actors to Leaf Carers: Companion Modeling for Rethinking Tree Protection in Senegal's Groundnut Basin. Journal of Artificial Societies and Social Simulation 28(4) 6.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38595, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Almolaa, O.S., Alkawaz, M.H., Al-Arbo, Y., & Mahmood, H.F. (2025). Software-Defined Networking-Enhanced Fisheye State Routing Framework for Mobile Wireless Sensor Networks. Ingenierie des Systemes d'Information 30(11), pp. 3037-3044.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Software-Defined Networking" + }, + { + "id": 38596, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Bozhko, L.L., Zhukovskaya, I.E., Seitkhamzina, G.J. (2025). Environmental Policy of Central Asian Countries in the SDG Context: Regional Challenges and Prospects. WSEAS Transactions on Environment and Development 21. DOI: 10.37394/232015.2025.21.109.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38597, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Wang, W., & Liu, Z. (2025). Design and Implementation of Network Intrusion Detection System (NIDS) Based on Deep Learning. Security and Privacy 8(6). https://doi.org/10.1002/spy2.70133", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Security, Privacy" + }, + { + "id": 38598, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Ding, Y., Chen, F., Plotnikova, M., Wang, & Wang, B. (2026). Policy Modeling for Urban Energy Resilience to Extreme Heat: A Multi-Agent Simulation Framework in Chongqing, China. Reliability Engineering and System Safety. https://doi.org/10.1016/j.ress.2026.112260.", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Policy Modeling, Urban Energy Resilience, Simulation, China" + }, + { + "id": 38599, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Yasin, A., Fatima, R., Puspitasari, I., Dogar, A.B., Yang, L., & Ishaq, K. (2026). From Prey to Protect: Exploring Social Engineering Through Games and Simulation. Trust, Awareness, and Phishing Defense. International Journal of Information Security 25(32). https://doi.org/10.1007/s10207-025-01193-y", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Social Engineering, Simulation, Security" + }, + { + "id": 38600, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Dong, D. (2026). Toward Sustainable Edge Computing Infrastructures: A VEC-MEC-Cloud Collaborative Framework for Adaptive Resource Distribution. IEEE Transactions on Mobile Computing. DOI 10.1109/TMC.2026.3654928", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38601, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Thomopoulos, V., Petropoulou, M., Convertino, F., & Tsichlas, K. (2026). Agent-Based Modeling of Agricultural Plastic Waste Generation: A First Approach. Available at SSRN: https://dx.doi.org/10.2139/ssrn.6098247", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38602, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Nikulina, A., Zapolska, A., Serge, M.A., Mazier, F., Davoli, M., Pearce, E.A., Svenning, J., van Wees, D., Fyfe, R., MacDonald, K., Roebroeks, W., & Scherjon, F. On the ecological impact of prehistoric hunter-gatherers in Europe: Early Holocene (Mesolithic) and Last Interglacial (Neanderthal) foragers compared. PLoS One 20(10): e0328218. https://doi.org/10.1371/journal.pone.0328218", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38603, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Benhamza, K., Abdelmoum\u00e8ne, H., Benselim, R., Seddiki, L. (2025). An Intelligent Hybrid Model for Wildfire Prediction and Environmental Risk Management. IEEE Access, 13, 211517-211532. doi: 10.1109/ACCESS.2025.3642224. \n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Modeling" + }, + { + "id": 38604, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Skach, C. (2025). Constitutional Frameworks and Democratic Consolidation Revisited: A Computational Analysis. SSRN. http://dx.doi.org/10.2139/ssrn.5735922", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38605, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Mhade, S., Bhosekar, U., Hill, M.D., Sinclair, S., Agrawal, S., Guerrini, J., Zou, L., Koebcke, A., Kummer, A.G., Ventura, P.C., Del Valle, S.Y., Chinazzi, M., Livinova, M., Vespignani, A., & Ajelli, M. (2025). Mapping the Landscape of Individual-Based Models for Respiratory Pathogen Transmission in the Pandemic and Post-Pandemic Era (2020-2024): A Systematic Review. SSRN. http://dx.doi.org/10.2139/ssrn.5736584", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38606, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "van Loo, J. (2025). Hosting Military Transits: An Agent-Based Model (ABM) to simulate the effect of simultaneous infrastructure use by civilian and military vehicles, as well as different intervention strategies [Master Thesis, Delft University of Technology]. TU Delft Repository. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38607, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Watts, F. M., Liu, L., Ober, T. M., Song, Y., Jusino-Del Valle, E., Zhai, X., Wang, Y., & Liu, N. (2025). A Framework for Designing an AI Chatbot to Support Scientific Argumentation. Education Sciences, 15(11), 1507. https://doi.org/10.3390/educsci15111507", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 38608, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Uner, B.Y., Demir, A., Zhou, P., Taskiran, E.Z., & Wassenaar, T. (2026). Peptide-nanoparticle platforms for antisense therapeutics: A coarse-grained modeling approach to brain delivery. Computers in Biology and Medicine, 203(111479). https://doi.org/10.1016/j.compbiomed.2026.111479", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modeling, Computer Science, Economics, Physics, Chemistry, Neuroscience" + }, + { + "id": 38609, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "C\u00e1lix Hern\u00e1ndez, A. E. (2025). \u00c9xito y Preferencia Omnicanal en Comercio Internacional: Un Modelado Basado en Agentes. Revista Cient\u00edfica Profundidad Construyendo Futuro, 24(24), 65\u201379. https://doi.org/10.22463/24221783.5353", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38610, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Reambonanza, K.C. & Llantos, O.E. (2025). Simulating the Spread of Antimicrobial Resistance in Agricultural Ecosystems Using an Agent-Based Approach with Parallelization. 2025 IEEE Cyber Science and Technology Congress, 479-486, doi: 10.1109/CyberSciTech68397.2025.00071.\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 38611, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Maione, V., Ponsiglione, C., & Primario, S. (2025). Modeling Fake News Diffusion for a Resilient Social Media Platform: Agent-Based Approaches to Responsible Social Media. Unina. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38612, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Sanogo, K., Benhafssa, A.M., & Sahnoun, M. (2026). Transitioning from AGVs to AIVs in integrated job shop scheduling with transportation tasks: a multi-agent simulator for comparative analysis. Simulation, 102(1), 19-43. https://doi.org/10.1177/00375497241288894", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 38613, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Lee, Y., & Xu, X. (2026). Use of aggregated relational data in agent-based modeling. Social Networks, 84, 164-179. https://doi.org/10.1016/j.socnet.2025.09.004", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Agent-based modeling, Social Networks" + }, + { + "id": 38614, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Govind, G., Lange, M., Grimm, V., Frank, K., & Groeneveld, J. (2025). A machine learning-derived metamodel of BEEHAVE predicts how honey yield depends on weather and region across Germany. Ecological Modelling, 512(111422). https://doi.org/10.1016/j.ecolmodel.2025.111422", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38615, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Karthika, J. (2026). Socio-Technical Conflict and Adaptive Governance: Applying Agent-Based Modelling to Inter-Civilizational and Environmental Scenarios. Journal of Smart Infrastructure and Environmental Sustainability, 3(2), 18-25. https://aasrresearch.com/index.php/JSIES/article/view/173", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Socio-Technical Conflict, Adaptive Governance, Agent-Based Modelling, Inter-Civilizational, Environmental Scenarios" + }, + { + "id": 38616, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Coto-Sarmiento, M., Namen, A., Varis, A., & Iovita, R. (2025). The Impact of Cooperation Under Climate Constraints: An Agent-Based Model for Exploring Paleolithic Behavioral Adaptations in the Inner Asian Mountain Corridor. Journal of Archaeological Method and Theory, 33(8). ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38617, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Weerasinghe, W.A.R.N. (2025). An integrated assessment of climate change impacts on Asian honey bee behavior, crop yield contribution, and farmer livelihoods with a focus on beekeeping for agricultural sustainability. Swedish University of Agricultural Sciences.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Agriculture, Economics" + }, + { + "id": 38618, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Leoni, S. & Catola, M. (2025). Green Transition and Environmental Policy in Imperfectly Competitive Markets: Insights from Agent-Based Modelling. Department of Economics and Management \u2013 University di Pisa, Discussion Paper (326).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Economics, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38619, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Morell, J.A., Parunak, H.V.D., Knestis, K., & Hwalek, M. (2025). Agent-based Modeling as an Evaluation Methodology. Evaluation Uncertainty. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38620, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Baek, A.J.S., & Martin, G. (2025). X\u2013SYCON: Xylem\u2013Inspired Passive Gradient Control for Communication\u2013Free Swarm Response in Dynamic Disaster Environments. arXiv, Cornell University. https://doi.org/10.48550/arXiv.2512.00018", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Computer Science, arXiv" + }, + { + "id": 38621, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Gerrits, B. & Mes, M. (2025). Self-Organization in Crowd-Sourced Food Delivery Systems. In E. Azar, A. Djanatliev, A. Harper, C. Kogler, V. Ramamohan, A. Anagnostou, and S. J. E. Taylor (Eds.), Proceedings of the 2025 Winter Simulation Conference, 175-187, doi: 10.1109/WSC68292.2025.11339016.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Self-Organization" + }, + { + "id": 38622, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Aros, S. K., & Frakes, D. (2025). Modeling Pedestrian Movement in a Crowd Context with Urgency Preemption. In E. Azar, A. Djanatliev, A. Harper, C. Kogler, V. Ramamohan, A. Anagnostou, and S. J. E. Taylor (Eds.), Proceedings of the 2025 Winter Simulation Conference, 1851-1861, doi: 10.1109/WSC68292.2025.11339043.\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Modeling" + }, + { + "id": 38623, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Alves, D., Ferreira, L., & Rossetti, R. (2025). Metro Station Evacuation Simulation: A Case Study Using Three Agent-Based Exit Models. 2025 IEEE International Smart Cities Conference (ISC2), doi: 10.1109/ISC266238.2025.11293308.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38624, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Saleen, K., Saleem, M., Almogren, A., Almogren, A., Kaur, U., Bharany, S., & Rehman, A. U. (2025). Multi-Agent Based Cognitive Intelligence in Non-Linear Mental Healthcare-Based Situations. IEEE Access 13, 36162 - 36174, DOI: 10.1109/ACCESS.2025.3544096.\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Cognitive Intelligence, Mental Healthcare, Computer Science, Economics, Archaeology, Social Science, Epidemiology, Physics, Chemistry, Urban Studies" + }, + { + "id": 38625, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Stella, F., Sapienza, A., & Falcone, R. (2025). The Roles of Autonomy and Trust in Hybrid Societies: a simulation-based study in the healthcare domain. 2025 21st International Conference on Distributed Computing in Smart Systems and the Internet of Things (DCOSS-IoT). DOI: 10.1109/DCOSS-IoT65416.2025.00125.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Autonomy, Trust" + }, + { + "id": 38626, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Matsui, K., & Hashimoto, T. (2025). The methodology for identifying factors contributing to the acceptance of behavioral change\u2011led policies: the case of stay\u2011at\u2011home requests during the COVID\u201119 pandemic in Japan. Evolutionary and Institutional Economics Review 22, 19-54. https://doi.org/10.1007/s40844-025-00299-1", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38627, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Yang, R., Wang, J., Zhou, S., & Wang, A. (2025). From individual intention to network diffusion: investigating the spread of green travel behavior intention within a scale-free network based on TPB. Journal of the Operational Research Society. DOI: 10.1080/01605682.2025.2566324.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, TPB, Network Diffusion, Behavior Intention" + }, + { + "id": 38628, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Huang, B., Huang, Q., Yang, L., Chen, Z. (2025). Spatial optimization of fragmented farmland based on clustering algorithm and multi-agent system. Journal of Agriculture Resources and Environment 42(5). DOI:10.13254/j.jare.2024.0438", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Agriculture, Computer Science, Economics, Archaeology, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 38629, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Vega, R., Mattson, C., Zhu, K., Brown, D.S., & Nowzari, C. (2025). Analytical Swarm Chemistry: Characterization and Analysis of Emergent Swarm Behaviors. arXiv, Cornell University. https://doi.org/10.48550/arXiv.2510.22821", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Chemistry, Physics, Computer Science" + }, + { + "id": 38630, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Datta, D. J., Rao, R. P., & Ryder, E. F. (2026). Enteroscape: An agent-based model for simulating microbial dynamics and host responses in the gut ecosystem. bioRxiv, https://doi.org/10.64898/2026.01.27.701954.", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Microbial Dynamics, Host Responses, Computer Science, Model Simulation, Gut Ecosystem" + }, + { + "id": 38631, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Valentini, O., Baruffini, M., Maggi, E., & Vallino, E. (2026). Eco-innovation diffusion in retailers' last-mile delivery: an Agent-Based Model approach. Transport Policy, https://doi.org/10.1016/j.tranpol.2026.104037", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38632, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Lewis, E., Parker, B., & Johnson, A. (2026). Quantifying the Stability of Distributed Enterprise Architectures Through Multi-Agent System Simulations. Journal of Innovation in Governance and Business Practices 2(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38633, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Maqour, Z., El Bakkali, H., Benhaddou, D., & Benbrahim, H. (2026). RBCrowd: A Reliable Blockchain-Based Reputation Management Framework for Privacy Preservation in Mobile Crowdsensing. Future Internet 18(1). https://doi.org/10.3390/fi18010065", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Blockchain, Reputation, Mobile Sensing, Privacy, Computer Science, Economics, Archaeology, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38634, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Rands, S. A., Bot\u00edas, C., Nicholls, E., Hempel de Ibarra, N. (2025). A spatially explicit model of pollinator-plant-pathogen interactions. bioRxiv, https://doi.org/10.1101/2025.03.11.642689", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Ecology, Pollinator-plant-pathogen interactions" + }, + { + "id": 38635, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Tagliati, A., Hazlerigg, C. R. E., Salinas, E. R., Lagadic, L., & Preuss, T. G. (2025). Assessment of Population Relevance of Endocrine-sensitive Apical Endpoints in Fish Chronic Studies Using Individual-Based Models. Environmental Science and Technology 59, 21431-21441, https://doi.org/10.1021/acs.est.5c03364", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Endocrinology, Modeling, Computer Science, Ecology" + }, + { + "id": 38636, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Li, T. (2025). Consumer Heterogeneity and E-Retailing Market Concentration: An Agent-Based Approach. Journal of Artificial Societies and Social Simulation, 28(4). doi: 10.18564/jasss.5699", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Consumer Heterogeneity, E-Retailing Market Concentration" + }, + { + "id": 38637, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Maire, J.L., Jimenez, J.F., & Himmiche, S. (2025). ErgoTwin: A Human-Centric Digital Twin for Real-Time and Predictive Ergonomic Risk Assessment in Smart Manufacturing. SSRN. http://dx.doi.org/10.2139/ssrn.5645063", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Ergonomics, Digital Twin, Risk Assessment, Manufacturing, Computer Science, SSRN" + }, + { + "id": 38638, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Bouchra, A., & Sarra, H.A. (2025). A Dissimilarity Measure for High-Dimensional Gene Expression Datasets: \"Distance-DissimRatio\" for Quantifying Transcriptomic Variation [Master's thesis, Universit\u00e9 Fr\u00e8res Mentouri Constantine 1]. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Gene Expression, Distance-DissimRatio" + }, + { + "id": 38639, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Feng, W., Yang, L.E., Ai, M., Chen, S., Wang, Z., Wu, W., Chen, J., Fang, Y., Xu, Y., & Garschagen, M. (2025). FRAMe: Empirically informed agent-based modeling of flood resilience in the Mekong River Basin. MethodsX, 15(103682). https://doi.org/10.1016/j.mex.2025.103682", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38640, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Liu, F., Guo, Z., Xie, Z., Chen, D., & Yang, Y. (2026). Unpacking Innovation Incentives in Rural Tourism: A Simulation of Policy Impacts and Regional Heterogeneity. Journal of Travel Research, 19. https://doi.org/10.1177/00472875251410562", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Simulation, Policy, Regional Heterogeneity" + }, + { + "id": 38641, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Qiu, Q., Chen, C., Idziorek, K., & Wong, S.D. (2026). The dynamics of bicycles for disaster recovery and relief. Sci Rep, 16(3903). https://doi.org/10.1038/s41598-025-31962-7", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38642, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Gil de Z\u00fa\u00f1iga, H., Wang, R. Y., & Cheng, Z. (2025). Selective Exposure to News, Homogeneous Political Discussion Networks, and Affective Political Polarization: An Agent-Based Modeling of Minimal versus Strong Communication Effects. Social Science Computer Review, 0(0). https://doi.org/10.1177/08944393251387282", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38643, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Cocho-Bermejo, A. (2025). Advancing Spatial Cognition Analysis: Integrating Agent-Based Modelling with Space Syntax in the NetLogo Framework. In B. Marques, C. Ruivo, D.L. Viana, & J.V. Vaz (Eds.), Formal Methods in Architecture: Proceedings of the 7th International Symposium on Formal Methods in Architecture (7FMA) (pp. 136-157). Springer Nature. https://doi.org/10.1007/978-3-032-02782-5_8", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Spatial Cognition, Agent-Based Modelling, NetLogo Framework, Space Syntax" + }, + { + "id": 38644, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Viani, A. (2025). Beyond Mobility: Modelling Non-Migration Decisions Under Climatic Stress in Southwestern Coastal Bangladesh [Unpublished manuscript]. Utrecht University.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 38645, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Yao, J., & Liu, Y. (2025). An assisted teaching simulation experiment of swarm intelligence algorithm based on NetLogo. In Proceedings of the 2025 2nd International Symposium on Artificial Intelligence for Education, 241-248.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Artificial Intelligence" + }, + { + "id": 38646, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Sun, Y., Wang, J., Li, J., Lei, X., Wang, W., Jing, T., & Bai, J. (2025). A Baseline Method for Multi-Aircraft Air Combat Situation Assessment Based on Weighted Average. Proceedings of the 2025 International Symposium on Artificial Intelligence and Computational Social Sciences, 151-157.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38647, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Dawood, M. M., Olukanmi, S. O. (2025). A Comparative Study of Human-Inspired Communication Strategies in Multi-Agent Environments. In Proceedings of the 2025 International Conference on Artificial Intelligence, Big Data, Computing and Data Communication Systems, 5, 1-8.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Communication, Artificial Intelligence, Computer Science, Economics, Ecology, Physics, Social Science, Miscellaneous" + }, + { + "id": 38648, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Yin, S., Zhang, C., Teitelbaum, C. S., Si, Y., Zhang, G., Wang, X., Mao, D., Huang, Z. Y. X., de Boer, W. F., Takekawa, J., Prosser, D. J., & Xiao, X. (2025). Landscape changes elevate the risk of avian influenza virus diversification and emergence in the East Asian\u2013Australasian Flyway. In A. Hastings (Ed.), Proceedings of the National Academy of Sciences 122(34). https://doi.org/10.1073/pnas.2503427122", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Virology, Ornithology, Influenza virus, Landscape, Southeast Asia, Ecological modeling, Computational science, Avian influenza" + }, + { + "id": 38649, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Williams, N. F. (2025). Causes and Implications of Fox Population Dynamics in Central Southern England. [Doctoral Thesis, Bournemouth University]. Bournemouth University Research Online.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology" + }, + { + "id": 38650, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Hayman, G., & Pang, R.K.K. (2025). Reframing Financial Markets as Complex Systems: Tools for Systemic Risk Analysis, Portfolio Management, and System-Level Investing. CFA Institute.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38651, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Crabtree, R., Conner, M., & Treves, A. (2025). Misleading biases in methods for estimating wolf abundance using spatial models. Academia Biology, 3(4). https://doi.org/10.20935/AcadBiol7924", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Methods, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38652, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Lu, G., Fu, F., & Tang, Z. (2025). Research on Quantification Mechanism of Data Source Reliability Based on Trust Evaluation. Computers, Materials, and Continue 83(3), 4239-4256. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 38653, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Gao, B., Braun, R., Wu, D., & Ford, R.M. (2026). Pseudomonas putida Chemotactic Efficiency toward Naphthalene at a NAPL\u2013Water Interface Decreased under Increasing Shear Flow. Environ. Sci. Technol. https://doi.org/10.1021/acs.est.5c15041", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Pseudomonas putida Chemotactic Efficiency" + }, + { + "id": 38654, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Mukherjee, S., Datta, S., & Majumder, S. (2025). On Separation and Connection: A Multi-Systems Study of Developer Interaction using Agent-Based Models. SSRN. http://dx.doi.org/10.2139/ssrn.5734055", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38655, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Tejeda, H., Espinilla, M., & Malakooti, B. (2025). Integrating Artificial And Computational Models For Intelligent Decision-Making Across Domain. ResearchGate. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Artificial Intelligence, Computational Modeling, ResearchGate" + }, + { + "id": 38656, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Velikovsky, J T. (2025). Big History and Evolutionary Culturology: Enhancing the Eight Thresholds with a Universal Systems Meta-Meta-Science.Journal of Big History, 8(3) (pp. 140\u2013183). https://doi.org/10.22339/jbh.v8i3.8305", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Evolutionary Culturology, Miscellaneous" + }, + { + "id": 38657, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Mesas, F., Taboada, M., Rexachs, D., Epelde, F., Wong, A., & Luque, E. (2025). A Lego-inspired, Modular Agent-Based Metasystem for Emergency Departments. International Journal on Advances in Intelligent Systems, 18(1 & 2). http://www.iariajournals.org/intelligent_systems/", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 38658, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Ne\u2019matabad, E.F., Abbasi, E., & Hadizadeh, A. (2025). Designing an Agent-Based Model for Evaluating the Feasibility of Operational Budgeting in the Municipalities of Qazvin Province. Rahbord-e-Tousee, 21(83), (pp. 357-384). ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38659, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Rodriguez-Falcon, S., & Stucchi, L. (2025). Quantifying Emergent Behaviors in Agent-Based Models using Mean Information Gain. arXiv, Cornell University. https://doi.org/10.48550/arXiv.2510.10381", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, arXiv" + }, + { + "id": 38660, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Azarov, I. (2025). Reticular network as the lymph nodes railroad system: T cells migration modelling by the free energy minimization technique. Math-Net, (pp. 1- 28).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology" + }, + { + "id": 38661, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Wang, Y., Mahmood, A., Sabri, M.F.M., & Zen, H. (2025). Trust Management in the Internet of Vehicles: A Survey of the State-of-the-Art. TechRxiv. 10.36227/techrxiv.175977259.92821772/v1", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Internet of Vehicles, Survey" + }, + { + "id": 38662, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Alegre, A. (2025). Capturing cross-cutting concerns in agent-based models using computational effects [Master's thesis, University of Saskatchewan]. Harvest. https://hdl.handle.net/10388/17401", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38663, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Bischoff, R.J., & Padilla-Iglesias, C. (2026). Bridging Material Cultural Networks and Social Networks in Archaeology. OSF. https://doi.org/10.31235/osf.io/wjsyg_v2", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Archaeology, Miscellaneous" + }, + { + "id": 38664, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Soares, P. H. I., da Silva, M. A. S., Dompieri, M. H. G., de Moura, F. R., Batista, N. C. S., Medeiros, S. d. S. (2025). An Agent-Based Model Integrating the Theory of Planned Behavior for Simulating the Effect of Public Policies on Agricultural Diversity. Encontro Nacional de Inteligencia Arificial e Computacional. https://doi.org/10.5753/eniac.2025.14420.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38665, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Foxfoot, I. R., Cushway, K. C., Schwalb, A. N., Smith, D. R., Swannack, T. M. (2025). Evaluating freshwater mussel sampling methodologies using a simulation model. Ecological Indicators 179, https://doi.org/10.1016/j.ecolind.2025.114172.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Ecological Indicators, Modeling" + }, + { + "id": 38666, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "T\u00fary-Angyal, E., & L\u0151rincz, L. (2025). Sharing Political News Online: A Network Model of the Spread of Information on Social Media. Intersections. East European Journal of Society and Politics 11(1), 40-62, https://doi.org/10.17356/ieejsp.v11i1.1169.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38667, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Christ, S. I. (2025). Towards an understanding of wildfire risk at the wildland urban interface as a socio-ecological system. [PhD Thesis - University of Twente]. University of Twente, Faculty of Geo-Information Science and Earth Observation (ITC). https://doi.org/10.3990/1.9789036568722", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38668, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Tzioutziou, A., Velasco, M-J. P., Loukogeorgaki, E. (2025). Comparative evaluation of environmental impacts from renewable-energy projects with agent-based modeling. Clean Energy 9(6), 244-255. https://doi.org/10.1093/ce/zkaf053.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38669, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Lu, P., & Li, Y. (2025). Agent Model Based on Large Language Model as a Pathway to General Artificial Intelligence in Revolutionizing Crowd Dynamics Research. SSRN. http://dx.doi.org/10.2139/ssrn.5496390. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 38670, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Vergani, M., Giovannetti, A., Ng, S., Lim, C. P., Zhang, J., & Scott, R. (2025). Synergies between \"hard\" and \"soft\" interventions against online extremism: An agent-based simulation and cost-benefit analysis. Terrorism and Political Violence. https://doi.org/10.1080/09546553.2025.2544628", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38671, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Grando, L., Leite, J. R. E., Ursini, E. L. (2025). Agent-based simulation for drone charging in an internet of things environment system. arXiv:2509.10867", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry" + }, + { + "id": 38672, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Zamperini, M. B., & Schweha, D. J. (2025). Simulating Collaboration in Small Modular Nuclear Reactor Cybersecurity with Agent-Based Models. Journal of Cybersecurity and Privacy 5(4), 83, https://doi.org/10.3390/jcp5040083.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Cybersecurity, Modeling" + }, + { + "id": 38673, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Fauzi, M., Ferrianta, Y., Firdaus, M. (2026). Dynamic Integration in Agent-Based Modeling: Strategies for Optimizing Land-Use Change Policies in Peri-Urban Areas through Interactive Simulation. Research on World Agricultural Economy 7(1), 529-545. https://doi.org/10.36956/rwae.v7i1.2451", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38674, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Duprey, M. A., Adam, J. W., Khan, S. S., & Bobashev, G. V. (2026). OPOSim: An Agent-Based Model for Evaluating Long-Term Effects of Opioid Policy Outcomes in North Carolina. Journal of Artificial Societies and Social Simulation 29(1).", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38675, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Nagura, T., & Akiyama, E. (2026). Effect of Network Homophily and Partisanship on Social Media to \"Oil Spill\" Polarizations. Journal of Artificial Societies and Social Simulation 29(1). ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 38676, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Nugroho, A. S., Yonanda, B. C. (2026). Analisis Pemerataan Ekonomi Di Kalimantan Selatan Dengan Menggunakan Simulasi Berbasis Agen. Digitial Nexus Systematic Journal 2(1), 1-10.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 38677, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Hotz, R., Brown, C., Zeng, Y., Schmitt, T., & Rounsevell, M. (2026). Modelling Socio-Psychological Drivers of Land Management Intensity. arXiv:2602.02347", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38678, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Pazos, A. J. E. (2025). Mecanismo de subasta de los t\u00edtulos de deuda p\u00fablica \u2013 TES, una aproximaci\u00f3n desde modelos basados en agentes. [Master's thesis, Universidad Nacional de Colombia]. Repositorio Institucional Universidad Nacional de Colombia.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38679, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Himani, Focker, M., Sadik, J. A., Samiotis, G., Hommels, N. M. C., Alteio, L., Jacxsens, L., Williams, P., Zwietering, M. H., & van der Fels-Klerx, H. J. (2026). Modelling Listeria monocytogenes contamination and application of the resilience concept in the soft cheese supply chain. Food Control 184. https://doi.org/10.1016/j.foodcont.2026.112032", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Modelling, Resilience, Food, Supply Chain, Bacteria" + }, + { + "id": 38680, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Verma, D., Mumm, O., & Carlow, V. M. (2026). Seeking shade: an agent-based model to study shadow-focused pedestrian movement: Case study in Berlin. Transportation Research Interdisciplinary Perspectives 36. https://doi.org/10.1016/j.trip.2026.101883", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Agent-based modeling, Pedestrian movement, Berlin" + }, + { + "id": 38681, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Pratama, A., & Pambudi, A. G. (2026). Permodelan dan Simulasi Kebijakan Asta Cita dalam mendorong Kewirausahaan menggunakan Agent-Based Modeling Berbasis NetLogo. Digital Nexus Systematic Journal 2(1), 11-14.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38682, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Chen, W., Tang, X., Qi, J., & Liu, H. (2026). Dynamic pricing strategy design for manufacturing service providers in manufacturing platforms. Journal of Industrial and Management Optimization 22(2), 1140-1167.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economics, Computer Science, Management, Optimization" + }, + { + "id": 38683, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Ping, L. (2026). Impacts of standards integration on the effectiveness of green certification: an agent-based model. Environment, Development, and Sustainability. https://doi.org/10.1007/s10668-025-07213-0", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38684, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Fadhi, W.A., & Zein, R.O. (2026). Pengembangan Industri Kreatif Pengrajin Kayu Dengan Visualisasi Net Logo. Digital Nexus Systematic Journal, 2(1), 39\u201343.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38685, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Wicaksana, I.D., Salsabilla, S., & Fitrahirsca, A.P. (2026). Simulasi Penyebaran Penyakit Menular HIVDi Ibu Kota Jakarta Menggunakan Permodelan NetLogo. Digital Nexus Systematic Journal, 2(1), 22\u201326.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Digital Nexus Systematic Journal, NetLogo" + }, + { + "id": 38686, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Herawatie, D., Siswanto, N., & Widodo, E. (2026). Evaluating Driver Strategies in Motorcycle-Based Ride-Hailing Services: An Agent-Based Modeling and Simulation Approach. JOIV : Int. J. Inform. Visualization, 10(1), 206-220.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38687, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "L\u00f3pez, A.R., & Fraire, R.O.R. (2025). Efectos del modelo Ciudad Cercana en la ciudad de Chihuahua: an\u00e1lisis de la segregaci\u00f3n socioespacial mediante simulaci\u00f3n basada en agentes. Teor\u00eda y Praxis 34, 89-97. 10.22403/UQROOMX/TyP34/10", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38688, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Pokorny, L. (2026). A Mixed-Methods Investigation into the Economic Impacts of Offshore Wind Development on Commercial Fishing Industries in the Mid-Atlantic Region, with a Specific Focus on New Jersey. SSRN. 10.5281/zenodo.17993777", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38689, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Krisnawati, M., Mulyani, Y.P., & Sopha, B.M. (2026). Introducing Adaptive Q-Learning in Agent-Based Models: A Case Study of Household Climate Decision. Proceedings of the 2025 IEEE International Conference on Industrial Engineering and Engineering Management (IEEM). IEEE. 10.1109/IEEM63636.2025.11357584", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38690, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Gheibi A., & Rassafi A. A. (2025). Designing a Decentralized Reverse Logistics System for Waste Management. LogForum, 21(3), 347-359. https://doi.org/10.17270/J.LOG.001229", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38691, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Verza, M., Camanzi, L., Mulazzani, L., Giampaolo, A., Rodriguez, S., Malorgio, G., & Mattas, K. (2025). Underutilized crops for diversified agri-food systems: spatial modeling and farmer adoption of buckwheat in Italy. Frontiers in Sustainable Food Systems 9. doi: 10.3389/fsufs.2025.1534246", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38692, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Laver, M. (2025). District magnitude and substantive representation. Irish Political Studies, 1\u201318. https://doi.org/10.1080/07907184.2025.2553530", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38693, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Wang, Y., Zhu, Y., Li, X., Zhang, X., Li, S., Zhang, H., Wang, Y., Zhang, Y., Li, Q., & Wang, F.Y. (2025). From Scenarios Engineering to Scenarios Intelligence: Microworld Models for Embodied AI Based on Parallel Intelligence. IEEE, 56(1), 32-45. 10.1109/TSMC.2025.3618120", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38694, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Grieg, C., Berea, A., Hammer, M., Arguello, E., Petri, C., Prather, C., & Carter, S. (2024, November). An Exploration of Mars Settlement with Agent Based Modeling. In 2024 World Conference on Complex Systems (WCCS) (pp. 1-5). IEEE.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Miscellaneous" + }, + { + "id": 38695, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Tofighi, A., & Berea, A. (2024). An agent-based model of human-whale interactions in the North Atlantic. Aquatic Mammals 50(6), 569-579, https://doi.org/10.1578/AM.50.6.2024.569", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 38696, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Singh, S.P. (2025). Smart Contracts in Agri-Finance Supply Chains. Scientific Journal of Artificial Intelligence and Blockchain Technologies, 2(2), 9-22. https://doi.org/10.63345/sjaibt.v2.i2.102", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Agriculture, Blockchain Technology, Artificial Intelligence, Economics, Science, Supply Chains" + }, + { + "id": 38697, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Ivanova, Y.A. (2025). Developing a Simulation-Based Methodology for Risk Assessment in Unmanned Aircraft Systems. Proceedings of the 2025 International Conference on Information Technologies (InfoTech), pp. 1-4. 10.1109/InfoTech67177.2025.11175952.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38699, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Sepanosian, T., & Bemthuis, R. (2025). IoT-Enabled Multi-Agent Simulation for Hazard Detection and Safety in Construction. Procedia Computer Science, 257, 354-363. https://doi.org/10.1016/j.procs.2025.03.047", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 38700, + "sort": null, + "year": 2016, + "is_ccl": false, + "reference": "Zellner, M., Massey, D., Minor, E., & Gonzalez-Meler, M. (2016). Exploring the effects of green infrastructure placement on neighborhood-level flooding via spatially explicit simulations. Computers, Environment and Urban Systems, 59, 116-128.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 38701, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Schubotz, L., Chappin, E., & Scholz, G. (2025). Structural Sculpting: Making Inverse Modelling Generate and Deal with Variable Structures. Journal of Artificial Societies and Social Simulation 28 (4). 10.18564/jasss.5830", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Structure, Modeling, Social Science" + }, + { + "id": 38702, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Cintra, L.M.F., Zech, P., Kassab, M., Lima, E.A., Costa Paiva, S.L., &\nNeto, V.V.G. (2025). M&SCheck: Towards a Checklist to Support Software Engineering Newcomers to the Modeling and Simulation Area. arXiv, Cornell University. https://doi.org/10.48550/arXiv.2509.25625", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Software Engineering, Modeling, Simulation, arXiv" + }, + { + "id": 38703, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Garrone, R. (2026). A Computational Social Simulation of Ageing and Care Accessibility in Italian Inner Areas. arXiv, Cornell University. https://doi.org/10.48550/arXiv.2509.26496", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics" + }, + { + "id": 38704, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Karoglan, M. (2025). Usporedba algoritama na modelu Braessovog paradoksa u Netlogo-u. [Master's thesis, : University of Split]. Digital Repository of Faculty of Science in Split. https://urn.nsk.hr/urn:nbn:hr:166:458782", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 38705, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Nascimento, D.A.d., Albuquerque, N.H.A.d., Alves, M.H.C., Souza, P.V.S. (2025). Tr\u00e1fego urbano e sistemas complexos: explorando o NetLogo no ensino de f\u00edsica. A F\u00edsica na Escola 23(1). DOI: 10.59727/fne.v23i1.311. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Physics, Miscellaneous" + }, + { + "id": 38706, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Swannack, T.M., Cushway, K.C., Carrillo, C.C., Calvo, C., Determan, K.R., Mierzejewski, C.M., Quintana, V.M., Riggins, C.L., Sams, M.D., Wadsworth, W.E. (2025). Cracking the code: Linking good modeling and coding practices for new ecological modelers. Ecological Modelling 499. https://doi.org/10.1016/j.ecolmodel.2024.110926", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 38707, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Tarantino, R. (2025). The Polysemy of Genes: Analogical and Agent-Based Models Investigation of Phenotypic Plasticity. [Doctoral Thesis, Universit\u00e0 degli Studi di Palermo]. https://hdl.handle.net/20.500.14242/188350", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Genetics, Modeling" + }, + { + "id": 38708, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Rossi, T. J. A., de Carvalho, A. M., & Sarti, F. M. (2026). Agent-Based Modeling of Urban Agriculture: Decision-Making, Policy Incentives, and Sustainability in Food Systems. Complexities, 2(1), 2. https://doi.org/10.3390/complexities2010002", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38709, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Zhuang, Y. (2026). The Digital Transformation Path of Cross-Border E-Commerce cross-Cultural Communication on the \u201cDigital Silk Road\u201d under the Perspective of Enterprise Operation Synergy. International Journal of Computer Information Systems and Industrial Management Applications 18. https://doi.org/10.70917/ijcisim-2026-0175", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38710, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Qi, H., Guo, Y., Long, F., Zheng, X., & Lu, X. (2026). The Differential Effects of Green Finance Instruments on Forestry Enterprises: An Agent-Based Analysis from China. Forests, 17(2), 233. https://doi.org/10.3390/f17020233", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38711, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Narayan, P.S. (2026). Simple Agent Based Simulation for Quick Evaluation of System of Systems Architectures. [Master's Thesis, Link\u00f6ping University].", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38712, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Caccin, A., & Stocco, A. (2026). WM-Classroom v1.0: A Didactic Multi-Species Agent-Based Model to Explore Predator\u2013Prey\u2013Harvest Dynamics. Wild, 3(1), 8. https://doi.org/10.3390/wild3010008\n\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 38713, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Edmonds, B., Steiglechner, P., Lorenz, J., Kalvas, F., Batzke, M.C.L. (2026). Understanding Mutual Social Influence When People Prefer Coherent Beliefs. In: Keijzer, M.A., Lorenz, J., Bojanowski, M. (eds) Computational Social Science of Social Cohesion and Polarization. Computational Social Sciences. Springer, Cham. https://doi.org/10.1007/978-3-032-01373-6_9", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38714, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Khaluf, Y., Wurpts, B., Hovestadt, T., Z\u00f6ller, N., Hofstede, G.J. (2026). Modeling Social Cohesion: The Influence of Memory and Learning in Simulated Networks. In: Keijzer, M.A., Lorenz, J., Bojanowski, M. (Eds) Computational Social Science of Social Cohesion and Polarization. Computational Social Sciences. Springer, Cham. https://doi.org/10.1007/978-3-032-01373-6_11", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Memory, Learning, Social Cohesion, Polarization" + }, + { + "id": 38715, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Addo, L., Watz, J., Piccolo, J.J., Norrg\u00e5rd, J., Syjr\u00e4nen, J.T., Railsback, S.F., & Hajiesmaeili, M. (2026). Individual-based modeling of Atlantic salmon and brown trout outmigrants in a hydropeaking-regulated river: effects of minimum baseflow and gravel augmentation on smolt production. Global Ecology and Conservation. https://doi.org/10.1016/j.gecco.2026.e04111", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Ecology, Modeling, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38716, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Fachada, N., Fernandes, D., Fernandes, C.M., & Matos-Carvalho, J.P. (2026). Can Large Language Models Implement Agent-Based Models? An ODD-based Replication Study. arXiv, Cornell University. https://doi.org/10.48550/arXiv.2602.10140", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 38717, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Seniuk, I., Kravchenko, V., Honcharov, O., Galuzinska, L., Matviichuk, O. (2025). Integration of interactive methods into the educational process for biological educational components in the conditions of online-learning in pharmaceutical higher education institutions. ScienceRise: Pedagogical Education, 4 (65), 64\u201375. http://doi.org/10.15587/2519-4984.2025.349435", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Pedagogical Education, Online-learning, ScienceRise" + }, + { + "id": 38718, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Alekseeva, E. (2025). The Problem of Epistemic Injustice and Multi-Agent Model of Epistemic Diversity. Philosophy Journal of the Higher School of Economics, 9(4), 194-220. https://doi.org/10.17323/2587-8719-2025-4-194-220", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38719, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Pelaez, K.K.E. (2025). Model of adaptation of cloud-based project management technologies in industrial enterprises [Master's thesis, Ural Federal University]. UrFU Electronic Scientific Archive. https://elar.urfu.ru/handle/10995/147450", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38720, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Youssefi, K.A., Gojkovic, M., & Schranz, M. (2025). Enhancing Job-Shop Scheduling Performance with a Refined Bottom-Up Variant of the Artificial Bee Colony Algorithm. In G. Wagner, F. Werner, & F.D. Rango (Eds.), Simulation and Modeling Methodologies, Technologies and Applications: 14th International Conference, SIMULTECH 2024 Dijon, France, July 9\u201411, 2024 Revised Selected Papers, 94-113, https://doi.org/10.1007/978-3-032-04777-9_6", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation and Modeling Methodologies, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38721, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Merz, M. (2025). Ecological Consequences of Small Mammal Personalities in Forest Ecosystems (Publication No. 4217) [Doctoral dissertation, University of Maine]. Electronic Theses and Dissertations. https://digitalcommons.library.umaine.edu/etd/4217 ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 38722, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Bonilla, C., Becerra, J., Cervantes, L., Caraveo, C., & Jimenez, S. (2025). Simulation of Drug Interactions in the Body: An Agent-Based Modeling Approach. Proceedings of the 2025 13th International Conference in Software Engineering Research and Innovation (CONISOFT), 131-138. IEEE. doi: 10.1109/CONISOFT66928.2025.00027.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Software Engineering, Economics, Modeling, Physics, Pharmacology" + }, + { + "id": 38723, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Contreras, R.T.C., Cervantes Huerta, L., Caraveo, C., Jim\u00e9nez, S., & Torres, D.L.B. (2025). Design and Implementation of a Software-Based Simulation for Reliability Analysis in Renewable Microgrids. Proceedings of the 2025 13th International Conference in Software Engineering Research and Innovation (CONISOFT), 72-80. IEEE. doi: 10.1109/CONISOFT66928.2025.00020.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38724, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Aghamohammadghasem, M. (2025). Simulation- and Machine Learning-Based Methods for Inland Waterway Operation and Maintenance Decision-Making (Publication No. 32166607)[Doctoral dissertation, University of Arkansas). University of Arkansas\u2009ProQuest Dissertations & Theses. http://turing.library.northwestern.edu/login?url=https://www.proquest.com/dissertations-theses/simulation-machine-learning-based-methods-inland/docview/3255207345/se-2?accountid=12861", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Machine Learning, Inland Waterway, Decision-Making" + }, + { + "id": 38725, + "sort": null, + "year": 2014, + "is_ccl": true, + "reference": "Maroulis, S., & Wilensky, U. (2014). Social and Task Interdependencies in the Street-Level Implementation of Innovation. Journal of Public Administration Research and Theory 25(3), 721-750. https://doi-org.turing.library.northwestern.edu/10.1093/jopart/mut084", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38726, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Rugaber, S., Bunin, S., Hornback, A., Sungeun, A., Goel, A. (2025). Learning Ecology with VERA Using Conceptual Models and Simulations. arXiv:2510.16944v1", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Miscellaneous" + }, + { + "id": 38727, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Echeverry-Galvis, M.A., Meza, P.A., Pel\u00e1ez, M.E., Otalora-L\u00f6w, M., & Gonzalez, M. (2025). Moving in the concrete maze: Functional connectivity by agent-based modelling in a diverse, rich city. Available at SSRN: https://ssrn.com/abstract=5476334", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38728, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Mesas, F., Taboada, M., Rexachs, D., Epelde, F., Wong, A., & Luque, E. (2025). An Adaptive Agent-Based Model Metasystem for Emergency Departments. In P. Pesado and P. Thomas (Eds.), Computer Science \u2013 CACIC 2024: 30th Argentine Congress of Computer Science, La Plata, Argentina, October 7\u201310, 2024, Revised Selected Papers, 37-49. https://doi.org/10.1007/978-3-032-00718-6_3", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 38729, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Stasiowska, D. (2026). Computer Modelling For Extreme Environments \u2013 How BEEHAVE Model Can Be Used For Extraterrestrial Applications and Establishing Directions of Future Studies. AGH University of Krakow.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Economics" + }, + { + "id": 38730, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Knox, C. E. (2026). Building Bridges for Troubled Water: Assessing the Possibility of Cooperative Adaptation in Boston Harbor With Agent-Based Models of Coalition Formation (Publication No. 32441988)[Doctoral Dissertation, Tufts University]. ProQuest Dissertations & Theses Global. http://turing.library.northwestern.edu/login?url=https://www.proquest.com/dissertations-theses/building-bridges-troubled-water-assessing/docview/3302407990/se-2", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38731, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Crouse, K.N., Miller, C.M., & Wilson, M.L. (2019). New approaches to modeling primate socioecology: Does small female group size BEGET loyal males?. Journal of Human Evolution, 137(102671). https://doi.org/10.1016/j.jhevol.2019.102671\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38732, + "sort": null, + "year": 2021, + "is_ccl": false, + "reference": "Crouse, K.N. (2021). B3GET: A New Computational Approach for Understanding and Exploring Ecology, Evolution, and Behavior (Publication No. 28962838)[Doctoral dissertation, University of Minnesota]. University of Minnesota\u2009ProQuest Dissertations & Theses. http://turing.library.northwestern.edu/login?url=https://www.proquest.com/dissertations-theses/b3get-new-computational-approach-understanding/docview/2641521630/se-2?accountid=12861", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Ecology, Biology, Computer Science, Miscellaneous" + }, + { + "id": 38733, + "sort": null, + "year": 2022, + "is_ccl": false, + "reference": "Crouse, K.N., Desai, N.P., Cassidy, K.A., Stahler, E.E., Lehman, C.L., Wilson, M.L. (2022). Larger territories reduce mortality risk for chimpanzees, wolves, and agents: Multiple lines of evidence in a model validation framework. Ecological Modelling 471. https://doi-org.turing.library.northwestern.edu/10.1016/j.ecolmodel.2022.110063", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38734, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Zhu, A., Feng, W., Zheng, H., Huang, Y., He, X., Zhou, C., Yang, L.E. (2026). An Agent-Based Model for Simulating Flood Governance and Community Resilience. MethodsX. https://doi.org/10.1016/j.mex.2026.103820", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 38735, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Smarzhevskiy, I., & Pavlov, O. (2026). Communication features of projects aimed at green and low-carbon transformations of operational procedures of energy companies. Unconventional Resources 11. https://doi.org/10.1016/j.uncres.2026.100336", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Communication" + }, + { + "id": 38736, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Zhu, Y., Ock\u00e9, M.C., de Vet, E. (2026). Exploring spillover effects beyond workplace dietary interventions using agent-based modeling. Public Health Nutrition. doi: 10.1017/S1368980026102018", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Ecology, Agent-based modeling" + }, + { + "id": 38737, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Yang, W., Li, M., Jiang, X., Hu, D., Liang, H., Jiang, X., Liu, X. (2026). An Urban Waterlogging Dynamic Vulnerability Assessment Framework Integrating Hydrological-hydrodynamic Model, Multi-agent Modeling, and the Coquet Integral. Water Resources Management 40(114). https://doi.org/10.1007/s11269-026-04499-1", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Hydrological-hydrodynamic Model, Multi-agent Modeling, Coquet Integral" + }, + { + "id": 38738, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Purnomo, H., Aminuddin A. P., R. A., Immawan, T., & Firdaus, F. (2026). Socio-technical transformation of Indonesia\u2019s national food system: An integrated approach based on circular supply chain management, human factors, and agent-based modeling. Challenges in Sustainability 14(1), 157-168. https://doi.org/10.56578/cis140110.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Socio-technical transformation, Circular supply chain management, Human factors, Agent-based modeling, Sustainability" + }, + { + "id": 38739, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Obiako, I.V., Walker, S.B., Lippert, K.J., Cloutier, R.J. (2026). Systematic Learning and Pedagogy Through a Modular, Progressive-Based Simulation Modeling Framework for Complex Systems. Systems Engineering. https://doi.org/10.1002/sys.70047Digital Object Identifier", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38740, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Huang, R., Ma, Z., & He, N. (2026). Formal Verification of Trust in Multi-Agent Systems Under Generalized Possibility Theory. Mathematics 14(3), 456. https://doi.org/10.3390/math14030456", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Mathematics, Physics, Computer Science" + }, + { + "id": 38741, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Vishkin, A., Krasner, R., & Wely, M. (2026). Gender equality predicts female over-representation only in competitive domains where they have a relative advantage over males. PNAS Nexus. https://doi.org/10.1093/pnasnexus/pgag035", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38742, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Morofuji, H., & Kurahashi, S. (2026). Government Official-Initiated Bid-Rigging: A Simulation-Based Approach Using Gaming and Agent-Based Methods. New Generation Computing 44(14). https://doi.org/10.1007/s00354-026-00316-w", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Simulation, Gaming, Agent-Based Methods" + }, + { + "id": 38743, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Wehr, N. H., Rosenberry, C. S., Stainbrook, D., Staats, M., Korman, A. L., Walter, W. D. (2026). Statewide agent-based model for management of chronic wasting disease in white-tailed deer using R and NetLogo: PAOvCWD. MethodsX. https://doi.org/10.1016/j.mex.2026.103823", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38744, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Gavric, S. (2025). Unified Urban Surface and Air Mobility Traffic Management: Concept of Operations and Microsimulation Modeling (Publication No. 31840901)[Doctoral dissertation, University of Pittsburgh]. University of Pittsburgh\u2009ProQuest Dissertations & Theses. https://d-scholarship.pitt.edu/concern/etds/f34cd88f-0fc1-4ed5-82ac-92c750766326", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38745, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Becerra, A.C.P., Prada, C.F.R., Guerrero-Avenda\u00f1o, A., & Rico-Bautista, D. (2025). Agent-Based Simulation of Tensile Testing of Metallic Materials: A Systematic Literature Review. Proceedings of 2025 Congreso Internacional de Innovaci\u00f3n y Tendencias en Ingenier\u00eda (CONIITI). IEEE. 10.1109/CONIITI68560.2025.11366065 ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38746, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Ayouche, S., & Aligod, S. (2025). Agent-Based Modelling and Simulation of Islamic Microfinance: Evaluating Diminishing Partnership for Poverty Alleviation. Manchester Journal of Transnational Islamic Law & Practice, 21(4), 364-386. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38747, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Mustillo, T. (2026). Building a FAIR, linked, and open data ecosystem: innovation cascades in political science. European Political Science, 24(4), 810-825. https://doi.org/10.1057/s41304-025-00520-0", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38748, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Snyder, B. (2025). Sexual Selection Creates Status-Seeking Males and Unsustainable Economic Growth. Evolutionary Psychological Science 11, 367\u2013380. https://doi.org/10.1007/s40806-025-00448-0", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Economic Growth" + }, + { + "id": 38749, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Wang, H.H., Grant, W.E., Donaldson, T.G., Thomas, D.B., Lohmeyer, K.H., P\u00e9rez de Le\u00f3n, A.A., & Teel, P.D. (2025). Leveraging location intelligence and individual-based modeling to simulate Rhipicephalus microplus infestation and eradication dynamics at the cattle-wildlife interface. Current Research in Parasitology & Vector-Borne Diseases, 8(100323). https://doi.org/10.1016/j.crpvbd.2025.100323", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Parasitology, Modeling, Ecology, Vector-Borne Diseases" + }, + { + "id": 38750, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Duprey, M. A., & Bobashev, G. V. (2026). Enhancing Computational Efficiency in NetLogo: Best Practices for Running Large-Scale Agent-Based Models on AWS and Cloud Infrastructures. arXiv:2602.15317", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics, Chemistry" + }, + { + "id": 38751, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Liu, Y., & Zhang, Y. (2025). Returning to Poverty due to Unequal Opportunities in China: The Key Influencing Factors and Mitigation Policies. Sustainable Development. https://doi.org/10.1002/sd.70567", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38752, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Salas-Pe\u00f1a, A., & Garc\u00eda-Palomares, J. C. (2025). Simulating Co-Evolution and Knowledge Transfer in Logistics Clusters Using a Multi-Agent-Based Approach. ISPRS International Journal of Geo-Information 14(4), 179. https://doi.org/10.3390/ijgi14040179", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38753, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Federico, F., Balakrishna, R., & Janssen, M. A. (2025). Evolution of conditional cooperation in a spatial public goods game. PLOS Complex Systems. https://doi.org/10.1371/journal.pcsy.0000040", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38754, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Brophy, G., Rips-Goodwin, A., Wilson, L., & Lewis, A. (2025). Using Agent-Based Modeling to Understand the Impact of Community Interactions on Voter Apathy and Election Outcome. The PUMP Journal of Undergraduate Research 8, 286\u2013321. https://doi.org/10.46787/pump.v8i.5455\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38755, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Nasirzonouzi, A., & Gershenson, C. The Dynamics of Word-of-Mouth Marketing: An Agent-Based Modeling Approach to Message Credibility and Consumer Engagement. Northeast Journal of Complex Systems 7(2). https://doi.org/10.63562/2577-8439.1116", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38756, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Alqumber, M.A. (2026). Probiotic-infused activated charcoal/ hydroxyapatite microbeads: a novel strategy to disinfection. PeerJ, 14(e20803). http://doi.org/10.7717/peerj.20803", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Technology, Microbiology, Chemistry" + }, + { + "id": 38757, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Nicart, M.R.O., Refuerzo, C.P.L., Gomez, Z.J.A., Galvo, J.J.A., Segundo, K.C., Celis, C.R.G., & Ocena, C. (2026). Simulation-Based Optimization of Drone-Assisted Search and Rescue Operations in a Flood-Prone Area. Kafrelsheikh Journal of Information Sciences, 6(1), 2537-0677.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Economics, History, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38758, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "T\u00fary-Angyal, E. & L\u0151rincz, L. (2025). Sharing political news online: A network model of information spread on Facebook. East European Journal of Society and Politics. 11(1), 40\u201362. DOI:https://doi.org/10.17356/ieejsp.v11i1.1169.\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Network Modeling, Social Science, Computer Science, Economics, History, Physics, Chemistry" + }, + { + "id": 38759, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Monroe, J.I., Nayani, K., Simpson, T.K., Walker, H.L., & Clausen, E. (2025). University of Arkansas Chemical Engineering Summer Academy for High School Students. Proceedings of the 2025 ASEE Midwest Section Conference, American Society for Engineering Education.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Miscellaneous" + }, + { + "id": 38760, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Liu, C., Wang, W., Hou, Z., & Chen, S. (2025). Optimization and Enhancement of Government-Guided Fund Management Models: A Simulation-Based Analysis of District J in Shanghai. In A. Mallik et al. (Eds.), Proceedings of the 2025 6th International Conference on Management Science and\nEngineering Management (ICMSEM 2025), Atlantis Highlights in Economics, Business and Management 4, https://doi.org/10.2991/978-94-6463-845-5_80", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Economics, Management Science, Economics, Simulation, Business, Economics" + }, + { + "id": 38761, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Amasa, S.N.C., Beleta, T.M.P., Montilla, S.L., & Llantos, O.E. (2025). Simulating HIV transmission dynamics: An agent-based approach using NetLogo. PLoS One 20(9): e0330456. https://doi.org/10.1371/journal.pone.0330456\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Agent-based modeling, Simulation, Ecology, Computer Science, Network Theory, Social Science, NetLogo" + }, + { + "id": 38762, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Nicholson, J., & McCusker, S. (2026). It\u2019s in the wind: An opportunity for understanding epidemiological evidence. Proceedings of IASE 2025 Satellite Conference - Statistics and Data Science Education in STEAM. https://doi.org/10.52041/iase25.153", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Epidemiology" + }, + { + "id": 38763, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "C\u00e1lix-Hern\u00e1ndez, A.E. (2025). Online omnichannel customer service interaction in international trade. Science, Economics and Business, 9, 5-24. https://doi.org/10.22206/ciene.2025.v9.3643\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38764, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "K\u00fcrschner, T., Radchuk, V., Planillo, A., Scherer, C., Blaum, N., Staubach, C., Thulke, H.H., & Kramer-Schadt, S. (2026). Reconciling dynamic epidemiological models with long-term outbreak data: The case of classical swine fever in Germany. Ecosphere, 17(2). https://doi.org/10.1002/ecs2.70539open_in_new\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Epidemiology, Miscellaneous" + }, + { + "id": 38765, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Prasher, S. (2025). An Empirical and Computational Investigation of Relationship Dynamics and Emergent Social Structure (Publication No. 32322770) [Doctoral dissertation, University of Cincinnati]. University of Cincinnati\u2009ProQuest Dissertations & Theses. http://turing.library.northwestern.edu/login?url=https://www.proquest.com/dissertations-theses/empirical-computational-investigation/docview/3256616848/se-2?accountid=12861 ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38766, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Priya, S.S., & Suganya, R. (2025). Enhanced Context-Aware Testing for Mobile Applications Using a Hybrid Grammatical Evolution Method. Proceedings of 2025 IEEE 4th International Conference for Advancement in Technology (ICONAT). IEEE. 10.1109/ICONAT66879.2025.11362663", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Technology, Methodology, Computer Science, Conference, Theory" + }, + { + "id": 38767, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Molle, A. (2025). Hearts, Minds, and Explosives: Modeling Civilian Loyalty Dynamics in Irregular Warfare. Advance. 10.31124/advance.175696898.82318757/v1", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38769, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Rajagopal, S., Sasaki, T., & Hall, R.J. (2026). Sublethal costs of infection reduce performance of collective tasks in social insects: a modelling study. Research Sqaure. https://doi.org/10.21203/rs.3.rs-8747129/v1", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Infection" + }, + { + "id": 38770, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Del Cerro, C.C. (2026). What is Agent-Based Modeling?. GESIS Guides to Digital Behavioral Data, 21. DOI: 10.60762/ggdbd25021.1.0", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Agent-based Modeling" + }, + { + "id": 38771, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Gu\u00e1queta-Sol\u00f3rzano, V. E., Cantor, J. E. H., Sarmiento, V. P., Gomez, A., & Tello, M. I. (2026). Traditional ecological knowledge of the Arhuaco people on water management in the Sierra Nevada de Santa Marta. PREPRINT (Version 1) available at Research Square [https://doi.org/10.21203/rs.3.rs-8895046/v1]", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38772, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Pellizzari, P., & Parpinel, F. (2026). Illusions and Perceived Wealth: An Agent-based model of Madoff's Ponzi scheme. Working Paper available at https://www.unive.it/dec-workingpapers", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38773, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Li, S., Hao, J., Chai, Y., Feng, T., Liu, Y., & Zhu, X. (2026). Mapping Emotional Pathways to Social Identity in Hybrid Work: A Computational Model for Organizational Cohesion. Behavioral Science 16(2). https://doi.org/10.3390/bs16020303", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38774, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Railsback, S.F., Harvey, B.C., & Ayllon, D. (2026). InSTREAM 7 User Manual: Model Description, Software Guide, and Application Guide Version 7.4. USDA Forest Service. 10.2737/psw-gtr-276", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Software, Application, Agriculture" + }, + { + "id": 38775, + "sort": null, + "year": 2024, + "is_ccl": false, + "reference": "Haryanto, F. T., Koshimura, S., & Mas, E. (2024). Effectiveness of tsunami temporary evacuation sites (TES) in pangandaran village using agent-based modeling. Synopsis of IISEE-GRIPS Master\u2019s Thesis, Bulletin of IISEE, 59.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education" + }, + { + "id": 38776, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Meister, H. (2025). Some Agent-Based Concepts for Modeling and Simulation. Fakult\u00e4t f\u00fcr Mathematik und Informatik. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Mathematics" + }, + { + "id": 38777, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Hajdu, F., Kuti, R., & Hajdu, C. (2025). Cognitive aspects of agent-based based evacuation simulation. Proceedings of the 2025 IEEE 16th International Conference on Cognitive Infocommunications (CogInfoCom). IEEE. 10.1109/CogInfoCom66819.2025.11200742", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Cognitive Infocommunications" + }, + { + "id": 38778, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Zandee, T. (2025). Towards modelling the cultural evolution of sustainable societies [Master's thesis, Utrecht University]. Utrecht University Student Theses Repository. https://studenttheses.uu.nl/handle/20.500.12932/50218", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38779, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Praveen, R., Boob, N.S., MuhsnHasan, M., Bansal, S., Kansal, L., & Rajalakshmi, B. (2025). Digital Twin-Enabled Urban Management: Multi-Modal Data Fusion for Real-Time City Simulation and Prediction. Proceedings of the 2025 International Conference on Computing and Communications (COMPUTINGCON) Pune, India. Sep 01-03, 2025. IEEE. 10.1109/COMPUTINGCON64838.2025.11376962", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Urban Studies, Computer Science, Physics, Ecology" + }, + { + "id": 38780, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Zhao, Y., Qin, X., & Su, X. (2025). Construction and Simulation Study of a Threshold Model for the Diffusion of Agricultural Technology Innovation Based on Cognitive Utility. In Y. Sun (Ed.), Proceedings of the 2025 3rd International Conference on Image, Algorithms, and Artificial Intelligence (ICIAAI 2025), Advances in Computer Science Research, 122. https://doi.org/10.2991/978-94-6463-823-3_112", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Simulation, Computer Science, Image, Algorithms, Artificial Intelligence, Economics, Archaeology, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38781, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Bradley, L.M., Duvall, E.S., Akinnifesi, O.J., Jaromerska, T.N., Junker, J.R., Wong, E. (2025). Exploring the multi-scale ecological consequences of stoichimetric imbalance using an agent-based modeling approach. Frontiers in Ecology and Evolution 13. https://doi.org/10.3389/fevo.2025.1505145", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38782, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Fabris, B. (2025). Evaluating IoT-based Landslide Early Warning Systems. [Master's Thesis, Malm\u00f6 University]. DIVA Portal: 2002608", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38783, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Imtiyaz, I., Parvaz, M., & Kolankeh, A.K. (2025). SwarmForm: A Survey of Shape Formation in Modular and Decentralized Robot Systems. 10.1109/ICAMAC67779.2025.11398586", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "SwarmForm, Survey, Robot Systems, Computer Science, Biology" + }, + { + "id": 38784, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Hernandez, W.V., Quidayan, J.E.C., & Selarde, J.D.M. (2025). Simulating predator-prey dynamics between clown knifefish (Chitala ornata) and ayungin (Leiopotherapan plumbeus) using agent-based modeling. Capstones. 163. https://www.ukdr.uplb.edu.ph/etd-capstone/163", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38785, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Mokros, J., Sagrans, J., & Noyce, P. (2025). Supporting Middle School Students\u2019 Understanding of Time-Series Data With Graph Comparisons. Journal of Statistics and Data Science Education, 34(1), 101-112. https://doi.org/10.1080/26939169.2025.2560338", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Statistics and Data Science Education" + }, + { + "id": 38786, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Schwarz, N., Augustijn, P.W.M., Cray, L., & Dou, Y. (2025). Teaching agent-based modelling online \u2013 lessons learnt. Poster session presented at Social Simulation Conference 2025, Delft, Netherlands.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 38787, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Azurin, C., Carpenter, L., Gorreck, G, Capaldi, A. (2025). Optimizing the Spatial Distribution of Fruiting Agave on Bat-Friendly Tequila Plantations. JMU Mathematics and Statistics REU.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Mathematics, Statistics" + }, + { + "id": 38788, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Serdyuk, A. (2025). Validation Strategies For Agent-Based Models In Social Science: Insights from Modeling of Migration Caused by the Full-Scale Russian Invasion of Ukraine. National University of Kyiv-Mohyla Academy.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38789, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Li, Y., Xia, P., Zhu, Y., Yuan, B., Wang, Z., & Zhang, B. (2025). The Constraints and Incentives of Carbon Quota Penalty Intensity on Both Parties of Carbon Quota Trading: An ABM Modeling Based on the Power Industry in the National Carbon Market. Proceedings of the 2025 5th Power System and Green Energy Conference (PSGEC). IEEE. 10.1109/PSGEC66102.2025.11150973", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Carbon Quota Penalty Intensity" + }, + { + "id": 38790, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Carter, D., Lungeanu, A., Pearman, J., Carter, N., Bauer, L., Pendergraft, J., Landon, L., Shuffler, M., DeChurch, L., & Contracto, N. (2026). Collective Attention in Virtual Teams: A Pathway forMitigating Communication Delays. Personnel Psychology. https://doi.org/10.1111/peps.70024open_in_new", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38791, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Kalluri, R. (2026). Agent-Based Simulation of Trust Development in Human-Robot Teams: An EmpiricallyValidated Framework. arXiv, Cornell University. https://doi.org/10.48550/arXiv.2603.01189", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38792, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Ekoh, L.A., Eneh, C.A., & Onyebuchi, G.C. (2025). Breaking the Lineage: Modelling the Transmutation of Economic Trauma Through Generational Moral Disruption and Spiritual Realignment. Unizik Journal of Education Graduates 10. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38793, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Rodeles Lara, I.G., Vel\u00e1squez, L.M.G., & Campas, M.R.Z. (2025). Impact of Transparency on the Legitimacy and Effectiveness of Public Policies during COVID-19. Int. J. Ad. Social Sciences, 13(4), 173-176. 10.52711/2454-2679.2025.00026", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38794, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Groot, M., Quist, J., Leising, E., Kort, M., & Warnier, M. (2025). Extended Producer Responsibility to Reduce Plastic Waste Pollution: An Agent-Based Modelling Study to Analyze EPR Instruments in Indonesia. Proceedings of the Social Simulation Conference 2025. TU Delft.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38795, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Richards, D., & Taylor, M. (2015). A Comparison of learning gains when using a 2D simulation tool versus a 3D virtual world: An experiment to find the right representation involving the Marginal Value Theorem. Computers & Education 86, 157-171. http://dx.doi.org/10.1016/j.compedu.2015.03.009", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 38796, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Herawatie, D., Siswanto, N., Widodo, E., & Pramudita, R. . (2026). Design for evaluating online food delivery systems using agent-based model and GIS. In M. F. F. Mardianto & I. Syahzaqi (Eds.), Proceedings of the International Conference on Mathematics, Computational Sciences, and Statistics. https://doi.org/10.1063/5.0308994", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38797, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Liu, Y., Zhang, G., & Liu, Y. (2026). What are the key factors affecting AI algorithmic price discrimination in China? Evidence from complex adaptive systems modelling. Systems Research and Behavioral Science. https://doi.org/10.1002/sres.70041open_in_new", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38798, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Ale, S., Kelleher, J., Nguyen, T. N. Q., & Hunter, E. (2026). An ODD Protocol for an Agent-Based Model of Hepatitis C Virus Transmission with Inter- and Intra-Group Structural and Behavioural Heterogeneous Syringe-Sharing Networks. Technological University Dublin Arrow Repository Report. doi:10.21427/7ya7-xe60 ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Archaeology, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38799, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Lowe, W. U. A., Carroll, P., Lades, L., & Martinez-Pastor, B. (2026). Using agent-based modelling for investigating the impact of travel behaviour interventions on mode shift: A travel behaviour simulation in Dublin. Available at SSRN. http://dx.doi.org/10.2139/ssrn.6202729", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Ecology, Modeling, Computer Science, Economics, Archaeology, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 38800, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Bisegna, F., Vespasiano, F., Pompei, L., Burattini, C., Belli, E., Bellucci, A. M., Di Vittorio, F., & Blaso, L. (2026). Towards the Decarbonization of Urban Communities: Evaluation of Smart and Green Strategies to Reduce Gas Carbon Emissions. Smart Cities 9(2). https://doi.org/10.3390/smartcities9020026", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38801, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Comolli, L. R., & Fassola, H. (2026). Inter-species feedbacks drive emergent productivity in agroforestry systems - an agent-based analysis. Frontiers in Agronomy 8. https://doi.org/10.3389/fagro.2026.1657465", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Agronomy" + }, + { + "id": 38802, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Laassami, F., Ledmi, A., & Souidi, M.E.H. (2026). CSO: A Novel Crow Swarm Optimization Algorithm for Collaborative Path Planning with Collision Avoidance. Journal of Intelligent and Fuzzy Systems, 1-26. https://doi.org/10.1177/18758967261422625", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Optimization, Computer Science, Mathematics, Collaboration" + }, + { + "id": 38803, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Barker, T. (2025). Fusion Confusion: Sensors, Signals and Swarms. Symposia of the 2025 convention of the UK Society for the Study of Artificial Intelligence and the Simulation of Behavior (AISB), 31-33. ", + "doesnt_really_use_netlogo": true, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 38804, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Beltr\u00e1n-L\u00f3pez, P., P\u00e9rez, M.G., & Nespoli, P. (2025). Cyber Deception: Taxonomy, State of the Art, Frameworks, Trends, and Open Challenges. IEEE Communications Surveys & Tutorials, 28, 1520-1556. 10.1109/COMST.2025.3594788", + "doesnt_really_use_netlogo": true, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Archaeology, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38805, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Ospina, J.P., & S\u00e1nchez, J.F. (2025). A Computational Justice Model for Dynamic ResourceAllocation in Ad Hoc Networks. Complex Systems Informatics and Modeling Quarterly, 43(238), 53-76. https://doi.org/10.7250/csimq.2025-43.04", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computation, Modeling, Economics, Computer Science, Informatics, Mathematics, Physics, Systems Science" + }, + { + "id": 38806, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Essakkat, K., Wu, L., Atallah, S.S., & Khanna, M. (2025, July 27-29). Spatial-Dynamic Adoption of AI Weeding Robots: Insights from A Choice Experiment and an Agent-Based Model [paper presentation]. 2025 AAEA & WAEA Joint Annual Meeting in Denver, CO.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38807, + "sort": null, + "year": 2023, + "is_ccl": false, + "reference": "Neilan, R.M., Reith, C., Anandan, I., Kraeuter, K., Allen, H.N., & Kolber, B.J. (2023). Developing a 3-D computational model of neurons in the central amygdala to understand pharmacological targets for pain. Front. Pain Res. 4. https://doi.org/10.3389/fpain.2023.1183553", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Computer Science, Physics" + }, + { + "id": 38808, + "sort": null, + "year": 2019, + "is_ccl": false, + "reference": "Ding, K., Gilligan, J.M., & Hornberger, G.M. (2019). Avoiding \"day-zero\": A Testbed for Evaluating Integrated Food-energy-water Management in Cape Town, South Africa. Proceedings of the 2019 Winter Simulation Conference (WSC), 866-877, IEEE. 10.1109/WSC40007.2019.9004889", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Food-energy-water Management, Simulation, Conference" + }, + { + "id": 38809, + "sort": null, + "year": 2015, + "is_ccl": false, + "reference": "Gilligan, J.M., Brady, C., Camp, J.V., Nay, J.J., & Sengupta, P. (2015). Participatory simulations of urban flooding for learning and decision support. Proceedings of the 2015 Winter Simulation Conference, 3174-3175, IEEE. 10.1109/WSC.2015.7408456", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Urban Studies, Computer Science, Physics, Miscellaneous" + }, + { + "id": 38810, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Ru\u00edz, N.D.P. (2025). Spatiotemporal Modeling for Wastewater Surveillance and Epidemiology [Doctoral dissertation, University of Twente]. University of Twente, Faculty of Geo-Information Science and Earth Observation (ITC). https://doi.org/10.3990/1.9789036567527", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38811, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "SINGH, N. K., THAKUR, S. S., & KHULLAR, S. (2025). EMOTIONAL CONTAGION MODELLING IN PROTEST MOVEMENTS USING MIXED METHODS. TPM \u2013 Testing, Psychometrics, Methodology in Applied Psychology, 32(S4), 930\u2013935. Retrieved from https://tpmap.org/submission/index.php/tpm/article/view/641", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Emotional contagion modeling \n\nBiology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 38812, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Yuandita, D., Hardiansyah, Mase, L.Z., Amri, K., Supriani, F. (2026). Agent-Based Modeling of Vertical Tsunami Evacuation in EngganoIsland, Indonesia: Route Dynamics, Shelter Capacity, and Behavioral Performance. Journal of the Civil Engineering Forum, 12(2), 170-188. https://doi.org/10.22146/jcef.24204", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38813, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Fogo, G.M., Torres, F.J.T., Speas, R.L., Anzell, A.R., & Sanderson, T.H. (2025). Agent-based modeling of neuronal mitochondrial dynamics using intrinsic variables of individual mitochondria. iScience, 28(5). 10.1016/j.isci.2025.112390 ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Mitochondrial dynamics, Neuroscience" + }, + { + "id": 38814, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Li, J., Wang, J., Wu, J., & Wang, X. (2025). Bacillus subtilis biofilm expansion mediated by the interaction between matrix-producing cells formed \u201cVan Gogh bundles\u201d and other phenotypic cells. Colloids and Surfaces B: Biointerfaces, 251(114611). https://doi.org/10.1016/j.colsurfb.2025.114611", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, biofilm, surface science, matrix, phenotypic cells" + }, + { + "id": 38815, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Tsurushima, A., & Miyano, S. (2026). Resilience in Evacuation Guidance: A Cognitive Agent Approach to System Failures. SN Computer Science 7. https://doi.org/10.1007/s42979-026-04834-8", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Cognitive Agent, Computer Science, System Failures, Network Science" + }, + { + "id": 38816, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Ardiansyah, R., & Pamungkas, K.A. (2025). Analysis Of HIV/AIDS Spread Patterns in Central Java Using Agent-Based Simulation. Digital Nexus Systematic Journal, 1(2). https://doi.org/10.26753/dns.v1i2.1553", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "HIV/AIDS Spread Patterns" + }, + { + "id": 38817, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Kuzma, O. (2026). Modification and Application of Diagrammatic Languages (BPMN, UML) for the Description and Modeling of Biological Systems [Master's thesis, Univerzita Karlova]. Charles University Digital Repository. http://hdl.handle.net/20.500.11956/207147", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Diagrammatic Languages, Computer Science, Archaeology, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38818, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Kim, E., & Cha, H. (2025). Development and Effects of a Simulation-Based Evolution Instruction Program for Middle School Students. Biology Education, 53(4), 557-569. http://dx.doi.org/10.15717/bioedu.2025.53.4.557", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Education" + }, + { + "id": 38819, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Freeman, C. (2026). Rethinking fraud control: Fraud dynamics, effective prevention, and the limits of reactive detection-led strategies. Journal of Economic Criminology 12. https://doi.org/10.1016/j.jeconc.2026.100216", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Fraud control, Prevention, Economics, Criminology, Detection, Economics, Computer Science, Sociology, Physics, Psychology" + }, + { + "id": 38820, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Dressler, G., Robinson, L., & M\u00fcller, B. (2026). Unravelling vicious circles of land use competition and food insecurity in agropastoral rangelands. People and Nature. https://doi.org/10.1002/pan3.70280", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38821, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Sauke, F., Meyer, K. M., Pincebourde, S., & Wiegand, K. (2026). APPLE-POPDYN: An individual-based model linking apple-tree productivity and leaf miner infestation dynamics. Arthropod-Plant Interactions 20(23). https://doi.org/10.1007/s11829-026-10233-w", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 38822, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Kahana, O. (2026). Digital Birders: Exploring the Link between Students\u2019 Eye Tracking\nPatterns and Learning About Complex Systems through Observing an\nAgent-Based Model. [Master's Thesis, University of Haifa]. ProQuest Dissertations & Theses. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 38823, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Ma, X., Yan, J., Gao, P., Li, Q., Yao, X., Li, J., & Wang, W. (2026). Modeling grassland landscape degradation and policy response in the Gannan Plateau: a couple ERI-BRT-ABM framework. Ecological Indicators 185. https://doi.org/10.1016/j.ecolind.2026.114766.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38824, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Ferraciolli, E. C. (2026). Theories of Money and Communities of Practice: A Cross-Disciplinary Investigation on the Nature of Money and the Uses of Monetary Theory. [Doctoral Dissertation, Universidade de Lisboa].", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38825, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Monlezun, A. C., Boone, R. B., Wagner, G., Trainor, N., & Lynn, S. J. (2025). Agent-Based Modeling as a Tool for Ecological Comanagement of Grazing Lands. Rangeland Ecology & Management 99, 88-101. https://doi.org/10.1016/j.rama.2025.01.003", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38826, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Patil, V., & Naik, V. (2025). Use of Agent-based Modeling to Gauge Impact of Lockdown Strategies on Spread of COVID-19 on an Educational Campus. 2025 17th International Conference on COMmunication Systems and NETworks (COMSNETS). Available on IEEE XPlore. DOI: 10.1109/COMSNETS63942.2025.10885590", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38827, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Huo, F. Y., Restrepo, D. J., Manrique, P. D., Woo, G., & Johnson, N. F. (2025). Physics reveals and explains patterns in conflict casualties. Europhysics Letters 151. DOI 10.1209/0295-5075/ade8a1.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Physics" + }, + { + "id": 38828, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "He, Q., & Sumiyoshi, D. (2025). Simulating air-conditioning use in Office Buildings by Modeling the Relationship between Psychological Factors and Occupants' Behavior in Japan. In T. Widstr\u00f6m (Ed.), Proceedings of The 17th ROOMVENT Conference. E3S Web of Conferences 672.\n", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Psychology, Occupants\u2019 Behavior, Modeling, Computer Science, Ecology, Physics, Economics, Japan, Roomvent, Conference" + }, + { + "id": 38829, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Jung, J., & Gulden, T. R. (2025). From inclusion to innovation: using an agent-based simulation to unravel the micro-mechanisms of the macro-level tolerance-innovation link. International Journal of Organization Theory & Behavior 28(3) 343-371. https://doi.org/10.1108/IJOTB-09-2023-0189", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38830, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Zhang, J. (2025). Resilience-Inclusive Capacity Assessment for Railway Networks Under Virtual Coupling via Simulation. Journal of Applied Mathematics. https://doi.org/10.1155/jama/9923804", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38831, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Nwokoye, C.H., Iloka, B.O., Waldron, S., & Ezzeh, P. (2025). Machine Learning Epidemic Predictions Using Agent-based Wireless Sensor Network Models. arXiv, Cornell University, https://doi.org/10.48550/arXiv.2511.15982. ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Miscellaneous" + }, + { + "id": 38832, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Qin, D., & Siyang, L. (2025). Using Agent-Based Modeling to Study the Adaptation and Evolution of Human Emotions and Cognition. Journal of Psychological Science, 48(6), 1314-1332, 10.16719/j.cnki.1671-6981.20250603.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Psychology, Computer Science, Modeling" + }, + { + "id": 38833, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Guo, X., & Hu, W. (2025). Simulation study on the impact of emergency command on earthquake emergency rescue based on agent-based modeling. Journal of Tsinghua University 65(6). ", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38834, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Abas, H. M., Ruzieva, G., Rajesh, D., Matyakubov, M., Sundara Balamurugan, P., & Gurudiwan, P. (2025). Modelling Insect Dispersal in Agricultural Landscapes Using Agent-Based Models (ABM). Natural and Engineering Sciences, 10(2), 305-314. https://doi.org/10.28978/nesciences.1763848", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Agent-Based Models, Agriculture, Modeling" + }, + { + "id": 38835, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Koraman, E., & Erdil, E. (2025). Modeling Hierarchical Power Distance Relationship in Group Decision Making Dynamics Through Agent-Based Modeling. Available at SSRN. http://dx.doi.org/10.2139/ssrn.5723661", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38836, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Lu, P., & Li, Y. (2025). An agent-based model for simulating cooperative behavior in crowd evacuation during toxic gas terrorist attacks. Chaos, Solitons, and Fractals 196. https://doi.org/10.1016/j.chaos.2025.116397", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38837, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Baccino, L. (2026). Media biases and two-sided news markets : audience, advertising, reputation and platform governance. Economics and Finance. Universit\u00e9 C\u00f4te d'Azur, https://theses.hal.science/tel-05545290. ", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Biology, Economics, Computer Science, Ecology, Physics, Chemistry, Social Science, Miscellaneous" + }, + { + "id": 38838, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Mutlut\u00fcrk, M., Badur, B., & Metin, B. (2025). Phishing-Driven Malware in Smes: A Socio-Technical Agent-Based Model of Endpoint Security and Response Policies. SSRN. http://dx.doi.org/10.2139/ssrn.5402207", + "doesnt_really_use_netlogo": false, + "in_press": true, + "subject": "Phishing-Driven Malware, Endpoint Security, Socio-Technical, Agent-Based Model, Response Policies" + }, + { + "id": 38839, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Chi, H., Wang, L., Li, R., Tang, H., Xu, M., Cao, Z., & You, L. (2025). Research on UAV swarm effectiveness evaluation method based on deep learning. Proceedings of the 4th International Symposium on Aerospace Engineering and Systems (ISAES), 93-97, IEEE, 10.1109/ISAES66870.2025.11274275.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Deep Learning, Aerospace Engineering, IEEE" + }, + { + "id": 38840, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Li, R., Wang, Z., Long, T., Tang, H., Xu, M., You, L., & Wang, L. (2025). Evaluation of Contribution Rate of UAV Swarms System Based on Machine Learning. Proceedings of the 4th International Symposium on Aerospace Engineering and Systems (ISAES), 104-109, IEEE, 10.1109/ISAES66870.2025.11274397.", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Machine Learning, Aerospace Engineering, IEEE" + }, + { + "id": 38841, + "sort": null, + "year": 2026, + "is_ccl": false, + "reference": "Ries, B., Guelfi, N., & Sousa, T. (2026). Towards Model Compliance Using Generative Agents: A NetLogo to Sequence Diagrams Experiment. In Proceedings of the 14th International Conference on Model-Based Software and Systems Engineering. SCITEPRESS. https://hdl.handle.net/10993/67998", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Model Compliance, NetLogo, Sequence Diagrams" + }, + { + "id": 38842, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Rahimifar, A., Wiegert, J., Kaniyamattam, K., Tedeschi, L. O. (2025). An agent-based modeling approach for balancing feed efficiency and environmental footprint of growing-finishing pig production systems. Journal of Animal Science 103, 65-66. https://doi.org/10.1093/jas/skaf300.082", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38843, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Su, L., Kong, D., Zhu, K., & Han, J. (2025). Classroom Behavior Analysis from the Perspective of Complexity Science: Functional Logic and Possibility Paths. Modern Educational Technology 35(8), 107-115. DOI: 10.3969/j.issn.1009-8097.2025.08.011", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Complexity Science, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology" + }, + { + "id": 38844, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Ghaitaranpour, A., Mohebbi, M., & Koocheki, A. (2025). An innovative agent-based technique for determination of tortuosity in porous materials - Case study: bread and bread dough. Current Research in Food Science 10. https://doi.org/10.1016/j.crfs.2025.100995", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Research, Technique, Food Science" + }, + { + "id": 38845, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Grando, L., Jaramillo, J. F. G., Leite, J. R. E., Ursini, E. L. (2025). Agent-based simulation of UAV battery recharging for IoT applications: precision agriculture, disaster recovery, and dengue vector control. arXiv:2503.12685", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Economics, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, Miscellaneous" + }, + { + "id": 38846, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Wu, W., Zhang, Y., & Liu, H. (2025). Analyzing Crowd Emotional Contagion in Metro Emergencies Through the Lens of the Weber-Fechner Law: Predictions Based on Computational Techniques Applied to Science. Applied Science 15(3). https://doi.org/10.3390/app15031244", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Computer Science, Science" + }, + { + "id": 38847, + "sort": null, + "year": 2025, + "is_ccl": false, + "reference": "Murphy, K. J., Byrne, A. W., Marples, N., O'Hagan, M. J. H., Kelly, D. J., Quinn, D., Breslin, P., Morera-Pujol, V., Khouri, R. M., Barrett, D., McGrath, G., Ciuti, S. (2025). Wildlife response to land-use change forces encounters between zoonotic disease hosts and farms in agricultural landscapes. Agriculture, Ecosystems, & Environment 386. https://doi.org/10.1016/j.agee.2025.109561", + "doesnt_really_use_netlogo": false, + "in_press": false, + "subject": "Biology, Ecology, Zoology, Agriculture, Computer Science, Economics, Archaeology, Physics, Chemistry, Urban Studies, Social Science" + } +] \ No newline at end of file diff --git a/apps/netlogo/app/utils/exploreReferences.py b/apps/netlogo/app/utils/exploreReferences.py new file mode 100644 index 00000000..e9ba3b20 --- /dev/null +++ b/apps/netlogo/app/utils/exploreReferences.py @@ -0,0 +1,53 @@ +import json +import ollama + +MODEL_NAME = "gemma3:1b" + + +with open("exploreReferences.json", "r", encoding="utf-8") as f: + data = json.load(f) + +count = 0 +for item in data: + + # count = 0 + + reference_text = item.get("reference", "").strip() + + prompt = f""" + You are a classifier. + Based on the following academic reference, + respond with ONLY THESE SUBJECT AREAS AND NOTHING ELSE: Biology, Ecology, Archaeology, Computer Science, Economics, History, Physics, Chemistry, Urban Studies, Social Science, Education, Epidemiology, and Miscellaneous. + Always respond with a list of subject(s) from the list above for each reference, even if the reference has only one subject area. A reference may have multiple subject areas. + Do not include Miscellaneous with a reference if it belongs to another subject area of the list. + A reference should only be classified as Miscellaneous if it does not belong to any of the other subject areas in the list. + + Reference: + {reference_text} + + Respond with only the subject name. + """ + + response = ollama.chat( + model=MODEL_NAME, + messages=[ + {"role": "user", "content": prompt} + ] + ) + + subject = response["message"]["content"].strip() + + + item["subject"] = subject + + count += 1 + if count % 10 == 0: + print(f"Processed {count} references.") + + # print(reference_text) + +# Write updated data back to file +with open("exploreReferences.json", "w", encoding="utf-8") as f: + json.dump(data, f, indent=4) + +print("Finished updating JSON file.") \ No newline at end of file diff --git a/apps/netlogo/app/utils/getReferences.py b/apps/netlogo/app/utils/getReferences.py new file mode 100644 index 00000000..8c30c026 --- /dev/null +++ b/apps/netlogo/app/utils/getReferences.py @@ -0,0 +1,23 @@ +import requests +import json + +# CONFIG +DIRECTUS_URL = "https://backend.netlogo.org" +COLLECTION_NAME = "References" + + +endpoint = f"{DIRECTUS_URL}/items/{COLLECTION_NAME}?limit=-1" + +response = requests.get(endpoint) + +if response.status_code == 200: + data = response.json()["data"] + + + with open("exploreReferences.json", "w", encoding="utf-8") as f: + json.dump(data, f, indent=4) + + print(f"Data saved to exploreReferences.json ({len(data)} items)") +else: + print(f"Error: {response.status_code}") + print(response.text) \ No newline at end of file diff --git a/apps/netlogo/app/utils/queries.ts b/apps/netlogo/app/utils/queries.ts new file mode 100644 index 00000000..1ea9d869 --- /dev/null +++ b/apps/netlogo/app/utils/queries.ts @@ -0,0 +1,299 @@ +import { gql } from "graphql-request"; + +const queries = { + introduction: gql` + query { + introduction { + title + description + } + } + `, + + introSplash: gql` + query GetIntroSplash { + intro_splash { + title + description + learn_more_link + demo_image { + id + } + featured_items { + id + image { + id + } + type + image_description + column_title + column_words { + word + url + } + } + } + } + `, + + whyNetLogo: gql` + query GetWhyNetLogo { + why_netlogo { + id + title + content + icon + order + } + } + `, + + getNetLogo: gql` + query GetGetNetLogo { + get_netlogo { + id + title + content + icon + link + order + } + } + `, + + community: gql` + query GetCommunity { + community { + id + Title + Description + Icon + Link + order + Bordered + } + } + `, + + partners: gql` + query GetPartners { + featured_partners { + id + partner_name + partner_image + } + } + `, + + contacts: gql` + query getContacts { + contact_data { + heading + body + } + } + `, + + mainAnnouncements: gql` + query getAnnouncements { + announcements(sort: ["-date"]) { + title + date + content + } + } + `, + + officialNews: gql` + query getNews { + official_news(sort: ["-date"]) { + id + title + date + body + } + } + `, + + referenceData: gql` + query getReferences { + References(limit: -1) { + year + reference + is_ccl + } + } + `, + + navigationData: gql` + query GetNavigation { + navigation_sections { + name + items { + display_title + url + in_footer + } + } + } + `, + + aboutContent: gql` + query getAbout { + about { + body + } + } + `, + + educatorsContent: gql` + query getEducators { + educators { + body + } + } + `, + + campaignContent: gql` + query getCampaign { + campaign { + body + } + } + `, + + netlogoCon2026Content: gql` + query getNetlogoCon2026 { + netlogo_con_2026 { + body + } + } + `, + + netLogoVersions: gql` + query GetNetLogoVersions { + netlogo_versions { + version + download_links { + platform + download_url + } + } + } + `, + + resourcesData: gql` + query GetResources { + resources { + section_title + section_content + } + } + `, + + mainPageData: gql` + query GetAllData { + introduction { + title + description + } + intro_splash { + title + + description + learn_more_link + featured_items { + id + type + image { + id + } + image_description + word_column_title + column_words { + word + url + } + image_column_title + column_images { + image { + id + } + word + } + } + } + why_netlogo { + title + content + icon { + id + } + } + get_netlogo { + title + content + icon { + id + } + link + button_text + } + community { + title + description + icon { + id + } + link + } + featured_partners { + partner_name + partner_image { + id + } + } + } + `, + + downloadPageData: gql` + query GetDownloadPageData { + netlogo_versions { + version + download_links { + platform + download_url + primary + subplatform + platform_icon { + icon { + id + } + } + } + } + donation_data { + title + text + image { + id + } + url + } + } + `, + donationData: gql` + query GetDonationData { + donation_data { + title + text + image { + id + } + url + } + } + `, +}; + +export default queries; diff --git a/apps/netlogo/nuxt.config.ts b/apps/netlogo/nuxt.config.ts index ad60b465..573d539a 100644 --- a/apps/netlogo/nuxt.config.ts +++ b/apps/netlogo/nuxt.config.ts @@ -7,5 +7,25 @@ export default defineNuxtConfig( enabled: true, }, ssr: true, + runtimeConfig: { + public: { + backendUrl: process.env.PUBLIC_BACKEND_URL || "https://backend.netlogo.org", + }, + }, + app: { + head: { + script: [ + { + src: "https://unpkg.com/bsky-embed/dist/bsky-embed.es.js", + type: "module", + }, + ], + }, + }, + vue: { + compilerOptions: { + isCustomElement: (tag: string) => tag === "bsky-embed", + }, + }, }), ); diff --git a/apps/netlogo/package.json b/apps/netlogo/package.json index 36b659f1..3e17cb7d 100644 --- a/apps/netlogo/package.json +++ b/apps/netlogo/package.json @@ -25,18 +25,6 @@ "turbo:postinstall": "nuxt prepare" }, "dependencies": { - "nuxt": "^4.1.2", - "nuxt-gtag": "4.1.0", - "nuxt-link-checker": "4.3.6", - "nuxt-og-image": "^5.1.12", - "nuxt-svgo": "4.2.6", - "radix-vue": "1.9.17", - "reka-ui": "^2.6.0", - "tailwind-merge": "^3.3.1", - "tailwindcss": "^4.1.18", - "tw-animate-css": "^1.4.0", - "vue": "^3.5.24", - "vue-router": "^4.6.3", "@nuxt/content": "^3.7.1", "@nuxt/eslint": "1.10.0", "@nuxt/fonts": "0.12.1", @@ -49,20 +37,34 @@ "@repo/markdown": "0.0.0", "@repo/netlogo-docs": "0.0.0", "@repo/nuxt-content-assets": "1.5.0", + "@repo/nuxt-core": "0.0.0", "@repo/tailwind-config": "0.0.0", "@repo/template": "0.0.0", "@repo/typescript-config": "0.0.0", "@repo/utils": "0.0.0", "@repo/vue-ui": "1.0.0", - "@repo/nuxt-core": "0.0.0" + "graphql": "^16.10.0", + "graphql-request": "^7.1.2", + "nuxt": "^4.1.2", + "nuxt-gtag": "4.1.0", + "nuxt-link-checker": "4.3.6", + "nuxt-og-image": "^5.1.12", + "nuxt-svgo": "4.2.6", + "radix-vue": "1.9.17", + "reka-ui": "^2.6.0", + "tailwind-merge": "^3.3.1", + "tailwindcss": "^4.1.18", + "tw-animate-css": "^1.4.0", + "vue": "^3.5.24", + "vue-router": "^4.6.3" }, "devDependencies": { "@nuxt/kit": "^4.2.1", "@repo/nuxt-content-assets": "1.5.0", + "eslint": "^9.31.0", + "sass": "^1.93.3", "turbo-meta-utilities": "^1.0.1", "typescript": "^5.4.0", - "zod": "^4.1.12", - "sass": "^1.93.3", - "eslint": "^9.31.0" + "zod": "^4.1.12" } } diff --git a/apps/netlogo/public/favicon.ico b/apps/netlogo/public/favicon.ico index 18993ad9..2fc95425 100644 Binary files a/apps/netlogo/public/favicon.ico and b/apps/netlogo/public/favicon.ico differ diff --git a/apps/nettango/.env b/apps/nettango/.env index 3b0f6f63..843577b5 100644 --- a/apps/nettango/.env +++ b/apps/nettango/.env @@ -1,6 +1,16 @@ +# Enable for Development +NUXT_DEV_TOOLS=true +NUXT_TELEMETRY_DISABLED=true + PROJECT_ROOT="." -PRODUCT_NAME="NetTango" REPO_ROOT=../.. -REPO_URL=https://github.com/NetLogo/Helio.git -REPO_BRANCH=deploy/nettango +PRODUCT_NAME="NetTango" +PRODUCT_DESCRIPTION="Block-based coding environment for NetLogo, the multi-agent programmable modeling environment. Create and share interactive models with a visual programming interface designed for learners of all ages." +PRODUCT_LONG_DESCRIPTION="The official learning resources for NetTango, the block-based coding environment for NetLogo, the multi-agent programmable modeling environment. Explore tutorials, documentation, and guides to get started with NetTango and enhance your modeling skills." +PRODUCT_KEYWORDS="Agent-based modeling, block-based coding, NetLogo, interactive models, visual programming, educational software, multi-agent systems, simulation, learning resources" +PRODUCT_BUILD_DATE=$(date +%Y-%m-%dT%H:%M:%SZ) +PRODUCT_WEBSITE="https://tango.netlogo.org" + +BUILD_REPO="https://github.com/NetLogo/Helio.git" +BUILD_BRANCH="deploy/nettango" diff --git a/apps/nettango/.env.development b/apps/nettango/.env.development deleted file mode 100644 index 271de080..00000000 --- a/apps/nettango/.env.development +++ /dev/null @@ -1,7 +0,0 @@ -# Development environment variables for better HMR -NUXT_DEV_TOOLS=true -NUXT_TELEMETRY_DISABLED=true - -PROJECT_ROOT="." -PRODUCT_NAME="NetTango" -REPO_ROOT=../.. diff --git a/apps/nettango/.env.example b/apps/nettango/.env.example new file mode 100644 index 00000000..b5ebf6ca --- /dev/null +++ b/apps/nettango/.env.example @@ -0,0 +1,16 @@ +# Enable for Development +# NUXT_DEV_TOOLS=true +NUXT_TELEMETRY_DISABLED=true + +PROJECT_ROOT="." +REPO_ROOT=../.. + +PRODUCT_NAME="NetTango" +PRODUCT_DESCRIPTION="Block-based coding environment for NetLogo, the multi-agent programmable modeling environment. Create and share interactive models with a visual programming interface designed for learners of all ages." +PRODUCT_LONG_DESCRIPTION="The official learning resources for NetTango, the block-based coding environment for NetLogo, the multi-agent programmable modeling environment. Explore tutorials, documentation, and guides to get started with NetTango and enhance your modeling skills." +PRODUCT_KEYWORDS="Agent-based modeling, block-based coding, NetLogo, interactive models, visual programming, educational software, multi-agent systems, simulation, learning resources" +PRODUCT_BUILD_DATE=$(date +%Y-%m-%dT%H:%M:%SZ) +PRODUCT_WEBSITE="https://tango.netlogo.org" + +BUILD_REPO="https://github.com/NetLogo/Helio.git" +BUILD_BRANCH="deploy/nettango" diff --git a/apps/nettango/app/assets/website-logo.ts b/apps/nettango/app/assets/website-logo.ts new file mode 100644 index 00000000..b320cc63 --- /dev/null +++ b/apps/nettango/app/assets/website-logo.ts @@ -0,0 +1,2 @@ +import WebsiteLogo from "@repo/vue-ui/assets/brands/NetTango-Logo.svg"; +export { WebsiteLogo }; diff --git a/apps/nettango/nuxt.config.ts b/apps/nettango/nuxt.config.ts index 3f9ee5f4..979f904a 100644 --- a/apps/nettango/nuxt.config.ts +++ b/apps/nettango/nuxt.config.ts @@ -1,71 +1,21 @@ -import tailwindcss from "@tailwindcss/vite"; -import { vueUIAssets, vueUiSrc, vueUiStyles } from "./turbo"; - // https://nuxt.com/docs/api/configuration/nuxt-config export default defineNuxtConfig({ - compatibilityDate: "2025-07-15", + extends: ["@repo/nuxt-core/nuxt.config.ts"], app: { rootId: "__nettango", }, - devtools: { enabled: true }, ssr: true, // prettier-ignore modules: [ - "@nuxtjs/sitemap", // Adds sitemap.xml - "@repo/nuxt-content-assets", // Local asset loading based on relative paths in Markdowns - "@nuxt/ui", // Reka-UI library for Nuxt - "@nuxt/icon", // Optimized icons with iconify - "@nuxt/fonts", // Font loading and optimization "@nuxt/content", // Markdown "@nuxt/hints", // Development hints - "@nuxt/eslint", // Linter "@nuxt/image", // Image optimization - "@nuxt/ui", // UI components - "nuxt-svgo", // SVG loader from file - "nuxt-gtag", // Google - "nuxt-og-image", // Dynamic Open Graph image generation - "nuxt-link-checker", // Link checking post-build - "@nuxtjs/google-fonts", // Google Fonts ], - site: { url: "https://nettangoweb.org", name: "NetTango" }, - css: ["~/assets/styles/main.scss", "~/assets/styles/tailwind.css", vueUiStyles], - - colorMode: { - preference: "light", - }, - gtag: {}, - imports: { - autoImport: true, - transform: { - exclude: [/\bnode_modules\b/, /\b\.git\b/], - }, - }, - - icon: { - mode: "css", - cssLayer: "base", - customCollections: [ - { - prefix: "logo", - dir: vueUIAssets, - normalizeIconName: true, - }, - ], - }, - components: [ - { - path: vueUiSrc, - global: true, - pattern: "**/*.vue", - ignore: ["**/examples/*.vue", "**/tests/*.vue"], - pathPrefix: false, - watch: true, - }, { path: "~/components", global: true, @@ -76,58 +26,19 @@ export default defineNuxtConfig({ }, ], - svgo: { - customComponent: "SvgImport", - }, - vite: { - plugins: [tailwindcss()], optimizeDeps: { - include: ["@repo/vue-ui"], exclude: ["@nuxt/hints"], }, }, - contentAssets: { - imageSize: "style attrs", - contentExtensions: "md", - debug: true, - overrideStaticDimensions: false, - }, - - ogImage: { - defaults: { - extension: "jpeg", - sharp: { - quality: 70, - }, - }, - }, - linkChecker: { skipInspections: ["no-baseless", "no-underscores", "trailing-slash"], - report: { - html: process.env["CHECK"] === "true", - }, - }, - - googleFonts: { - families: { - Inter: [400, 500, 600, 700], - "Fira+Code": [400, 500, 600, 700], - Nunito: [400, 600, 700], - "Maven Pro": [400, 500, 600, 700], - }, }, nitro: { - static: true, - serveStatic: true, baseURL: "/", prerender: { - autoSubfolderIndex: false, - crawlLinks: true, - concurrency: 1, routes: ["/"], }, }, diff --git a/apps/nettango/package.json b/apps/nettango/package.json index 88f16029..3c8149e6 100644 --- a/apps/nettango/package.json +++ b/apps/nettango/package.json @@ -39,6 +39,7 @@ "@repo/typescript-config": "0.0.0", "@repo/utils": "0.0.0", "@repo/vue-ui": "1.0.0", + "@repo/nuxt-core": "0.0.0", "@vueuse/core": "^14.1.0", "better-sqlite3": "^12.4.1", "eslint": "^9.31.0", diff --git a/package.json b/package.json index 13bc3d39..d494ae31 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,7 @@ "devDependencies": { "prettier": "^3.6.2", "prettier-plugin-tailwindcss": "^0.6.11", - "turbo": "^2.5.5", + "turbo": "^2.8.20", "typescript": "^5.4.0", "vitest": "^4.0.16" }, @@ -36,14 +36,14 @@ "npm-run-parallel": "^0.6.0" }, "resolutions": { - "vue": "^3.5.24", - "@vue/runtime-core": "^3.5.24", - "@vue/server-renderer": "^3.5.24", - "@vue/compiler-sfc": "^3.5.24", - "@vue/compiler-core": "^3.5.24", - "@vue/compiler-dom": "^3.5.24", - "@vue/reactivity": "^3.5.24", - "@vue/shared": "^3.5.24", + "vue": "3.5.24", + "@vue/runtime-core": "3.5.24", + "@vue/server-renderer": "3.5.24", + "@vue/compiler-sfc": "3.5.24", + "@vue/compiler-core": "3.5.24", + "@vue/compiler-dom": "3.5.24", + "@vue/reactivity": "3.5.24", + "@vue/shared": "3.5.24", "reka-ui": "^2.6.0", "typescript": "^5.4.0", "nuxt": "4.1.2", @@ -77,4 +77,4 @@ "@vueuse/core": "^14.1.0", "chokidar": "^3.6.0" } -} \ No newline at end of file +} diff --git a/packages/common-data/turbo.json b/packages/common-data/turbo.json index 6ff23c1d..5ad7451c 100644 --- a/packages/common-data/turbo.json +++ b/packages/common-data/turbo.json @@ -1,5 +1,5 @@ { - "$schema": "https://turborepo.com/schema.json", + "$schema": "https://v2-8-20.turborepo.dev/schema.json", "extends": [ "//" ], diff --git a/packages/markdown/turbo.json b/packages/markdown/turbo.json index ae889f00..2953e103 100644 --- a/packages/markdown/turbo.json +++ b/packages/markdown/turbo.json @@ -1,5 +1,5 @@ { - "$schema": "https://turborepo.com/schema.json", + "$schema": "https://v2-8-20.turborepo.dev/schema.json", "extends": [ "//" ], diff --git a/packages/netlogo-docs/turbo.json b/packages/netlogo-docs/turbo.json index e03cbaf5..e919bd74 100644 --- a/packages/netlogo-docs/turbo.json +++ b/packages/netlogo-docs/turbo.json @@ -1,5 +1,5 @@ { - "$schema": "https://turborepo.com/schema.json", + "$schema": "https://v2-8-20.turborepo.dev/schema.json", "extends": [ "//" ], diff --git a/packages/nuxt-core/.env b/packages/nuxt-core/.env index b7a62211..f091bd38 100644 --- a/packages/nuxt-core/.env +++ b/packages/nuxt-core/.env @@ -1,10 +1,12 @@ -PROJECT_ROOT="." +NUXT_TELEMETRY_DISABLED=true -PRODUCT_NAME="NetLogo" +PRODUCT_NAME="NetLogo Core" +PRODUCT_DESCRIPTION="The NetLogo Core Nuxt Layer" +PRODUCT_KEYWORDS="netlogo,nuxt,layer,core" +PRODUCT_VERSION= +PRODUCT_DISPLAY_NAME= +PRODUCT_BUILD_DATE=$(date +%Y-%m-%dT%H:%M:%SZ) PRODUCT_WEBSITE="https://www.netlogo.org" -REPO_ROOT=../.. -EXTENSIONS_DIR="$REPO_ROOT/external/extensions" - -BUILD_REPO="https://github.com/NetLogo/Helio.git" -BUILD_BRANCH="deploy/netlogo" +# Enable for Development +# NUXT_DEV_TOOLS=true diff --git a/packages/nuxt-core/.env.development b/packages/nuxt-core/.env.development deleted file mode 100644 index e26ed85f..00000000 --- a/packages/nuxt-core/.env.development +++ /dev/null @@ -1,11 +0,0 @@ -# Development environment variables for better HMR -NUXT_DEV_TOOLS=true -NUXT_TELEMETRY_DISABLED=true - -PROJECT_ROOT="." - -PRODUCT_NAME="NetLogo" -PRODUCT_WEBSITE="https://learn.netlogo.org" - -REPO_ROOT=../.. -EXTENSIONS_DIR="$REPO_ROOT/external/extensions" diff --git a/packages/nuxt-core/.env.example b/packages/nuxt-core/.env.example new file mode 100644 index 00000000..f091bd38 --- /dev/null +++ b/packages/nuxt-core/.env.example @@ -0,0 +1,12 @@ +NUXT_TELEMETRY_DISABLED=true + +PRODUCT_NAME="NetLogo Core" +PRODUCT_DESCRIPTION="The NetLogo Core Nuxt Layer" +PRODUCT_KEYWORDS="netlogo,nuxt,layer,core" +PRODUCT_VERSION= +PRODUCT_DISPLAY_NAME= +PRODUCT_BUILD_DATE=$(date +%Y-%m-%dT%H:%M:%SZ) +PRODUCT_WEBSITE="https://www.netlogo.org" + +# Enable for Development +# NUXT_DEV_TOOLS=true diff --git a/packages/nuxt-core/app/assets/styles/main.scss b/packages/nuxt-core/app/assets/styles/main.scss index c68670f2..32d5c041 100644 --- a/packages/nuxt-core/app/assets/styles/main.scss +++ b/packages/nuxt-core/app/assets/styles/main.scss @@ -1,14 +1,14 @@ -@use 'sass:meta'; +@use "sass:meta"; @layer theme, base, components, website, utilities; @layer utilities { - @include meta.load-css('@repo/tailwind-config/scss/utilities.scss'); + @include meta.load-css("@repo/tailwind-config/scss/utilities.scss"); } @layer website { - @include meta.load-css('@repo/tailwind-config/scss/normalize.scss'); - @include meta.load-css('@repo/tailwind-config/scss/docs-theme.scss'); + @include meta.load-css("@repo/tailwind-config/scss/normalize.scss"); + @include meta.load-css("@repo/tailwind-config/scss/netlogo-theme.scss"); } -@include meta.load-css('@repo/vue-ui/styles.scss'); +@include meta.load-css("@repo/vue-ui/styles.scss"); diff --git a/packages/nuxt-core/app/assets/website-meta.json b/packages/nuxt-core/app/assets/website-meta.json deleted file mode 100644 index 1bf013d5..00000000 --- a/packages/nuxt-core/app/assets/website-meta.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "name": "NetLogo", - "fullName": "NetLogo: Agent-Based Modeling Environment", - "logo": "@repo/vue-ui/assets/brands/NetLogoLearnGuide.svg?url&no-inline", - "description": "Agent-Based Modeling Environment for Simulating Natural and Social Phenomena.", - "longDescription": "NetLogo is a multi-agent programmable modeling environment used for simulating natural and social phenomena. It is widely used in education, research, and industry to create complex models with ease. Explore NetLogo's features, download the software, and access extensive documentation and resources to get started with agent-based modeling.", - "url": "https://www.netlogo.org", - "keywords": [ - "NetLogo", - "NetLogo Web", - "NetLogo 3D", - "HubNet Web", - "Turtle Universe", - "Behavior Search", - "Extensions", - "Modeling Environment", - "Learning", - "Modeling", - "Programming", - "Agent-based Modeling" - ] -} \ No newline at end of file diff --git a/packages/nuxt-core/app/components/ClientFooter.vue b/packages/nuxt-core/app/components/ClientFooter.vue index 4ba93372..2f2c526b 100644 --- a/packages/nuxt-core/app/components/ClientFooter.vue +++ b/packages/nuxt-core/app/components/ClientFooter.vue @@ -17,7 +17,6 @@ + + diff --git a/apps/learn/app/components/mdc/MDCButton.vue b/packages/nuxt-core/layers/mdc/app/components/MDCButton.global.vue similarity index 100% rename from apps/learn/app/components/mdc/MDCButton.vue rename to packages/nuxt-core/layers/mdc/app/components/MDCButton.global.vue diff --git a/apps/learn/app/components/mdc/MDCContainer.vue b/packages/nuxt-core/layers/mdc/app/components/MDCContainer.global.vue similarity index 50% rename from apps/learn/app/components/mdc/MDCContainer.vue rename to packages/nuxt-core/layers/mdc/app/components/MDCContainer.global.vue index 3d3362c4..f7c84b6c 100644 --- a/apps/learn/app/components/mdc/MDCContainer.vue +++ b/packages/nuxt-core/layers/mdc/app/components/MDCContainer.global.vue @@ -1,5 +1,5 @@ diff --git a/apps/learn/app/components/mdc/MDCErrorBanner.vue b/packages/nuxt-core/layers/mdc/app/components/MDCErrorBanner.global.vue similarity index 100% rename from apps/learn/app/components/mdc/MDCErrorBanner.vue rename to packages/nuxt-core/layers/mdc/app/components/MDCErrorBanner.global.vue diff --git a/apps/learn/app/components/mdc/MDCIcon.vue b/packages/nuxt-core/layers/mdc/app/components/MDCIcon.global.vue similarity index 100% rename from apps/learn/app/components/mdc/MDCIcon.vue rename to packages/nuxt-core/layers/mdc/app/components/MDCIcon.global.vue diff --git a/packages/nuxt-core/layers/mdc/app/components/MDCUnstylizedHeading.global.vue b/packages/nuxt-core/layers/mdc/app/components/MDCUnstylizedHeading.global.vue new file mode 100644 index 00000000..c27e9d82 --- /dev/null +++ b/packages/nuxt-core/layers/mdc/app/components/MDCUnstylizedHeading.global.vue @@ -0,0 +1,13 @@ + + + diff --git a/apps/learn/app/components/mdc/NetLogoCommand.vue b/packages/nuxt-core/layers/mdc/app/components/NetLogoCommand.global.vue similarity index 100% rename from apps/learn/app/components/mdc/NetLogoCommand.vue rename to packages/nuxt-core/layers/mdc/app/components/NetLogoCommand.global.vue diff --git a/packages/nuxt-core/layers/mdc/nuxt.config.ts b/packages/nuxt-core/layers/mdc/nuxt.config.ts new file mode 100644 index 00000000..d899f9d7 --- /dev/null +++ b/packages/nuxt-core/layers/mdc/nuxt.config.ts @@ -0,0 +1,13 @@ +export default defineNuxtConfig({ + mdc: { + components: { + map: { + Icon: "MDCIcon", + Container: "MDCContainer", + ErrorBanner: "MDCErrorBanner", + Button: "MDCButton", + NetlogoCommand: "NetLogoCommand", + }, + }, + }, +}); diff --git a/apps/learn/app/components/mdc/MDCPrimitive.vue b/packages/nuxt-core/layers/primitive-tooltip/app/components/MDCPrimitive.global.vue similarity index 100% rename from apps/learn/app/components/mdc/MDCPrimitive.vue rename to packages/nuxt-core/layers/primitive-tooltip/app/components/MDCPrimitive.global.vue diff --git a/apps/learn/app/components/PrimTooltip.vue b/packages/nuxt-core/layers/primitive-tooltip/app/components/PrimTooltip.vue similarity index 66% rename from apps/learn/app/components/PrimTooltip.vue rename to packages/nuxt-core/layers/primitive-tooltip/app/components/PrimTooltip.vue index 89b6bc90..62531cfb 100644 --- a/apps/learn/app/components/PrimTooltip.vue +++ b/packages/nuxt-core/layers/primitive-tooltip/app/components/PrimTooltip.vue @@ -25,21 +25,23 @@ - - {{ props.name }} + + {{ + props.name + }} diff --git a/packages/nuxt-core/layers/primitive-tooltip/app/composables/usePrimitive.ts b/packages/nuxt-core/layers/primitive-tooltip/app/composables/usePrimitive.ts new file mode 100644 index 00000000..4dec325f --- /dev/null +++ b/packages/nuxt-core/layers/primitive-tooltip/app/composables/usePrimitive.ts @@ -0,0 +1,86 @@ +import { Primitives } from "@repo/common-data"; + +type Primitive = ReturnType | null; +let primitives: Primitives | undefined = undefined; + +function convertRelativeMarkdownLinksToAbsolute(markdown: string, baseUrl: string): string { + const markdownLinkRegex = /\[([^\]]+)\]\(([^)]+)\)/g; + const convertedMarkdown = markdown.replace(markdownLinkRegex, (match, text, url) => { + if (!url.startsWith("http://") && !url.startsWith("https://")) { + const absoluteUrl = new URL(url, baseUrl).href; + return `[${text}](${absoluteUrl})`; + } + return match; + }); + + return convertedMarkdown; +} + +function parsePrimitive(prim: Primitive): Primitive { + if (!prim) return null; + if (prim.description) { + prim.description = convertRelativeMarkdownLinksToAbsolute( + prim.description, + "https://docs.netlogo.org/", + ); + } + + return prim; +} + +export const usePrimitive = async ({ name }: { name: string }) => { + if (import.meta.dev) { + const { data } = await useAsyncData("primitives", () => queryCollection("primitives").all(), { + deep: false, + server: true, + dedupe: "defer", + }); + + if (data.value) { + primitives = Primitives.getInstance(data.value[0]?.primitives ?? []); + } + + const prim = parsePrimitive(primitives?.getPrimByName(name)); + + return { + primitive: computed(() => prim), + pending: computed(() => typeof primitives === "undefined" && !primitives), + error: computed(() => null), + }; + } + + const { data, pending, error } = await useAsyncData( + `primitive-${name}`, + () => queryCollection("primitives").all(), + { + deep: false, + server: true, + dedupe: "defer", + transform: async (allPrimitivesData) => { + const primitives = Primitives.getInstance(allPrimitivesData[0]?.primitives ?? []); + const prim = parsePrimitive(primitives.getPrimByName(name)); + + return prim ?? null; + }, + }, + ); + + const primitive = computed(() => { + if (!data.value) return null; + return data.value; + }); + + return { + primitive, + pending, + error, + }; +}; + +export const useNoPrimitive = () => { + return { + primitive: computed(() => null), + pending: computed(() => false), + error: computed(() => null), + }; +}; diff --git a/packages/nuxt-core/layers/primitive-tooltip/content.config.ts b/packages/nuxt-core/layers/primitive-tooltip/content.config.ts new file mode 100644 index 00000000..a2540f65 --- /dev/null +++ b/packages/nuxt-core/layers/primitive-tooltip/content.config.ts @@ -0,0 +1,20 @@ +import { defineCollection, defineContentConfig } from "@nuxt/content"; +import { PrimitiveSchema } from "@repo/common-data"; +import { fileURLToPath } from "url"; +import z from "zod"; + +const PrimitiveDataSchema = z.object({ + primitives: z.array(PrimitiveSchema), +}); + +const primitivesCollection = defineCollection({ + type: "data", + source: fileURLToPath(import.meta.resolve("@repo/common-data/datasets/primitives.yaml")), + schema: PrimitiveDataSchema, +}); + +export default defineContentConfig({ + collections: { + primitives: primitivesCollection, + }, +}); diff --git a/packages/nuxt-core/layers/primitive-tooltip/nuxt.config.ts b/packages/nuxt-core/layers/primitive-tooltip/nuxt.config.ts new file mode 100644 index 00000000..fa6c7c6f --- /dev/null +++ b/packages/nuxt-core/layers/primitive-tooltip/nuxt.config.ts @@ -0,0 +1,9 @@ +export default defineNuxtConfig({ + mdc: { + components: { + map: { + primitive: "MDCPrimitive", + }, + }, + }, +}); diff --git a/apps/docs/lib/docs/markdown.config.ts b/packages/nuxt-core/markdown.config.ts similarity index 56% rename from apps/docs/lib/docs/markdown.config.ts rename to packages/nuxt-core/markdown.config.ts index 62b34ebb..e19a0e74 100644 --- a/apps/docs/lib/docs/markdown.config.ts +++ b/packages/nuxt-core/markdown.config.ts @@ -1,6 +1,6 @@ -import type { MarkdownPlugin, ModuleOptions } from '@nuxt/content'; +import type { MarkdownPlugin, ModuleOptions } from "@nuxt/content"; -import { isNonEmptyString } from '@repo/utils/std/string'; +import { isNonEmptyString } from "@repo/utils/std/string"; import { getDefaultRehypePluginsObject, @@ -8,30 +8,32 @@ import { type Hast, NetLogoRemarkWikiLink, Utilities, -} from '@repo/markdown'; -import { slugifyOptions, toSlug } from '@repo/netlogo-docs/helpers'; +} from "@repo/markdown"; +import { slugifyOptions, toSlug } from "@repo/netlogo-docs/helpers"; -import rehypeAutolinkHeadings, { type Options as RehypeAutolinkHeadingsOptions } from 'rehype-autolink-headings'; -import remarkToc from 'remark-toc'; +import rehypeAutolinkHeadings, { + type Options as RehypeAutolinkHeadingsOptions, +} from "rehype-autolink-headings"; +import remarkToc from "remark-toc"; const { hasNoChild, isNodeElement } = Utilities; const tocConfig = { maxDepth: 2, - heading: 'Table of Contents', + heading: "Table of Contents", } as const; class WikiLinkWrapper { private _internalType: - | 'absolute' - | 'absolute-anchor' - | 'relative' - | 'relative-anchor' - | 'dictionary' - | 'external' - | 'external-anchor' - | 'image' - | 'unknown' = 'unknown'; + | "absolute" + | "absolute-anchor" + | "relative" + | "relative-anchor" + | "dictionary" + | "external" + | "external-anchor" + | "image" + | "unknown" = "unknown"; constructor( public permalink: string, public linkType: NetLogoRemarkWikiLink.LinkType, @@ -43,45 +45,45 @@ class WikiLinkWrapper { private _setInternalType() { const hasAnchor = isNonEmptyString(this.anchor); - const isRelative = this.permalink.startsWith('./'); - const isAbsoluteWithoutSlashes = !this.permalink.includes('/') && !isRelative && hasAnchor; - const isAbsolute = this.permalink.startsWith('/') || isAbsoluteWithoutSlashes; - if (['wikiLink', 'missingLink'].includes(this.linkType)) { + const isRelative = this.permalink.startsWith("./"); + const isAbsoluteWithoutSlashes = !this.permalink.includes("/") && !isRelative && hasAnchor; + const isAbsolute = this.permalink.startsWith("/") || isAbsoluteWithoutSlashes; + if (["wikiLink", "missingLink"].includes(this.linkType)) { // Absolute Anchor: /Page#Anchor, /Page# or Page#Anchor <== Common. // Absolute: /Page (not Page) // Relative Anchor: ./Page#Anchor or ./Page# <== Not common. Only one relative case supported. // Relative: ./Page // Dictionary: Page (no slashes) or Page/ <== Most common. if (isAbsolute && hasAnchor) { - this._internalType = 'absolute-anchor'; + this._internalType = "absolute-anchor"; } else if (isAbsolute) { - this._internalType = 'absolute'; + this._internalType = "absolute"; } else if (isRelative && hasAnchor) { - this._internalType = 'relative-anchor'; + this._internalType = "relative-anchor"; } else if (isRelative) { - this._internalType = 'relative'; + this._internalType = "relative"; } else { - this._internalType = 'dictionary'; + this._internalType = "dictionary"; } - } else if (this.linkType === 'externalLink' && isNonEmptyString(this.anchor)) { - this._internalType = 'external-anchor'; - } else if (this.linkType === 'externalLink') { - this._internalType = 'external'; - } else if (this.linkType === 'imageLink') { - this._internalType = 'image'; + } else if (this.linkType === "externalLink" && isNonEmptyString(this.anchor)) { + this._internalType = "external-anchor"; + } else if (this.linkType === "externalLink") { + this._internalType = "external"; + } else if (this.linkType === "imageLink") { + this._internalType = "image"; } } private _normalize() { - if (this._internalType.startsWith('absolute') && this.permalink.startsWith('/')) { + if (this._internalType.startsWith("absolute") && this.permalink.startsWith("/")) { this.permalink = this.permalink.slice(1); } - if (this._internalType.startsWith('relative') && this.permalink.startsWith('./')) { + if (this._internalType.startsWith("relative") && this.permalink.startsWith("./")) { this.permalink = this.permalink.slice(2); } - if (isNonEmptyString(this.anchor) && this.anchor!.startsWith('#')) { + if (isNonEmptyString(this.anchor) && this.anchor!.startsWith("#")) { this.anchor = this.anchor!.slice(1); } } @@ -95,21 +97,21 @@ class WikiLinkWrapper { // - Omar I (Oct 23 2025) toString(): string { switch (this._internalType) { - case 'absolute-anchor': + case "absolute-anchor": return `/${this.permalink}#${encodeURIComponent(toSlug(this.anchor as string))}`; - case 'absolute': + case "absolute": return `/${this.permalink}`; - case 'relative-anchor': + case "relative-anchor": return `${this.permalink}#${encodeURIComponent(toSlug(this.anchor as string))}`; - case 'relative': + case "relative": return `${this.permalink}`; - case 'dictionary': + case "dictionary": return `/dictionary#${encodeURIComponent(toSlug(this.permalink))}`; - case 'external-anchor': + case "external-anchor": return `${this.permalink}#${encodeURIComponent(this.anchor as string)}`; - case 'external': + case "external": return `${this.permalink}`; - case 'image': + case "image": return `images/${this.permalink}`; default: return `#${encodeURIComponent(toSlug(this.permalink))}`; @@ -118,17 +120,21 @@ class WikiLinkWrapper { } const wikiLinkConfig: NetLogoRemarkWikiLink.Options = { - hrefTemplate: (permalink: string, linkType: NetLogoRemarkWikiLink.LinkType, anchor?: string | null) => { + hrefTemplate: ( + permalink: string, + linkType: NetLogoRemarkWikiLink.LinkType, + anchor?: string | null, + ) => { const wrapper = new WikiLinkWrapper(permalink, linkType, anchor); return wrapper.toString(); }, htmlOptions: { wikiLink: { - parentNode: { tagName: 'code', properties: { class: 'netlogo-command' } }, - target: '_self', + parentNode: { tagName: "primitive" }, + target: "_self", rel: undefined, titleTemplate: (permalink: string, displayText?: string) => { - if (typeof displayText === 'string') { + if (typeof displayText === "string") { return displayText; } return permalink; @@ -136,9 +142,9 @@ const wikiLinkConfig: NetLogoRemarkWikiLink.Options = { }, }, classNames: { - wikiLink: 'netlogo-wiki-link', - missingLink: 'missing-wiki-link', - imageLink: 'netlogo-image', + wikiLink: "netlogo-wiki-link", + missingLink: "missing-wiki-link", + imageLink: "netlogo-image", }, integration: { encode: (permalink: string) => permalink, @@ -146,17 +152,17 @@ const wikiLinkConfig: NetLogoRemarkWikiLink.Options = { }, greedyMatch: { maxIterations: 15, - consumableTypes: ['text', 'html', 'link'], + consumableTypes: ["text", "html", "link"], accessor: (node: { type: string }) => { switch (node.type) { - case 'text': + case "text": return (node as Hast.Text).value; - case 'html': - return (node as { type: 'html'; value: string }).value; - case 'link': - return (node as { type: 'link'; url: string }).url; + case "html": + return (node as { type: "html"; value: string }).value; + case "link": + return (node as { type: "link"; url: string }).url; default: - return ''; + return ""; } }, }, @@ -164,28 +170,31 @@ const wikiLinkConfig: NetLogoRemarkWikiLink.Options = { const autoLinkHeadingsConfig: RehypeAutolinkHeadingsOptions = { headingProperties: { - className: ['section-heading'], + className: ["section-heading"], }, properties: { - className: ['section-anchor'], + className: ["section-anchor"], }, - behavior: 'wrap', - test: hasNoChild((node) => isNodeElement(node) && node.tagName === 'a', { recursive: true }), + behavior: "wrap", + test: hasNoChild((node) => isNodeElement(node) && node.tagName === "a", { recursive: true }), }; -const buildOptions: Partial['build'] = { +const buildOptions: Partial["build"] = { markdown: { remarkPlugins: { ...(getDefaultRemarkPluginsObject() as MarkdownPluginCollection), - 'remark-toc': { instance: remarkToc, options: tocConfig, src: 'remark-toc' }, - '@repo/markdown/plugins/wikilink': { instance: NetLogoRemarkWikiLink.plugin, options: wikiLinkConfig }, + "remark-toc": { instance: remarkToc, options: tocConfig, src: "remark-toc" }, + "@repo/markdown/plugins/wikilink": { + instance: NetLogoRemarkWikiLink.plugin, + options: wikiLinkConfig, + }, }, rehypePlugins: { ...(getDefaultRehypePluginsObject() as MarkdownPluginCollection), - 'rehype-autolink-headings': { + "rehype-autolink-headings": { instance: rehypeAutolinkHeadings, options: autoLinkHeadingsConfig, - src: 'rehype-autolink-headings', + src: "rehype-autolink-headings", }, }, toc: { @@ -199,7 +208,10 @@ const buildOptions: Partial['build'] = { }; const externalImports: Array = Array.from( - new Set([...Object.keys(getDefaultRemarkPluginsObject()), ...Object.keys(getDefaultRehypePluginsObject())]), + new Set([ + ...Object.keys(getDefaultRemarkPluginsObject()), + ...Object.keys(getDefaultRehypePluginsObject()), + ]), ); type MarkdownPluginCollection = Record; diff --git a/packages/nuxt-core/nuxt.config.ts b/packages/nuxt-core/nuxt.config.ts index 5d644805..3b921a8a 100644 --- a/packages/nuxt-core/nuxt.config.ts +++ b/packages/nuxt-core/nuxt.config.ts @@ -1,18 +1,21 @@ -// https://nuxt.com/docs/api/configuration/nuxt-config +import { getRoutes } from "@repo/netlogo-docs/helpers"; import tailwindcss from "@tailwindcss/vite"; +import { websiteConfigSchema } from "./runtime.config.schema"; import { vueUiIconPack, vueUiSrc, vueUiStyles } from "./turbo"; -import { getRoutes } from "@repo/netlogo-docs/helpers"; - type NuxtBaseConfig = Parameters[0]; +const website = websiteConfigSchema.parse(process.env); + export const nuxtBaseConfig: NuxtBaseConfig = { + extends: ["./layers/mdc", "./layers/primitive-tooltip"], + compatibilityDate: "2025-07-15", - devtools: { enabled: true }, app: { rootId: "__netlogo", }, modules: [ + "@nuxt/devtools", // Nuxt Devtools for enhanced development experience "@nuxtjs/sitemap", // Adds sitemap.xml "@repo/nuxt-content-assets", // Local asset loading based on relative paths in Markdowns "@nuxt/content", // Query, navigation, search, and rendering of Markdown files @@ -27,6 +30,8 @@ export const nuxtBaseConfig: NuxtBaseConfig = { "@nuxtjs/google-fonts", // Google Fonts ], + site: { url: website.productWebsite, name: website.productName }, + colorMode: { preference: "light", }, @@ -41,6 +46,8 @@ export const nuxtBaseConfig: NuxtBaseConfig = { }, $development: { + devtools: { enabled: true }, + experimental: { payloadExtraction: false, }, @@ -76,6 +83,8 @@ export const nuxtBaseConfig: NuxtBaseConfig = { }, ], + ignore: [".build/", ".latest/", ".static/", ".preview/"], + svgo: { customComponent: "SvgImport", }, @@ -124,6 +133,9 @@ export const nuxtBaseConfig: NuxtBaseConfig = { mdc: { components: { prose: false, + map: { + a: "ProseA", + }, }, }, @@ -134,13 +146,23 @@ export const nuxtBaseConfig: NuxtBaseConfig = { ogImage: { defaults: { - extension: "png", + extension: "jpeg", + sharp: { + quality: 70, + }, }, }, linkChecker: { excludeLinks: ["/*.pdf"], - skipInspections: ["no-baseless", "no-underscores", "trailing-slash"], + skipInspections: [ + "no-baseless", + "no-underscores", + "trailing-slash", + "absolute-site-urls", + "no-uppercase-chars", + "no-non-ascii-chars", + ], report: { html: process.env["CHECK"] === "true", }, @@ -154,9 +176,12 @@ export const nuxtBaseConfig: NuxtBaseConfig = { console.info( `[repo] Using primitives.yaml from ${import.meta.resolve("@repo/common-data/datasets/primitives.yaml")}`, ); + }, + }, - const noAutogen = process.env["NO_AUTOGEN"] === "true"; - if (noAutogen === true) return; + runtimeConfig: { + public: { + website, }, }, diff --git a/packages/nuxt-core/package.json b/packages/nuxt-core/package.json index 81a75462..489ad133 100644 --- a/packages/nuxt-core/package.json +++ b/packages/nuxt-core/package.json @@ -5,7 +5,14 @@ "private": true, "exports": { "./nuxt.config.ts": "./nuxt.config.ts", - "./nuxt/tsconfig.json": "./.nuxt/tsconfig.json" + "./nuxt/tsconfig.json": "./.nuxt/tsconfig.json", + "./runtime.config.schema": "./runtime.config.schema.ts", + "./markdown.config": "./markdown.config.ts", + "./content.config": "./content.config.ts", + "./app/**/*": [ + "./app/**/*.ts", + "./app/**/*.vue" + ] }, "scripts": { "turbo:postinstall": "nuxt prepare" diff --git a/packages/nuxt-core/runtime.config.schema.ts b/packages/nuxt-core/runtime.config.schema.ts new file mode 100644 index 00000000..c90b70e7 --- /dev/null +++ b/packages/nuxt-core/runtime.config.schema.ts @@ -0,0 +1,28 @@ +import { z } from "zod"; + +export const websiteConfigSchema = z + .object({ + PRODUCT_NAME: z.string(), + PRODUCT_VERSION: z.string().default("latest"), + PRODUCT_WEBSITE: z.url(), + PRODUCT_DISPLAY_NAME: z.string().optional(), + PRODUCT_BUILD_DATE: z.string().optional(), + PRODUCT_DESCRIPTION: z.string().optional(), + PRODUCT_LONG_DESCRIPTION: z.string().optional(), + PRODUCT_KEYWORDS: z.string().optional(), + NO_AUTOGEN: z.string().optional(), + }) + .transform((data) => ({ + productName: data.PRODUCT_NAME, + productVersion: data.PRODUCT_VERSION, + productWebsite: data.PRODUCT_WEBSITE, + productDisplayName: data.PRODUCT_DISPLAY_NAME ?? data.PRODUCT_NAME, + productFullName: [data.PRODUCT_NAME, data.PRODUCT_DISPLAY_NAME].filter(Boolean).join(" "), + productBuildDate: data.PRODUCT_BUILD_DATE ? data.PRODUCT_BUILD_DATE : new Date().toISOString(), + productDescription: data.PRODUCT_DESCRIPTION ?? "", + productLongDescription: data.PRODUCT_LONG_DESCRIPTION ?? "", + productKeywords: data.PRODUCT_KEYWORDS + ? data.PRODUCT_KEYWORDS.split(",").map((k) => k.trim()) + : [], + docsBuilderNoAutogen: ["true", "1", "yes"].includes(data.NO_AUTOGEN?.toLowerCase() ?? ""), + })); diff --git a/packages/tailwind-config/scss/docs-mixins.scss b/packages/tailwind-config/scss/docs-mixins.scss new file mode 100644 index 00000000..7cf80ced --- /dev/null +++ b/packages/tailwind-config/scss/docs-mixins.scss @@ -0,0 +1,337 @@ +@mixin default { + /* Lists */ + ul, + ol, + menu { + list-style: none; + } +} + +@mixin headings { + h1, + h2, + h3 { + --heading-inline-padding: var(--space-xl); + } + + /* Headings */ + h1 { + font-size: var(--h1-size); + font-weight: 700; + letter-spacing: 0.00625rem; + line-height: var(--line-height-heading); + + background-color: var(--primary-heading-background-color); + color: var(--primary-heading-text-color); + + --padding-block: calc(0.8 * var(--space-lg)); + padding: var(--padding-block) var(--heading-inline-padding); + } + + h1, + h1 a { + scroll-margin-top: calc( + var(--scroll-margin) + var(--h1-size) + 2 * var(--padding-block) + ); /* 100% of the h1 height + padding */ + } + + h2 { + font-size: var(--h2-size); + font-weight: 700; + letter-spacing: 0.00625rem; + line-height: var(--line-height-heading); + + background-color: var(--primary-heading-background-color); + color: var(--primary-heading-text-color); + + --padding-block: calc(0.7 * var(--space-lg)); + padding: var(--padding-block) var(--heading-inline-padding); + } + + h2, + h2 a { + scroll-margin-top: calc( + var(--scroll-margin) + var(--h2-size) + 2 * var(--padding-block) + ); /* 100% of the h2 height + padding */ + } + + h3 { + font-size: var(--h3-size); + background-color: var(--secondary-heading-background-color); + color: var(--secondary-heading-text-color); + + --padding-block: calc(0.6 * var(--space-lg)); + padding: var(--padding-block) var(--heading-inline-padding); + font-weight: 700; + } + + h3, + h3 a, + .dict_entry { + /* special case for dictionary entries requires redefining padding */ + --padding-block: calc(0.6 * var(--space-lg)); + scroll-margin-top: calc( + var(--scroll-margin) + var(--h3-size) + 2 * var(--padding-block) + var(--ui-header-height) + ); /* 100% of the h3 height + padding */ + } + + h4 { + color: var(--color-black); + font-size: var(--h4-size); + font-weight: 500; + } + + h4, + h4 a { + scroll-margin-top: calc( + var(--scroll-margin) + var(--h4-size) + ); /* 100% of the h4 height + padding */ + } + + h5 { + font-size: var(--h5-size); + font-weight: 600; + color: #707290; + } + + h5, + h5 a { + scroll-margin-top: calc( + var(--scroll-margin) + var(--h5-size) + ); /* 100% of the h5 height + padding */ + } + + h1 a:focus-visible, + h2 a:focus-visible, + h3 a:focus-visible, + h4 a:focus-visible, + h5 a:focus-visible { + outline: none; + text-decoration: underline; + } + + h1:has(a:hover), + h2:has(a:hover) { + background-color: var(--primary-heading-background-color-hover); + color: var(--primary-heading-text-color); + } + + h3:has(a:hover) { + background-color: var(--secondary-heading-background-color-hover); + color: var(--secondary-heading-text-color); + } + + h4:has(a:hover), + h5:has(a:hover), + h6:has(a:hover) { + /* Placeholder */ + filter: brightness(0.9); /* Darken link on hover */ + } + + h1 code a, + h2 code a { + color: var(--primary-heading-text-color); + } + + h1 code a:hover, + h2 code a:hover { + color: var(--primary-heading-text-color); + text-decoration: underline; + } + + h1 code a:visited, + h2 code a:visited { + color: var(--primary-heading-text-color); + text-decoration: dotted; + } +} + +@mixin toc { + /* Common */ + div.toc ul, + div.toc ul a { + color: var(--color-link); + text-decoration: none; + } + + div.toc ul a:hover, + div.toc ul a:focus { + color: var(--color-link-hover); + border: none; + outline: none; + } + + /* Level 1 List */ + div.toc > ul { + /* level 1 */ + font-weight: 800; /* Bold for top-level links */ + font-size: 1.3rem; /* Larger size for top-level links */ + line-height: 2rem; /* Increased line height for readability */ + list-style: decimal; + } + + /* Second Level List */ + div.toc > ul ul { + max-width: 100ch; /* Limit the width */ + list-style: decimal; + } + + div.toc > ul li ul { + margin-top: var(--space-md); /* Has some space before the sublist */ + } + + div.toc > ul ul { + /* level 2 */ + list-style-type: disc; /* Use disc bullets for sublists */ + margin-bottom: var(--block-bottom); /* Space after the sublist */ + } + + div.toc > ul ul li, + div.toc > ul ul li a { + /* level 2 */ + font-weight: 400; /* Normal weight for sublist items */ + font-size: 1rem; /* Normal size for sublist items */ + } +} + +@mixin prose { + .prose { + margin-block: var(--space-lg); + } + + .contained-prose-lg { + padding: 0 var(--space-lg); + max-width: var(--max-width-ch); + line-height: var(--line-height); + } + + .contained-prose-xl { + padding: 0 var(--space-xl); + max-width: var(--max-width-ch); + line-height: var(--line-height); + } + + .prose > p, + .prose > ul, + .prose > dl, + .prose > ol, + .prose > table, + .prose > img, + .prose > h4, + .prose > h5, + .prose > div, + .prose > video, + .prose > audio, + .prose > figure, + .prose > figure > figcaption, + .prose > button { + padding: 0 var(--space-xl); + max-width: var(--max-width-ch); + } + + // Table Specific Configuration + .prose > table { + margin: 0 var(--space-xl) var(--space-lg) var(--space-xl); + } + + .prose > div.table-container, + .prose > table:not(.table-container table) { + margin-inline: var(--space-xl); + } + + .prose > pre, + .prose > blockquote, + .prose div.blockquote { + margin: var(--space-lg) var(--space-xl); + padding: var(--space-md); + } + + .prose blockquote, + .prose div.blockquote { + max-width: calc(min(var(--max-width-ch), 100%) - 2 * (var(--space-xl))); + } + .prose blockquote p, + .prose div.blockquote p { + width: min(100%, calc(var(--max-width-ch) - 2 * (var(--space-xl)))); + } + + .prose blockquote > *:first-child:last-child { + margin-bottom: 0; + } + + .prose li pre { + padding: 0; + } + + // Images + .prose img, + .prose video, + .prose audio { + max-width: 100%; + height: auto; + display: block; + margin: 1rem auto; + } + + .prose img.screenshot { + display: inherit; + margin: 1em auto; + } + + // Prose lists + .prose ol { + list-style: decimal; + } + + .prose ul, + menu { + list-style: disc; + } + + .prose ul ul { + list-style: circle; + } + + // Variants + + .prose-tight { + --space-xl: 0.5rem; + --space-lg: 0.3rem; + --space-md: 0; + --space-sm: 0; + } + + .prose-medium { + --space-xl: 3rem; + --space-lg: 1.5rem; + --space-md: 0.7rem; + --space-sm: 0.55rem; + + @media (max-width: 1024px) { + --space-xl: 2rem; + --space-lg: 1.5rem; + --space-md: 1rem; + --space-sm: 0.75rem; + } + } + + .prose-text-medium { + --max-width-ch: min(90%, 100ch); + + --h1-size: 2.3rem; + --h2-size: 1.8rem; + --h3-size: 1.55rem; + --h4-size: 1.35rem; + --h5-size: 1.05rem; + --h6-size: 0.9rem; + + @media (max-width: 1024px) { + --max-width-ch: 150ch; + } + } + + .prose-margin-tight { + --block-top: 0.5rem; + --block-bottom: 0.5rem; + } +} diff --git a/packages/tailwind-config/scss/docs-theme.scss b/packages/tailwind-config/scss/docs-theme.scss index 2bb7eb4d..611900d4 100644 --- a/packages/tailwind-config/scss/docs-theme.scss +++ b/packages/tailwind-config/scss/docs-theme.scss @@ -1,517 +1,26 @@ /* ===================================================================== Theming ========================================================================== */ +@use "netlogo-mixins.scss" as netlogo; +@use "docs-mixins.scss" as docs; +@include docs.default; +@include netlogo.default; +@include netlogo.table; +@include docs.headings; +@include docs.toc; +@include docs.prose; + +/* Docs-specific layouting */ div { scroll-margin-top: var(--scroll-margin); } -/* Headings */ -h1 { - font-size: var(--h1-size); - font-weight: 700; - letter-spacing: 0.00625rem; - line-height: var(--line-height-heading); - - background-color: var(--primary-heading-background-color); - color: var(--primary-heading-text-color); - - --padding-block: calc(0.8 * var(--space-lg)); - padding: var(--padding-block) var(--space-xl); -} - -h1, -h1 a { - scroll-margin-top: calc( - var(--scroll-margin) + var(--h1-size) + 2 * var(--padding-block) - ); /* 100% of the h1 height + padding */ -} - -h2 { - font-size: var(--h2-size); - font-weight: 700; - letter-spacing: 0.00625rem; - line-height: var(--line-height-heading); - - background-color: var(--primary-heading-background-color); - color: var(--primary-heading-text-color); - - --padding-block: calc(0.7 * var(--space-lg)); - padding: var(--padding-block) var(--space-xl); -} - -h2, -h2 a { - scroll-margin-top: calc( - var(--scroll-margin) + var(--h2-size) + 2 * var(--padding-block) - ); /* 100% of the h2 height + padding */ -} - -h3 { - font-size: var(--h3-size); - background-color: var(--secondary-heading-background-color); - color: var(--secondary-heading-text-color); - - --padding-block: calc(0.6 * var(--space-lg)); - padding: var(--padding-block) var(--space-xl); - font-weight: 700; -} - -h3, -h3 a, -.dict_entry { - /* special case for dictionary entries requires redefining padding */ - --padding-block: calc(0.6 * var(--space-lg)); - scroll-margin-top: calc( - var(--scroll-margin) + var(--h3-size) + 2 * var(--padding-block) + var(--ui-header-height) - ); /* 100% of the h3 height + padding */ -} - -h4 { - color: var(--color-black); - font-size: var(--h4-size); - font-weight: 500; -} - -h4, -h4 a { - scroll-margin-top: calc( - var(--scroll-margin) + var(--h4-size) - ); /* 100% of the h4 height + padding */ -} - -h5 { - font-size: var(--h5-size); - font-weight: 600; - color: #707290; -} - -h5, -h5 a { - scroll-margin-top: calc( - var(--scroll-margin) + var(--h5-size) - ); /* 100% of the h5 height + padding */ -} - -h1 a:focus-visible, -h2 a:focus-visible, -h3 a:focus-visible, -h4 a:focus-visible, -h5 a:focus-visible { - outline: none; - text-decoration: underline; -} - -h1:has(a:hover), -h2:has(a:hover) { - background-color: var(--primary-heading-background-color-hover); - color: var(--primary-heading-text-color); -} - -h3:has(a:hover) { - background-color: var(--secondary-heading-background-color-hover); - color: var(--secondary-heading-text-color); -} - -h4:has(a:hover), -h5:has(a:hover), -h6:has(a:hover) { - /* Placeholder */ - filter: brightness(0.9); /* Darken link on hover */ -} - -h1 code a, -h2 code a { - color: var(--primary-heading-text-color); -} - -h1 code a:hover, -h2 code a:hover { - color: var(--primary-heading-text-color); - text-decoration: underline; -} - -h1 code a:visited, -h2 code a:visited { - color: var(--primary-heading-text-color); - text-decoration: dotted; -} - -/* Top-level Indentation */ -.prose { - margin-block: var(--space-lg); -} - body { max-width: 100vw; overflow-x: hidden; } -.contained-prose-lg { - padding: 0 var(--space-lg); - max-width: var(--max-width-ch); - line-height: var(--line-height); -} - -.contained-prose-xl { - padding: 0 var(--space-xl); - max-width: var(--max-width-ch); - line-height: var(--line-height); -} - -.prose > p, -.prose > ul, -.prose > dl, -.prose > ol, -.prose > table, -.prose > img, -.prose > h4, -.prose > h5, -.prose > div, -.prose > video, -.prose > audio, -.prose > figure, -.prose > figure > figcaption, -.prose > button { - padding: 0 var(--space-xl); - max-width: var(--max-width-ch); -} - -.prose > pre, -.prose > blockquote, -.prose div.blockquote { - margin: var(--space-lg) var(--space-xl); - padding: var(--space-md); -} - -.prose blockquote, -.prose div.blockquote { - max-width: calc(min(var(--max-width-ch), 100%) - 2 * (var(--space-xl))); -} -.prose blockquote p, -.prose div.blockquote p { - width: min(100%, calc(var(--max-width-ch) - 2 * (var(--space-xl)))); -} - -.prose blockquote > *:first-child:last-child { - margin-bottom: 0; -} - -.prose li pre { - padding: 0; -} - -p.question { - font-style: italic; - font-weight: bold; - margin-left: var(--space-sm) !important; - margin-bottom: var(--space-sm); -} - -/* Pre/Code */ -pre { - overflow: auto; - padding: var(--space-sm) var(--space-md); - font-size: 0.9rem; - line-height: var(--line-height-code); - background-color: var(--color-background-overlay); -} - -p code, -li code, -table code, -a.code { - padding: calc(0.3 * var(--space-xxs)) var(--space-xxs); - font-size: 0.9rem; - border-radius: var(--radius-md); - line-height: var(--line-height-code); - background-color: var(--color-background-overlay); - font-family: var(--font-mono); -} - -li pre { - margin-top: var(--space-md); -} - -/* HR */ -hr { - color: var(--netlogo-black); - height: 0.0625rem; /* 1px */ - border: none; - background-color: var(--color-grey-accent); -} - -/* Images */ -.prose img, -.prose video, -.prose audio { - max-width: 100%; - height: auto; - display: block; - margin: 1rem auto; -} - -.prose img.screenshot { - display: inherit; - margin: 1em auto; -} - -/* Lists when made of links only */ -ul.no-bullets { - list-style-type: none; - list-style-position: outside; -} - -/* Table of Contents - ========================================================================== */ - -/* Common */ -div.toc ul, -div.toc ul a { - color: var(--color-link); - text-decoration: none; -} - -div.toc ul a:hover, -div.toc ul a:focus { - color: var(--color-link-hover); - border: none; - outline: none; -} - -/* Level 1 List */ -div.toc > ul { - /* level 1 */ - font-weight: 800; /* Bold for top-level links */ - font-size: 1.3rem; /* Larger size for top-level links */ - line-height: 2rem; /* Increased line height for readability */ - list-style: decimal; -} - -/* Second Level List */ -div.toc > ul ul { - max-width: 100ch; /* Limit the width */ - list-style: decimal; -} - -div.toc > ul li ul { - margin-top: var(--space-md); /* Has some space before the sublist */ -} - -div.toc > ul ul { - /* level 2 */ - list-style-type: disc; /* Use disc bullets for sublists */ - margin-bottom: var(--block-bottom); /* Space after the sublist */ -} - -div.toc > ul ul li, -div.toc > ul ul li a { - /* level 2 */ - font-weight: 400; /* Normal weight for sublist items */ - font-size: 1rem; /* Normal size for sublist items */ -} - -/* Blockquotes */ -blockquote, -div.blockquote, -.highlight { - border-left: 0.4rem solid var(--color-primary); - background: var(--color-background-overlay); - border-radius: var(--radius-md); - padding: var(--space-sm) var(--space-md); - margin: var(--space-md) 0; - box-shadow: var(--shadow-md); - width: min(100%, min(max(85vw, 30ch), var(--max-width-ch))); - font-family: var(--font-sans); - font-size: 1rem; - color: var(--color-black); -} - -blockquote p:last-child, -div.blockquote p:last-child, -.highlight p:last-child { - margin-bottom: 0; -} - -.highlight-warning { - border-left-color: var(--color-warning); -} - -.highlight-success { - border-left-color: var(--color-success); -} - -.highlight-error { - border-left-color: var(--color-error); -} - -/* ------------------------------------------------------------------ - NetLogo “command list” table ------------------------------------------------------------------- */ -table { - width: 100%; - overflow: auto; - - border-collapse: collapse; - /* 1 px outline that matches the header colour */ - font-family: var(--font-sans); - line-height: var(--line-height); - margin: 0 var(--space-xl) var(--space-lg) var(--space-xl); - - --table-background: rgb(30, 30, 30); - --table-border-color: rgb(40, 50, 80); -} - -/* Workaround because max-width does not work on table */ -div.table-container table { - margin: 0; - padding: 0; -} - -div.table-container, -table:not(.table-container table) { - display: block; - padding: 0; - margin-inline: var(--space-xl); - margin-bottom: var(--block-bottom); - max-width: min(calc(var(--max-width-ch) - 2 * (var(--space-xl))), 100%) !important; - overflow-x: auto; /* Allow horizontal scrolling */ -} - -@media (max-width: 1214px) { - div.table-container, - table:not(.table-container table) { - max-width: min( - 100vw - 2 * (var(--space-xl)), - calc(var(--max-width-ch) - 2 * (var(--space-md))) - ) !important; - } -} - -/* --- HEADER ROW -------------------------------------------------- */ -table thead { - width: 100%; -} -table thead th, -table th { - background: var(--table-background); - color: var(--color-white); - font-weight: 600; - text-align: left; - padding: var(--space-xs) var(--space-md); - border-bottom: 2px solid var(--table-border-color); -} - -/* --- BODY CELLS --------------------------------------------------- */ -table td { - padding: var(--space-md) var(--space-md); - vertical-align: top; -} - -table td, -table th { - border-right: 1px solid var(--table-border-color); -} - -table td:first-child, -table th:first-child { - border-left: 1px solid var(--table-border-color); /* Add left border to first column */ -} - -table th { - border-top: 1px solid var(--table-border-color); /* Add top border to header */ -} - -table tr td { - border-top: 1px solid var(--table-border-color); /* Add bottom border to last row */ - border-bottom: 1px solid var(--table-border-color); /* Add bottom border to last row */ -} - -/* command-name column */ -table td:first-child { - width: 11rem; /* fixed width for alignment */ - font-weight: 600; - white-space: nowrap; -} - -/* description column links */ -table a { - color: var(--color-link); - text-decoration: none; -} -table a:hover { - text-decoration: underline; -} - -/* zebra-striping */ -table tbody tr:nth-child(even) td { - background: #f5f6f8; -} -table tbody tr:nth-child(odd) td { - background: #ffffff; -} - -table thead th code { - background-color: #161616; -} - -/* optional: subtle hover highlight for the entire row */ -@media (hover: hover) { - table tbody tr:hover td { - background: var(--color-background-overlay); - } -} - -/* External links */ -span.external-link { - font-size: 0.7rem; - color: var(--color-link); - text-decoration: none; - vertical-align: top; - font-weight: bold; -} - -// Links - -.landing a, -a:has(code):not(h3 > a), -code a, -a.code, -a.modern-anchor, -a:not(h1 a):not(h2 a):not(h3 a):not(h4 a):not(h5 a):not(h6 a) { - text-decoration: none; - color: var(--color-link); - font-weight: 600; -} - -.landing a:hover, -a:has(code:hover), -code a:hover, -a.code:hover, -a.modern-anchor:hover, -a:not(h1 a):not(h2 a):not(h3 a):not(h4 a):not(h5 a):not(h6 a):hover { - color: var(--color-link-hover); -} - -ul, -ol, -menu { - list-style: none; -} - -.prose ol { - list-style: decimal; -} - -.prose ul, -menu { - list-style: disc; -} - -.prose ul ul { - list-style: circle; -} - // Special cases for dictionary div.dict_entry > h3 { display: flex; @@ -601,47 +110,6 @@ span.prim_example span.since p { display: inline; } -.prose-tight { - --space-xl: 0.5rem; - --space-lg: 0.3rem; - --space-md: 0; - --space-sm: 0; -} - -.prose-medium { - --space-xl: 3rem; - --space-lg: 1.5rem; - --space-md: 0.7rem; - --space-sm: 0.55rem; - - @media (max-width: 1024px) { - --space-xl: 2rem; - --space-lg: 1.5rem; - --space-md: 1rem; - --space-sm: 0.75rem; - } -} - -.prose-text-medium { - --max-width-ch: min(90%, 100ch); - - --h1-size: 2.3rem; - --h2-size: 1.8rem; - --h3-size: 1.55rem; - --h4-size: 1.35rem; - --h5-size: 1.05rem; - --h6-size: 0.9rem; - - @media (max-width: 1024px) { - --max-width-ch: 150ch; - } -} - -.prose-margin-tight { - --block-top: 0.5rem; - --block-bottom: 0.5rem; -} - @media (max-width: 1214px) { div.dict_entry > :not(:first-child) { margin-inline: var(--space-lg); diff --git a/packages/tailwind-config/scss/netlogo-mixins.scss b/packages/tailwind-config/scss/netlogo-mixins.scss new file mode 100644 index 00000000..ce083b53 --- /dev/null +++ b/packages/tailwind-config/scss/netlogo-mixins.scss @@ -0,0 +1,254 @@ +@mixin default { + /* HR */ + hr { + color: var(--netlogo-black); + height: 0.0625rem; /* 1px */ + border: none; + background-color: var(--color-grey-accent); + } + + /* Links */ + .landing a, + a:has(code):not(h3 > a), + code a, + a.code, + a.modern-anchor, + a:not(h1 a):not(h2 a):not(h3 a):not(h4 a):not(h5 a):not(h6 a) { + text-decoration: none; + color: var(--color-link); + font-weight: 600; + } + + .landing a:hover, + a:has(code:hover), + code a:hover, + a.code:hover, + a.modern-anchor:hover, + a:not(h1 a):not(h2 a):not(h3 a):not(h4 a):not(h5 a):not(h6 a):hover { + color: var(--color-link-hover); + } + + /* External links */ + span.external-link { + font-size: 0.7rem; + color: var(--color-link); + text-decoration: none; + vertical-align: top; + font-weight: bold; + } + + /* Pre/Code */ + p ~ pre { + margin-top: var(--space-md); + } + + pre { + overflow: auto; + padding-block: var(--space-sm); + font-size: 0.9rem; + line-height: var(--line-height-code); + background-color: var(--color-background-overlay); + } + + p code, + li code, + table code, + a.code { + padding: calc(0.3 * var(--space-xxs)) var(--space-xxs); + font-size: 0.9rem; + border-radius: var(--radius-md); + line-height: var(--line-height-code); + background-color: var(--color-background-overlay); + font-family: var(--font-mono); + } + + li pre { + margin-top: var(--space-md); + } + + pre { + overflow: auto; + padding: var(--space-sm) var(--space-md); + } + + a.code, + li code, + p code, + pre, + table code { + background-color: var(--color-background-overlay); + font-size: 0.9rem; + line-height: var(--line-height-code); + } + + a.code, + li code, + p code, + table code { + border-radius: var(--radius-md); + font-family: var(--font-mono); + padding: calc(var(--space-xxs) * 0.3) var(--space-xxs); + } + + /* Question */ + p.question { + font-style: italic; + font-weight: bold; + margin-left: var(--space-sm) !important; + margin-bottom: var(--space-sm); + } + + /* Blockquotes */ + blockquote, + div.blockquote, + .highlight { + border-left: 0.4rem solid var(--color-primary); + background: var(--color-background-overlay); + border-radius: var(--radius-md); + padding: var(--space-sm) var(--space-md); + margin: var(--space-md) 0; + box-shadow: var(--shadow-md); + width: min(100%, min(max(85vw, 30ch), var(--max-width-ch))); + font-family: var(--font-sans); + font-size: 1rem; + color: var(--color-black); + } + + blockquote p:last-child, + div.blockquote p:last-child, + .highlight p:last-child { + margin-bottom: 0; + } + + .highlight-warning { + border-left-color: var(--color-warning); + } + + .highlight-success { + border-left-color: var(--color-success); + } + + .highlight-error { + border-left-color: var(--color-error); + } + + // Lists + ul.no-bullets { + list-style-type: none; + list-style-position: outside; + } +} + +@mixin table { + table { + width: 100%; + overflow: auto; + + border-collapse: collapse; + /* 1 px outline that matches the header colour */ + font-family: var(--font-sans); + line-height: var(--line-height); + + --table-background: rgb(30, 30, 30); + --table-border-color: rgb(40, 50, 80); + } + + /* Workaround because max-width does not work on table */ + div.table-container table { + margin: 0; + padding: 0; + } + + div.table-container, + table:not(.table-container table) { + display: block; + padding: 0; + margin-bottom: var(--block-bottom); + max-width: min(calc(var(--max-width-ch) - 2 * (var(--space-xl))), 100%) !important; + overflow-x: auto; /* Allow horizontal scrolling */ + } + + @media (max-width: 1214px) { + div.table-container, + table:not(.table-container table) { + max-width: min( + 100vw - 2 * (var(--space-xl)), + calc(var(--max-width-ch) - 2 * (var(--space-md))) + ) !important; + } + } + + /* --- HEADER ROW -------------------------------------------------- */ + table thead { + width: 100%; + } + table thead th, + table th { + background: var(--table-background); + color: var(--color-white); + font-weight: 600; + text-align: left; + padding: var(--space-xs) var(--space-md); + border-bottom: 2px solid var(--table-border-color); + } + + /* --- BODY CELLS --------------------------------------------------- */ + table td { + padding: var(--space-md) var(--space-md); + vertical-align: top; + } + + table td, + table th { + border-right: 1px solid var(--table-border-color); + } + + table td:first-child, + table th:first-child { + border-left: 1px solid var(--table-border-color); /* Add left border to first column */ + } + + table th { + border-top: 1px solid var(--table-border-color); /* Add top border to header */ + } + + table tr td { + border-top: 1px solid var(--table-border-color); /* Add bottom border to last row */ + border-bottom: 1px solid var(--table-border-color); /* Add bottom border to last row */ + } + + /* command-name column */ + table td:first-child { + width: 11rem; /* fixed width for alignment */ + font-weight: 600; + white-space: nowrap; + } + + /* description column links */ + table a { + color: var(--color-link); + text-decoration: none; + } + table a:hover { + text-decoration: underline; + } + + /* zebra-striping */ + table tbody tr:nth-child(even) td { + background: #f5f6f8; + } + table tbody tr:nth-child(odd) td { + background: #ffffff; + } + + table thead th code { + background-color: #161616; + } + + /* optional: subtle hover highlight for the entire row */ + @media (hover: hover) { + table tbody tr:hover td { + background: var(--color-background-overlay); + } + } +} diff --git a/packages/tailwind-config/scss/netlogo-theme.scss b/packages/tailwind-config/scss/netlogo-theme.scss new file mode 100644 index 00000000..d2ca5428 --- /dev/null +++ b/packages/tailwind-config/scss/netlogo-theme.scss @@ -0,0 +1,14 @@ +@use "netlogo-mixins.scss" as netlogo; +@use "docs-mixins.scss" as docs; + +@include netlogo.default; +@include netlogo.table; + +.docs { + & { + @include docs.default; + @include docs.headings; + @include docs.toc; + @include docs.prose; + } +} diff --git a/packages/template/src/engines.ts b/packages/template/src/engines.ts index 5a804509..b9ec8fad 100644 --- a/packages/template/src/engines.ts +++ b/packages/template/src/engines.ts @@ -4,10 +4,10 @@ import path from "path"; import Handlebars from "handlebars"; import mustache from "mustache"; +import { convertPath } from "@repo/utils/std/path"; + import { RenderError } from "./errors.js"; import { getFileExtension } from "./utils.js"; - -import { convertPath } from "@repo/utils/std/path"; abstract class TemplateEngine { public abstract registerPartial(key: string, content: string): void; public abstract render(content: string, variables: Record): string; diff --git a/packages/template/turbo.json b/packages/template/turbo.json index 61304a76..599d67b4 100644 --- a/packages/template/turbo.json +++ b/packages/template/turbo.json @@ -1,5 +1,5 @@ { - "$schema": "https://turborepo.com/schema.json", + "$schema": "https://v2-8-20.turborepo.dev/schema.json", "extends": [ "//" ], diff --git a/packages/vue-ui/assets/brands/NetLogoOrgLogo.svg b/packages/vue-ui/assets/brands/NetLogoOrgLogo.svg new file mode 100644 index 00000000..ec1ab9ac --- /dev/null +++ b/packages/vue-ui/assets/brands/NetLogoOrgLogo.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/packages/vue-ui/assets/brands/NetlogoIcon.svg b/packages/vue-ui/assets/brands/NetlogoIcon.svg new file mode 100644 index 00000000..a6861e44 --- /dev/null +++ b/packages/vue-ui/assets/brands/NetlogoIcon.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/packages/vue-ui/assets/brands/intro-turtles.svg b/packages/vue-ui/assets/brands/intro-turtles.svg new file mode 100644 index 00000000..1b6c43b1 --- /dev/null +++ b/packages/vue-ui/assets/brands/intro-turtles.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/vue-ui/assets/brands/logo-text.svg b/packages/vue-ui/assets/brands/logo-text.svg new file mode 100644 index 00000000..1e33867c --- /dev/null +++ b/packages/vue-ui/assets/brands/logo-text.svg @@ -0,0 +1,4 @@ + + + + diff --git a/packages/vue-ui/src/components/nuxt/mdc/ProseA.vue b/packages/vue-ui/src/components/nuxt/mdc/ProseA.vue index 347d9838..66222fdd 100644 --- a/packages/vue-ui/src/components/nuxt/mdc/ProseA.vue +++ b/packages/vue-ui/src/components/nuxt/mdc/ProseA.vue @@ -5,21 +5,30 @@ diff --git a/packages/vue-ui/tsconfig.json b/packages/vue-ui/tsconfig.json index f0bc3030..0d97a68f 100644 --- a/packages/vue-ui/tsconfig.json +++ b/packages/vue-ui/tsconfig.json @@ -5,10 +5,9 @@ "declaration": true, "emitDeclarationOnly": true, "outDir": "./dist", - "baseUrl": ".", "paths": { + "@repo/vue-ui": ["./src"], "@repo/vue-ui/*": ["./src/*"], - "@repo/utils/*": ["../utils/src/*"], "nitropack/types": ["../../node_modules/nitropack/types"], "nitropack/runtime": ["../../node_modules/nitropack/runtime"], "nitropack": ["../../node_modules/nitropack"], @@ -81,11 +80,11 @@ "noEmit": true, "lib": ["ESNext", "dom", "dom.iterable", "webworker"], "jsxImportSource": "vue", - "moduleResolution": "node", + "moduleResolution": "bundler", "useDefineForClassFields": true, "noImplicitThis": true, "allowSyntheticDefaultImports": true }, "include": ["src/**/*", "**/*.d.ts", "../nuxt-core/.nuxt/nuxt.d.ts"], - "exclude": ["node_modules", "dist"] + "exclude": ["node_modules", "dist", "../nuxt-core/app/**/*", "../nuxt-core/layers/**/*"] } diff --git a/packages/vue-ui/turbo.json b/packages/vue-ui/turbo.json index e03cbaf5..e919bd74 100644 --- a/packages/vue-ui/turbo.json +++ b/packages/vue-ui/turbo.json @@ -1,5 +1,5 @@ { - "$schema": "https://turborepo.com/schema.json", + "$schema": "https://v2-8-20.turborepo.dev/schema.json", "extends": [ "//" ], diff --git a/turbo.json b/turbo.json index 85c71583..98b3dd8e 100644 --- a/turbo.json +++ b/turbo.json @@ -1,5 +1,5 @@ { - "$schema": "https://turborepo.com/schema.json", + "$schema": "https://v2-8-20.turborepo.dev/schema.json", "ui": "tui", "concurrency": "15", "globalDependencies": [ diff --git a/yarn.lock b/yarn.lock index 77663b6e..52e3520f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -233,13 +233,6 @@ dependencies: "@babel/types" "^7.28.5" -"@babel/parser@^7.29.0": - version "7.29.0" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.29.0.tgz#669ef345add7d057e92b7ed15f0bac07611831b6" - integrity sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww== - dependencies: - "@babel/types" "^7.29.0" - "@babel/plugin-syntax-async-generators@^7.8.4": version "7.8.4" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" @@ -413,14 +406,6 @@ "@babel/helper-string-parser" "^7.27.1" "@babel/helper-validator-identifier" "^7.28.5" -"@babel/types@^7.29.0": - version "7.29.0" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.29.0.tgz#9f5b1e838c446e72cf3cd4b918152b8c605e37c7" - integrity sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A== - dependencies: - "@babel/helper-string-parser" "^7.27.1" - "@babel/helper-validator-identifier" "^7.28.5" - "@bcoe/v8-coverage@^0.2.3": version "0.2.3" resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" @@ -1345,6 +1330,11 @@ "@floating-ui/utils" "^0.2.10" vue-demi ">=0.13.0" +"@graphql-typed-document-node/core@^3.2.0": + version "3.2.0" + resolved "https://registry.yarnpkg.com/@graphql-typed-document-node/core/-/core-3.2.0.tgz#5f3d96ec6b2354ad6d8a28bf216a1d97b5426861" + integrity sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ== + "@humanfs/core@^0.19.1": version "0.19.1" resolved "https://registry.yarnpkg.com/@humanfs/core/-/core-0.19.1.tgz#17c55ca7d426733fe3c561906b8173c336b40a77" @@ -4651,6 +4641,36 @@ resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.4.tgz#0b92dcc0cc1c81f6f306a381f28e31b1a56536e9" integrity sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA== +"@turbo/darwin-64@2.8.20": + version "2.8.20" + resolved "https://registry.yarnpkg.com/@turbo/darwin-64/-/darwin-64-2.8.20.tgz#6ebc903fbfe31db85f67b84af69e84822765cbf4" + integrity sha512-FQ9EX1xMU5nbwjxXxM3yU88AQQ6Sqc6S44exPRroMcx9XZHqqppl5ymJF0Ig/z3nvQNwDmz1Gsnvxubo+nXWjQ== + +"@turbo/darwin-arm64@2.8.20": + version "2.8.20" + resolved "https://registry.yarnpkg.com/@turbo/darwin-arm64/-/darwin-arm64-2.8.20.tgz#f02fdd818bfe610240c1a60865eeb9ca338160f5" + integrity sha512-Gpyh9ATFGThD6/s9L95YWY54cizg/VRWl2B67h0yofG8BpHf67DFAh9nuJVKG7bY0+SBJDAo5cMur+wOl9YOYw== + +"@turbo/linux-64@2.8.20": + version "2.8.20" + resolved "https://registry.yarnpkg.com/@turbo/linux-64/-/linux-64-2.8.20.tgz#51faba95b242731b0beae9811724b3eeee6aa0a1" + integrity sha512-p2QxWUYyYUgUFG0b0kR+pPi8t7c9uaVlRtjTTI1AbCvVqkpjUfCcReBn6DgG/Hu8xrWdKLuyQFaLYFzQskZbcA== + +"@turbo/linux-arm64@2.8.20": + version "2.8.20" + resolved "https://registry.yarnpkg.com/@turbo/linux-arm64/-/linux-arm64-2.8.20.tgz#4c466ec09a2c2e6513df94d703660bb6efa61614" + integrity sha512-Gn5yjlZGLRZWarLWqdQzv0wMqyBNIdq1QLi48F1oY5Lo9kiohuf7BPQWtWxeNVS2NgJ1+nb/DzK1JduYC4AWOA== + +"@turbo/windows-64@2.8.20": + version "2.8.20" + resolved "https://registry.yarnpkg.com/@turbo/windows-64/-/windows-64-2.8.20.tgz#b8f23ff1d5ddf9b1abe41db2b1cb35b13066c063" + integrity sha512-vyaDpYk/8T6Qz5V/X+ihKvKFEZFUoC0oxYpC1sZanK6gaESJlmV3cMRT3Qhcg4D2VxvtC2Jjs9IRkrZGL+exLw== + +"@turbo/windows-arm64@2.8.20": + version "2.8.20" + resolved "https://registry.yarnpkg.com/@turbo/windows-arm64/-/windows-arm64-2.8.20.tgz#8032d42c6cfd954d3c381720d5a65dc3e7ea3014" + integrity sha512-voicVULvUV5yaGXo0Iue13BcHGYW3u0VgqSbfQwBaHbpj1zLjYV4KIe+7fYIo6DO8FVUJzxFps3ODCQG/Wy2Qw== + "@tybys/wasm-util@^0.10.0", "@tybys/wasm-util@^0.10.1": version "0.10.1" resolved "https://registry.yarnpkg.com/@tybys/wasm-util/-/wasm-util-0.10.1.tgz#ecddd3205cf1e2d5274649ff0eedd2991ed7f414" @@ -5398,18 +5418,7 @@ "@babel/parser" "^7.28.0" "@vue/compiler-sfc" "^3.5.18" -"@vue/compiler-core@3.5.22": - version "3.5.22" - resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.5.22.tgz#bb8294a0dd31df540563cc6ffa0456f1f7687b97" - integrity sha512-jQ0pFPmZwTEiRNSb+i9Ow/I/cHv2tXYqsnHKKyCQ08irI2kdF5qmYedmF8si8mA7zepUFmJ2hqzS8CQmNOWOkQ== - dependencies: - "@babel/parser" "^7.28.4" - "@vue/shared" "3.5.22" - entities "^4.5.0" - estree-walker "^2.0.2" - source-map-js "^1.2.1" - -"@vue/compiler-core@3.5.24": +"@vue/compiler-core@3.5.24", "@vue/compiler-core@^3.5.21": version "3.5.24" resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.5.24.tgz#1853f4b7d7090033cd9041aab6e7e8017d66c39c" integrity sha512-eDl5H57AOpNakGNAkFDH+y7kTqrQpJkZFXhWZQGyx/5Wh7B1uQYvcWkvZi11BDhscPgj8N7XV3oRwiPnx1Vrig== @@ -5420,29 +5429,7 @@ estree-walker "^2.0.2" source-map-js "^1.2.1" -"@vue/compiler-core@3.5.29": - version "3.5.29" - resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.5.29.tgz#3fb70630c62a2e715eeddc3c2a48f46aa4507adc" - integrity sha512-cuzPhD8fwRHk8IGfmYaR4eEe4cAyJEL66Ove/WZL7yWNL134nqLddSLwNRIsFlnnW1kK+p8Ck3viFnC0chXCXw== - dependencies: - "@babel/parser" "^7.29.0" - "@vue/shared" "3.5.29" - entities "^7.0.1" - estree-walker "^2.0.2" - source-map-js "^1.2.1" - -"@vue/compiler-core@^3.5.21": - version "3.5.26" - resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.5.26.tgz#1a91ea90980528bedff7b1c292690bfb30612485" - integrity sha512-vXyI5GMfuoBCnv5ucIT7jhHKl55Y477yxP6fc4eUswjP8FG3FFVFd41eNDArR+Uk3QKn2Z85NavjaxLxOC19/w== - dependencies: - "@babel/parser" "^7.28.5" - "@vue/shared" "3.5.26" - entities "^7.0.0" - estree-walker "^2.0.2" - source-map-js "^1.2.1" - -"@vue/compiler-dom@3.5.24": +"@vue/compiler-dom@3.5.24", "@vue/compiler-dom@^3.5.0": version "3.5.24" resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.5.24.tgz#b02e98749c377d6d2ba30dc2e94ce0f5b0af060c" integrity sha512-1QHGAvs53gXkWdd3ZMGYuvQFXHW4ksKWPG8HP8/2BscrbZ0brw183q2oNWjMrSWImYLHxHrx1ItBQr50I/q2zw== @@ -5450,44 +5437,28 @@ "@vue/compiler-core" "3.5.24" "@vue/shared" "3.5.24" -"@vue/compiler-dom@3.5.29": - version "3.5.29" - resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.5.29.tgz#055cf5492005249591c7fb45868a874468e4ffb3" - integrity sha512-n0G5o7R3uBVmVxjTIYcz7ovr8sy7QObFG8OQJ3xGCDNhbG60biP/P5KnyY8NLd81OuT1WJflG7N4KWYHaeeaIg== - dependencies: - "@vue/compiler-core" "3.5.29" - "@vue/shared" "3.5.29" - -"@vue/compiler-dom@^3.5.0": - version "3.5.22" - resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.5.22.tgz#6c9c2c9843520f6d3dbc685e5d0e1e12a2c04c56" - integrity sha512-W8RknzUM1BLkypvdz10OVsGxnMAuSIZs9Wdx1vzA3mL5fNMN15rhrSCLiTm6blWeACwUwizzPVqGJgOGBEN/hA== - dependencies: - "@vue/compiler-core" "3.5.22" - "@vue/shared" "3.5.22" - -"@vue/compiler-sfc@3.5.24", "@vue/compiler-sfc@^3.5.17", "@vue/compiler-sfc@^3.5.18", "@vue/compiler-sfc@^3.5.24": - version "3.5.29" - resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.5.29.tgz#8b1b0707fb53c122fedd566244a564eaf40ee71f" - integrity sha512-oJZhN5XJs35Gzr50E82jg2cYdZQ78wEwvRO6Y63TvLVTc+6xICzJHP1UIecdSPPYIbkautNBanDiWYa64QSFIA== +"@vue/compiler-sfc@3.5.24", "@vue/compiler-sfc@^3.5.17", "@vue/compiler-sfc@^3.5.18": + version "3.5.24" + resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.5.24.tgz#7cc3329b672b7b75d04a71eabe81bc84209dfa9f" + integrity sha512-8EG5YPRgmTB+YxYBM3VXy8zHD9SWHUJLIGPhDovo3Z8VOgvP+O7UP5vl0J4BBPWYD9vxtBabzW1EuEZ+Cqs14g== dependencies: - "@babel/parser" "^7.29.0" - "@vue/compiler-core" "3.5.29" - "@vue/compiler-dom" "3.5.29" - "@vue/compiler-ssr" "3.5.29" - "@vue/shared" "3.5.29" + "@babel/parser" "^7.28.5" + "@vue/compiler-core" "3.5.24" + "@vue/compiler-dom" "3.5.24" + "@vue/compiler-ssr" "3.5.24" + "@vue/shared" "3.5.24" estree-walker "^2.0.2" magic-string "^0.30.21" postcss "^8.5.6" source-map-js "^1.2.1" -"@vue/compiler-ssr@3.5.29": - version "3.5.29" - resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.5.29.tgz#83ac28c860271bd1c9822d135ac78c388403f949" - integrity sha512-Y/ARJZE6fpjzL5GH/phJmsFwx3g6t2KmHKHx5q+MLl2kencADKIrhH5MLF6HHpRMmlRAYBRSvv347Mepf1zVNw== +"@vue/compiler-ssr@3.5.24": + version "3.5.24" + resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.5.24.tgz#3891f2479928751353b946e491e048f33d0249a8" + integrity sha512-trOvMWNBMQ/odMRHW7Ae1CdfYx+7MuiQu62Jtu36gMLXcaoqKvAyh+P73sYG9ll+6jLB6QPovqoKGGZROzkFFg== dependencies: - "@vue/compiler-dom" "3.5.29" - "@vue/shared" "3.5.29" + "@vue/compiler-dom" "3.5.24" + "@vue/shared" "3.5.24" "@vue/compiler-vue2@^2.7.16": version "2.7.16" @@ -5609,20 +5580,20 @@ path-browserify "^1.0.1" picomatch "^4.0.2" -"@vue/reactivity@3.5.24", "@vue/reactivity@3.5.29", "@vue/reactivity@^3.5.24": - version "3.5.29" - resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.5.29.tgz#68fbaedcc2584328060edceedc4d4370b49c9fab" - integrity sha512-zcrANcrRdcLtmGZETBxWqIkoQei8HaFpZWx/GHKxx79JZsiZ8j1du0VUJtu4eJjgFvU/iKL5lRXFXksVmI+5DA== +"@vue/reactivity@3.5.24": + version "3.5.24" + resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.5.24.tgz#d2de10045f3ec05108787b6c90701b3f3bc401f8" + integrity sha512-BM8kBhtlkkbnyl4q+HiF5R5BL0ycDPfihowulm02q3WYp2vxgPcJuZO866qa/0u3idbMntKEtVNuAUp5bw4teg== dependencies: - "@vue/shared" "3.5.29" + "@vue/shared" "3.5.24" -"@vue/runtime-core@3.5.24", "@vue/runtime-core@^3.5.24": - version "3.5.29" - resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.5.29.tgz#fbd34110aa47e74a22fe430734018bec56913b40" - integrity sha512-8DpW2QfdwIWOLqtsNcds4s+QgwSaHSJY/SUe04LptianUQ/0xi6KVsu/pYVh+HO3NTVvVJjIPL2t6GdeKbS4Lg== +"@vue/runtime-core@3.5.24": + version "3.5.24" + resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.5.24.tgz#902ff6f6372a14b190aeb501a57467759bc58241" + integrity sha512-RYP/byyKDgNIqfX/gNb2PB55dJmM97jc9wyF3jK7QUInYKypK2exmZMNwnjueWwGceEkP6NChd3D2ZVEp9undQ== dependencies: - "@vue/reactivity" "3.5.29" - "@vue/shared" "3.5.29" + "@vue/reactivity" "3.5.24" + "@vue/shared" "3.5.24" "@vue/runtime-dom@3.5.24": version "3.5.24" @@ -5634,18 +5605,18 @@ "@vue/shared" "3.5.24" csstype "^3.1.3" -"@vue/server-renderer@3.5.24", "@vue/server-renderer@^3.5.24": - version "3.5.29" - resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.5.29.tgz#9cbcbf676b2976fbb8171d5de79501894ba84cad" - integrity sha512-G/1k6WK5MusLlbxSE2YTcqAAezS+VuwHhOvLx2KnQU7G2zCH6KIb+5Wyt6UjMq7a3qPzNEjJXs1hvAxDclQH+g== +"@vue/server-renderer@3.5.24": + version "3.5.24" + resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.5.24.tgz#efc5f8dc2776b91f04bf3249be95afe6e83a02a8" + integrity sha512-Yh2j2Y4G/0/4z/xJ1Bad4mxaAk++C2v4kaa8oSYTMJBJ00/ndPuxCnWeot0/7/qafQFLh5pr6xeV6SdMcE/G1w== dependencies: - "@vue/compiler-ssr" "3.5.29" - "@vue/shared" "3.5.29" + "@vue/compiler-ssr" "3.5.24" + "@vue/shared" "3.5.24" -"@vue/shared@3.5.22", "@vue/shared@3.5.24", "@vue/shared@3.5.26", "@vue/shared@3.5.29", "@vue/shared@^3.5.0", "@vue/shared@^3.5.18", "@vue/shared@^3.5.21", "@vue/shared@^3.5.23", "@vue/shared@^3.5.24", "@vue/shared@^3.5.25": - version "3.5.29" - resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.5.29.tgz#0fe0d7637b05599d56ca58d83a77c637a1774110" - integrity sha512-w7SR0A5zyRByL9XUkCfdLs7t9XOHUyJ67qPGQjOou3p6GvBeBW+AVjUUmlxtZ4PIYaRvE+1LmK44O4uajlZwcg== +"@vue/shared@3.5.24", "@vue/shared@^3.5.0", "@vue/shared@^3.5.18", "@vue/shared@^3.5.21", "@vue/shared@^3.5.23", "@vue/shared@^3.5.25": + version "3.5.24" + resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.5.24.tgz#45ea9e6e037e53cfb8141ffa6bcad75b8be11e9c" + integrity sha512-9cwHL2EsJBdi8NY22pngYYWzkTDhld6fAD6jlaeloNGciNSJL6bLpbxVgXl96X00Jtc6YWQv96YA/0sxex/k1A== "@vueuse/core@13.9.0", "@vueuse/core@14.1.0", "@vueuse/core@^10.11.0", "@vueuse/core@^10.8.0", "@vueuse/core@^12.5.0", "@vueuse/core@^13.9.0", "@vueuse/core@^14.1.0": version "14.1.0" @@ -7779,16 +7750,6 @@ entities@^6.0.0: resolved "https://registry.yarnpkg.com/entities/-/entities-6.0.1.tgz#c28c34a43379ca7f61d074130b2f5f7020a30694" integrity sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g== -entities@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/entities/-/entities-7.0.0.tgz#2ae4e443f3f17d152d3f5b0f79b932c1e59deb7a" - integrity sha512-FDWG5cmEYf2Z00IkYRhbFrwIwvdFKH07uV8dvNy0omp/Qb1xcyCWp2UDtcwJF4QZZvk0sLudP6/hAu42TaqVhQ== - -entities@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/entities/-/entities-7.0.1.tgz#26e8a88889db63417dcb9a1e79a3f1bc92b5976b" - integrity sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA== - env-paths@^2.2.1: version "2.2.1" resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz#420399d416ce1fbe9bc0a07c62fa68d67fd0f8f2" @@ -9321,6 +9282,18 @@ graphemer@^1.4.0: resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== +graphql-request@^7.1.2: + version "7.4.0" + resolved "https://registry.yarnpkg.com/graphql-request/-/graphql-request-7.4.0.tgz#97a1fc871e79f682d816963446ac6b7f99c963f9" + integrity sha512-xfr+zFb/QYbs4l4ty0dltqiXIp07U6sl+tOKAb0t50/EnQek6CVVBLjETXi+FghElytvgaAWtIOt3EV7zLzIAQ== + dependencies: + "@graphql-typed-document-node/core" "^3.2.0" + +graphql@^16.10.0: + version "16.12.0" + resolved "https://registry.yarnpkg.com/graphql/-/graphql-16.12.0.tgz#28cc2462435b1ac3fdc6976d030cef83a0c13ac7" + integrity sha512-DKKrynuQRne0PNpEbzuEdHlYOMksHSUI8Zc9Unei5gTsMNA2/vMpoMz/yKba50pejK56qj98qM0SjYxAKi13gQ== + gzip-size@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-7.0.0.tgz#9f9644251f15bc78460fccef4055ae5a5562ac60" @@ -16319,26 +16292,6 @@ tunnel-agent@^0.6.0: dependencies: safe-buffer "^5.0.1" -turbo-darwin-64@2.5.8: - version "2.5.8" - resolved "https://registry.yarnpkg.com/turbo-darwin-64/-/turbo-darwin-64-2.5.8.tgz#9c4c09374bce747ed7b26f5cdc156fdfb3583e9d" - integrity sha512-Dh5bCACiHO8rUXZLpKw+m3FiHtAp2CkanSyJre+SInEvEr5kIxjGvCK/8MFX8SFRjQuhjtvpIvYYZJB4AGCxNQ== - -turbo-darwin-arm64@2.5.8: - version "2.5.8" - resolved "https://registry.yarnpkg.com/turbo-darwin-arm64/-/turbo-darwin-arm64-2.5.8.tgz#c2c5a2eeac913a9a10f0027826392a261532eaff" - integrity sha512-f1H/tQC9px7+hmXn6Kx/w8Jd/FneIUnvLlcI/7RGHunxfOkKJKvsoiNzySkoHQ8uq1pJnhJ0xNGTlYM48ZaJOQ== - -turbo-linux-64@2.5.8: - version "2.5.8" - resolved "https://registry.yarnpkg.com/turbo-linux-64/-/turbo-linux-64-2.5.8.tgz#a5f22e8436907c84a058c46a9a3e4b1ed03f2ab9" - integrity sha512-hMyvc7w7yadBlZBGl/bnR6O+dJTx3XkTeyTTH4zEjERO6ChEs0SrN8jTFj1lueNXKIHh1SnALmy6VctKMGnWfw== - -turbo-linux-arm64@2.5.8: - version "2.5.8" - resolved "https://registry.yarnpkg.com/turbo-linux-arm64/-/turbo-linux-arm64-2.5.8.tgz#5c49aed3c2de4c9482d14545809ca559257d4493" - integrity sha512-LQELGa7bAqV2f+3rTMRPnj5G/OHAe2U+0N9BwsZvfMvHSUbsQ3bBMWdSQaYNicok7wOZcHjz2TkESn1hYK6xIQ== - turbo-meta-utilities@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/turbo-meta-utilities/-/turbo-meta-utilities-1.0.1.tgz#5e9917236fcfb175738db1fd67b2a1df41eceb2e" @@ -16347,27 +16300,17 @@ turbo-meta-utilities@^1.0.1: minimatch "^10.0.1" zod "^3.23.8" -turbo-windows-64@2.5.8: - version "2.5.8" - resolved "https://registry.yarnpkg.com/turbo-windows-64/-/turbo-windows-64-2.5.8.tgz#c9042bc181b732e5a1ab824d6549ad7d358594f5" - integrity sha512-3YdcaW34TrN1AWwqgYL9gUqmZsMT4T7g8Y5Azz+uwwEJW+4sgcJkIi9pYFyU4ZBSjBvkfuPZkGgfStir5BBDJQ== - -turbo-windows-arm64@2.5.8: - version "2.5.8" - resolved "https://registry.yarnpkg.com/turbo-windows-arm64/-/turbo-windows-arm64-2.5.8.tgz#d252d3924412d8590d58830e5d4b5f05def81af3" - integrity sha512-eFC5XzLmgXJfnAK3UMTmVECCwuBcORrWdewoiXBnUm934DY6QN8YowC/srhNnROMpaKaqNeRpoB5FxCww3eteQ== - -turbo@^2.5.5: - version "2.5.8" - resolved "https://registry.yarnpkg.com/turbo/-/turbo-2.5.8.tgz#f6b911bc487653028d32e05eb507b266b85ce6c1" - integrity sha512-5c9Fdsr9qfpT3hA0EyYSFRZj1dVVsb6KIWubA9JBYZ/9ZEAijgUEae0BBR/Xl/wekt4w65/lYLTFaP3JmwSO8w== +turbo@^2.8.20: + version "2.8.20" + resolved "https://registry.yarnpkg.com/turbo/-/turbo-2.8.20.tgz#1632aff5453240f5e96597b6439cc7e70cd871e8" + integrity sha512-Rb4qk5YT8RUwwdXtkLpkVhNEe/lor6+WV7S5tTlLpxSz6MjV5Qi8jGNn4gS6NAvrYGA/rNrE6YUQM85sCZUDbQ== optionalDependencies: - turbo-darwin-64 "2.5.8" - turbo-darwin-arm64 "2.5.8" - turbo-linux-64 "2.5.8" - turbo-linux-arm64 "2.5.8" - turbo-windows-64 "2.5.8" - turbo-windows-arm64 "2.5.8" + "@turbo/darwin-64" "2.8.20" + "@turbo/darwin-arm64" "2.8.20" + "@turbo/linux-64" "2.8.20" + "@turbo/linux-arm64" "2.8.20" + "@turbo/windows-64" "2.8.20" + "@turbo/windows-arm64" "2.8.20" tw-animate-css@^1.4.0: version "1.4.0" @@ -17296,7 +17239,7 @@ vue-tsc@^2.0.0: "@volar/typescript" "2.4.15" "@vue/language-core" "2.2.12" -vue@^3.4.5, vue@^3.5.13, vue@^3.5.17, vue@^3.5.21, vue@^3.5.24: +vue@3.5.24, vue@^3.4.5, vue@^3.5.13, vue@^3.5.17, vue@^3.5.21, vue@^3.5.24: version "3.5.24" resolved "https://registry.yarnpkg.com/vue/-/vue-3.5.24.tgz#1b93af349faa064f46e70ac5b0caaa3d0952bbf3" integrity sha512-uTHDOpVQTMjcGgrqFPSb8iO2m1DUvo+WbGqoXQz8Y1CeBYQ0FXf2z1gLRaBtHjlRz7zZUBHxjVB5VTLzYkvftg==